/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

@charset "UTF-8";

/* General Styles */


/* -------------------------------------------------- */


/* Typography */


/* -------------------------------------------------- */


/****************
Custom Grid
*****************/


/*
@media (max-width: 600px){
	*[data-bears-masonryhybrid]{
		.grid-sizer,
		.grid-item{
			width: 100% !important;
		}
	}
}
*/


/***************
 * Button
 ***************/


/******************
 * Bearsthemes Grid
 ******************/


/* button style default */


/***************
 * section
 ***************/


/****************************
fw-shortcode-calendar-wrapper
****************************/


/**
 * $fw-top-menu-color - lvl 1
 * $fw-top-menu-line-color - lvl 1 hover
 * $fw-sub-menu-color
 */


/* hidden menu title */


/* wp-caption */


/* Portfolio Short By Category */


/* navigation style default */


/* WP Widgets Layout */


/* -------------------------------------------------- */


/* Widget Facebook */


/* Widget Twitter Feed */


/* Widget Flickr */


/* Widget Posts with image */


/* Widget Search */


/* Recent Entries */


/* Widget Categories, Nav Menu, Meta, Pages */


/* widget calendar */


/* Widget TagCloud */


/* RSS */


/* Widget Text */


/* Widget Login */


/* Widget Text */


/* Footer Widget */

@keyframes add_to_cart_loading_ani {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes add_to_cart_loading_ani {
    from {
        -webkit-transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

.animated {
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animatedFast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.d-flex {
    display: flex;
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes growIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes growIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.growIn {
    -webkit-animation-name: growIn;
    animation-name: growIn;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3);
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes growOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@keyframes growOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }
}

.growOut {
    -webkit-animation-name: growOut;
    animation-name: growOut;
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInDownSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownSmall {
    -webkit-animation-name: fadeInDownSmall;
    animation-name: fadeInDownSmall;
}

@-webkit-keyframes fadeInDownSmall40 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDownSmall40 {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDownSmall40 {
    -webkit-animation-name: fadeInDownSmall40;
    animation-name: fadeInDownSmall40;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        transform: translateX(-100px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutUpSmall {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes fadeOutUpSmall {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.fadeOutUpSmall {
    -webkit-animation-name: fadeOutUpSmall;
    animation-name: fadeOutUpSmall;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
    /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

.container-fully {
    width: 1600px;
    max-width: 100%;
}

.fw-section-height-sm {
    height: 240px;
}

.fw-section-height-md {
    height: 300px;
}

.fw-section-height-lg {
    height: 440px;
}

.fw-section-height-custom,
.fw-column-height-custom {
    overflow: hidden;
    /*
.fw-section-space {
  &:not(.page-template-visual-builder-template) {
    .fw-main-row-custom,
    .fw-main-row {
      .fw-container,
      .fw-container-fluid {
        padding-top: $fw-section-padding;
        padding-bottom: $fw-section-padding;
      }
    }
  }
}
*/
}

.bt-section-space {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .fw-content-overlay-sm {
        margin-bottom: -20px;
    }
    .fw-content-overlay-md {
        margin-bottom: -40px;
    }
    .fw-content-overlay-lg {
        margin-bottom: -60px;
    }
}

@media (max-width: 767px) {
    .fw-section-height-lg {
        height: 300px;
    }
}

.fw_theme_bg_color_1 {
    background-color: #d6261f !important;
}

.fw_theme_hover_bg_color_1 {
    background-color: #d6261f !important;
}

.fw_theme_bg_color_2 {
    background-color: #d6261f !important;
}

.fw_theme_hover_bg_color_2 {
    background-color: #d6261f !important;
}

.fw_theme_bg_color_3 {
    background-color: #1f1f1f !important;
}

.fw_theme_hover_bg_color_3 {
    background-color: #1f1f1f !important;
}

.fw_theme_bg_color_4 {
    background-color: #808080 !important;
}

.fw_theme_hover_bg_color_4 {
    background-color: #808080 !important;
}

.fw_theme_bg_color_5 {
    background-color: #ebebeb !important;
}

.fw_theme_hover_bg_color_5 {
    background-color: #ebebeb !important;
}

.fw_theme_text_color_1 {
    color: #d6261f !important;
}

.fw_theme_text_color_2 {
    color: #d6261f !important;
}

.fw_theme_text_color_3 {
    color: #1f1f1f !important;
}

.fw_theme_text_color_4 {
    color: #808080 !important;
}

.fw_theme_text_color_5 {
    color: #ebebeb !important;
}

.fw_theme_border_color_1 {
    border: 1px solid #d6261f !important;
}

.fw_theme_border_color_2 {
    border: 1px solid #d6261f !important;
}

.fw_theme_border_color_3 {
    border: 1px solid #1f1f1f !important;
}

.fw_theme_border_color_4 {
    border: 1px solid #808080 !important;
}

.fw_theme_border_color_5 {
    border: 1px solid #ebebeb !important;
}

.fw_theme_border_only_color_1 {
    border-color: #d6261f !important;
}

.fw_theme_border_only_color_2 {
    border-color: #d6261f !important;
}

.fw_theme_border_only_color_3 {
    border-color: #1f1f1f !important;
}

.fw_theme_border_only_color_4 {
    border-color: #808080 !important;
}

.fw_theme_border_only_color_5 {
    border-color: #ebebeb !important;
}

.fw_hover_bg_color_1:hover {
    background-color: #d6261f !important;
}

.fw_hover_bg_color_2:hover {
    background-color: #d6261f !important;
}

.fw_hover_bg_color_3:hover {
    background-color: #1f1f1f !important;
}

.fw_hover_bg_color_4:hover {
    background-color: #808080 !important;
}

.fw_hover_bg_color_5:hover {
    background-color: #ebebeb !important;
    /* page 404 */
}

.error404 {
    background: url('../images/background-page-404.jpg') center center / cover;
    background-attachment: fixed;
}

.error404 footer.bt-footer {
    display: none;
}

.bt-404-page {
    padding: 170px 0 170px;
    background-attachment: fixed;
}

.bt-404-page .wrap-entry-404 .fw-title-404 {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 28px;
    color: #fff;
}

.bt-404-page .wrap-entry-404 .fw-title-404-sub {
    font-size: 30px;
    font-weight: normal;
    color: #fff;
}

.bt-404-page .wrap-entry-404 .page-content {
    color: #fff;
}

.bt-404-page .wrap-entry-404 .page-content a {
    text-decoration: underline;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-404-page .wrap-entry-404 .page-content a:hover {
    color: #e63c80;
}

.bt-404-page .wrap-entry-404 .page-content .search-form {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 450px;
    margin: 20px auto;
}

.bt-404-page .wrap-entry-404 .page-content .search-form label {
    display: block;
    position: relative;
    width: 100%;
}

.bt-404-page .wrap-entry-404 .page-content .search-form label .screen-reader-text {
    display: none;
}

.bt-404-page .wrap-entry-404 .page-content .search-form label input.search-field {
    width: 100%;
    height: 50px !important;
    border-radius: 100px !important;
    padding-left: 24px !important;
    padding-right: 130px !important;
    color: #333;
    font-weight: normal;
}

.bt-404-page .wrap-entry-404 .page-content .search-form label:after {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    font-size: 24px;
    color: #d6261f;
}

.bt-404-page .wrap-entry-404 .page-content .search-form input.search-submit {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: none;
    font-size: 0;
    display: none;
}

.bt-404-page .wrap-entry-404 .page-content .go-to-homepage {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.bt-404-page .wrap-entry-404 .page-content .go-to-homepage a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

.bt-404-page .wrap-entry-404 .page-content .go-to-homepage:hover a {
    color: #e32571;
}

.gallery.gallery-columns-1:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-1 .gallery-item {
    width: calc(100% / 1);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-1 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-1 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-2:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-2 .gallery-item {
    width: calc(100% / 2);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-2 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-2 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-3:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-3 .gallery-item {
    width: calc(100% / 3);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-3 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-3 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-4:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-4 .gallery-item {
    width: calc(100% / 4);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-4 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-4 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-5:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-5 .gallery-item {
    width: calc(100% / 5);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-5 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-5 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-6:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-6 .gallery-item {
    width: calc(100% / 6);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-6 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-6 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-7:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-7 .gallery-item {
    width: calc(100% / 7);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-7 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-7 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-8:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-8 .gallery-item {
    width: calc(100% / 8);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-8 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-8 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-9:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-9 .gallery-item {
    width: calc(100% / 9);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-9 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-9 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-10:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-10 .gallery-item {
    width: calc(100% / 10);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-10 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-10 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-11:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-11 .gallery-item {
    width: calc(100% / 11);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-11 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-11 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.gallery.gallery-columns-12:after {
    content: "";
    display: block;
    clear: both;
}

.gallery.gallery-columns-12 .gallery-item {
    width: calc(100% / 12);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
}

.gallery.gallery-columns-12 .gallery-item img {
    max-width: 100%;
    height: auto;
}

.gallery.gallery-columns-12 .gallery-item .gallery-caption {
    margin-top: 8px;
    font-family: caption;
    font-style: italic;
}

.post-password-form {
    /* table styling */
}

.post-password-form input[name="post_password"] {
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    line-height: 34px;
    padding: 0 20px;
}

.post-password-form input[type="submit"] {
    background: #d6261f;
    border: medium none;
    border-radius: 3px;
    color: #fff;
    font-size: 14px;
    padding: 3px 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-password-form input[type="submit"]:hover {
    background: #bd185a;
}

table {
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid #eee;
}

th,
td {
    padding: 10px;
}

article.post.sticky {
    position: relative;
}

article.post.sticky .post-inner {
    border: 1px solid rgba(214, 38, 31, 0.5);
}

article.post.sticky:after {
    content: "\f0e7";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    width: 30px;
    height: 30px;
    background: #d6261f;
    right: 0px;
    top: 0px;
    z-index: 3;
    color: #fff;
    text-align: center;
}

.title-bar-default {
    padding: 100px 0;
    background: url('../images/titlebar-background.jpg') no-repeat center center / cover;
    background-attachment: fixed;
}

.title-bar-default .title-bar-text {
    font-size: 32px;
    line-height: 42px;
    margin: 0;
    font-weight: bold;
}

.bypostauthor {
    border: none;
}

.aligncenter {
    text-align: center;
    /* sweetalert JS */
}

.sweet-alert h2 {
    font-size: 22px;
    letter-spacing: -1px;
    margin-top: 0;
}

.sweet-alert .sa-button-container button,
.sweet-alert .sa-confirm-button-container button {
    border-radius: 3px;
    font-size: 14px;
    padding: 7px 33px;
    border: none;
    box-shadow: none !important;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sweet-alert .sa-button-container button.confirm,
.sweet-alert .sa-confirm-button-container button.confirm {
    background: #d6261f !important;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.sweet-alert .sa-button-container button.confirm:hover,
.sweet-alert .sa-confirm-button-container button.confirm:hover {
    background: rgba(214, 38, 31, 0.5) !important;
}

@keyframes ajaxLoadingAnimate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ajaxLoadingAnimate {
    from {
        -webkit-transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

._ajax-loading-animate {
    position: relative;
    pointer-events: none;
}

._ajax-loading-animate:after {
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    z-index: 999;
    border: solid 8px #555;
    border-left-color: #d6261f;
    border-radius: 100px;
    animation: ajaxLoadingAnimate 1s infinite linear;
    -webkit-animation: ajaxLoadingAnimate 1s infinite linear;
}

._ajax-loading-animate>* {
    opacity: 0.3;
}

html {
    overflow-x: hidden;
    /* background image for body */
}

body {
    background-color: #fff;
    background-image: url();
    background-repeat: ;
    /* wrapper for all sections */
}

body.bt-side-boxed {
    background-color: #fff;
    background: url();
    background-repeat: ;
    background-attachment: fixed;
}

body.bt-side-boxed #page {
    max-width: 1170px;
    margin: auto;
    background: ;
    box-shadow: 0 0 24px 1px rgba(0, 0, 0, 0.1);
}

.fw-side-boxed .site-main {
    background-color: ;
}

.fw-side-boxed .site-main .fw-main-row>.fw-container {
    background-color: ;
}

.fw-full .site,
.fw-side-boxed .site {
    margin-top: ;
    margin-bottom: ;
}

::-moz-selection {
    background: rgba(212, 27, 101, 0.1);
}

::selection {
    background: rgba(212, 27, 101, 0.1);
    /* Scroll To Top Button */
}

.scroll-to-top i {
    color: ;
}

.scroll-to-top:hover {
    border-color: ;
}

#page input[type="text"],
#page input[type="password"],
#page input[type="number"],
#page input[type="email"],
#page input[type="date"],
#page input[type="color"],
#page input[type="tel"],
#page input[type="search"],
#page textarea,
#page select {
    border-radius: 3px;
    border: 1px solid rgba(53, 53, 53, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    max-width: 100%;
}

#page input[type="text"]:focus,
#page input[type="password"]:focus,
#page input[type="number"]:focus,
#page input[type="email"]:focus,
#page input[type="date"]:focus,
#page input[type="color"]:focus,
#page input[type="tel"]:focus,
#page input[type="search"]:focus,
#page textarea:focus,
#page select:focus {
    border: 1px solid rgba(214, 38, 31, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(214, 38, 31, 0.5);
    -moz-box-shadow: 0px 0px 5px rgba(214, 38, 31, 0.5);
    box-shadow: none;
    outline: none;
}

#page input[type="submit"] {
    border-radius: 3px;
    border: none;
    background: #d6261f;
    color: #fff;
    padding: 8px 12px;
    vertical-align: top;
    font-size: 13px;
    line-height: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#page input[type="submit"]:hover {
    background: rgba(214, 38, 31, 0.5);
}

#page input.search-field {
    border-radius: 3px;
    height: 50px;
    padding: 0 35px 0 10px;
}

#page input.search-submit {
    border-radius: 30px;
    height: 50px;
    padding: 0 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.fw-content-align-left {
    text-align: left;
}

.fw-content-align-center {
    text-align: center;
}

.fw-content-align-right {
    text-align: right;
}

.bt-itable {
    display: table;
    width: 100%;
}

.bt-itable .bt-icell {
    display: table-cell;
}

.bt-itable .bt-icell.bt-icell-align-middle {
    vertical-align: middle;
}

.alignleft {
    float: left;
    padding-right: 10px;
}

.alignright {
    float: right;
    padding-left: 10px;
}

table {
    width: 100%;
}

#scroll-to-top-button {
    position: fixed;
    cursor: pointer;
    opacity: 0.5;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 99;
    border-radius: 3px;
    background: #d6261f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    transform: translateY(150px);
    -webkit-transform: translateY(150px);
    /* custom-select-ui */
}

#scroll-to-top-button.is-display {
    visibility: visible;
    opacity: 0.5;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

#scroll-to-top-button span {
    position: absolute;
    left: 50%;
    top: 55%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    border: solid #fff;
    border-width: 1px 1px 0 0;
}

#scroll-to-top-button:hover {
    opacity: 1;
}

#page .custom-select-ui {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(53, 53, 53, 0.1);
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* ui select2 - jquery render */
}

#page .custom-select-ui:hover {
    border: 1px solid rgba(214, 38, 31, 0.5);
}

#page .custom-select-ui:after {
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    opacity: 0.5;
}

#page .custom-select-ui>select {
    cursor: pointer;
    width: calc(100% + 17px);
    border-color: transparent;
    background: transparent;
    margin: 0;
    max-width: none;
    position: relative;
    z-index: 3;
    outline: none;
}

#page .custom-select-ui>select option {
    width: calc(100% + 17px);
    max-width: none;
    outline: none;
}

#page .select2-container>a.select2-default {
    height: 36px;
    line-height: 36px;
    background: #fff;
    background-color: #fff;
    border-radius: 3px;
    border-color: rgba(53, 53, 53, 0.1);
    box-shadow: none;
}

#page .select2-container>a.select2-default .select2-arrow {
    background: transparent;
    border: none;
}

#page .select2-container>a.select2-default .select2-arrow:after {
    border-color: none;
    border-color: #333;
    border-image: none;
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: "";
    height: 5px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    -webkit-transform: translateY(-50%) rotate(135deg);
    width: 5px;
    z-index: 1;
}

#page .select2-container>a.select2-default .select2-arrow b {
    display: none;
}

body #select2-drop {
    border-color: rgba(53, 53, 53, 0.1);
}

body #select2-drop .select2-search {
    position: relative;
}

body #select2-drop .select2-search input {
    background: none !important;
    border-radius: 3px !important;
    box-shadow: none !important;
}

body #select2-drop .select2-search:after {
    content: "\f002";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 11px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

body #select2-drop .select2-result-sub .select2-highlighted {
    background: rgba(212, 27, 101, 0.9);
    color: #fff;
    border-radius: 3px;
}

.svg_bleeding_stock_wrap {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.ui.selection.dropdown>.delete.icon,
.ui.selection.dropdown>.dropdown.icon,
.ui.selection.dropdown>.search.icon {
    line-height: 1.55em;
}

.ui.selection.active.dropdown,
.ui.selection.active.dropdown .menu,
.ui.selection.active.dropdown:hover,
.ui.selection.active.dropdown:hover .menu,
.ui.selection.dropdown:focus,
.ui.selection.dropdown:focus .menu {
    border-color: #d6261f;
}

body {
    font-family: 'Arimo';
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    color: #666;
}

a {
    color: #d6261f;
}

a:hover {
    color: #d6261f;
}

a:focus,
a:active {
    color: #d6261f;
}

h1,
.h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 65px;
    letter-spacing: 0px;
    color: #333;
}

h2,
.h2 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 0px;
    color: #333;
}

h3,
.h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
    color: #333;
}

h4,
.h4 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333;
}

h5,
.h5 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #333;
}

h6,
.h6 {
    font-family: 'Arimo';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    color: #666;
}

hr {
    margin: 22.5px auto;
}

blockquote {
    color: #666;
    font-family: 'Arimo';
    font-weight: 400;
    /*Responsive*/
    /*Screen 568px*/
}

blockquote .fw-symbols-quote {
    color: #666;
}

blockquote cite {
    color: #1f1f1f;
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    font-size: 17px;
}

@media (max-width: 767px) {
    h1,
    .h1,
    h2,
    .h2,
    h3,
    .h3,
    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        letter-spacing: 0 !important;
    }
}

body #cs-content .x-container.width {
    width: calc(100% - 30px);
    /* Small devices Tablets (≥768px)  */
}

@media (min-width: 768px) {
    /* Medium devices Desktops (≥992px)  */
    body #cs-content .x-container.max {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    /* Large devices Desktops (≥1200px) */
    body #cs-content .x-container.max {
        max-width: 940px;
    }
}

@media (min-width: 1200px) {
    /* fix builder ui */
    body #cs-content .x-container.max {
        max-width: 1140px;
    }
}

.bt-row>.cs-preview-element-wrapper {
    display: inline;
    /* booking form restaurant */
}

#cs-content .cs-preview-element-wrapper .rtb-booking-form form label {
    display: block;
    width: 100%;
}

#cs-content .cs-preview-element-wrapper .rtb-booking-form form {
    /* fix button element inline */
}

#cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="text"],
#cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="tel"],
#cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="email"],
#cs-content .cs-preview-element-wrapper .rtb-booking-form form input[type="date"],
#cs-content .cs-preview-element-wrapper .rtb-booking-form form select,
#cs-content .cs-preview-element-wrapper .rtb-booking-form form textarea {
    display: block;
    width: 100%;
}

.cs-preview-element-wrapper[data-element="bears-button-element"] {
    display: inline-block;
    /* fix carousel + hyperMasonry element */
}

.cs-preview-element-wrapper .bearsthemes-team-element+.cs-empty-element,
.cs-preview-element-wrapper .bearsthemes-testimonals-element+.cs-empty-element,
.cs-preview-element-wrapper .bearsthemes-countdown-element+.cs-empty-element {
    display: none !important;
}

.cs-preview-element-wrapper .bearsthemes-team-element~.cs-empty-element,
.cs-preview-element-wrapper .bearsthemes-testimonals-element~.cs-empty-element,
.cs-preview-element-wrapper .bearsthemes-countdown-element~.cs-empty-element {
    display: none !important;
    /* hidden button handle hyperMasonry */
}

.cs-preview-element-wrapper .bearsthemes-gallery-element {
    /* overide color skillbar */
}

.cs-preview-element-wrapper .bearsthemes-gallery-element button.save-grid-js,
.cs-preview-element-wrapper .bearsthemes-gallery-element div.ui-resizable-se {
    display: none !important;
}

body #cs-content .x-skill-bar .bar {
    background: #d6261f;
}

body #cs-content .x-accordion-heading .x-accordion-toggle.collapsed:hover,
body #cs-content .x-accordion-heading .x-accordion-toggle,
body #cs-content .x-nav-tabs>li>a:hover,
body #cs-content .x-nav-tabs>.active>a,
body #cs-content .x-nav-tabs>.active>a:hover,
body #cs-content .x-recent-posts a:hover .h-recent-posts {
    color: #d6261f;
    /********
x-accordion
*********/
}

body #cs-content .x-accordion-heading .x-accordion-toggle.collapsed:hover,
body #cs-content .x-accordion-heading .x-accordion-toggle {
    color: #d6261f;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
}

body #cs-content .x-accordion-group {
    box-shadow: none;
    border-radius: 2px;
    margin-bottom: 20px;
}

body #cs-content .x-accordion-inner {
    padding: 20px;
}

#cs-content .cs-preview-element-wrapper .x-text iframe {
    padding-bottom: 30px !important;
    /*************
x-recent-posts
*************/
}

body #cs-content .x-recent-posts {
    /**
x-pricing-table
***/
}

body #cs-content .x-recent-posts>a {
    background: #fff;
    box-shadow: none;
    border-color: #eaeaea;
    border-radius: 1px;
    padding: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body #cs-content .x-recent-posts>a .x-recent-posts-content .h-recent-posts {
    margin-top: 15px;
}

body #cs-content .x-recent-posts>a .x-recent-posts-content .x-recent-posts-date {
    color: #afafaf;
    font-size: 13px;
    text-transform: none;
}

body #cs-content .x-recent-posts>a:hover {
    border-color: #d6261f;
}

body #cs-content .x-recent-posts>a:hover .x-recent-posts-content .h-recent-posts {
    color: #d6261f;
}

body #cs-content .x-dropcap,
body #cs-content .x-highlight,
body #cs-content .x-pricing-column.featured h2,
body #cs-content .x-recent-posts .x-recent-posts-img::after {
    background-color: #d6261f;
}

body .x-pricing-table {
    /*
x-button
*/
}

body .x-pricing-table .x-pricing-column>.x-pricing-column-info ul {
    padding: 0;
    margin: 0;
}

body .x-pricing-table .x-pricing-column>.x-pricing-column-info ul li {
    list-style: none;
    padding: 12px 40px;
}

body .x-pricing-table .x-pricing-column:first-child>h2 {
    border-radius: 4px 0 0 0;
}

body .x-pricing-table .x-pricing-column:first-child>.x-pricing-column-info {
    border-radius: 0 0 0 4px;
}

body .x-pricing-table .x-pricing-column:last-child>h2 {
    border-radius: 0 4px 0 0;
}

body .x-pricing-table .x-pricing-column:last-child>.x-pricing-column-info {
    border-radius: 0 0 4px 0;
}

body .x-pricing-table .x-pricing-column.featured {
    box-shadow: 0 0 29px -8px rgba(1, 1, 1, 0.3);
}

body .x-pricing-table .x-pricing-column.featured>h2 {
    border-radius: 4px 4px 0 0;
}

body .x-pricing-table .x-pricing-column.featured>.x-pricing-column-info {
    border-radius: 0 0 4px 4px;
}

body .x-pricing-table .x-btn {
    display: inline-block;
    font-size: 12px !important;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 13px 23px !important;
    text-transform: uppercase;
}

body #cs-content .x-btn {
    background-color: #d6261f;
    box-shadow: none !important;
    text-shadow: none !important;
    border: none !important;
}

body #cs-content .x-btn:hover {
    background-color: #bd185a !important;
}

#page .wpb_images_carousel .vc_item .vc_inner img {
    max-width: 100%;
    height: auto;
}

#page .vc_btn3 {
    border: 0;
    /* post slider */
}

#page .vc_btn3.vc_btn3-style-custom {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .vc_btn3.vc_btn3-style-custom:hover {
    opacity: 0.85;
}

#page .wpb_posts_slider .wpb_gallery_slides {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

#page .wpb_posts_slider .wpb_gallery_slides ul.slides>li img {
    max-width: 100%;
    height: auto;
}

#page .wpb_posts_slider .wpb_gallery_slides ul.slides>li .link_image>img {
    border-radius: 3px;
}

#page .wpb_posts_slider .wpb_gallery_slides ul.slides>li .flex-caption {
    background: none;
    padding: 20px 0 0;
}

#page .wpb_posts_slider .wpb_gallery_slides ul.slides>li .flex-caption .post-title {
    font-size: 22px;
    letter-spacing: -1.2px;
    line-height: 26px;
}

#page .vc_tta-container .vc_tta-tabs {
    /* vc accordion */
}

#page .vc_tta-container .vc_tta-tabs h4.vc_tta-panel-title {
    font-family: 'Arimo';
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
}

#page .vc_tta-container .vc_tta-tabs .vc_tta-tab a>* {
    vertical-align: middle;
}

#page .vc_tta-container .vc_tta-accordion .vc_tta-panel-title {
    font-family: 'Arimo';
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
}

#page .vc_tta-container .vc_tta-accordion .vc_tta-panel-title a>* {
    vertical-align: middle;
}

#page .vc_progress_bar {
    /* custom element */
}

#page .vc_progress_bar .vc-custom-ui-round-slender {
    border-radius: 50px;
}

#page .vc_progress_bar .vc-custom-ui-round-slender:not(:last-child) {
    margin-bottom: 15px;
}

#page .vc_progress_bar .vc-custom-ui-round-slender .vc_label {
    padding: 4px 10px;
    line-height: normal;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#page .vc_progress_bar .vc-custom-ui-round-slender .vc_bar {
    border-radius: 50px;
}

#page .vc_progress_bar .vc-custom-ui-square-slender {
    border-radius: 1px;
}

#page .vc_progress_bar .vc-custom-ui-square-slender:not(:last-child) {
    margin-bottom: 15px;
}

#page .vc_progress_bar .vc-custom-ui-square-slender .vc_label {
    padding: 4px 10px;
    line-height: normal;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#page .vc_progress_bar .vc-custom-ui-square-slender .vc_bar {
    border-radius: 1px;
}

#page .vc_progress_bar .vc-custom-ui-slender-line {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

#page .vc_progress_bar .vc-custom-ui-slender-line .vc_label {
    padding: 4px 0px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#page .vc_progress_bar .vc-custom-ui-slender-line .vc_bar {
    height: 2px;
    border-radius: 2px;
    top: auto;
    bottom: 0;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid {
    /* give form slider */
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap {
    margin-bottom: 30px;
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav {
    display: inline-block;
    background: #fafafa;
    border-radius: 150px;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item {
    float: left;
    padding: 12px 15px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    min-width: 150px;
    -webkit-transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
    transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
    text-decoration: none;
    border-radius: 150px;
    background: #fafafa;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item.is-active {
    z-index: 3;
    background: #d6261f;
    color: #fff;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

@media (max-width: 644px) {
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap {
        text-align: left;
    }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav {
        background: none;
    }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item {
        background: none !important;
        color: #333 !important;
        font-size: 20px;
        font-weight: bold;
        letter-spacing: -1.2px;
        min-width: auto;
        padding: 5px 0;
        text-transform: none;
    }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item:not(:last-child):after {
        content: "/";
        margin: 0 20px;
        color: #333 !important;
    }
    #page .wpb_theme_custom_element.wpb_portfolio_grid .filter-wrap .filter-nav .portfolio-filter-item.is-active {
        color: #d6261f !important;
        transform: scale(1) !important;
        -webkit-transform: scale(1) !important;
    }
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default {
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner {
    overflow: hidden;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .portfolio-thumbnail {
    position: relative;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .portfolio-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .portfolio-thumbnail img {
    width: 100%;
    height: auto;
    -webkit-transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
    transition: 0.5s cubic-bezier(0.7, 0.19, 0.3, 0.99);
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    padding: 30px;
    text-align: left;
    -webkit-transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99);
    transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99);
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta {
    position: relative;
    color: #fff;
    padding-left: 35px;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    border-top: solid 1px;
    width: 30px;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta a {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .cat-meta a:hover {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .entry-content .title-link .title {
    color: #fff;
    font-size: 20px;
    letter-spacing: -1.2px;
    line-height: 24px;
    margin: 0;
    text-decoration: underline;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .readmore {
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 4;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    border-radius: 100%;
    background: #fff;
    line-height: 80px;
    text-align: center;
    box-shadow: 0 0 36px -6px rgba(0, 0, 0, .5);
    color: #333;
    opacity: 0;
    visibility: 0;
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    font-size: 30px;
    -webkit-transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99);
    transition: 0.8s cubic-bezier(0.7, 0.19, 0.3, 0.99);
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default .item-inner .readmore:hover {
    background: #d6261f;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .portfolio-thumbnail:after {
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .portfolio-thumbnail img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .entry-content {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_portfolio_grid .grid-item.item-skin-default:hover .item-inner .readmore {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

#page .wpb_theme_custom_element.wpb_give_forms_slider {
    /* wpb_events_grid */
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 {
    cursor: move;
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    margin: 15px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .featured-image {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .featured-image img {
    width: 100%;
    height: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content {
    padding: 20px;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .extra-meta .meta-item.meta-date {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0px;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .extra-meta .meta-item.meta-date span {
    color: #d6261f;
    padding: 0 5px;
    margin-top: -3px;
    font-size: 17px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap {
    font-size: 16px;
    letter-spacing: 0px;
    color: #d6261f;
    font-weight: 600;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .give-goal-progress-wrap .bt-com {
    font-size: 16px;
    font-weight: bold;
    line-height: 2.14;
    letter-spacing: 0px;
    color: #555;
    font-family: 'Poppins';
    padding: 10px 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .title-link {
    display: block;
    min-height: 56px;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .title-link .title {
    color: #333;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot {
    border-top: #ebebeb solid 1px;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot .give-price-raised {
    width: 45%;
    float: left;
    text-align: center;
    font-family: 'Poppins';
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #303030;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot .give-price-raised span {
    font-family: 'Poppins';
    display: block;
    color: #777;
    font-size: 16px;
    line-height: 2.14;
    letter-spacing: 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot .give-price-raised strong {
    font-weight: 400;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot .give-price-goal {
    width: 55%;
    float: left;
    text-align: center;
    border-left: #ebebeb solid 1px;
    font-family: 'Poppins';
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0;
    color: #303030;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot .give-price-goal span {
    font-family: 'Poppins';
    display: block;
    color: #777;
    font-size: 16px;
    line-height: 2.14;
    letter-spacing: 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4 .entry-content .entry-content-inner .entry-bot .give-price-goal strong {
    font-weight: 400;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-4:hover .featured-image img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 {
    cursor: move;
    position: relative;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    margin-top: 30px;
    margin-bottom: 30px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .featured-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .featured-image:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .featured-image:hover:before {
    opacity: 1;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content {
    padding: 40px;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .excerpt {
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 26px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .give-goal-progress-wrap .goal_progress_full {
    width: 100%;
    height: 16px;
    background: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap {
    font-size: 17px;
    letter-spacing: 0px;
    color: #333;
    font-weight: 600;
    position: relative;
    margin-top: 15px;
    padding-left: 65px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap:before {
    content: " ";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(https://goza.beplusthemes.com/goza-orgazination/wp-content/uploads/2019/10/love.svg);
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .raised,
#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .income {
    font-weight: 400;
    margin-left: 25px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .title-link {
    display: block;
    min-height: 56px;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3 .entry-content .entry-content-inner .title-link .title {
    color: #333;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-3:hover .featured-image img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 {
    cursor: move;
    position: relative;
    padding-top: 40px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .meta-donor {
    background: #333 none repeat scroll 0 0;
    color: #fff;
    font-size: 16px;
    left: 10px;
    letter-spacing: 0px;
    line-height: normal;
    padding: 7px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    z-index: 3;
    border-radius: 2px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .meta-donor:after {
    content: "";
    border: solid 10px transparent;
    border-right-color: #333;
    position: absolute;
    left: 0px;
    bottom: -10px;
    z-index: -1;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .featured-image {
    border-radius: 3px;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .featured-image img {
    width: 100%;
    height: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content {
    padding-top: 40px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap {
    font-size: 16px;
    letter-spacing: 0px;
    color: #c5c5c5;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .income {
    font-size: 130%;
    color: #333;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .title-link {
    display: block;
    min-height: 56px;
    padding-right: 50px;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .title-link .title {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot {
    margin-top: 15px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .extra-meta,
#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn {
    display: inline-block;
    width: calc(100% - 134px);
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn {
    background: #d6261f;
    border-radius: 2px;
    color: #fff;
    padding: 5px 0;
    text-align: center;
    width: 130px;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn span {
    font-size: 20px;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .readmore-btn:hover {
    background: #bd185a;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .extra-meta {
    text-align: right;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2 .entry-content .entry-content-inner .entry-bot .extra-meta * {
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-2:hover .featured-image img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 {
    cursor: move;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content,
#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image {
    width: calc(100% / 2);
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content {
    position: relative;
    min-height: 400px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 50px 30px;
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .meta-donor {
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: normal;
    padding: 7px 12px;
    text-transform: uppercase;
    background: #d6261f;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap {
    margin: 10px 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-goal-progress-bar {
    height: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 70%;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap {
    font-weight: bold;
    letter-spacing: 0px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .income {
    font-size: 130%;
    color: #bd185a;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .give-goal-progress-wrap .give-price-wrap .goal-text {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .title-link .title {
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0px;
    padding: 5px 0px;
    margin: 0 auto;
    max-width: 80%;
    color: #333;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .title-link .title:hover {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .extra-meta {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 0;
    margin-bottom: 30px;
    color: #656565;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .extra-meta .meta-item {
    display: inline-block;
    vertical-align: top;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .readmore-btn {
    border-bottom: 1px solid;
    border-radius: 0px;
    color: #333;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .readmore-btn span {
    margin-left: 4px;
    font-size: 20px;
    vertical-align: middle;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .entry-content-inner .readmore-btn:hover span {
    margin-left: 10px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image .readmore-link {
    position: absolute;
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    background: #fff;
    color: #333;
    border-radius: 60px;
    z-index: 3;
    -webkit-transition: 0.6s cubic-bezier(0.75, 0.12, 0.43, 0.84);
    transition: 0.6s cubic-bezier(0.75, 0.12, 0.43, 0.84);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image .readmore-link span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 24px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1:hover .featured-image .readmore-link {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1:hover .featured-image .readmore-link:hover {
    background: #d6261f;
    color: white;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1:hover .featured-image:after {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
    #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .featured-image {
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        height: 32vh;
    }
    #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content {
        width: 100%;
    }
    #page .wpb_theme_custom_element.wpb_give_forms_slider .item .item-inner.give-forms-slider-layout-style-1 .entry-content .title-link .title {
        max-width: 100% !important;
    }
}

#page .wpb_theme_custom_element.wpb_events_grid {
    /* wpb_events_listing */
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default {
    margin-bottom: 30px;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .event-featured-image-wrap {
    position: relative;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .event-featured-image-wrap .event-thumbnail {
    height: 220px;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .event-featured-image-wrap .goza-event-date {
    position: absolute;
    padding: 7px 12px;
    background: #d6261f;
    color: #fff;
    border-radius: 3px;
    bottom: -20px;
    left: 30px;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry {
    padding: 45px 30px 30px;
    border: solid #f5f5f5;
    border-width: 0 1px 1px;
    border-radius: 0 0 3px 3px;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry a.title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry a.title-link .title {
    font-size: 22px;
    color: #444;
    font-family: 'Poppins';
    line-height: 30px;
    font-weight: 600;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry .goza-event-time {
    color: #d6261f;
    padding: 10px 0;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry .goza-event-time span {
    text-transform: uppercase;
    color: #333;
    font-weight: 600;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry .venue-empty {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_grid .item-inner.layout-default .content-entry i.fa {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing {
    /*events_carousel */
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 {
    margin-bottom: 20px;
    display: table;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
    border-bottom: #acacac dashed 1px;
    padding-right: 115px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .dt>* {
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .plus-icon {
    position: relative;
    background: #d6261f;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    z-index: 9;
    left: 0;
    cursor: pointer;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .plus-icon:before {
    content: "+";
    position: absolute;
    color: #fff;
    left: calc(50% - 6px);
    line-height: 30px;
    font-size: 23px;
    font-weight: 100;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .edu-event-featured {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 45px;
    position: relative;
    margin-left: -15px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .content-entry a.title-link {
    font-size: 22px;
    line-height: 30px;
    color: #333;
    font-weight: 600;
    font-family: 'Poppins';
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .content-entry .edu-event-time {
    font-size: 14px;
    line-height: 24px;
    font-family: 'Poppins';
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .bt-join {
    position: absolute;
    right: 0;
    top: 15px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .bt-join a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: #000;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    border-radius: 2px;
    font-family: 'Poppins';
    display: inline-block;
    overflow: hidden;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .bt-join a:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .bt-join a:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .dd {
    margin-left: 140px;
    font-size: 15px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2.is-current .dt span.plus-icon:before {
    content: "_";
    line-height: 9px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2.is-current .dt .bt-join a {
    background: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2:hover .bt-join a {
    background: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2:hover span.plus-icon {
    background: #000;
}

@media (max-width: 1200px) {
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .edu-event-featured {
        margin-right: 20px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .content-entry {
        width: calc(100% - 115px);
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .dd {
        margin-left: 115px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style2 .bt-join a {
        padding: 0 25px;
    }
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 {
    position: relative;
    margin: 25px 0;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .event-featured-image-wrap {
    z-index: 3;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .event-featured-image-wrap .event-thumbnail {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry {
    width: calc(100% - 115px);
    display: inline-block;
    vertical-align: middle;
    padding: 25px 20px 25px 65px;
    background: #d6261f;
    border-radius: 60px;
    margin-left: -50px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry a.title-link {
    text-decoration: none;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #fff;
    margin-bottom: 10px;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry .col-line {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry .col-line .event-start-time {
    font-size: 15px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry .col-line .event-start-time span {
    color: #333;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry .col-line .event-location {
    font-size: 15px;
    color: #fff;
    line-height: 24px;
}

@media (max-width: 450px) {
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .event-featured-image-wrap {
        display: none;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style3 .content-entry {
        width: 100%;
        padding: 25px 20px 25px 20px;
        margin-left: 0;
    }
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 {
    position: relative;
    margin: 0 0 55px 0;
    padding: 0px 35px 15px 35px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .event-featured-image-wrap {
    z-index: 3;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    position: relative;
    bottom: -34px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .event-featured-image-wrap .event-thumbnail {
    width: 200px;
    height: 210px;
    border-radius: 4px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry {
    width: calc(100% - 225px);
    display: inline-block;
    vertical-align: middle;
    padding: 15px 20px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry a.title-link {
    text-decoration: none;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 600;
    color: #444;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry a.readmore-link {
    text-transform: uppercase;
    font-size: 14px;
    color: #646464;
    font-weight: 700;
    float: right;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry a.readmore-link i.fa {
    margin-left: 10px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry a.readmore-link:hover {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry .col-line .event-location {
    font-size: 15px;
    line-height: 19px;
    color: #888;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry .col-line .event-location i.fa {
    margin-right: 5px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry .col-line .event-space {
    margin: 20px 0;
    width: 70px;
    border-bottom: 1px solid #888;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry .col-line .event-start-time {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 10px;
    font-weight: bold;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry .col-line .event-start-time .color-main {
    color: #d6261f;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry .col-line .event-start-time span {
    color: #d6261f;
}

@media (max-width: 450px) {
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .event-featured-image-wrap {
        display: none;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style4 .content-entry {
        width: 100%;
        padding: 25px 20px 25px 20px;
        margin-left: 0;
    }
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 {
    margin-bottom: 20px;
    display: table;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1>* {
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .edu-event-date {
    margin-right: 20px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .edu-event-date .edu-event-day {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    color: #d6261f;
    border: #d6261f solid 1px;
    padding: 20px;
    width: 115px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .edu-event-date .edu-event-day span {
    font-size: 40px;
    color: #d6261f;
    display: block;
    line-height: 40px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .content-entry .edu-event-time {
    font-size: 14px;
    color: #d6261f;
    font-weight: bold;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .content-entry .edu-event-time span {
    font-style: italic;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .content-entry .title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .content-entry .title-link .title {
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 10px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .content-entry .title-link:hover .title {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .content-entry .venue-empty {
    color: #d6261f;
    font-weight: 400;
    font-size: 14px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .readmore-link {
    width: 170px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    background: #222;
    border-radius: 30px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 70px;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1 .readmore-link:hover {
    background: #d6261f;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-style1:hover .event-featured-image-wrap .event-thumbnail .bt-overlay {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .goza-event-date .goza-event-day {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #d6261f;
    padding: 5px 15px;
    border-radius: 3px;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .goza-event-date .goza-event-day span {
    font-size: 30px;
    color: #fff;
    line-height: 30px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .goza-event-date .goza-event-day i {
    margin-left: 7px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .goza-event-time {
    font-size: 16px;
    color: #d6261f;
    font-weight: bold;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .goza-event-time span {
    text-transform: capitalize;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .title-link .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 5px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .title-link:hover .title {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .venue-empty {
    color: #d6261f;
    font-weight: 400;
    font-size: 16px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .readmore-link {
    width: 170px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    background: #222;
    border-radius: 30px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 70px;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .readmore-link:hover {
    background: #d6261f;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify:hover .event-featured-image-wrap .event-thumbnail .bt-overlay {
    opacity: 1;
}

@media (max-width: 600px) {
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .goza-event-date {
        margin-right: 10px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .title-link .title {
        font-size: 18px;
        line-height: 22px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-simplify .content-entry .venue-empty {
        font-size: 14px;
    }
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default {
    margin-bottom: 20px;
    display: table;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default>* {
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .goza-event-date {
    margin-right: 20px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .goza-event-date .goza-event-day {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #d6261f;
    padding: 25px 10px;
    width: 100px;
    border-radius: 3px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .goza-event-date .goza-event-day span {
    font-size: 30px;
    color: #fff;
    display: block;
    line-height: 30px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry {
    width: calc(100% - 120px);
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .goza-event-time {
    font-size: 16px;
    color: #d6261f;
    font-weight: bold;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .goza-event-time span {
    text-transform: capitalize;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .title-link .title {
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
    color: #fff;
    margin-bottom: 5px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .title-link:hover .title {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .venue-empty {
    color: #d6261f;
    font-weight: 400;
    font-size: 16px;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .readmore-link {
    width: 170px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    background: #222;
    border-radius: 30px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 70px;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .readmore-link:hover {
    background: #d6261f;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default:hover .event-featured-image-wrap .event-thumbnail .bt-overlay {
    opacity: 1;
}

@media (max-width: 600px) {
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .goza-event-date {
        margin-right: 10px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .goza-event-date .goza-event-day {
        font-size: 14px;
        padding: 20px 10px;
        width: 80px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .goza-event-date .goza-event-day span {
        font-size: 25px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry {
        width: calc(100% - 90px);
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .goza-event-time {
        font-size: 14px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .title-link .title {
        font-size: 18px;
        line-height: 22px;
    }
    #page .wpb_theme_custom_element.wpb_events_listing .item-inner.layout-default .content-entry .venue-empty {
        font-size: 14px;
    }
}

#page .wpb_theme_custom_element.wpb_events_carousel {
    /* wpb_events_slider */
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav {
    padding-right: 55px;
    display: flex;
    justify-content: flex-end;
    vertical-align: middle;
}

@media (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_events_carousel .owl-nav {
        justify-content: flex-start;
    }
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav div {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: 0.5s;
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav div:hover {
    background-color: #d6261f;
    border: 1px solid #d6261f;
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav div:hover i:before {
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav div i:before {
    color: #808080;
    display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    transition: 0.5s;
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav .owl-prev {
    margin-right: 10px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav .owl-prev i.ion-ios-arrow-left:before {
    content: "\f060";
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav .owl-next {
    margin-left: 10px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .owl-nav .owl-next i.ion-ios-arrow-right:before {
    content: "\f061";
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default {
    min-height: 470px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-sub-tt-ev {
    font-size: 21px;
    line-height: 30px;
    color: #7c7c7c;
    letter-spacing: 0px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .title {
    color: #d6261f;
    font-size: 43px;
    line-height: 50px;
    letter-spacing: 0px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 1500px) {
    #page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .title {
        font-size: 39px;
    }
}

@media (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .title {
        font-size: 25px;
        line-height: 31px;
    }
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content a:hover {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt_excerpt-ev {
    font-size: 17px;
    color: #808080;
    margin-bottom: 35px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .extra-meta {
    margin-bottom: 48px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .extra-meta .item-meta {
    font-size: 16px;
    line-height: 25px;
    color: #808080;
    letter-spacing: 0px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .extra-meta .item-meta span.sub-ev {
    font-weight: 700;
    color: #181818;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .extra-meta .bt-location-ev {
    letter-spacing: -0.32px;
    color: #1f1f1f;
    position: relative;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .extra-meta .bt-location-ev>span:before {
    position: absolute;
    content: url(../../../../../../goza-ngo-dark/wp-content/uploads/2019/10/icon-map.png);
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-button-ev {
    width: 100%;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-button-ev a.readmore-btn {
    color: #fff;
    background-color: #2d2e40;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 0px;
    border-radius: 30px;
    padding: 16px 49px;
    transition: 0.5s;
    z-index: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Muli' !important;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-button-ev a.readmore-btn:before {
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent transparent transparent #d6261f;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-button-ev a.readmore-btn:after {
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent #d6261f transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
    z-index: -1;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-button-ev a.readmore-btn:hover:after {
    border-width: 0 165px 165px 0;
}

#page .wpb_theme_custom_element.wpb_events_carousel .events-carousel-layout-default .entry-content .bt-button-ev a.readmore-btn:hover:before {
    border-width: 165px 0 0 165px;
}

#page .wpb_theme_custom_element.wpb_events_slider {
    margin-bottom: 30px;
    /* wpb_liquid_button */
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default {
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap {
    display: block;
    height: 55vh;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap .event-thumbnail-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap .event-term-list {
    background: #d6261f;
    color: #fff;
    font-size: 11px;
    left: 10px;
    letter-spacing: 2px;
    position: absolute;
    text-transform: uppercase;
    top: 10px;
    z-index: 3;
    padding: 5px 10px;
    line-height: normal;
    border-radius: 100px;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .event-featured-image-wrap .event-term-list a {
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry {
    filter: url('#svg_bleeding_stock');
    position: relative;
    padding: 0 20px 20px 20px;
    width: 450px;
    max-width: 100%;
    margin: 0 auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-align: center;
    z-index: 5;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .circle-overlay {
    background: #fff none repeat scroll 0 0;
    border-radius: 800px;
    height: 1600px;
    left: calc(50% - 800px);
    position: absolute;
    top: -45%;
    width: 1600px;
    z-index: -1;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .title-link {
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .title-link .title {
    text-decoration: underline;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1px;
    overflow: hidden;
    text-overflow: ellipsis;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .event-start-time {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .event-start-time span {
    margin-right: 4px;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .readmore-link {
    border-radius: 50%;
    color: #fff;
    height: 80px;
    left: calc(50% - 40px);
    position: absolute;
    top: 0;
    visibility: hidden;
    opacity: 0;
    background: #fff;
    width: 80px;
    z-index: 6;
    box-shadow: 0px 3px 8px 0px rgba(212, 27, 101, 0.4);
    -webkit-transition: 1.3s cubic-bezier(0.91, 0.27, 0.52, 0.84);
    transition: 1.3s cubic-bezier(0.91, 0.27, 0.52, 0.84);
    transform: scale(1);
    -webkit-transform: scale(1);
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .readmore-link span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default .content-entry .readmore-link:hover {
    background: #bd185a;
}

#page .wpb_theme_custom_element.wpb_events_slider .item .item-inner.layout-default:hover .content-entry .readmore-link {
    top: calc(-100% - 80px);
    visibility: visible;
    opacity: 1;
    background: #d6261f;
    transform: scale(1);
    -webkit-transform: scale(1);
}

#page .wpb_theme_custom_element.wpb_liquid_button {
    /* grid resizable */
}

#page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap {
    display: inline-block;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap svg {
    max-width: 100%;
}

#page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap .liquid-button-text {
    position: absolute;
    left: 50%;
    top: 49%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    max-width: calc(100% - 20px);
    font-size: 25px;
}

#page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap .liquid-button-text p {
    margin: 0;
}

#page .wpb_theme_custom_element.wpb_liquid_button .vc-custom-inner-wrap .liquid-button-text p i.fa {
    font-size: 47px;
    width: 47px;
    height: 47px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable {
    /* pricing table */
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item .grid-item-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item .ui-resizable-handle {
    background: #333;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .background-image-backend {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .background-image-backend:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.1);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 20px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap {
    display: table;
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap>* {
    display: table-cell;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-goal-progress-bar {
    width: 50px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-goal-progress-bar .progressbar__label {
    font-size: 10px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-price-wrap {
    padding-left: 20px;
    color: #fff;
    font-size: 16px;
    text-align: left;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-progress-bar .goal-progress-bar-wrap .give-price-wrap .income {
    font-size: 130%;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    z-index: 4;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content:after {
    background: #fafafa;
    content: "";
    height: 500px;
    left: 50%;
    position: absolute;
    top: -45%;
    transform: translate(-50%, 0%) rotate(-8deg);
    -webkit-transform: translate(-50%, 0%) rotate(-8deg);
    width: 100vw;
    z-index: -1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    transition-delay: 0.1s;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content:before {
    background: rgba(255, 255, 255, 0.9);
    content: "";
    height: 500px;
    left: 50%;
    position: absolute;
    top: 0%;
    transform: translate(-50%, 0%) rotate(10deg);
    -webkit-transform: translate(-50%, 0%) rotate(10deg);
    width: 100vw;
    z-index: -1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content .title-link {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .entry-content .title-link .title {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    color: #222;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: underline;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .readmore-btn {
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
    width: 80px;
    height: 80px;
    background: #fff;
    color: #333;
    border-radius: 50%;
    box-shadow: 0 0 13px -3px rgba(1, 1, 1, 0.2);
    z-index: 6;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .readmore-btn span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner .readmore-btn:hover {
    background: #d6261f;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .background-image-backend:after {
    background: rgba(0, 0, 0, 0.5);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .readmore-btn {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .entry-content:after,
#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .entry-content:before {
    top: 170%;
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-give_forms-default .grid-item-inner:hover .entry-content .title {
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .background-image-backend {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .background-image-backend:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.05);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .product-sale {
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    line-height: normal;
    padding: 2px 9px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 20px;
    z-index: 4;
    background: #d6261f;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 5;
    opacity: 0;
    text-align: center;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .added_to_cart {
    display: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .tooltip {
    white-space: nowrap;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 0 5px;
    background: #fff;
    box-shadow: 0 0 12px -2px rgba(1, 1, 1, 0.3);
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.readmore {
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button {
    transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    transition-delay: 0.05s;
    -webkit-transition-delay: 0.05s;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added>span,
#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading>span {
    opacity: 0;
    visibility: hidden;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added:after,
#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading:after {
    display: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added:before,
#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
    content: "";
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    z-index: 2;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.loading:before {
    content: "";
    animation: add_to_cart_loading_ani 0.5s linear infinite;
    -webkit-animation: add_to_cart_loading_ani 0.5s linear infinite;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added {
    background: #d6261f;
    color: #fff;
    pointer-events: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button.add_to_cart_button.added:before {
    content: "";
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-button .button:hover {
    background: #d6261f;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content {
    position: absolute;
    z-index: 2;
    left: 0%;
    bottom: 0%;
    padding: 15px 20px;
    background: #fafafa;
    width: 100%;
    display: table;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content>* {
    display: table-cell;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .p-price-wrap {
    white-space: nowrap;
    padding-left: 20px;
    font-size: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .p-price-wrap ins {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .title-link {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .entry-content .title-link .title {
    text-decoration: underline;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    display: block;
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .star-rating {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 3;
    font-size: 13px;
    float: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner .star-rating span {
    margin: 0 !important;
    font-size: 13px;
    color: #fab400;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .background-image-backend {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .entry-button {
    visibility: visible;
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .entry-button .button {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-products-default .grid-item-inner:hover .entry-content {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default {
    /* post default */
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .image-item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .zoom-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: #111;
    border-radius: 40px;
    box-shadow: 0 0 23px 3px rgba(1, 1, 1, .2);
    font-size: 30px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .zoom-item:hover {
    background: #bd185a;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner .zoom-item img {
    display: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner:hover .image-item {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-image_gallery-default .grid-item-inner:hover .zoom-item {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .background-image-backend {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .background-image-backend:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.5);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: absolute;
    width: 100%;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    padding: 30px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .post-term-list {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .post-term-list a {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 5px 2px;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .entry-content .title-link .title {
    color: #fff;
    text-decoration: underline;
    font-size: 20px;
    line-height: 25px;
    margin: 0;
    display: block;
    max-width: 100%;
    width: 400px;
    margin: 0 auto;
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .readmore {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    z-index: 4;
    visibility: hidden;
    opacity: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #fff;
    color: #111;
    border-radius: 40px;
    box-shadow: 0 0 23px 3px rgba(1, 1, 1, .2);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner .readmore:hover {
    background: #bd185a;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .background-image-backend {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .background-image-backend:after {
    opacity: 0.8;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .entry-content {
    opacity: 0;
    visibility: hidden;
}

#page .wpb_theme_custom_element.wpb_posts_grid_resizable .vc-custom-inner-wrap .grid-item.item-skin-post-default .grid-item-inner:hover .readmore {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    -webkit-transform: translate(-50%, -50%) scale(1);
}

#page .wpb_theme_custom_element.wpb_pricing_table {
    /* pricing grid system */
    margin-bottom: 30px;
    /* featured_box */
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row {
    margin-left: -30px;
    transition-property: height, width;
    -webkit-transition-property: height, width;
    width: calc(100% + 30px);
    position: relative;
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row>*,
#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row>*:before,
#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row>*:after {
    box-sizing: border-box !important;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row:after {
    content: "";
    display: block;
    clear: both;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-1 {
    width: calc(100% / 1);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-1.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-2 {
    width: calc(100% / 2);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-2.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3 {
    width: calc(100% / 3);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4 {
    width: calc(100% / 4);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5 {
    width: calc(100% / 5);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6 {
    width: calc(100% / 6);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7 {
    width: calc(100% / 7);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8 {
    width: calc(100% / 8);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9 {
    width: calc(100% / 9);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10 {
    width: calc(100% / 10);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11 {
    width: calc(100% / 11);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11.pricing-col-align-middle {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12 {
    width: calc(100% / 12);
    box-sizing: border-box;
    float: left;
    vertical-align: top;
    padding-left: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12.pricing-col-align-middle {
    vertical-align: middle;
}

@media (min-width: 769px) and (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11 {
        width: calc(100% / 2);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12 {
        width: calc(100% / 2);
    }
}

@media (max-width: 768px) {
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-2 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-3 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-4 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-5 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-6 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-7 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-8 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-9 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-10 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-11 {
        width: calc(100%);
    }
    #page .wpb_theme_custom_element.wpb_pricing_table .pricing-row .pricing-col-12 {
        width: calc(100%);
    }
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default {
    margin-bottom: 30px;
    padding: 35px 25px;
    background: #fff;
    text-align: center;
    border: 3px solid #f3f3f3;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-graphic-image {
    margin-bottom: 30px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-graphic-image img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-sub-heading {
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .entry-content {
    margin: 30px 0;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-price {
    font-weight: bold;
    position: relative;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-price:after {
    display: block;
    width: 100%;
    clear: both;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-price .price {
    font-size: 38px;
    line-height: 40px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-price .currency {
    position: absolute;
    top: 0;
    right: 100%;
    font-size: small;
    color: #777;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-price .interval {
    position: absolute;
    bottom: 0;
    left: 100%;
    font-size: small;
    color: #777;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-button {
    display: inline;
    background: #d6261f;
    color: #fff;
    display: inline-block;
    padding: 6px 26px;
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-button.btn-type-rounded {
    border-radius: 4px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-button.btn-type-square {
    border-radius: 0px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-button.btn-type-circle {
    border-radius: 50px;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default .pricing-table-button:hover {
    background: #bd185a;
}

#page .wpb_theme_custom_element.wpb_pricing_table .pricing-table-item .pricing-table-item-inner.pricing-table-layout-default.featured-item-yes {
    border-color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_featured_box {
    margin-bottom: 30px;
    /* base_carousel */
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-center {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-left {
    text-align: left;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-right {
    text-align: right;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-top .icon-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-top .icon-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-top .entry-box-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-top .entry-box-wrap {
    vertical-align: top;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-middle .icon-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-middle .icon-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left.vertical-alignment-middle .entry-box-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right.vertical-alignment-middle .entry-box-wrap {
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left {
    display: table;
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left .icon-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left .entry-box-wrap {
    display: table-cell;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-left .entry-box-wrap {
    padding-left: 20px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right {
    display: table;
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right .icon-wrap,
#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right .entry-box-wrap {
    display: table-cell;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment.alignment-right .entry-box-wrap {
    text-align: right;
    padding-right: 20px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap {
    display: inline-block;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon {
    position: relative;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon.graphic-shape-rounded {
    border-radius: 4px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon.graphic-shape-square {
    border-radius: 0px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon.graphic-shape-circle {
    border-radius: 100%;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-icon ._icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-image {
    text-align: center;
    margin-bottom: 8px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-image img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap {
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
    margin-top: 0;
    line-height: 28px;
    font-size: 22px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-text {
    font-size: 16px;
    line-height: 22px;
}

#page .wpb_theme_custom_element.wpb_featured_box .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-button {
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
    padding: 0 0 5px 0;
    border-bottom: solid 2px;
    font-size: 14px;
    line-height: normal;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_base_carousel {
    margin-bottom: 30px;
    /*review*/
}

#page .wpb_theme_custom_element.wpb_base_review {
    margin-bottom: 30px;
    /* service_box */
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item {
    display: table;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default {
    text-align: center;
    padding-top: 55px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article {
    padding: 30px;
    border-radius: 0px;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article .bt-content {
    display: block;
    padding-bottom: 20px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article .bt-content .bt-excerpt {
    margin-top: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article .bt-content .bt-position {
    font-family: 'Poppins';
    margin-left: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article .bt-info-review .bt-thumb {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article .bt-name-position {
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article .bt-name-position .bt-title {
    position: relative;
    line-height: 24px;
    color: #fff;
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-default article:after {
    content: '\f10e';
    display: block;
    font-family: FontAwesome;
    text-align: center;
    font-size: 50px;
    vertical-align: top;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 {
    text-align: center;
    padding-top: 55px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 0px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-content {
    display: block;
    padding-bottom: 20px;
    padding-top: 35px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-content .bt-excerpt {
    font-size: 18px;
    line-height: 28px;
    color: #222;
    font-family: 'Poppins';
    margin-bottom: 15px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 3;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-content .bt-position {
    font-family: 'Poppins';
    margin-left: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-info-review {
    padding-top: 20px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-info-review .bt-thumb {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    vertical-align: middle;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-name-position {
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-1 article .bt-name-position .bt-title {
    position: relative;
    line-height: 15px;
    color: #0a0a0a;
    display: block;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article {
    position: relative;
    padding: 0 30px;
    border-radius: 0px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-content {
    width: calc(100% - 195px);
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-content .bt-excerpt {
    font-size: 18px;
    line-height: 28px;
    color: #222;
    font-family: 'Poppins';
    margin-bottom: 15px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 3;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-content .bt-excerpt:before {
    font-family: FontAwesome;
    content: "\f10d";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    color: #e1e3e6;
    font-size: 30px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-content .bt-excerpt:after {
    font-family: FontAwesome;
    content: "\f10e";
    display: inline-block;
    padding-left: 3px;
    vertical-align: middle;
    color: #e1e3e6;
    font-size: 30px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-content .bt-position {
    font-family: 'Poppins';
    margin-left: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-info-review {
    width: 170px;
    height: 170px;
    margin-right: 25px;
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-info-review .bt-thumb {
    display: inline-block;
    border-radius: 100%;
    overflow: hidden;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-name-position {
    display: inline-block;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-name-position .bt-title {
    position: relative;
    line-height: 24px;
    color: #0a0a0a;
    display: block;
    font-size: 24px;
}

@media (max-width: 768px) {
    #page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article {
        padding: 0;
        text-align: center;
    }
    #page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-content {
        width: calc(100%);
        display: block;
    }
    #page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-item .item.layout-style-2 article .bt-info-review {
        width: 100px;
        height: 100px;
        margin-right: 0px;
    }
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-dots {
    position: absolute;
    bottom: -40px;
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-dots .owl-dot {
    width: 12px !important;
    height: 12px !important;
    margin: 10px 2px !important;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review .owl-dots .owl-dot.active {
    transform: none;
    -webkit-transform: none;
    background: #d6261f;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.default .owl-dots {
    text-align: center;
    bottom: 20px;
    width: 150px;
    right: 15px;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.default .owl-dots .owl-dot {
    border-radius: 0;
    width: 15px !important;
    height: 5px !important;
    margin: 10px 3px !important;
    background: #000;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.default .owl-dots .owl-dot.active {
    background: #fff;
    height: 7px !important;
}

@media (max-width: 768px) {
    #page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.default .owl-dots {
        text-align: center;
        bottom: -20px;
        width: 100%;
        right: 0;
    }
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.style-1 .owl-nav {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.style-1 .owl-nav>div {
    top: 55px;
    opacity: 0.8;
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.style-1 .owl-nav>div.owl-prev {
    left: calc(50% - 100px);
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.style-1 .owl-nav>div.owl-next {
    left: calc(50% + 50px);
}

#page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.default .owl-nav>div {
    opacity: 1;
}

@media (max-width: 768px) {
    #page .wpb_theme_custom_element.wpb_base_review .owl-carousel.review.review.style-1 .owl-nav {
        display: none;
    }
}

#page .wpb_theme_custom_element.wpb_service_box {
    /* posts_slider_2 */
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default {
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.26);
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default.alignment-left {
    text-align: left;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default.alignment-center {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default.alignment-right {
    text-align: right;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap {
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .icon-wrap {
    display: inline-block;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .icon-wrap .type-icon {
    position: relative;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .icon-wrap .type-icon ._icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .icon-wrap .type-icon ._icon.fa {
    font-family: FontAwesome !important;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .icon-wrap .type-image {
    text-align: center;
    margin-bottom: 8px;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .icon-wrap .type-image img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap .service-box-title {
    margin-top: 0;
    margin-bottom: 0px;
    line-height: 28px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .entry-box-wrap-hover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f0ad42;
    padding: 0 20px;
    top: 0;
    visibility: hidden;
    opacity: 0;
    left: 0;
    text-decoration: none;
    color: white;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .service-box-title {
    line-height: 28px;
    font-size: 24px;
    font-weight: bold;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default p {
    line-height: 20px;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default .service-button {
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 20px;
    background: #d6261f;
    color: #fff;
    border-radius: 3px;
    font-size: 16px;
    width: 140px;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default:hover .entry-box-wrap {
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.default:hover .entry-box-wrap-hover {
    padding-top: 25px;
    opacity: 1;
    visibility: visible;
    background: #d6261f;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 {
    padding: 60px 30px;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1.alignment-left {
    text-align: left;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1.alignment-center {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1.alignment-right {
    text-align: right;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap {
    width: 100%;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .icon-wrap {
    display: inline-block;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .icon-wrap .type-icon {
    position: relative;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .icon-wrap .type-icon ._icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .icon-wrap .type-icon ._icon.fa {
    font-family: FontAwesome !important;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .icon-wrap .type-image {
    text-align: center;
    margin-bottom: 8px;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .icon-wrap .type-image img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap .service-box-title {
    margin-top: 0;
    margin-bottom: 0px;
    line-height: 28px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .entry-box-wrap-hover {
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.26);
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    top: 0;
    visibility: hidden;
    opacity: 0;
    left: 0;
    text-decoration: none;
    color: white;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .but-donate {
    position: relative;
    top: calc(50% - 45px);
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .but-donate a {
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Poppins';
    background: #d6261f;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    width: 160px;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .but-donate a:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .but-donate a:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
    #page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1 .but-donate a {
        width: 100%;
    }
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1:hover .entry-box-wrap {
    opacity: 0.4;
}

#page .wpb_theme_custom_element.wpb_service_box .vc-custom-inner-wrap .service-box.style-1:hover .entry-box-wrap-hover {
    padding-top: 25px;
    opacity: 1;
    visibility: visible;
}

#page .wpb_theme_custom_element.wpb_progressbar_svg {
    margin-bottom: 30px;
    /* posts_slider_2 */
}

#page .wpb_theme_custom_element.wpb_progressbar_svg.shape-type-line {
    padding-top: 30px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 {
    margin-bottom: 20px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail {
    position: relative;
    text-align: center;
    background: #444;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 85, 85, 0.5);
    z-index: 1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail>img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail .icon-readmore-post-link {
    position: absolute;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    visibility: hidden;
    opacity: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 60px;
    text-align: center;
    background: #fff;
    color: #333;
    z-index: 5;
    box-shadow: 3px 0 10px -2px rgba(1, 1, 1, .3);
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-thumbnail .icon-readmore-post-link:hover {
    background: #d6261f;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    padding: 0 20px 20px 20px;
    width: 100%;
    box-sizing: border-box;
    opacity: 1;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-term-list {
    margin: 20px 0 0 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-term-list a {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image .post-caption .post-title-link .post-title {
    margin: 0;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image:hover .post-thumbnail:after {
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image:hover .post-thumbnail .icon-readmore-post-link {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_blog_image:hover .post-caption {
    visibility: hidden;
    bottom: -20%;
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default {
    cursor: move;
    -webkit-box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    margin: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail {
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #444;
    border-radius: 3px 3px 0 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption {
    position: relative;
    padding: 20px 0 0 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-term-list {
    line-height: 20px;
    color: #d6261f;
    padding: 0 20px;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-term-list a {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-term-list span.edu-date {
    float: right;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-title-link .post-title {
    margin-top: 0;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 30px;
    padding: 0 20px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-excerpt {
    padding: 0 20px;
    margin-top: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* number-of lines */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 28px;
    /* line-height for 1line*/
    height: 52px;
    /* line-height * 3*/
    margin-bottom: 20px;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-author {
    padding: 7px 20px;
    border-top: #eee solid 1px;
    border-bottom: #eee solid 1px;
    color: #a6a6a6;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-author span.edu-date {
    text-transform: uppercase;
    color: #d6261f;
    float: right;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .post-author span.edu-author {
    margin-right: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .readmore-footer {
    padding: 10px 20px;
    background: #d6261f;
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .readmore-footer a.post-more-link {
    color: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default .post-caption .readmore-footer a.post-more-link i {
    margin-left: 4px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default:hover .post-thumbnail:after {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_default:hover .post-thumbnail .post-view-detail {
    visibility: visible;
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-thumbnail {
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #444;
    border-radius: 3px 3px 0 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-caption {
    position: relative;
    padding: 15px 0 20px 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-caption .post-date {
    background: #f6f9fc;
    color: #d6261f;
    border-radius: 30px;
    display: block;
    font-size: 16px;
    vertical-align: middle;
    line-height: 45px;
    top: -22px;
    text-transform: uppercase;
    font-weight: 600;
    height: 45px;
    text-align: center;
    width: 140px;
    right: 30px;
    z-index: 99;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-caption .post-title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-caption .post-title-link .post-title {
    margin-top: 0;
    font-family: 'Poppins';
    font-size: 20px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-caption .post-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* number-of lines */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 28px;
    /* line-height for 1line*/
    max-height: 80px;
    /* line-height * 3*/
    margin-bottom: 15px;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1 .post-caption .post-author {
    margin-top: 10px;
    margin-bottom: 10px;
    font-style: italic;
    color: #999;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1:hover .post-thumbnail:after {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_1:hover .post-thumbnail .post-view-detail {
    visibility: visible;
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 {
    -webkit-box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.09);
    margin: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-thumbnail {
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #444;
    border-radius: 3px 3px 0 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption {
    position: relative;
    padding: 20px 0 20px 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption span.edu-date {
    right: 15px;
    position: absolute;
    width: 80px;
    height: 70px;
    background: #d6261f;
    padding: 15px 5px;
    top: -35px;
    border-radius: 4px;
    z-index: 9;
    color: #fff;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption span.edu-date span {
    font-size: 30px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-term-list {
    line-height: 20px;
    color: #d6261f;
    padding: 0 20px;
    margin-bottom: 10px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-term-list a {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-title-link .post-title {
    margin-top: 0;
    font-family: 'Poppins';
    font-size: 22px;
    line-height: 30px;
    padding: 0 20px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-excerpt {
    padding: 0 20px;
    margin-top: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* number-of lines */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 28px;
    /* line-height for 1line*/
    height: 52px;
    /* line-height * 3*/
    margin-bottom: 15px;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-author {
    padding: 7px 20px;
    border-top: #eee solid 1px;
    border-bottom: #eee solid 1px;
    color: #a6a6a6;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-author span.edu-date {
    text-transform: uppercase;
    color: #d6261f;
    float: right;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption .post-author span.edu-author {
    margin-right: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption a.post-more-link {
    color: #d6261f;
    padding: 0 20px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2 .post-caption a.post-more-link i {
    margin-left: 4px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2:hover .post-thumbnail:after {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_2:hover .post-thumbnail .post-view-detail {
    visibility: visible;
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 {
    -webkit-box-shadow: 0 0 14.5px 0 rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 14.5px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 14.5px 0 rgba(0, 0, 0, 0.09);
    margin: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-thumbnail {
    position: relative;
    text-align: center;
    overflow: hidden;
    background: #444;
    border-radius: 3px 3px 0 0;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-thumbnail:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption {
    position: relative;
    padding: 30px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption span.edu-date {
    color: #666;
    font-size: 14px;
    line-height: 28px;
    margin-right: 30px;
    text-transform: uppercase;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption span.edu-date i.fa {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption span.edu-cmt {
    color: #fff;
    text-align: center;
    width: 35px;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption span.edu-cmt:before {
    position: absolute;
    content: "\f075";
    font-family: FontAwesome;
    color: #d6261f;
    font-size: 35px;
    z-index: -1;
    left: 0px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption .post-title-link {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption .post-title-link .post-title {
    margin-top: 0;
    font-family: 'Poppins';
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption .post-title-link .post-title:hover {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3 .post-caption .post-excerpt {
    font-size: 15px;
    line-height: 24px;
    margin-top: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* number-of lines */
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    /* line-height for 1line*/
    height: 70px;
    /* line-height * 3*/
    margin-bottom: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3:hover .post-thumbnail:after {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_posts_slider_2 .vc-custom-inner-wrap .item .item-inner.posts_slider_2_template_style_3:hover .post-thumbnail .post-view-detail {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
    #page .wpb_theme_custom_element {
        /* posts_list*/
    }
    #page .wpb_theme_custom_element.wpb_posts_slider_2 {
        margin-bottom: 0px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list {
    /* Count Down */
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item {
    display: flex;
    vertical-align: middle;
    align-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item:hover .bt-content-thumbnail-post svg.animated-dashes.inner-dashed-border {
    animation-play-state: running;
}

@media only screen and (max-width: 640px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item {
        display: inline-block;
        width: 100%;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner {
    width: 50%;
    text-align: left;
    margin-bottom: 25px;
}

@media only screen and (max-width: 640px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner {
        width: 100%;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner a:hover {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post {
    display: flex;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post .item-meta {
    font-weight: 700;
    position: relative;
    color: #d6261f;
    font-size: 15px;
    line-height: 25px;
    padding-left: 30px;
    margin-bottom: 0px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post .item-meta:before {
    position: absolute;
    display: inline-block;
    font: normal normal normal 20px/1 FontAwesome;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    color: #dedede;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post .post-date_final {
    width: 170px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post .post-date_final:before {
    content: "\f073";
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post .post-comment_count {
    width: 150px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .bt-meta-post .post-comment_count:before {
    content: "\f075";
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .post-title {
    color: #1c1c1c;
    font-size: 39px;
    line-height: 46px;
    letter-spacing: 0;
    margin: 10px 0px 38px 0px;
}

@media only screen and (max-width: 991x) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .post-title {
        font-size: 35px;
        line-height: 41px;
    }
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .post-title {
        font-size: 30px;
        line-height: 36px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .post-excerpt {
    color: #7e7e7e;
    line-height: 27px;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .post-excerpt {
        font-size: 16px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .readmore-footer {
    margin-top: 55px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .readmore-footer .bt-btn-post {
    background-color: #d6261f;
    border: 1px solid #d6261f;
    border-radius: 0px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.32px;
    text-transform: uppercase;
    padding: 14px 45px;
    position: relative;
    z-index: 8;
    display: inline-block;
    transition: 0.4s;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .readmore-footer .bt-btn-post:hover {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .readmore-footer .bt-btn-post:hover svg.animated-dashes.inner-dashed-border {
    animation-play-state: running;
    stroke: #fff;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .readmore-footer svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .item-inner .readmore-footer svg rect {
    height: 50px;
    width: 158px;
    x: 3px;
    y: 3px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-item-content-post {
    font-family: 'Poppins';
    padding-left: 30px;
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-item-content-post {
        padding-left: 0px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post {
    position: relative;
    box-sizing: border-box;
    height: 500px;
    margin: 0 auto;
}

@media only screen and (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post {
        width: 345px;
        height: 345px;
    }
}

@media only screen and (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post {
        width: 305px;
        height: 305px;
    }
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post {
        width: 290px;
        height: 290px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post .bt-thumbnail-post {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post .bt-thumbnail-post {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post .bt-thumbnail-post {
        width: 270px;
        height: 270px;
    }
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post .bt-thumbnail-post {
        width: 260px;
        height: 260px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    stroke-dashoffset: 10;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
    stroke: #d6261f;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post svg rect {
    width: 450px;
    height: 450px;
    y: 25px;
    x: 60px;
}

@media only screen and (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post svg rect {
        y: 26px;
        x: 10px;
    }
}

@media only screen and (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post svg rect {
        width: 340px;
        height: 340px;
        y: 3px;
        x: 3px;
    }
}

@media only screen and (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post svg rect {
        width: 300px;
        height: 300px;
    }
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post svg rect {
        width: 285px;
        height: 285px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item .bt-content-thumbnail-post:hover svg.animated-dashes.inner-dashed-border {
    animation-play-state: running;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item:nth-child(2) {
    flex-direction: row-reverse;
    border-top: 1px solid #ddd;
    padding-top: 90px;
}

#page .wpb_theme_custom_element.wpb_posts_list .bt-item-post-list .item:nth-child(2) .item-inner .bt-meta-post .item-meta {
    color: #00aeef;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item {
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item {
        display: inline-block;
        width: 100%;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .bt-image-post {
    height: auto;
    position: relative;
    min-height: 450px;
}

@media (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .bt-image-post {
        min-height: 370px;
        padding: 185px 0px;
    }
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .bt-image-post {
        min-height: 280px;
        padding: 140px 0px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner {
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner {
        width: 100%;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .post-title {
    color: #d6261f;
    font-weight: 600;
    margin: 0px 0px 20px 0px;
}

@media (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .post-title {
        font-size: 32px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .post-title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .post-title {
        font-size: 25px;
        line-height: 31px;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .bt-meta-post {
    margin-bottom: 15px;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .bt-meta-post .item-meta {
    color: #d6261f;
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    font-family: Montserrat !important;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .post-excerpt {
    font-size: 17px;
    color: #808080;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .readmore-footer {
    margin-top: 40px;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .readmore-footer a {
    font-size: 13px;
    line-height: 23px;
    background-color: #ebebeb;
    border: none;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 15px 48px;
    overflow: hidden;
    transition: 0.5s;
    z-index: 0;
    position: relative;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .readmore-footer a:before {
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent transparent transparent #d6261f;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .readmore-footer a:after {
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
    border-color: transparent #d6261f transparent transparent;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
    z-index: -1;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .readmore-footer a:hover:before {
    border-width: 165px 0 0 165px;
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner .readmore-footer a:hover:after {
    border-width: 0 165px 165px 0;
}

@media (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner.bt-image-post {
        max-width: 480px;
        min-height: 380px !important;
        padding: 0px 0px !important;
        margin: 0px auto 30px auto;
    }
}

@media (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item .item-inner.bt-image-post {
        max-width: 290px;
        min-height: 230px !important;
    }
}

#page .wpb_theme_custom_element.wpb_posts_list .layout-post-list-style1.bt-item-post-list .item:nth-child(2) {
    border-top: none;
    padding-top: 40px;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl1 #getting-started {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl1 #getting-started>div {
    display: inline-block;
    width: 110px;
    height: 100px;
    text-align: center;
    background: rgba(212, 27, 101, 0.8);
    margin: 5px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    padding-top: 25px;
    border-radius: 3px;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl1 #getting-started>div span {
    display: block;
    font-size: 15px;
    font-weight: 400;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started {
    display: flex;
    width: 70%;
    justify-content: space-between;
    box-sizing: border-box;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started {
        width: 90%;
    }
}

@media only screen and (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started {
        justify-content: inherit;
    }
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started div {
    border: 1px solid #cacaca;
    border-radius: 8px;
    position: relative;
    width: 80px;
    max-height: 80px;
    height: 80px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    justify-items: center;
    vertical-align: middle;
    text-align: center;
    font-size: 26px;
    line-height: 32px;
    color: #00749c;
    letter-spacing: 0;
    font-family: 'Poppins';
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started div {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started div {
        margin-right: 10px;
        min-width: 58px;
    }
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started div:after {
    position: absolute;
    content: " ";
    width: 100%;
    height: 8px;
    border-bottom: 1px solid #cacaca;
    box-sizing: border-box;
    border-radius: 8px;
    left: 0px;
    bottom: 3px;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl2 #getting-started div span {
    font-family: 'Poppins';
    color: #838383;
    font-size: 12px;
    line-height: 28px;
    border-bottom: 1px solid #cacaca;
    margin: -12px 0px 5px 0px;
    padding: 0px;
    max-height: 28px;
    min-height: 28px;
    height: 25px;
    letter-spacing: 0.64px;
    box-sizing: border-box;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl3 #getting-started {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl3 #getting-started>div {
    display: inline-block;
    width: 110px;
    height: 100px;
    text-align: center;
    margin: 5px;
    color: #fff;
    font-size: 44px;
    font-weight: 900;
    line-height: 55px;
}

#page .wpb_theme_custom_element.wpb_count_down .layout-tpl3 #getting-started>div span {
    display: block;
    font-size: 18px;
    font-weight: 400;
}

#page .wpb_theme_custom_element.wpb_video_lightbox {
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_video_lightbox .icon-box-wrap {
    margin-left: -20px;
    position: relative;
    text-align: left;
    display: inline-block;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 55px 20px 30px;
    max-width: 300px;
    border-radius: 2px;
    vertical-align: middle;
}

#page .wpb_theme_custom_element.wpb_video_lightbox .icon-box-wrap h4.icon-box-title {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 24px;
}

#page .wpb_theme_custom_element.wpb_video_lightbox .icon-box-wrap .icon-box-text {
    line-height: 20px;
}

#page .wpb_theme_custom_element.wpb_video_lightbox .icon-box-wrap .liquid-icon-text {
    display: inline-block;
    vertical-align: middle;
    right: -35px;
    top: calc(50% - 35px);
    width: 70px;
    position: absolute;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
}

#page .wpb_theme_custom_element.wpb_video_lightbox .icon-box-wrap .liquid-icon-text a.liquid-icon-link i {
    font-size: 55px;
    line-height: 70px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default {
    margin-bottom: 60px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .2);
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .featured-image {
    position: relative;
    overflow: hidden;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .featured-image img {
    width: 100%;
    border-radius: 0px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .featured-image:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .featured-image:hover:before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content {
    padding: 30px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content .form-category {
    display: inline-block;
    background: #f1f1f1;
    padding: 5px 20px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content a {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content a h4.title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 23px;
    margin-top: 20px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content a:hover h4.title {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content .extra-meta .meta-author {
    text-transform: capitalize;
    font-weight: bold;
    font-size: 13px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content .extra-meta .give-price-wrap {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content .extra-meta .give-price-wrap sup {
    top: -0.3em;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .entry-content .extra-meta .give-price-wrap span {
    font-size: 13px;
    text-transform: uppercase;
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .give-goal-progress-wrap {
    position: relative;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .give-goal-progress-wrap .form-percent {
    position: absolute;
    font-size: 12px;
    padding: 0px 5px;
    color: #fff;
    line-height: 20px;
    font-family: 'Poppins';
    margin-top: 6px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-default .give-goal-progress-wrap .form-percent span.bt-arrow {
    top: -4px;
    left: 0;
    border-right: 7px solid #f3f3f3;
    border-bottom: 4px solid transparent;
    position: absolute;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 {
    padding-bottom: 40px;
    min-height: 572px;
    background-color: #fff;
    margin-bottom: 30px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .featured-image {
    min-height: 290px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .form-category-style1 {
    position: absolute;
    top: 30px;
    left: 35px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .form-category-style1 a {
    color: #fff;
    font-size: 13px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 27px;
    border-radius: 3px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .form-category-style1 a:hover {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content {
    padding: 30px 30px 0px 30px;
    background-color: #fff;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content h4.title.bt-title-style1 {
    color: #212121;
    font-size: 21px;
    line-height: 30px;
    letter-spacing: 0;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content .extra-meta.bt-extra-meta-style1 {
    margin-top: 35px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content .extra-meta.bt-extra-meta-style1 .give-price-wrap p {
    font-family: 'Poppins' !important;
    font-size: 31px;
    line-height: 38px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content .extra-meta.bt-extra-meta-style1 .give-price-wrap sub {
    top: -0.65em;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content .extra-meta.bt-extra-meta-style1 .give-price-wrap span {
    color: #383838;
    font-family: 'Poppins';
    font-weight: 700;
    margin-left: 15px;
}

@media screen and (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .entry-content .extra-meta.bt-extra-meta-style1 .give-price-wrap span {
        margin-left: 10px;
    }
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .give-goal-progress-wrap .give-goal-progress-bar svg {
    max-height: 23px;
    height: 23px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .give-goal-progress-wrap .form-percent.form-percent-style1 {
    margin-top: 10px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style1 .give-goal-progress-wrap .form-percent.form-percent-style1 span.bt-arrow {
    top: -6px;
    right: 2px;
    border-right: 4px solid #fff;
    border-left: 4px solid #fff;
    border-bottom: 6px solid transparent;
    left: initial;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 {
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, .2);
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image:hover:before {
    opacity: 1;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image:hover a.dona-link {
    opacity: 1;
    z-index: 3;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image .form-category {
    display: inline-block;
    background: #fff;
    padding: 5px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 3px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image a.dona-link {
    text-transform: uppercase;
    font-weight: 700;
    padding: 0px 30px;
    background: #fff;
    display: inline-block;
    border-radius: 30px;
    font-size: 13px;
    height: 46px;
    line-height: 42px;
    position: absolute;
    left: calc(50% - 77px);
    top: calc(50% - 23px);
    opacity: 0;
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .featured-image a.dona-link:hover {
    background: transparent;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .entry-content {
    padding: 30px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .entry-content a {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .entry-content a h4.title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 0px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .entry-content a:hover h4.title {
    color: #d6261f;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .entry-content .extra-meta .give-price-wrap {
    font-size: 35px;
    font-weight: bold;
    margin-top: 20px;
    line-height: 35px;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .entry-content .extra-meta .give-price-wrap span {
    font-size: 15px;
    color: #333;
    display: block;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .give-goal-progress-wrap {
    position: relative;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style2 .give-goal-progress-wrap .form-percent {
    position: absolute;
    font-size: 15px;
    color: #fff;
    line-height: 20px;
    font-family: 'Poppins';
    margin-top: -23px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 {
    background-color: #fff;
    border-radius: 0px 0px 5px 5px;
    min-height: 458px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 {
        min-height: auto;
    }
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .featured-image {
    padding: 120px 0px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content {
    padding: 30px;
    display: flex;
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content {
        display: inline-block;
    }
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-left {
    width: 70%;
}

@media (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-left {
        width: 65%;
    }
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-left {
        width: 100%;
    }
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-left .title-link:hover {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-left .title-link .bt-title-style3 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #303030;
    min-height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-left .bt-post-excerpt {
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.16px;
    color: #808080;
    font-family: 'Poppins';
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right {
    width: 30%;
    margin-top: -75px;
}

@media (max-width: 1199px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right {
        width: 35%;
        margin-top: -45px;
    }
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .extra-meta .give-price-wrap {
        display: flex;
        vertical-align: bottom;
    }
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .extra-meta .give-price-wrap .bt-tt-raised {
    color: #191919;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .extra-meta .give-price-wrap .bt-price-give {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    font-family: 'Poppins' !important;
    margin: 15px 0px 20px 0px;
}

@media (max-width: 991px) {
    #page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .extra-meta .give-price-wrap .bt-price-give {
        margin: -9px 0px 20px 10px;
    }
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .extra-meta .give-price-wrap .bt-price-give span {
    font-weight: 400;
    margin-right: 5px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link {
    font-size: 11px;
    line-height: 22px;
    font-weight: 700;
    padding: 11px 30px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.5s;
    z-index: 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:before,
#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:after {
    content: '';
    width: 0;
    height: 0;
    -webkit-transform: rotate(360deg);
    border-style: solid;
    border-width: 0 0 0 0;
    position: absolute;
    z-index: -1;
    transition: 0.5s;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:before {
    bottom: 0;
    left: 0;
    border-color: transparent transparent transparent #dcdcdc;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:after {
    top: 0;
    right: 0;
    border-color: transparent #dcdcdc transparent transparent;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:hover {
    text-decoration: none;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:hover:before {
    border-width: 165px 0 0 165px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .entry-content .entry-content-right .dona-link:hover:after {
    border-width: 0 165px 165px 0;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .give-goal-progress-wrap {
    position: relative;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .give-goal-progress-wrap svg {
    border-radius: 0px 0px 5px 5px;
    max-height: 28px;
}

#page .wpb_theme_custom_element.wpb_give_forms_grid .give-grid .give-forms-grid-layout-style3 .give-goal-progress-wrap .form-percent {
    color: #fff;
    font-size: 15px;
}

.vc_user_item.default {
    padding: 10px;
    position: relative;
}

.vc_user_item.default .vc_user_item_avatar {
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.vc_user_item.default .vc_user_item_avatar img {
    width: 100%;
}

.vc_user_item.default .vc_user_item_content {
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    background: #fff;
    position: absolute;
    width: calc(100% - 20px);
    bottom: 9px;
    padding: 20px 10px 10px 10px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_name a {
    color: #222;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_name a:hover {
    color: #d6261f;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_class {
    font-size: 14px;
    color: #d6261f;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_socials {
    margin-top: 10px;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap {
    padding: 0;
    text-align: center;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap li.vc_user_item_social {
    display: inline-block;
    margin: 1px;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap li.vc_user_item_social a {
    width: 37px;
    height: 37px;
    text-align: center;
    line-height: 37px;
    border-radius: 50%;
    background: #e5e5e5;
    display: inline-block;
    color: #525252;
}

.vc_user_item.default .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap li.vc_user_item_social a:hover {
    background: #d6261f;
    color: #fff;
}

.vc_user_item.default:hover .vc_user_item_avatar {
    position: relative;
}

.vc_user_item.default:hover .vc_user_item_avatar a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    opacity: 1;
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.vc_user_item.style-1 {
    padding: 10px;
    position: relative;
    /* remove border gray map element */
}

.vc_user_item.style-1 .vc_user_item_avatar {
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.vc_user_item.style-1 .vc_user_item_avatar img {
    width: 100%;
}

.vc_user_item.style-1 .vc_user_item_content {
    border-radius: 0 0 4px 4px;
    bottom: 9px;
    padding: 20px 10px 10px 10px;
    text-align: center;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_name a {
    color: #222;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_name a:hover {
    color: #d6261f;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_class {
    font-size: 14px;
    color: #d6261f;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_socials {
    margin-top: 10px;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap {
    padding: 0;
    text-align: center;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap li.vc_user_item_social {
    display: inline-block;
    margin: 1px;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap li.vc_user_item_social a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 43px;
    border-radius: 5px;
    background: #e5e5e5;
    display: inline-block;
    color: #525252;
}

.vc_user_item.style-1 .vc_user_item_content .vc_user_item_socials ul.vc_user_item_socials_wrap li.vc_user_item_social a:hover {
    background: #d6261f;
    color: #fff;
}

.vc_user_item.style-1:hover .vc_user_item_avatar {
    position: relative;
}

.vc_user_item.style-1:hover .vc_user_item_avatar a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
    opacity: 1;
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

#page {
    /* Start fix vc row - gap */
}

#page .wpb_gmaps_widget .wpb_wrapper {
    padding: 0;
}

#page .vc_row.vc_column-gap-1 {
    margin-left: -15.5px;
    margin-right: -15.5px;
}

#page .vc_row.vc_column-gap-1>.vc_column_container {
    padding: 0 0.5px;
}

#page .vc_row.vc_column-gap-2 {
    margin-left: -16px;
    margin-right: -16px;
}

#page .vc_row.vc_column-gap-2>.vc_column_container {
    padding: 0 1px;
}

#page .vc_row.vc_column-gap-3 {
    margin-left: -16.5px;
    margin-right: -16.5px;
}

#page .vc_row.vc_column-gap-3>.vc_column_container {
    padding: 0 1.5px;
}

#page .vc_row.vc_column-gap-4 {
    margin-left: -17px;
    margin-right: -17px;
}

#page .vc_row.vc_column-gap-4>.vc_column_container {
    padding: 0 2px;
}

#page .vc_row.vc_column-gap-5 {
    margin-left: -17.5px;
    margin-right: -17.5px;
}

#page .vc_row.vc_column-gap-5>.vc_column_container {
    padding: 0 2.5px;
}

#page .vc_row.vc_column-gap-10 {
    margin-left: -20px;
    margin-right: -20px;
}

#page .vc_row.vc_column-gap-10>.vc_column_container {
    padding: 0 5px;
}

#page .vc_row.vc_column-gap-15 {
    margin-left: -22.5px;
    margin-right: -22.5px;
}

#page .vc_row.vc_column-gap-15>.vc_column_container {
    padding: 0 7.5px;
}

#page .vc_row.vc_column-gap-20 {
    margin-left: -25px;
    margin-right: -25px;
}

#page .vc_row.vc_column-gap-20>.vc_column_container {
    padding: 0 10px;
}

#page .vc_row.vc_column-gap-25 {
    margin-left: -27.5px;
    margin-right: -27.5px;
}

#page .vc_row.vc_column-gap-25>.vc_column_container {
    padding: 0 12.5px;
}

#page .vc_row.vc_column-gap-30 {
    margin-left: -30px;
    margin-right: -30px;
}

#page .vc_row.vc_column-gap-30>.vc_column_container {
    padding: 0 15px;
}

#page .vc_row.vc_column-gap-35 {
    margin-left: -32.5px;
    margin-right: -32.5px;
}

#page .vc_row.vc_column-gap-35>.vc_column_container {
    padding: 0 17.5px;
}

body.compose-mode #page .vc_row.vc_column-gap-1 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-2 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-3 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-4 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-5 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-10 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-15 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-20 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-25 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-30 {
    padding: 0 15px;
}

body.compose-mode #page .vc_row.vc_column-gap-35 {
    padding: 0 15px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-1 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-2 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-3 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-4 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-5 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-10 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-15 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-20 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-25 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-30 {
    padding: 0 30px;
}

body:not(.compose-mode) #page .vc_row.vc_column-gap-35 {
    padding: 0 30px;
}

.bt-blog-template-element.default .bt-item {
    font-size: 0;
    letter-spacing: 0;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .bt-blog-template-element.default .bt-item.bt-first .bt-thumb {
        width: 100%;
        padding-bottom: 400px;
    }
    .bt-blog-template-element.default .bt-item.bt-first .bt-content {
        width: calc(100%);
        padding-left: 0;
        margin-top: 30px;
    }
    .bt-blog-template-element.default .bt-item.bt-first .bt-content .bt-excerpt {
        display: none;
    }
}

.bt-blog-template-element.default .bt-item .bt-thumb {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 180px;
    padding-bottom: 150px;
    overflow: hidden;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.bt-blog-template-element.default .bt-item .bt-thumb:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.bt-blog-template-element.default .bt-item .bt-thumb .bt-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.bt-blog-template-element.default .bt-item .bt-content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 180px);
    padding-left: 30px;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-term {
    font-size: 16px;
    line-height: 26px;
    color: #333;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-term a {
    color: #d6261f;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0;
    color: #333;
    margin-top: 5px;
    margin-bottom: 10px;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-title a {
    color: inherit;
    text-decoration: none;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-title a:hover {
    color: #d6261f;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-excerpt {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-meta {
    margin: 0;
    padding: 0;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-meta li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    color: #333;
    font-weight: bold;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-meta li:not(:last-child):after {
    content: "-";
    display: inline-block;
    margin: 0 5px;
}

.bt-blog-template-element.default .bt-item .bt-content .bt-meta li a {
    color: #d6261f;
    text-transform: uppercase;
}

.bt-blog-template-element.default .bt-item:hover .bt-thumb:before {
    -webkit-animation: shine 0.75s;
    -ms-animation: shine 0.75s;
    animation: shine 0.75s;
}

@media (max-width: 480.02px) {
    .bt-blog-template-element.default .bt-item .bt-thumb {
        width: 100%;
        margin-bottom: 15px;
    }
    .bt-blog-template-element.default .bt-item .bt-content {
        width: 100%;
        padding-left: 0;
    }
}

.bt-blog-template-element {
    /* End fix vc row - gap  */
}

.style-ninja-form-inner-custom-ui * {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.style-ninja-form-inner-custom-ui .wpb_wrapper {
    width: 100%;
}

.style-ninja-form-inner-custom-ui label {
    font-weight: 300 !important;
}

.style-ninja-form-inner-custom-ui .ninja-forms-field {
    border-width: 0 0 1px 0 !important;
    background: transparent;
}

.style-ninja-form-inner-custom-ui textarea.ninja-forms-field {
    height: 100px;
}

.style-ninja-form-inner-custom-ui input[type="button"] {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-top: 30px;
}

#page #bbpress-forums {
    margin-top: 50px;
    position: relative;
}

#page #bbpress-forums .bbp-breadcrumb {
    display: none;
}

#page #bbpress-forums .bbp-search-form {
    margin-top: 20px;
}

#page #bbpress-forums .bbp-search-form form#bbp-search-form input#bbp_search_submit {
    position: absolute;
    top: 23px;
    right: 20px;
    width: 50px;
    opacity: 0;
    z-index: 9;
}

#page #bbpress-forums .bbp-search-form form#bbp-search-form input#bbp_search {
    border-radius: 30px !important;
    width: 320px !important;
    height: 50px;
    line-height: 50px;
    padding-left: 15px;
}

#page #bbpress-forums .bbp-search-form form#bbp-search-form:after {
    content: "\f002";
    font-family: FontAwesome;
    font-size: 18px;
    position: absolute;
    top: 31px;
    right: 35px;
}

#page #bbpress-forums .bbp-pagination {
    margin-top: 20px;
    display: inline-block;
    width: auto;
    line-height: 50px;
}

#page #bbpress-forums .bbp-pagination:last-child {
    display: none;
}

@media (max-width: 767px) {
    #page #bbpress-forums .bbp-pagination {
        display: none;
    }
}

#page #bbpress-forums ul.bbp-forums li.bbp-body ul li.bbp-forum-freshness>a {
    font-size: 14px;
    color: #333;
}

#page #bbpress-forums ul.bbp-forums li.bbp-body ul li.bbp-forum-freshness .bbp-topic-meta img {
    width: 40px !important;
}

#page #bbpress-forums ul.bbp-forums li.bbp-body ul li.bbp-forum-freshness .bbp-topic-meta a.bbp-author-name {
    font-size: 14px;
    font-weight: bold;
}

#page #bbpress-forums ul.bbp-forums li.bbp-body ul li.bbp-forum-topic-count {
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
}

#page #bbpress-forums ul.bbp-forums li.bbp-body ul li.bbp-forum-reply-count {
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
}

#page #bbpress-forums ul.bbp-forums li.bbp-body ul li.bbp-forum-info a.bbp-forum-title {
    font-size: 20px;
    color: #333;
}

#page #bbpress-forums ul.bbp-forums li.bbp-footer {
    padding: 5px 20px;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-freshness>a {
    font-size: 14px;
    color: #333;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-freshness .bbp-topic-meta img {
    width: 40px !important;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-freshness .bbp-topic-meta a.bbp-author-name {
    font-size: 14px;
    font-weight: bold;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-reply-count {
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-voice-count {
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-title a.bbp-topic-permalink {
    font-size: 20px;
    color: #333;
    font-weight: bold;
}

#page #bbpress-forums ul.bbp-topics li.bbp-body ul li.bbp-topic-title .bbp-topic-meta .bbp-topic-started-by a.bbp-author-avatar {
    display: none;
}

#page #bbpress-forums ul.bbp-topics li.bbp-footer {
    padding: 5px 20px;
}

#page #bbpress-forums a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

#page #bbpress-forums a.subscription-toggle {
    margin-left: 5px;
}

#page #bbpress-forums input[type="text"],
#page #bbpress-forums input[type="password"],
#page #bbpress-forums input[type="number"],
#page #bbpress-forums input[type="email"],
#page #bbpress-forums input[type="date"],
#page #bbpress-forums input[type="color"],
#page #bbpress-forums input[type="tel"],
#page #bbpress-forums input[type="search"],
#page #bbpress-forums textarea,
#page #bbpress-forums select {
    border-radius: 30px;
    border: 1px solid rgba(53, 53, 53, 0.1);
    padding: 5px 10px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#page #bbpress-forums input[type="text"]:focus,
#page #bbpress-forums input[type="password"]:focus,
#page #bbpress-forums input[type="number"]:focus,
#page #bbpress-forums input[type="email"]:focus,
#page #bbpress-forums input[type="date"]:focus,
#page #bbpress-forums input[type="color"]:focus,
#page #bbpress-forums input[type="tel"]:focus,
#page #bbpress-forums input[type="search"]:focus,
#page #bbpress-forums textarea:focus,
#page #bbpress-forums select:focus {
    border: 1px solid rgba(214, 38, 31, 0.5);
    -webkit-box-shadow: 0px 0px 5px rgba(214, 38, 31, 0.5);
    -moz-box-shadow: 0px 0px 5px rgba(214, 38, 31, 0.5);
    box-shadow: 0px 0px 5px rgba(214, 38, 31, 0.5);
    outline: none;
}

#page #bbpress-forums input[type="submit"],
#page #bbpress-forums button.submit {
    border-radius: 3px;
    border: none;
    background: #d6261f;
    color: #fff;
    padding: 12px 20px;
    vertical-align: top;
    font-size: 13px;
    line-height: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#page #bbpress-forums input[type="submit"]:hover,
#page #bbpress-forums button.submit:hover {
    background: rgba(214, 38, 31, 0.5);
}

#page #bbpress-forums .bbp-pagination .bbp-pagination-links .page-numbers {
    border: none;
    min-width: 30px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
}

#page #bbpress-forums,
#page #bbpress-forums ul.bbp-lead-topic,
#page #bbpress-forums ul.bbp-topics,
#page #bbpress-forums ul.bbp-forums,
#page #bbpress-forums ul.bbp-replies,
#page #bbpress-forums ul.bbp-search-results,
#page #bbpress-forums .bbp-forum-info .bbp-forum-content,
#page #bbpress-forums p.bbp-topic-meta,
#page div.bbp-breadcrumb,
#page div.bbp-topic-tags {
    font-family: 'Arimo';
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    color: #666;
}

#page #bbpress-forums p.bbp-topic-meta img.avatar,
#page #bbpress-forums ul.bbp-reply-revision-log img.avatar,
#page #bbpress-forums ul.bbp-topic-revision-log img.avatar,
#page #bbpress-forums div.bbp-template-notice img.avatar,
#page #bbpress-forums .widget_display_topics img.avatar,
#page #bbpress-forums .widget_display_replies img.avatar {
    margin: 0;
}

#page #bbpress-forums div.bbp-the-content-wrapper div.quicktags-toolbar {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 5px;
    min-height: 26px;
    padding: 5px;
}

#page #bbpress-forums div.bbp-search-form,
#page #bbpress-forums div.bbp-breadcrumb {
    margin-bottom: 20px;
}

#page #bbpress-forums .bbp-forums-list li {
    font-size: 14px;
    line-height: 24px;
}

#page a.bbp-forum-title {
    font-weight: bold;
}

#page #bbpress-forums ul.bbp-lead-topic,
#page #bbpress-forums ul.bbp-topics,
#page #bbpress-forums ul.bbp-forums,
#page #bbpress-forums ul.bbp-replies,
#page #bbpress-forums ul.bbp-search-results {
    border: none;
}

#page #bbpress-forums li.bbp-body ul.forum,
#page #bbpress-forums li.bbp-body ul.topic {
    border-top: none;
}

#page #bbpress-forums div.even,
#page #bbpress-forums ul.even {
    background: #f8f7f7;
}

#page #bbpress-forums fieldset.bbp-form legend {
    border: medium none;
    margin: 0;
    padding: 0 20px;
    width: auto;
}

#page ul.bbp-replies div.bbp-forum-header,
#page ul.bbp-topics div.bbp-forum-header,
#page ul.bbp-forums div.bbp-forum-header,
#page ul.bbp-replies div.bbp-topic-header,
#page ul.bbp-topics div.bbp-topic-header,
#page ul.bbp-forums div.bbp-topic-header,
#page ul.bbp-replies li.bbp-body div.hentry,
#page ul.bbp-topics li.bbp-body div.hentry,
#page ul.bbp-forums li.bbp-body div.hentry,
#page ul.bbp-replies .bbp-body ul.forum,
#page ul.bbp-topics .bbp-body ul.forum,
#page ul.bbp-forums .bbp-body ul.forum,
#page ul.bbp-replies .bbp-body ul.topic,
#page ul.bbp-topics .bbp-body ul.topic,
#page ul.bbp-forums .bbp-body ul.topic,
#page ul.bbp-replies .bbp-footer,
#page ul.bbp-topics .bbp-footer,
#page ul.bbp-forums .bbp-footer {
    padding: 30px 20px;
}

#page ul.bbp-replies div.bbp-reply-header,
#page ul.bbp-topics div.bbp-reply-header,
#page ul.bbp-forums div.bbp-reply-header {
    padding: 20px;
}

#page ul.bbp-replies .bbp-header,
#page ul.bbp-topics .bbp-header,
#page ul.bbp-forums .bbp-header {
    background: #d6261f;
    border: none;
    color: #fff;
    padding: 15px 20px;
    border-radius: 2px 2px 0 0;
}

#page ul.bbp-replies .bbp-body li.bbp-topic-title img,
#page ul.bbp-topics .bbp-body li.bbp-topic-title img,
#page ul.bbp-forums .bbp-body li.bbp-topic-title img {
    margin: 0;
}

#page ul.bbp-replies .bbp-body li.bbp-topic-freshness .bbp-topic-meta .bbp-topic-freshness-author img,
#page ul.bbp-topics .bbp-body li.bbp-topic-freshness .bbp-topic-meta .bbp-topic-freshness-author img,
#page ul.bbp-forums .bbp-body li.bbp-topic-freshness .bbp-topic-meta .bbp-topic-freshness-author img,
#page ul.bbp-replies .bbp-body li.bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author img,
#page ul.bbp-topics .bbp-body li.bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author img,
#page ul.bbp-forums .bbp-body li.bbp-forum-freshness .bbp-topic-meta .bbp-topic-freshness-author img {
    margin: 0;
}

#page ul.bbp-replies .bbp-footer,
#page ul.bbp-topics .bbp-footer,
#page ul.bbp-forums .bbp-footer {
    background: transparent;
}

#page ul.bbp-replies .bbp-header a {
    color: #fff;
}

#page span.bbp-admin-links {
    color: transparent;
}

#page span.bbp-admin-links:after {
    content: "";
    display: block;
    clear: both;
}

#page span.bbp-admin-links a {
    margin-top: 4px;
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    float: left;
    font-size: 11px;
    line-height: 15px;
    padding: 2px 7px;
    text-transform: none;
    margin-right: 5px;
}

#page span.bbp-admin-links a:hover {
    background: rgba(214, 38, 31, 0.5);
}

body.bbpress .fw-title-bar .fw-heading .breadcrumbs-right {
    display: none;
}

body.bbp-user-page #page #bbpress-forums #bbp-user-body ul li.bbp-body .bbp-meta span.bbp-header {
    background: transparent;
    padding: inherit;
    color: inherit;
}

body.bbp-user-page #page #bbpress-forums #bbp-user-body ul li.bbp-body .bbp-meta span.bbp-header a {
    color: #d6261f;
}

body.bbp-user-page #page #bbpress-forums .bbp-pagination {
    width: 100%;
}

body.bbp-user-page #page #bbpress-forums ul.bbp-topics {
    border: 1px solid #eee;
}

body.bbp-user-page #page #bbpress-forums ul.bbp-replies {
    border: 1px solid #eee;
}

@media (max-width: 550px) {
    #bbpress-forums ul li.bbp-header ul li {
        font-size: 12px;
        line-height: inherit;
    }
    #bbpress-forums ul li.bbp-body ul li {
        font-size: 12px !important;
        line-height: inherit !important;
    }
}

.rtb-booking-form fieldset:not(:first-child) {
    margin-top: 30px;
}

.rtb-booking-form legend {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0px;
    color: #333;
    border-bottom: 0 none;
    font-size: 16px;
    padding: 0 0 0 30px !important;
    position: relative;
    margin-bottom: 0;
}

.rtb-booking-form legend:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    border-bottom: 1px solid;
}

.rtb-booking-form input[type="text"],
.rtb-booking-form input[type="email"],
.rtb-booking-form input[type="number"],
.rtb-booking-form input[type="tel"],
.rtb-booking-form input[type="date"],
.rtb-booking-form select,
.rtb-booking-form textarea {
    padding: 9px 10px;
    border-radius: 3px !important;
}

.rtb-booking-form select {
    padding: 10px;
    min-width: 150px;
    height: 44px;
}

.rtb-booking-form input[type="submit"],
.rtb-booking-form button {
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    background: #d6261f;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.rtb-booking-form input[type="submit"]:hover,
.rtb-booking-form button:hover {
    background: #bd185a;
}

.rtb-message p {
    border: 1px solid rgba(1, 1, 1, 0.1);
    font-family: caption;
    font-size: 30px;
    font-style: italic;
    line-height: 34px;
    margin: 0 auto;
    max-width: 650px;
    padding: 30px;
    text-align: center;
}

.booking-form-style-3-cols .rtb-booking-form fieldset {
    position: relative;
    width: calc(100% + 30px);
    margin-left: -30px;
    display: block;
}

.booking-form-style-3-cols .rtb-booking-form fieldset:after {
    content: "";
    display: block;
    clear: both;
}

.booking-form-style-3-cols .rtb-booking-form fieldset select {
    width: 100%;
}

.booking-form-style-3-cols .rtb-booking-form fieldset>legend {
    margin-left: 30px;
}

.booking-form-style-3-cols .rtb-booking-form fieldset>div {
    float: left;
    margin-left: 30px;
    width: calc((100% / 3) - 30px);
}

.booking-form-style-3-cols .rtb-booking-form fieldset .rtb-textarea.message-open {
    width: calc(100% - 30px);
}

@media (max-width: 600px) {
    .booking-form-style-3-cols .rtb-booking-form fieldset {
        width: 100%;
        margin-left: 0;
    }
    .booking-form-style-3-cols .rtb-booking-form fieldset>legend {
        margin-left: 0;
    }
    .booking-form-style-3-cols .rtb-booking-form fieldset>div {
        float: none;
        margin-left: 0;
        width: 100%;
    }
    .booking-form-style-3-cols .rtb-booking-form fieldset .rtb-textarea.message-open {
        width: 100%;
    }
}

.fdm-menu-content {
    margin-bottom: 30px;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-section-header {
    border: none;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-section-header h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0px;
    color: #333;
    font-size: 22px;
    position: relative;
    padding-left: calc(80px + 30px);
    margin-bottom: 40px;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-section-header h3:before {
    content: "";
    position: absolute;
    left: 80px;
    top: 50%;
    width: 20px;
    border-bottom: solid 1px;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-image {
    border-radius: 50%;
    width: 80px;
    border: solid 3px #fff;
    box-shadow: 0 0 9px -3px rgba(0, 0, 0, .3);
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel p.fdm-item-title {
    padding-left: calc(80px + 30px);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: #333;
    text-decoration: underline;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content {
    padding-left: calc(80px + 30px);
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content p {
    padding: 0 130px 0 0;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-price-wrapper {
    width: 130px;
}

.fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-price-wrapper .fdm-item-price {
    font-family: 'Poppins';
    font-weight: bold;
    display: inline-block;
    color: #d6261f;
    font-size: 20px;
}

@media (max-width: 450px) {
    .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-image {
        margin-bottom: 20px;
    }
    .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-title,
    .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-content,
    .fdm-custom-class-style-custom_thumb_round_theme .fdm-item .fdm-item-panel .fdm-item-content>p {
        padding: 0 !important;
    }
}

.fdm-custom-class-style-custom_theme .fdm-section-header {
    border: none;
}

.fdm-custom-class-style-custom_theme .fdm-section-header h3 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0px;
    color: #333;
    font-size: 22px;
    position: relative;
    padding-left: 30px;
}

.fdm-custom-class-style-custom_theme .fdm-section-header h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    border-bottom: solid 1px;
}

.fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-image {
    width: 22%;
}

.fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel p.fdm-item-title {
    padding-left: calc(22% + 30px);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0px;
    color: #333;
}

.fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content {
    padding-left: calc(22% + 30px);
}

.fdm-custom-class-style-custom_theme .fdm-item.fdm-item-has-image .fdm-item-panel .fdm-item-content p {
    padding: 0 20% 0 0;
}

.fdm-custom-class-style-custom_theme .fdm-item .fdm-item-price {
    display: inline-block;
    line-height: normal;
    padding: 5px 13px;
    background: #d6261f;
    color: #fff;
    border-radius: 20px;
    line-height: normal;
    font-size: 13px;
}

*[data-bears-masonryhybrid] .save-grid-js {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 20;
    border: none;
    background: #88c000;
    color: #fff;
    line-height: normal;
    border-radius: 3px;
    padding: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

*[data-bears-masonryhybrid] .save-grid-js i {
    margin-right: 5px;
    display: none;
}

*[data-bears-masonryhybrid] .save-grid-js:hover {
    background: #76a700;
    opacity: 1 !important;
}

*[data-bears-masonryhybrid] .save-grid-js.ajax-loading {
    visibility: visible;
    opacity: 1;
    pointer-events: none;
}

*[data-bears-masonryhybrid] .save-grid-js.ajax-loading i {
    display: inline-block;
}

*[data-bears-masonryhybrid]:hover .save-grid-js {
    visibility: visible;
    opacity: 0.7;
}

*[data-bears-masonryhybrid] .screen-size {
    z-index: 9;
    background: #fff;
    border-radius: 3px;
    transform: translateY(-18px);
    -webkit-transform: translateY(-18px);
    line-height: normal;
}

*[data-bears-masonryhybrid] .ui-resizable-se {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: #d9d9d9;
    cursor: se-resize;
}

*[data-bears-masonryhybrid] .ui-resizable-se:after {
    content: "\f065";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    font-size: 11px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
}

.carousel-slider .owl-dots .owl-dot>span {
    border-radius: 50px;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .onsale {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 1px;
    width: auto;
    height: auto;
    padding: 2px 3px;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating {
    position: absolute;
    top: 10px;
    right: 8px;
    z-index: 3;
    margin: 0;
    width: 4em;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating:before {
    font-size: 12px;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating>* {
    padding: 0;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating .rating {
    color: transparent;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .star-rating>span:before {
    font-size: 12px;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .price {
    margin-top: 0;
    margin-left: 20px;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .price del {
    opacity: 0.8;
    margin-right: 5px;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .price ins {
    text-decoration: none;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product a {
    text-decoration: none;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product h3 {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 24px;
    padding-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product h3:hover {
    opacity: 0.8;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .button,
.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .added_to_cart {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 1px;
    padding: 14px 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .button:hover,
.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .added_to_cart:hover {
    opacity: 0.8;
}

.carousel-slider[data-slide-type="product-carousel"] .owl-item .product .add_to_cart_button.added {
    display: none;
}

.carousel-slider__product-modal .images .wp-post-image {
    max-width: 100%;
    height: auto;
}

.carousel-slider__product-modal .images .onsale {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 1px;
    width: auto;
    height: auto;
    padding: 2px 3px;
    background: #d6261f;
    color: #fff;
}

.carousel-slider__product-modal .entry-summary {
    padding: 0 30px;
}

.carousel-slider__product-modal .entry-summary .product_title {
    font-size: 42px;
    letter-spacing: -3px;
    margin-top: 0;
    line-height: 45px;
}

.carousel-slider__product-modal .entry-summary .price {
    margin: 10px 0;
}

.carousel-slider__product-modal .entry-summary .price del {
    opacity: 0.8;
    margin-right: 5px;
}

.carousel-slider__product-modal .entry-summary .price ins {
    text-decoration: none;
}

.carousel-slider__product-modal .entry-summary .button {
    border-radius: 1px !important;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    padding: 14px 20px !important;
    background: #d6261f;
}

.aboutus-html-style-1 a.bt-btn,
.bearsthemes-button-element {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.aboutus-html-style-1 a.bt-btn.bt-btn-default,
.bearsthemes-button-element.bt-btn-default {
    background: #d6261f;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #ebebeb;
    letter-spacing: 0px;
    font-style: normal;
}

.aboutus-html-style-1 a.bt-btn.bt-btn-default:hover,
.bearsthemes-button-element.bt-btn-default:hover {
    background: #d6261f;
    color: #fff;
    text-decoration: none;
}

.aboutus-html-style-1 a.bt-btn.bt-btn-border-line,
.bearsthemes-button-element.bt-btn-border-line {
    border: solid 2px;
    border-color: #d6261f;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
}

.aboutus-html-style-1 a.bt-btn.bt-btn-border-line:hover,
.bearsthemes-button-element.bt-btn-border-line:hover {
    border-color: #d6261f;
    background: #d6261f;
    color: #fff;
    text-decoration: none;
}

.bt-row {
    margin-left: -26px;
    transition-property: height, width;
    -webkit-transition-property: height, width;
    width: calc(100% + 30px);
    position: relative;
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
    /* responsive */
}

.bt-row *,
.bt-row *:before,
.bt-row *:after {
    box-sizing: border-box !important;
}

.bt-row:after {
    content: "";
    display: block;
    clear: both;
}

.bt-row .bt-col-1 {
    width: calc(100% / 1);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-1.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-2 {
    width: calc(100% / 2);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-2.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-3 {
    width: calc(100% / 3);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-3.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-4 {
    width: calc(100% / 4);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-4.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-5 {
    width: calc(100% / 5);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-5.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-6 {
    width: calc(100% / 6);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-6.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-7 {
    width: calc(100% / 7);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-7.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-8 {
    width: calc(100% / 8);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-8.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-9 {
    width: calc(100% / 9);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-9.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-10 {
    width: calc(100% / 10);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-10.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-11 {
    width: calc(100% / 11);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-11.bt-col-align-middle {
    vertical-align: middle;
}

.bt-row .bt-col-12 {
    width: calc(100% / 12);
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding-left: 30px;
}

.bt-row .bt-col-12.bt-col-align-middle {
    vertical-align: middle;
}

@media (min-width: 769px) and (max-width: 991px) {
    .bt-row .bt-col-3 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-4 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-5 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-6 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-7 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-8 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-9 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-10 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-11 {
        width: calc(100% / 2);
    }
    .bt-row .bt-col-12 {
        width: calc(100% / 2);
    }
}

@media (max-width: 768px) {
    .bt-row .bt-col-2 {
        width: calc(100%);
    }
    .bt-row .bt-col-3 {
        width: calc(100%);
    }
    .bt-row .bt-col-4 {
        width: calc(100%);
    }
    .bt-row .bt-col-5 {
        width: calc(100%);
    }
    .bt-row .bt-col-6 {
        width: calc(100%);
    }
    .bt-row .bt-col-7 {
        width: calc(100%);
    }
    .bt-row .bt-col-8 {
        width: calc(100%);
    }
    .bt-row .bt-col-9 {
        width: calc(100%);
    }
    .bt-row .bt-col-10 {
        width: calc(100%);
    }
    .bt-row .bt-col-11 {
        width: calc(100%);
    }
    .bt-row .bt-col-12 {
        width: calc(100%);
    }
}

section {
    position: relative;
}

.container,
.container-fluid {
    z-index: 10;
}

.bt-inner,
.bt-col-inner {
    position: relative;
}

.bt-main-row-overlay {
    bottom: 0;
    left: 0;
    position: absolute !important;
    right: 0;
    top: 0;
    z-index: 2;
}

.custom-shape .custom-shape-wrap {
    box-sizing: border-box;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 9;
}

.custom-shape .custom-shape-wrap .shape-container {
    width: 100%;
    line-height: 0;
}

.custom-shape .custom-shape-wrap[class*="custom-shape-bottom-"] {
    bottom: 0;
}

.custom-shape .custom-shape-wrap[class*="custom-shape-top-"] {
    top: 0;
    /***************
 * LazyLoading
 ***************/
}

.lazyload,
.lazyloading {
    position: absolute;
    background-position: center center;
    background-size: 24px;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmYiPiAgICA8ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMSAxKSIgc3Ryb2tlLXdpZHRoPSIyIj4gICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuNSIgY3g9IjE4IiBjeT0iMTgiIHI9IjE4Ii8+ICAgICAgICAgICAgPHBhdGggZD0iTTM2IDE4YzAtOS45NC04LjA2LTE4LTE4LTE4Ij4gICAgICAgICAgICAgICAgPGFuaW1hdGVUcmFuc2Zvcm0gICAgICAgICAgICAgICAgICAgIGF0dHJpYnV0ZU5hbWU9InRyYW5zZm9ybSIgICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIgICAgICAgICAgICAgICAgICAgIGZyb209IjAgMTggMTgiICAgICAgICAgICAgICAgICAgICB0bz0iMzYwIDE4IDE4IiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIgICAgICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+ICAgICAgICAgICAgPC9wYXRoPiAgICAgICAgPC9nPiAgICA8L2c+PC9zdmc+);
    /***************
 * Genaral Style
 ***************/
}

.bt-vertical-align-middle {
    display: inline-block;
    vertical-align: middle;
}

.sidebar-left .bt-content-area {
    float: right;
    /********************
* Custom logo Element
*********************/
}

#bt-woo-content .woocommerce-result-count {
    padding: 10px 0;
    color: #888;
    font-family: caption;
    font-style: italic;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 5px;
}

#bt-woo-content form.woocommerce-ordering {
    margin: 0px 0 30px 0;
    overflow: hidden;
    background: #f8f7f7;
    position: relative;
    border-radius: 3px;
    padding: 0 5px;
}

#bt-woo-content form.woocommerce-ordering:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 5px;
    height: 5px;
    border: solid #333;
    border-width: 1px 1px 0 0;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
    -webkit-transform: translateY(-50%) rotate(135deg);
}

#bt-woo-content form.woocommerce-ordering .orderby {
    position: relative;
    z-index: 3;
    background: transparent;
    padding: 10px;
    width: calc(100% + 20px);
    max-width: none;
    border: none;
    outline: none;
    color: #888;
    font-family: 'Arimo';
    font-style: italic;
    box-shadow: none !important;
    outline: none !important;
}

@media (max-width: 600px) {
    #bt-woo-content .woocommerce-result-count,
    #bt-woo-content form.woocommerce-ordering {
        float: none;
    }
    #bt-woo-content form.woocommerce-ordering {
        max-width: 300px;
    }
}

.woocommerce .products .product-item,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item {
    margin-left: -1px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.woocommerce .products .product-item a,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce .products .product-item a:hover,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a:hover,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a:hover {
    text-decoration: none;
}

.woocommerce .products .product-item .woocommerce-LoopProduct-link,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-LoopProduct-link,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-LoopProduct-link {
    display: inline-block;
    position: relative;
    width: 100%;
}

.woocommerce .products .product-item .woocommerce-taxonomy-loop,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop {
    color: #999;
    padding-top: 10px;
    margin-top: 10px;
    position: relative;
}

.woocommerce .products .product-item .woocommerce-taxonomy-loop:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background: #f9f9f9;
}

.woocommerce .products .product-item .woocommerce-taxonomy-loop:before,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop:before,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop:before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 40%;
    height: 1px;
    background: #d6261f;
    left: 30%;
    top: 0;
}

.woocommerce .products .product-item .woocommerce-taxonomy-loop a,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop a,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop a {
    font-size: 16px;
    color: #999;
}

.woocommerce .products .product-item .woocommerce-taxonomy-loop a:hover,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-taxonomy-loop a:hover,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-taxonomy-loop a:hover {
    color: #d6261f;
}

.woocommerce .products .product-item .woocommerce-imagewrapper,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper {
    position: relative;
}

.woocommerce .products .product-item .woocommerce-imagewrapper a.woocommerce-product-link,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper a.woocommerce-product-link,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper a.woocommerce-product-link {
    display: block;
}

.woocommerce .products .product-item .woocommerce-imagewrapper a.woocommerce-product-link:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper a.woocommerce-product-link:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper a.woocommerce-product-link:after {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 27, 101, 0.1);
    z-index: 1;
}

.woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
}

.woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button {
    display: block;
    max-width: 130px;
    min-width: 130px;
    text-align: center;
    margin: 0 0 5px 0;
}

.woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button.compare,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button.compare,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button.compare {
    display: inline-block !important;
}

.woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button:last-child,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button:last-child,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop .button:last-child {
    margin: 0;
}

.woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.added_to_cart,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.added_to_cart,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.added_to_cart {
    display: none;
}

.woocommerce .products .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.yith-wcqv-button .blockOverlay,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.yith-wcqv-button .blockOverlay,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop a.yith-wcqv-button .blockOverlay {
    background: none !important;
}

.woocommerce .products .product-item:hover .woocommerce-imagewrapper a.woocommerce-product-link:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item:hover .woocommerce-imagewrapper a.woocommerce-product-link:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item:hover .woocommerce-imagewrapper a.woocommerce-product-link:after {
    visibility: visible;
    opacity: 1;
}

.woocommerce .products .product-item:hover .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item:hover .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item:hover .woocommerce-imagewrapper .woocommerce_after_thumbnail_loop {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 980px) {
    .woocommerce .products .product-item.product-item,
    .bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item.product-item,
    .bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item.product-item {
        cursor: pointer;
    }
}

.woocommerce .products .product-item .onsale,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .onsale,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .onsale {
    background: #d6261f;
    border-radius: 1px;
    color: #fff;
    font-size: 16px;
    left: 0;
    padding: 0 10px;
    position: absolute;
    top: 0;
    z-index: 3;
}

.woocommerce .products .product-item .wp-post-image,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .wp-post-image,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .wp-post-image {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: solid 1px rgba(212, 27, 101, 0.2);
    border-radius: 1px;
    width: 100%;
}

.woocommerce .products .product-item .woocommerce-loop-product__title,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .woocommerce-loop-product__title,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .woocommerce-loop-product__title {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 26px;
    margin: 20px 0 0;
    color: #222;
}

.woocommerce .products .product-item .star-rating,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .star-rating,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .star-rating {
    float: none;
    width: 64px;
    margin: 5px auto;
}

.woocommerce .products .product-item .star-rating:before,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .star-rating:before,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .star-rating:before,
.woocommerce .products .product-item .star-rating span:before,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .star-rating span:before,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .star-rating span:before {
    font-size: 11px;
    color: #d6261f;
}

.woocommerce .products .product-item .price,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price {
    font-size: 16px;
    color: #999;
    display: block;
}

.woocommerce .products .product-item .price .amount,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price .amount,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price .amount {
    color: #d6261f;
    font-size: 16px;
}

.woocommerce .products .product-item .price del,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price del,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price del {
    margin-right: 5px;
    opacity: 0.6;
}

.woocommerce .products .product-item .price ins,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .price ins,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .price ins {
    text-decoration: none;
    font-weight: normal;
}

.woocommerce .products .product-item a.button,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.button,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.button,
.woocommerce .products .product-item a.added_to_cart,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.added_to_cart,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.added_to_cart {
    background: rgba(212, 27, 101, 0.95);
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    color: #ebebeb;
    letter-spacing: 0px;
    font-style: normal;
    display: inline-block;
    padding: 9px 15px;
    border-radius: 3px;
    margin-bottom: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.woocommerce .products .product-item a.button:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.button:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.button:after,
.woocommerce .products .product-item a.added_to_cart:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.added_to_cart:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.added_to_cart:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.woocommerce .products .product-item a.button:hover:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.button:hover:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.button:hover:after,
.woocommerce .products .product-item a.added_to_cart:hover:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item a.added_to_cart:hover:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item a.added_to_cart:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.woocommerce .products .product-item .compare,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .compare,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .compare {
    margin-top: 10px;
    display: none !important;
}

.woocommerce .products .product-item .add_to_cart_button.loading,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.loading,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.loading {
    padding-right: 32px;
}

.woocommerce .products .product-item .add_to_cart_button.loading::after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.loading::after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.loading::after {
    top: calc(50% - 14px);
}

.woocommerce .products .product-item .add_to_cart_button.added,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.added,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.added {
    display: none;
}

.woocommerce .products .product-item .add_to_cart_button.added:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item .add_to_cart_button.added:after,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item .add_to_cart_button.added:after {
    margin-left: 12px;
}

.woocommerce .products .product-item>div:hover .woocommerce-LoopProduct-link .wp-post-image,
.bearsthemes-products-element.bearsthemes-products-element-layout-default .product-item>div:hover .woocommerce-LoopProduct-link .wp-post-image,
.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item>div:hover .woocommerce-LoopProduct-link .wp-post-image {
    border: solid 1px rgba(212, 27, 101, 0.9);
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content {
    width: 310px;
    padding: 20px;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list {
    padding: 0;
    max-height: 290px;
    overflow: auto;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .empty {
    list-style: none;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item {
    list-style: none;
    display: block;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item:after {
    content: "";
    display: block;
    clear: both;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f8f7f7;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a {
    color: #333 !important;
    line-height: 28px !important;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a.remove {
    display: none !important;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a img {
    float: left;
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item a:hover {
    color: #d6261f !important;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .cart_list.product_list_widget .mini_cart_item span.quantity {
    font-size: 16px;
    color: #888;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .total {
    margin-top: 20px;
    padding-top: 20px;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .total .woocommerce-Price-amount {
    float: right;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons {
    margin-top: 20px;
    margin-bottom: 0;
    display: table;
    width: 100%;
    border-radius: 1px;
    overflow: hidden;
    border: solid 1px #c6195f;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button {
    display: table-cell !important;
    width: 50%;
    text-align: center;
    padding: 5px 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    border-radius: 0;
    line-height: 32px !important;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button:after {
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button.wc-forward {
    background: #d6261f;
    color: #fff !important;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button.checkout {
    background: #c6195f;
}

.bearsthemes_minicart_products_container_elem .widget_shopping_cart_content .buttons .button:hover:after {
    right: 16px;
    visibility: visible;
    opacity: 1;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content {
    /* minicart style */
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .empty {
    padding: 0;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item {
    margin-bottom: 20px;
    position: relative;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a {
    font-weight: normal;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a .wp-post-image {
    float: left;
    margin: 0 20px 0 0;
    width: 60px;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content .product_list_widget .mini_cart_item a.remove {
    position: absolute;
    left: 0;
    top: 16px;
    z-index: 3;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.total {
    padding: 10px 0;
    border-top: 1px solid #ebe9eb;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.total .amount {
    margin-left: 10px;
    font-size: 18px;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button {
    padding: 10px 24px;
    background: #8c8c8c;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button:hover {
    background: #787878;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button:first-child {
    background: #d6261f;
    margin-right: 6px;
}

.widget.woocommerce.widget_shopping_cart .widget_shopping_cart_content p.buttons .button:first-child:hover {
    background: #bd185a;
}

.widget.woocommerce.widget_shopping_cart {
    /* widget woocommerce */
}

.widget.woocommerce.widget_price_filter .ui-slider .ui-slider-range {
    background: #d6261f;
}

.widget.woocommerce.widget_price_filter .ui-slider-handle {
    background: #fff;
    border: solid 2px #d6261f;
    margin-top: 1px;
}

.widget.woocommerce.widget_price_filter .price_slider_amount .button {
    padding: 10px 24px;
    background: #8c8c8c;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget.woocommerce.widget_price_filter .price_slider_amount .button:hover {
    background: #787878;
}

.widget.woocommerce.widget_price_filter .ui-widget-content {
    background: #e9e9e9;
}

.widget.woocommerce.widget_product_categories .product-categories .cat-item>* {
    display: table-cell;
}

.widget.woocommerce.widget_product_categories .product-categories .cat-item a {
    font-weight: normal;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget.woocommerce.widget_product_categories .product-categories .cat-item .count {
    font-size: 16px;
    font-style: normal;
    padding-left: 5px;
}

.widget.woocommerce.widget_product_search form.woocommerce-product-search .screen-reader-text {
    display: none;
}

.widget.woocommerce.widget_product_search form.woocommerce-product-search input.search-field,
.widget.woocommerce.widget_product_search form.woocommerce-product-search input[type="submit"] {
    display: inline-block;
    vertical-align: middle;
}

.widget.woocommerce.widget_product_search form.woocommerce-product-search input.search-field {
    padding: 5px 11px;
    border-radius: 3px;
}

.widget.woocommerce.widget_product_search form.woocommerce-product-search input[type="submit"] {
    border: none;
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 3px;
    padding: 11px 12px !important;
    margin-left: 1px;
}

.widget.woocommerce.widget_product_search form.woocommerce-product-search input[type="submit"]:hover {
    background: #bd185a;
}

.widget.woocommerce.widget_recent_reviews .product_list_widget li .star-rating {
    width: 64px;
    margin: 7px 0;
    float: left;
}

.widget.woocommerce.widget_recent_reviews .product_list_widget li .star-rating:before,
.widget.woocommerce.widget_recent_reviews .product_list_widget li .star-rating span:before {
    font-size: 11px;
    color: #d6261f;
}

.widget.woocommerce.widget_recent_reviews .product_list_widget li .reviewer {
    color: #555;
    font-family: caption;
    font-style: italic;
    padding-left: 20px;
}

.widget.woocommerce .product_list_widget>li:not(:last-child) {
    margin-bottom: 10px;
}

.widget.woocommerce .product_list_widget>li a {
    font-weight: normal;
}

.widget.woocommerce .product_list_widget>li a img {
    float: left;
    width: 60px;
    margin: 0 20px 0 0;
}

.woocommerce img,
.woocommerce-page img {
    max-width: none;
}

.woocommerce-product-subcategories-wrap {
    position: relative;
}

.woocommerce-product-subcategories-wrap:after {
    content: "";
    display: block;
    clear: both;
}

.woocommerce-product-subcategories-wrap .product-category a img {
    border-radius: 1px;
}

.woocommerce-product-subcategories-wrap .product-category a h3 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce-product-subcategories-wrap .product-category a h3 .count {
    background: rgba(212, 27, 101, 0.3);
    border-radius: 3px;
}

.woocommerce-product-subcategories-wrap .product-category a:hover h3 {
    color: #d6261f;
}

.woocommerce .shop_table {
    border: none !important;
}

.woocommerce .shop_table.cart {
    border-bottom: 1px solid #f8f7f7 !important;
}

.woocommerce .shop_table a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce .shop_table .remove {
    color: #d9d9d9 !important;
}

.woocommerce .shop_table .remove:hover {
    background: none !important;
    color: #555 !important;
}

.woocommerce .shop_table thead th,
.woocommerce .shop_table tbody th,
.woocommerce .shop_table tfoot th,
.woocommerce .shop_table thead td,
.woocommerce .shop_table tbody td,
.woocommerce .shop_table tfoot td {
    border-left: none;
    border-right: none;
}

.woocommerce .shop_table thead th {
    padding: 20px;
    font-size: 14px;
    text-transform: uppercase;
    background: #f8f7f7;
}

.woocommerce .shop_table tbody th,
.woocommerce .shop_table tfoot th {
    padding: 20px;
}

.woocommerce .shop_table tbody td,
.woocommerce .shop_table tfoot td {
    padding: 30px 20px;
}

.woocommerce .shop_table tbody td,
.woocommerce .shop_table tfoot td,
.woocommerce .shop_table tbody th,
.woocommerce .shop_table tfoot th {
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-top: none !important;
    border-bottom: 1px solid;
    border-color: #f8f7f7 !important;
}

.woocommerce .shop_table tbody th:first-child,
.woocommerce .shop_table tfoot th:first-child,
.woocommerce .shop_table tbody td:first-child,
.woocommerce .shop_table tfoot td:first-child {
    padding-left: 0;
}

.woocommerce .shop_table tbody tr:hover>td,
.woocommerce .shop_table tfoot tr:hover>td,
.woocommerce .shop_table tbody tr:hover>th,
.woocommerce .shop_table tfoot tr:hover>th {
    border-color: rgba(214, 38, 31, 0.5) !important;
}

.woocommerce .shop_table .cart_item .product-thumbnail .wp-post-image {
    max-width: 100%;
    width: 100px;
    border: solid 1px rgba(212, 27, 101, 0.2);
    padding: 2px;
    background: #fff;
}

.woocommerce .shop_table .cart_item .product-name a {
    font-weight: normal;
    text-decoration: none;
}

.woocommerce .shop_table .cart_item .product-quantity .quantity input.qty {
    padding: 10px;
}

.woocommerce .shop_table td.actions input.button,
.woocommerce .shop_table td.actions input.input-text {
    border-radius: 30px !important;
    padding: 15px 20px !important;
}

.woocommerce .shop_table td.actions input[name="update_cart"]:not([disabled]) {
    background: #8c8c8c;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce .shop_table td.actions input[name="update_cart"]:not([disabled]):hover {
    background: #787878;
}

.woocommerce .shop_table td.actions .coupon>* {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
}

.woocommerce .shop_table td.actions .coupon input#coupon_code {
    border-radius: 3px;
    padding: 9px 10px;
    width: 200px;
}

.woocommerce .shop_table td.actions .coupon .button {
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce .shop_table td.actions .coupon .button:hover {
    background: #bd185a;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-size: 25px;
}

.woocommerce .cart-collaterals .cart_totals .shop_table tbody tr>* {
    vertical-align: middle;
}

.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
    background: #d6261f;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 100px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: normal;
    min-width: auto;
    padding: 16px 30px;
    width: auto;
}

.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .button:hover {
    background: #bd185a;
}

@media (max-width: 768px) {
    .woocommerce .shop_table tbody tr td,
    .woocommerce .shop_table tfoot tr td,
    .woocommerce .shop_table tbody tr th,
    .woocommerce .shop_table tfoot tr th {
        border-bottom-color: #ebebeb !important;
    }
    .woocommerce .shop_table tbody tr td:first-child,
    .woocommerce .shop_table tfoot tr td:first-child,
    .woocommerce .shop_table tbody tr th:first-child,
    .woocommerce .shop_table tfoot tr th:first-child {
        padding-left: 20px;
    }
    .woocommerce .shop_table tbody tr:hover td,
    .woocommerce .shop_table tfoot tr:hover td,
    .woocommerce .shop_table tbody tr:hover th,
    .woocommerce .shop_table tfoot tr:hover th {
        border-bottom-color: #ebebeb !important;
    }
    .woocommerce .shop_table td.actions input {
        margin-bottom: 10px !important;
        width: 50% !important;
    }
    .woocommerce .shop_table td.actions .coupon {
        text-align: left;
    }
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .select2-container .select2-selection {
    line-height: normal;
    padding: 6px 10px;
    border-radius: 3px;
    height: auto;
    border: 1px solid rgba(53, 53, 53, 0.1);
}

.woocommerce form .form-row input.input-text .select2-selection__rendered,
.woocommerce form .form-row textarea .select2-selection__rendered,
.woocommerce .select2-container .select2-selection .select2-selection__rendered {
    padding: 0;
}

.woocommerce form .form-row input.input-text .select2-selection__arrow,
.woocommerce form .form-row textarea .select2-selection__arrow,
.woocommerce .select2-container .select2-selection .select2-selection__arrow {
    height: 40px;
}

.woocommerce input#place_order {
    background: #d6261f;
    color: #fff;
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce input#place_order:hover {
    background: #bd185a;
    color: #fff;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout textarea {
    border-radius: 3px !important;
    padding: 10px !important;
}

.woocommerce-checkout textarea {
    min-height: 180px;
}

.woocommerce-checkout h3 {
    font-size: 25px;
}

.woocommerce-checkout .button {
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce-checkout .checkout_coupon .button {
    background: #d6261f;
    color: #fff;
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce-checkout .checkout_coupon .button:hover {
    background: #bd185a;
    color: #fff;
}

.woocommerce-checkout #payment {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #eaeaea;
    border-radius: 3px;
}

.woocommerce-checkout #payment ul.wc_payment_methods {
    border-bottom: 1px solid #eaeaea;
}

.woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method label {
    padding-top: 5px;
}

.woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method label a.about_paypal {
    margin-left: 10px;
}

.woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method .payment_box {
    background-color: #ececec;
}

.woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method .payment_box:before {
    border-bottom-color: #ececec;
}

.woocommerce-checkout #payment ul.wc_payment_methods li:not(:last-child) {
    padding: 5px 0;
    border-bottom: 1px solid #ececec;
}

.woocommerce.single-product {
    /* plg ywpc-countdown{ */
}

.woocommerce.single-product .product .onsale {
    background: #d6261f;
    border-radius: 1px;
    color: #fff;
    font-size: 12px;
    left: 0;
    padding: 0 10px;
    position: absolute;
    top: 0;
    z-index: 3;
}

.woocommerce.single-product .woocommerce-product-gallery .flex-control-nav {
    padding-top: 15px !important;
}

.woocommerce.single-product .woocommerce-product-gallery .flex-control-nav>li {
    padding: 0 15px 15px 0;
    clear: none !important;
}

.woocommerce.single-product .images .thumbnails>a {
    border: solid 0.5px rgba(214, 38, 31, 0.5);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 1px;
}

.woocommerce.single-product .images .thumbnails>a:hover {
    border: solid 0.5px rgba(212, 27, 101, 0.9);
}

.woocommerce.single-product .entry-summary .product_title {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -1.1px;
    line-height: 26px;
    margin: 0;
}

.woocommerce.single-product .entry-summary .woocommerce-product-rating .star-rating:before,
.woocommerce.single-product .entry-summary .woocommerce-product-rating .star-rating span:before {
    color: #d6261f;
}

.woocommerce.single-product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.woocommerce.single-product .entry-summary .price {
    font-size: 16px;
    color: #999;
}

.woocommerce.single-product .entry-summary .price .amount {
    color: #d6261f;
    font-size: 18px;
    font-weight: bold;
}

.woocommerce.single-product .entry-summary .price del {
    margin-right: 5px;
    opacity: 0.6;
}

.woocommerce.single-product .entry-summary .price ins {
    text-decoration: none;
}

.woocommerce.single-product .entry-summary .product_meta {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.woocommerce.single-product .entry-summary .product_meta .sku_wrapper {
    background: #8c8c8c;
    color: #fff;
    padding: 5px;
    font-size: 12px;
    border-radius: 3px;
}

.woocommerce.single-product .entry-summary .product_meta .posted_in,
.woocommerce.single-product .entry-summary .product_meta .tagged_as {
    display: block;
    width: 100%;
}

.woocommerce.single-product .entry-summary .product_meta .posted_in a,
.woocommerce.single-product .entry-summary .product_meta .tagged_as a {
    font-weight: normal;
}

.woocommerce.single-product .entry-summary form.cart {
    margin-top: 20px;
    margin-bottom: 10px;
}

.woocommerce.single-product .entry-summary form.cart .quantity input.qty {
    border-radius: 3px;
    padding: 3.2px;
    text-align: center;
    width: 3.631em;
}

.woocommerce.single-product .entry-summary form.cart .button.single_add_to_cart_button {
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.woocommerce.single-product .entry-summary form.cart .button:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.woocommerce.single-product .entry-summary form.cart .button:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td {
    vertical-align: baseline;
}

.woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td.label label {
    color: #333;
    font-weight: normal;
    font-size: 16px;
}

.woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td.label label:after {
    content: ":";
}

.woocommerce.single-product .entry-summary form.cart.variations_form table.variations tbody td.value>select {
    border-width: 0 0 1px 0;
    background: #fafafa;
    padding: 2px 5px;
}

.woocommerce.single-product .entry-summary form.cart.variations_form .single_variation_wrap .variations_button {
    margin-top: 20px;
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    margin: 0;
    position: relative;
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist+.clear {
    display: none;
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .ajax-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
    margin-right: 20%;
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse,
.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    line-height: 26px;
}

.woocommerce.single-product .entry-summary .button.compare {
    display: inline-block;
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist,
.woocommerce.single-product .entry-summary .button.compare {
    margin-top: 5px;
    display: inline-block;
    vertical-align: middle;
    padding: 8px 16px;
    text-align: center;
    background: #8c8c8c;
    color: #fff !important;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce.single-product .entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist:hover,
.woocommerce.single-product .entry-summary .button.compare:hover {
    background: #7f7f7f;
}

.woocommerce.single-product .entry-summary .product_meta {
    margin-top: 20px;
}

.woocommerce.single-product .woocommerce-tabs .tabs {
    padding: 0 !important;
}

.woocommerce.single-product .woocommerce-tabs .tabs:before {
    display: none !important;
}

.woocommerce.single-product .woocommerce-tabs .tabs>li {
    background: #999 !important;
    border: none !important;
    border-radius: 3px !important;
    margin: 0 10px 0 0 !important;
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce.single-product .woocommerce-tabs .tabs>li.active {
    background: #d6261f !important;
    opacity: 1;
}

.woocommerce.single-product .woocommerce-tabs .tabs>li a {
    color: #fff !important;
}

.woocommerce.single-product .woocommerce-tabs .tabs>li:after,
.woocommerce.single-product .woocommerce-tabs .tabs>li:before {
    display: none !important;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
    box-shadow: none;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    margin: 0 0 20px;
    text-decoration: underline;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .woocommerce-Reviews-title {
    margin-top: 0;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .commentlist {
    padding: 0;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .commentlist .star-rating:before,
.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #comments .commentlist .star-rating span:before {
    color: #d6261f;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form #reply-title {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    margin: 0 0 20px;
    text-decoration: underline;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-comment #comment {
    padding: 10px;
    border-radius: 3px;
    min-height: 160px;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-author label,
.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-email label {
    display: block;
    width: 100%;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-author input,
.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .comment-form-email input {
    display: block;
    width: 100%;
    padding: 6px 10px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit {
    background: #d6261f !important;
    color: #fff !important;
    font-weight: normal !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews #review_form .form-submit .submit:hover {
    background: #bd185a !important;
}

.woocommerce.single-product .upsells>h2,
.woocommerce.single-product .related>h2 {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 26px;
    margin: 0 0 20px;
    text-decoration: underline;
}

.woocommerce.single-product p.currentTextHolder {
    line-height: normal;
}

.woocommerce.single-product .pp_gallery ul,
.woocommerce.single-product .pp_gallery ul a {
    height: auto;
}

.woocommerce .ywpc-countdown {
    background: #c6195f;
    border-color: #d6261f;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.woocommerce .ywpc-countdown>* {
    position: relative;
    z-index: 3;
}

.woocommerce .ywpc-countdown:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 75%;
    top: 0;
    z-index: 2;
    background: #b41756;
    transform: skewX(45deg);
    -webkit-transform: skewX(45deg);
}

.woocommerce .ywpc-countdown:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 75%;
    top: 0;
    z-index: 1;
    background: #b91858;
    transform: skewX(-45deg);
    -webkit-transform: skewX(-45deg);
}

.woocommerce .ywpc-countdown .ywpc-header {
    color: #fff;
    display: block;
    font-size: 24px;
    letter-spacing: 2px;
    margin: 20px;
    padding: 0 0 30px;
    text-transform: uppercase;
    position: relative;
}

.woocommerce .ywpc-countdown .ywpc-header:after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    z-index: 3;
}

.woocommerce .ywpc-countdown .ywpc-timer .ywpc-days>.ywpc-amount>*,
.woocommerce .ywpc-countdown .ywpc-timer .ywpc-hours>.ywpc-amount>*,
.woocommerce .ywpc-countdown .ywpc-timer .ywpc-minutes>.ywpc-amount>*,
.woocommerce .ywpc-countdown .ywpc-timer .ywpc-seconds>.ywpc-amount>* {
    border-radius: 50%;
    box-shadow: none;
    border: none;
    background: rgba(17, 17, 17, 0.7);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}

.woocommerce .ywpc-countdown .ywpc-timer .ywpc-days>.ywpc-label,
.woocommerce .ywpc-countdown .ywpc-timer .ywpc-hours>.ywpc-label,
.woocommerce .ywpc-countdown .ywpc-timer .ywpc-minutes>.ywpc-label,
.woocommerce .ywpc-countdown .ywpc-timer .ywpc-seconds>.ywpc-label {
    color: #fff;
    font-weight: bold;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
    list-style: none;
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce form.login .button {
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.woocommerce form.login .button:hover {
    background: #bd185a;
}

.woocommerce form.login .form-row .woocommerce-Button {
    margin-right: 5px;
}

body #yith-quick-view-modal {
    overflow: auto;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

body #yith-quick-view-modal #yith-quick-view-close {
    border-radius: 3px;
    width: 30px;
    height: 30px;
    background: #d6261f;
    color: transparent;
    opacity: 1 !important;
    font-size: 11px;
}

body #yith-quick-view-modal #yith-quick-view-close:after {
    content: "\f00d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
}

body #yith-quick-view-modal #yith-quick-view-close:hover {
    background: #bd185a;
}

body #yith-quick-view-modal .yith-wcqv-wrapper {
    border-radius: 3px;
    position: absolute;
    height: auto !important;
    max-height: 90%;
    overflow: auto;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
}

body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main {
    box-shadow: none;
    padding: 20px;
}

body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main .input-text {
    border: solid 1px #e9e9e9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main .input-text:focus {
    border-color: #d6261f;
}

body #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main .product .images {
    margin-bottom: 0;
}

#yith-wcwl-form a {
    text-decoration: none;
}

#yith-wcwl-form .wishlist-title {
    margin-bottom: 5px;
}

#yith-wcwl-form .wishlist-title h2 {
    font-size: 26px;
    line-height: 36px;
}

#yith-wcwl-form .wishlist_table thead tr th {
    border-top: none;
    padding: 30px 10px;
}

#yith-wcwl-form .wishlist_table tbody tr td,
#yith-wcwl-form .wishlist_table tbody tr th {
    text-align: left;
    padding: 30px 10px;
}

#yith-wcwl-form .wishlist_table tbody tr td.product-name .yith-wcqv-button {
    margin-left: 10px;
    background: #d6261f;
    color: #fff;
    font-weight: normal;
}

#yith-wcwl-form .wishlist_table tbody tr td.product-name .yith-wcqv-button:hover {
    background: #bd185a;
}

#yith-wcwl-form .wishlist_table tbody tr td.product-add-to-cart .button.add_to_cart_button {
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    padding: 14px 8px;
}

#yith-wcwl-form .wishlist_table tbody tr td.product-add-to-cart .button.add_to_cart_button:hover {
    background: #bd185a;
}

#yith-wcwl-form .wishlist_table tfoot div.yith-wcwl-share .yith-wcwl-share-title {
    font-size: 20px;
    line-height: 28px;
}

#cboxOverlay+#colorbox #cboxWrapper .cboxIframe {
    padding: 20px;
    border-radius: 3px;
}

#cboxOverlay+#colorbox #cboxWrapper #cboxMiddleLeft,
#cboxOverlay+#colorbox #cboxWrapper #cboxMiddleRight,
#cboxOverlay+#colorbox #cboxWrapper #cboxBottomLeft,
#cboxOverlay+#colorbox #cboxWrapper #cboxBottomCenter,
#cboxOverlay+#colorbox #cboxWrapper #cboxBottomRight,
#cboxOverlay+#colorbox #cboxWrapper #cboxTopLeft,
#cboxOverlay+#colorbox #cboxWrapper #cboxTopCenter,
#cboxOverlay+#colorbox #cboxWrapper #cboxTopRight {
    background: none !important;
}

body .esg-filters>*:first-child {
    margin-left: 0 !important;
}

body .esg-filters>*:last-child {
    margin-right: 0 !important;
}

body .esg-filters .esg-filter-wrapper {
    margin-bottom: 30px;
}

body .esg-filters .esg-filter-wrapper .esg-filterbutton {
    border: none;
    border-radius: 1px;
    color: #333;
    box-shadow: none;
    font-size: 15px;
    line-height: 45px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body .esg-filters .esg-filter-wrapper .esg-filterbutton:not(:last-child) {
    margin-right: 15px;
}

body .esg-filters .esg-filter-wrapper .esg-filterbutton.selected {
    border-color: #d6261f;
    color: #fff;
    background: #d6261f;
    border-radius: 30px;
}

body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton,
body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton-order {
    box-shadow: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton:hover,
body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton-order:hover {
    border-color: #d6261f;
}

body .esg-filters .esg-sortbutton-wrapper .esg-sortbutton span {
    color: #999;
}

body .esg-overflowtrick {
    margin-bottom: 30px;
}

body .esg-overflowtrick .mainul a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body .esg-overflowtrick .mainul>li .esg-content a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body .esg-overflowtrick .mainul>li .esg-content ins {
    text-decoration: none;
}

body .esg-overflowtrick .mainul>li .esg-content .add_to_cart_button {
    position: relative;
}

body .esg-overflowtrick .mainul>li .esg-content .add_to_cart_button.added {
    display: none;
}

body .esg-overflowtrick .mainul>li .esg-content .added_to_cart {
    margin-top: 0;
    background: #d6261f;
    padding: 9px 20px;
    color: #fff;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body .esg-overflowtrick .mainul>li .esg-content .added_to_cart:hover {
    background: #bd185a;
}

body .esg-navigationbutton {
    background: #d6261f !important;
}

body .esg-navigationbutton i {
    color: #fff !important;
}

body .esg-navigationbutton.esg-loadmore {
    font-weight: normal;
    background: #d6261f;
    padding: 9px 20px;
    color: #fff;
    border-radius: 3px;
    line-height: 25px;
    border: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body .esg-navigationbutton.esg-loadmore:hover {
    background: #bd185a;
    color: #fff;
    box-shadow: none;
}

body .esg-pagination .esg-navigationbutton {
    background: #fff !important;
}

.aboutus-html-style-1 img {
    margin-bottom: 20px;
    max-width: 100%;
}

.aboutus-html-style-1 p {
    margin-bottom: 20px;
}

.aboutus-html-style-1 a.bt-btn {
    font-size: 12px !important;
}

.contact-html-style-1 {
    /* .custom-title-block-layout-2
 * required google font "Pacifico"
 */
}

.contact-html-style-1 p {
    margin-bottom: 20px;
}

.contact-html-style-1 ul {
    margin-top: 20px;
}

.contact-html-style-1 ul li {
    padding: 8px 0;
}

.contact-html-style-1 ul li:not(:last-child) {
    border-bottom: 1px solid #232526;
}

.contact-html-style-1 ul li i {
    margin-right: 6px;
    color: #d6261f;
    width: 18px;
    text-align: center;
}

.custom-title-block-layout-2 {
    /* Search - Mini Cart Header Menu */
}

.custom-title-block-layout-2 .block-title.block-title-has-number .block-number {
    font-size: 50px;
}

.custom-title-block-layout-2 .block-title.block-title-has-number .block-title-text {
    font-family: "Pacifico";
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 1px;
}

.custom-title-block-layout-2 .block-title.block-title-has-number .block-title-text:before {
    content: "/" !important;
    padding-right: 5px !important;
}

li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search>a {
    background: #e5e5e5;
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    line-height: 40px !important;
    font-size: 12px !important;
}

li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart>a {
    color: #333;
    background: #e5e5e5;
    border-radius: 30px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 18px;
    padding-right: 18px;
    line-height: 40px !important;
    font-size: 12px !important;
}

li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search>a>span,
li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart>a>span,
li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search>a>i,
li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart>a>i {
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover>a>span,
li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover>a>span,
li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover>a>i,
li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover>a>i {
    color: #d6261f;
}

body.is-header-sticky {
    /* widget-newsletter-custom-stylle-1 */
}

body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search>a,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart>a {
    background: none;
    box-shadow: 0 0 0 2px #e5e5e5 inset;
}

body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search>a>span,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart>a>span,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search>a>i,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart>a>i {
    color: #fff;
}

body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover>a>span,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover>a>span,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-search:hover>a>i,
body.is-header-sticky li.menu-item.custom-ui-search-mini-cart-style.menu-item-custom-type-woocommerce-mini-cart:hover>a>i {
    color: #d6261f;
}

.widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form,
.widget-newsletter-custom-stylle-1 .widget_newsletterwidget form {
    position: relative;
}

.widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-email,
.widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-email {
    background: #e7e7e7;
    border-radius: 30px;
    height: 60px;
    padding: 0 40px !important;
    width: 100% !important;
    border: solid 1px transparent;
}

.widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-email:focus,
.widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-email:focus {
    background: #fff !important;
    border: 1px solid #d6261f !important;
}

.widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-submit,
.widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 50px;
    padding: 0 30px;
    display: block;
    border-radius: 50px !important;
    background: #d6261f !important;
    color: #fff;
    border: none;
    z-index: 9;
    cursor: pointer;
    width: 150px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget-newsletter-custom-stylle-1 .widget_newsletterwidgetminimal form input.tnp-submit:hover,
.widget-newsletter-custom-stylle-1 .widget_newsletterwidget form input.tnp-submit:hover {
    background: #bd185a !important;
}

.social-link-custom-style-1 {
    padding: 0;
    margin: 0;
}

.social-link-custom-style-1 li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-link-custom-style-1 li:not(:last-child) {
    margin-right: 10px;
}

.social-link-custom-style-1 li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    background: #e7e7e7;
    color: #222;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.social-link-custom-style-1 li a:hover {
    background: #d6261f;
    color: #fff;
}

.memnber-list-template-layout-default {
    margin-top: 20px;
    background: #fafafa none repeat scroll 0 0;
    border-radius: 3px;
    /* .counter-custom-layout-1 */
}

.memnber-list-template-layout-default li {
    padding: 20px 30px;
}

.memnber-list-template-layout-default li:not(:last-child) {
    border-bottom: solid 1px #fff;
}

.memnber-list-template-layout-default li img {
    border-radius: 100px;
    float: left;
    margin-right: 20px;
    margin-top: 13px;
    width: 100px;
}

.memnber-list-template-layout-default li>div {
    padding-left: 120px;
}

.memnber-list-template-layout-default li>div h4 {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.memnber-list-template-layout-default li>div p {
    margin-bottom: 0;
    font-family: caption;
    font-style: italic;
    color: #999;
}

.memnber-list-template-layout-default li>div p i {
    margin-right: 6px;
    color: #d6261f;
    width: 14px;
    text-align: center;
}

.counter-custom-layout-1 {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /*
 * team-social-layout-default
 */
}

.counter-custom-layout-1 .text-above i {
    font-size: 35px;
}

.counter-custom-layout-1 .number-wrap {
    font-weight: bold;
}

.counter-custom-layout-1 .text-below {
    letter-spacing: 0 !important;
    text-transform: initial !important;
}

.counter-custom-layout-1:hover {
    background: rgba(255, 255, 255, 0);
}

.team-social-layout-default {
    padding: 0;
    margin: 0;
}

.team-social-layout-default li {
    display: inline-block;
    vertical-align: top;
}

.team-social-layout-default li:not(:last-child) {
    margin-right: 4px;
}

.team-social-layout-default li a {
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
}

.skillbar-custom-layout-1 {
    height: 10px !important;
    max-width: 500px;
    /* .wpcf7-form */
}

.skillbar-custom-layout-1 .percent {
    display: none;
}

#page .wpcf7-form {
    margin-bottom: 20px;
}

#page .wpcf7-form label {
    width: 100%;
    font-weight: normal;
    /* .wpcf7-submit */
}

#page .wpcf7-form label input,
#page .wpcf7-form label textarea {
    padding: 10px;
    width: 100%;
    border-radius: 3px;
    margin-top: 4px;
}

#page .wpcf7-form label textarea {
    height: 120px;
}

#page .wpcf7-form .wpcf7-submit {
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#page .wpcf7-form .wpcf7-submit:hover {
    background: #bd185a;
}

.bt-icon-custom {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #d6261f;
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.bt-icon-custom>* {
    position: absolute;
    left: calc(50% + 1px);
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
}

.block-layout-3-custom-style-home-spring .bearsthemes-element-inner {
    padding: 10px 0 !important;
}

.block-layout-3-custom-style-home-spring:hover {
    transform: translate(0) !important;
    -webkit-transform: translate(0) !important;
}

.block-layout-3-custom-style-home-spring:hover .bearsthemes-element-inner {
    box-shadow: none !important;
}

@keyframes fadein_basic_effect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#page .followscreen-is-active {
    overflow: initial;
    position: fixed;
    z-index: 999;
    width: 280px;
    animation: fadein_basic_effect 0.3s ease;
    -webkit-animation: fadein_basic_effect 0.3s ease;
    /*
.custom-tabs-style-1
*/
}

#page .followscreen-is-active.followscreen-position-bottom-right {
    bottom: 10px;
    right: 10px;
}

#page .followscreen-is-active.followscreen-position-bottom-left {
    bottom: 10px;
    left: 10px;
}

#page .followscreen-is-active .follow-screen-close {
    display: block !important;
    background: #111 none repeat scroll 0 0;
    border-radius: 100px;
    color: #fff;
    font-size: 20px;
    height: 30px;
    position: absolute;
    right: -30px;
    top: -30px;
    width: 30px;
    z-index: 9;
    font-size: 11px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

#cs-content .custom-tabs-style-1.x-nav {
    margin-bottom: 20px;
    border-width: 0;
}

#cs-content .custom-tabs-style-1.x-nav .x-nav-tabs-item {
    border-width: 0;
}

#cs-content .custom-tabs-style-1.x-nav .x-nav-tabs-item a {
    border: solid 1px transparent;
    border-radius: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#cs-content .custom-tabs-style-1.x-nav .x-nav-tabs-item.active a {
    border: solid 1px #d6261f;
    background: #d6261f;
    color: #fff;
}

#cs-content .custom-tabs-style-1.x-tab-content {
    border-radius: 1px;
    border-top: solid 1px rgba(0, 0, 0, 0.125);
}

#cs-content .custom-tabs-style-1.x-nav,
#cs-content .custom-tabs-style-1.x-tab-content {
    box-shadow: none;
    background: transparent;
}

.nf-form-cont .nf-form-title h3 {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -1.2px;
}

.nf-form-cont .nf-form-layout .nf-form-content {
    margin-top: 30px;
}

.nf-form-cont .nf-form-layout .nf-form-content input[type="text"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="password"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="number"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="email"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="date"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="color"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="tel"],
.nf-form-cont .nf-form-layout .nf-form-content input[type="search"],
.nf-form-cont .nf-form-layout .nf-form-content textarea,
.nf-form-cont .nf-form-layout .nf-form-content select {
    padding: 10px;
    border-radius: 3px;
}

.nf-form-cont .nf-form-layout .nf-form-content input[type="button"] {
    background: #d6261f;
    border: medium none;
    border-radius: 3px;
    color: #fff;
    padding: 8px 22px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.nf-form-cont .nf-form-layout .nf-form-content input[type="button"]:hover {
    background: #bd185a;
}

.nf-form-cont {
    /* theme-custom-social-message-item */
}

.theme-custom-social-message-item .message-wrap {
    background: #f5f5f5 none repeat scroll 0 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -1.2px;
    line-height: 24px;
    padding: 30px;
    position: relative;
}

.theme-custom-social-message-item .message-wrap:after {
    content: "";
    border: solid 10px transparent;
    border-top-color: #f5f5f5;
    position: absolute;
    left: 55px;
    bottom: -20px;
}

.theme-custom-social-message-item .info-wrap {
    margin: 20px 0 0 20px;
    disblay: table;
}

.theme-custom-social-message-item .info-wrap>* {
    display: table-cell;
    vertical-align: middle;
}

.theme-custom-social-message-item .info-wrap .avatar {
    width: 100px;
}

.theme-custom-social-message-item .info-wrap .avatar img {
    width: 100%;
    border-radius: 50%;
}

.theme-custom-social-message-item .info-wrap .meta-items {
    padding-left: 20px;
}

.theme-custom-social-message-item .info-wrap .meta-items .from {
    color: #999;
    font-size: 11px;
    letter-spacing: 2px;
    line-height: normal;
    text-transform: uppercase;
}

.theme-custom-social-message-item .info-wrap .meta-items .name {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: -2px;
    line-height: 30px;
    margin: 0;
}

.give-form-wrap .give-select,
.give-form-wrap .give-hidden {
    display: none !important;
}

.sweet-overlay {
    display: none !important;
}

.showSweetAlert {
    display: none !important;
}

h2.widget-title span,
.notification-heading-tabs {
    font-family: 'Poppins';
}

.notification-content-tabs p {
    font-family: 'Poppins' !important;
}

body p {
    font-family: 'Arimo' !important;
}

@-webkit-keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob {
    0% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
    50% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
    }
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@-webkit-keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes hvr-bob-float {
    100% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.goza-color-main {
    color: #d6261f !important;
}

.goza-bg-main {
    background: #d6261f !important;
}

.bt-color-goza-main>b {
    color: #d6261f !important;
}

.bt-inline-block {
    display: inline-block;
}

.hvr-float-shadow>a:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, 0) 80%);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}

.hvr-float-shadow>a:active:before,
.hvr-float-shadow>a:focus:before,
.hvr-float-shadow>a:hover:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
}

.hvr-float-shadow>a:active,
.hvr-float-shadow>a:focus,
.hvr-float-shadow>a:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

[data-animate] {
    opacity: 0;
    visibility: hidden;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
}

[data-animate].animated {
    opacity: 1;
    visibility: visible;
}

.bt-section-space.section-space-no {
    padding-top: 0px;
    padding-bottom: 0px;
}

ul.blog-details-list {
    list-style-type: none;
}

ul.blog-details-list>li {
    padding: 5px 0;
}

ul.blog-details-list>li i {
    color: #d6261f;
}

input[type="submit"] {
    font-family: 'Poppins' !important;
}

.container-fully {
    width: 1600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container-custom-width {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.wpb_single_image img {
    width: 100%;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

#page .fw-shortcode-calendar-wrapper {
    /*************
Button Element
**************/
}

#page .fw-shortcode-calendar-wrapper .cal-week-box {
    border-radius: 3px;
    overflow: hidden;
}

#page .fw-shortcode-calendar-wrapper .page-header .form-inline {
    margin-top: 6px;
}

#page .fw-shortcode-calendar-wrapper .page-header .form-inline .btn-group {
    margin-right: 0;
}

#page .fw-shortcode-calendar-wrapper .page-header .form-inline .btn-group button {
    font-size: 14px;
    color: #222;
}

#page .fw-shortcode-calendar-wrapper .page-header .form-inline .btn-group button[data-calendar-nav="today"] {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
}

#page .fw-shortcode-calendar-wrapper .page-header h3 {
    font-family: 'Arimo';
    color: #111;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: normal;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-week-box .cal-row-head [class*="cal-cell"] small {
    border-top-width: 1px;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-fluid.cal-row-head [class*="cal-cell"] {
    border-right-width: 1px;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-week-box .cal-column {
    border-left-width: 1px;
    left: -1px;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-head>div {
    letter-spacing: 2px;
    font-size: 11px !important;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-head>div.cal-day-today span {
    color: #111;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-row-head>div span {
    letter-spacing: 2px;
    font-size: 12px !important;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .cal-week-box [data-event-class] {
    padding-left: 15px;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .day-highlight {
    background: #333;
    border: none;
    border-radius: 20px;
    box-shadow: 0 0 26px -11px rgba(1, 1, 1, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .day-highlight a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .fw-shortcode-calendar-wrapper .fw-shortcode-calendar .day-highlight a:hover {
    color: #d6261f;
}

.bearsthemes-button-element {
    /**************
Heading Element
**************/
}

.bearsthemes-heading-element {
    /****************
Underline Element
****************/
}

.bearsthemes-heading-element>* {
    margin: 0;
}

.bearsthemes-underline-element {
    margin: auto;
    position: relative;
    line-height: 0;
    padding: 4px 0;
    /***************
Products Element
***************/
}

.bearsthemes-underline-element.bearsthemes-underline-element-layout-default .line {
    width: 100%;
    height: 2px;
    background: #e9e9e9;
}

.bearsthemes-underline-element.bearsthemes-underline-element-layout-default .dots {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleX(1.4);
    -webkit-transform: translate(-50%, -50%) scaleX(1.4);
}

.bearsthemes-underline-element.bearsthemes-underline-element-layout-default .dots span {
    display: inline-block;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    background: #d6261f;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.bearsthemes-products-element {
    /*********
Testimonals Element
********/
}

.bearsthemes-products-element .product-filter-wrap {
    margin-bottom: 30px;
    text-align: center;
    /* layout default */
}

.bearsthemes-products-element .product-filter-wrap.product-filter-button-group.text-left {
    text-align: left;
}

.bearsthemes-products-element .product-filter-wrap.product-filter-button-group.text-right {
    text-align: right;
}

.bearsthemes-products-element .product-filter-wrap.product-filter-button-group.text-center {
    text-align: center;
}

.bearsthemes-products-element .product-filter-wrap .product-filter-item {
    border: 1px solid #ececec;
    border-radius: 3px;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 4px 20px;
    text-transform: uppercase;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-products-element .product-filter-wrap .product-filter-item.is-active {
    background: #d6261f none repeat scroll 0 0;
    border-color: #d6261f;
    color: #fff;
}

.bearsthemes-products-element .product-filter-wrap .product-filter-item:not(:last-child) {
    margin-right: 20px;
}

.bearsthemes-products-element .product-filter-wrap .product-filter-item:hover {
    border-color: #d6261f;
}

.bearsthemes-products-element.bearsthemes-products-element-layout-masonry .product-item {
    margin-bottom: 0;
}

.bearsthemes-testimonals-element {
    /***********
Team Element
***********/
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .entry-content {
    margin-bottom: 40px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap>img {
    width: 80px;
    float: left;
    border-radius: 3px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta {
    margin-left: 100px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta .title {
    margin: 0 0 5px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element {
    background: #fff;
    border-radius: 1px;
    padding: 20px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .entry-content {
    padding-left: 40px;
    position: relative;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .entry-content>.fa-quote-left {
    font-size: 24px;
    left: 6px;
    position: absolute;
    top: 3px;
    color: #d6261f;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap {
    margin-top: 30px;
    display: table;
    width: 100%;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap>* {
    display: table-cell;
    vertical-align: middle;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap img {
    border-radius: 50px;
    border: solid 0.5px rgba(214, 38, 31, 0.5);
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta {
    width: 80%;
    padding-left: 20px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta .title {
    margin: 0;
    font-size: 18px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .item .bearsthemes-testimonal-item-element .testimonal-avavar-wrap .extra-meta .sub-title {
    color: #d6261f;
    line-height: normal;
    font-size: 14px;
}

.bearsthemes-team-element {
    /**************
Gallery Element
**************/
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap .content-entry {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap .content-entry .extra-meta .title {
    margin: 0;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap .content-entry .entry-content {
    margin-top: 20px;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap.has-avatar {
    position: relative;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap.has-avatar .--overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap.has-avatar .content-entry {
    visibility: hidden;
    opacity: 0;
    width: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .--overlay {
    visibility: visible;
    opacity: 1;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .content-entry {
    visibility: visible;
    opacity: 1;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .content-entry .team-social-layout-default li a {
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .item .item-wrap:hover.has-avatar .content-entry .team-social-layout-default li a:hover {
    background: #d6261f;
}

.bearsthemes-gallery-element {
    /****************
Portfolio Element
****************/
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner {
    overflow: hidden;
    position: relative;
    border-radius: 1px;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner img {
    max-width: 100%;
    width: 100%;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner img.lazyload {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, .5);
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner .title {
    bottom: -20px;
    font-size: 16px;
    left: 20px;
    line-height: 26px;
    margin: 0;
    position: absolute;
    text-align: center;
    width: calc(100% - 40px);
    z-index: 2;
    color: #fff;
    opacity: 0;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner .icon-zoom {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    visibility: hidden;
    opacity: 0;
    font-size: 20px;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:hover:after {
    visibility: visible;
    opacity: 1;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:hover .title {
    bottom: 20px;
    opacity: 1;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-default .bearsthemes-image-item-element .image-item-inner:hover .icon-zoom {
    visibility: visible;
    opacity: 1;
    top: 50%;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .ui-resizable-se:after {
    color: #fff;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element {
    position: relative;
    background: #ececec;
    width: 100%;
    height: 100%;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner>* {
    position: relative;
    z-index: 3;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner .image-ovelay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner .icon-zoom {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    visibility: hidden;
    opacity: 0;
    font-size: 20px;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner .title {
    bottom: -20px;
    font-size: 16px;
    left: 20px;
    line-height: 26px;
    margin: 0;
    position: absolute;
    text-align: center;
    width: calc(100% - 40px);
    z-index: 2;
    color: #fff;
    opacity: 0;
    font-weight: normal;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:hover:after {
    visibility: visible;
    opacity: 1;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:hover .title {
    bottom: 20px;
    opacity: 1;
}

.bearsthemes-gallery-element.bearsthemes-gallery-element-layout-creative .bearsthemes-image-item-element .grid-item-inner:hover .icon-zoom {
    visibility: visible;
    opacity: 1;
    top: 50%;
}

.bearsthemes-portfolio-element {
    /* Countdown Element */
}

.bearsthemes-portfolio-element .bt-portfolio-filter-warp .portfolio-filter-wrap.text-left {
    text-align: left;
}

.bearsthemes-portfolio-element .bt-portfolio-filter-warp .portfolio-filter-wrap.text-right {
    text-align: right;
}

.bearsthemes-portfolio-element .bt-portfolio-filter-warp .portfolio-filter-wrap.text-center {
    text-align: center;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner {
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .item-link {
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .item-link .item-title {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 15px 0;
    color: #fff;
    transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .item-link:hover .item-title {
    color: #d6261f;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap {
    display: inline-block;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap>a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    border: solid 2px #d6261f;
    text-align: center;
    font-size: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap>a:not(:last-child) {
    margin-right: 6px;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap>a>i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap>a:hover {
    background: #d6261f;
    color: #fff;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap>a.item-zoom {
    transform: translateX(200%);
    -webkit-transform: translateX(200%);
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner .content-entry .btn-action-wrap>a.item-view-detail {
    transform: translateX(-200%);
    -webkit-transform: translateX(-200%);
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover:after,
.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry {
    visibility: visible;
    opacity: 1;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry .item-link .item-title {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
}

.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry .btn-action-wrap>a.item-zoom,
.bearsthemes-portfolio-element.bearsthemes-portfolio-element-layout-default .bearsthemes-element-inner .portfolio-item .portfolio-item-inner:hover .content-entry .btn-action-wrap>a.item-view-detail {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
}

.bearsthemes-countdown-element .bearsthemes-element-inner {
    display: block;
}

.bearsthemes-countdown-element .bearsthemes-element-inner:after {
    content: "";
    clear: both;
    display: block;
}

.bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section {
    float: left;
    text-align: center;
    width: 100px;
    padding: 30px 0;
    position: relative;
}

.bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    border-radius: 100px;
    border: solid 3px #d6261f;
}

.bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section:not(:last-child) {
    margin-right: 20px;
}

.bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section .countdown-amount {
    display: block;
    font-size: 28px;
    font-weight: bold;
    font-family: montserrat;
    color: #333;
}

.bearsthemes-countdown-element .bearsthemes-element-inner .countdown-section .countdown-period {
    display: block;
    font-size: 14px;
    color: #666;
}

.bearsthemes-recent-post-element a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.bearsthemes-recent-post-element.recent-post-layout-background.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner {
    position: relative;
}

.bearsthemes-recent-post-element.recent-post-layout-background.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner:before {
    content: "\f097";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    color: #fff;
    z-index: 10;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner {
    position: relative;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .image-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .image-overlay:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40% 30px;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .term-list-wrap {
    display: inline-block;
    color: #fff;
    padding-left: 30px;
    border-left: solid 1px #d6261f;
    margin-bottom: 30px;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .term-list-wrap a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .term-list-wrap a:hover {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .title-link {
    display: block;
    text-decoration: none;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .title-link .title {
    display: inline;
    font-size: 40px;
    line-height: 52px;
    color: #fff;
    background: rgba(17, 17, 17, 0.5);
    letter-spacing: -1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .title-link:hover .title {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .readmore-link {
    display: inline-block;
    padding: 4px 15px;
    font-size: 12px;
    border: solid 1px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    text-decoration: none;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .readmore-link i {
    font-size: 18px;
    margin-left: 6px;
    vertical-align: middle;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner .post-entry-wrap .readmore-link:hover {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-background .post-item-inner:hover .image-overlay:after {
    background: rgba(0, 0, 0, 0.5);
}

.bearsthemes-recent-post-element.recent-post-layout-default.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner {
    position: relative;
}

.bearsthemes-recent-post-element.recent-post-layout-default.sticky-posts-1 .element-inner .grid-item:first-child .post-item-inner:before {
    content: "\f097";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    color: #fff;
    z-index: 10;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap {
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    background: #222;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap img {
    max-width: 100%;
    height: auto;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap .readmore-icon-link {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    display: block;
    padding: 4px 14px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap .readmore-icon-link i {
    font-size: 30px;
    vertical-align: middle;
    margin-left: 10px;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap .readmore-icon-link:hover {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap:hover:after {
    opacity: 1;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .featured-image-wrap:hover .readmore-icon-link {
    visibility: visible;
    opacity: 1;
    left: 50%;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .term-list-wrap>a {
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    text-decoration: none;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .term-list-wrap>a:hover {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link {
    color: #111;
    text-decoration: underline;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link .title {
    margin-top: 0;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -1px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link:hover {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .title-link:hover .title {
    color: #d6261f;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .readmore-link {
    display: inline-block;
    padding: 6px 18px;
    color: #fff;
    background: #d6261f;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 11px;
    text-decoration: none;
}

.bearsthemes-recent-post-element.recent-post-layout-default .post-item-inner .entry-content .readmore-link:hover {
    background: #bd185a;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-prev,
.bearsthemes-carousel-element .owl-nav .owl-prev,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-prev,
.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-next,
.bearsthemes-carousel-element .owl-nav .owl-next,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-prev,
.bearsthemes-carousel-element .owl-nav .owl-prev,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-prev {
    left: -50px;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-nav .owl-next,
.bearsthemes-carousel-element .owl-nav .owl-next,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-nav .owl-next {
    right: -50px;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots,
.bearsthemes-carousel-element .owl-dots,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9;
    line-height: normal;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots .owl-dot,
.bearsthemes-carousel-element .owl-dots .owl-dot,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: solid 2px #d6261f;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots .owl-dot:not(:last-child),
.bearsthemes-carousel-element .owl-dots .owl-dot:not(:last-child),
.owl-carousel.owl-carousel-style-dots-navs-default .owl-dots .owl-dot:not(:last-child) {
    margin-right: 5px;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel .owl-dots .owl-dot.active,
.bearsthemes-carousel-element .owl-dots .owl-dot.active,
.owl-carousel.owl-carousel-style-dots-navs-default .owl-dots .owl-dot.active {
    background: #d6261f;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel:hover .owl-nav .owl-prev,
.bearsthemes-carousel-element:hover .owl-nav .owl-prev,
.owl-carousel.owl-carousel-style-dots-navs-default:hover .owl-nav .owl-prev {
    left: 0;
    opacity: 1;
}

.bearsthemes-team-element.bearsthemes-team-element-layout-default-carousel:hover .owl-nav .owl-next,
.bearsthemes-carousel-element:hover .owl-nav .owl-next,
.owl-carousel.owl-carousel-style-dots-navs-default:hover .owl-nav .owl-next {
    right: 0;
    opacity: 1;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-prev,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-prev,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-next,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-prev,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-prev {
    left: -50px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-nav .owl-next,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-nav .owl-next {
    right: -50px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots {
    width: 100%;
    text-align: center;
    line-height: normal;
    margin-top: 20px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots .owl-dot,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: solid 2px #d6261f;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots .owl-dot:not(:last-child),
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots .owl-dot:not(:last-child) {
    margin-right: 5px;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel .owl-dots .owl-dot.active,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2 .owl-dots .owl-dot.active {
    background: #d6261f;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel:hover .owl-nav .owl-prev,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2:hover .owl-nav .owl-prev {
    left: 0;
    opacity: 1;
}

.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-default-carousel:hover .owl-nav .owl-next,
.bearsthemes-testimonals-element.bearsthemes-testimonals-element-layout-carousel-2:hover .owl-nav .owl-next {
    right: 0;
    opacity: 1;
}

.custom-nav-position-top-right .owl-nav {
    opacity: 1;
    visibility: visible;
    position: absolute;
    right: 0;
    top: -72px;
}

.custom-nav-position-top-right .owl-nav>div {
    display: inline-block;
    opacity: 1 !important;
    position: initial !important;
    transform: none !important;
    -webkit-transform: none !important;
    vertical-align: middle;
    width: 35px !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.custom-nav-position-top-right .owl-nav>div:hover {
    color: #d6261f !important;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav,
#page .wpb_theme_custom_element.wpb_events_slider .owl-nav,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-nav,
#page .wpb_theme_custom_element.wpb_base_review .owl-nav,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav {
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav>div,
#page .wpb_theme_custom_element.wpb_events_slider .owl-nav>div,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-nav>div,
#page .wpb_theme_custom_element.wpb_base_review .owl-nav>div,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav>div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #d6261f;
    color: #fff;
    border-radius: 100px;
    z-index: 5;
    font-size: 20px;
    opacity: 0.3;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav>div.owl-prev,
#page .wpb_theme_custom_element.wpb_events_slider .owl-nav>div.owl-prev,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-nav>div.owl-prev,
#page .wpb_theme_custom_element.wpb_base_review .owl-nav>div.owl-prev,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav>div.owl-prev {
    left: 10px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav>div.owl-next,
#page .wpb_theme_custom_element.wpb_events_slider .owl-nav>div.owl-next,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-nav>div.owl-next,
#page .wpb_theme_custom_element.wpb_base_review .owl-nav>div.owl-next,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav>div.owl-next {
    right: 10px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-nav>div:hover,
#page .wpb_theme_custom_element.wpb_events_slider .owl-nav>div:hover,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-nav>div:hover,
#page .wpb_theme_custom_element.wpb_base_review .owl-nav>div:hover,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-nav>div:hover {
    opacity: 1;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-dots,
#page .wpb_theme_custom_element.wpb_events_slider .owl-dots,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-dots,
#page .wpb_theme_custom_element.wpb_base_review .owl-dots,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-dots {
    margin-top: 20px;
    text-align: center;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-dots .owl-dot,
#page .wpb_theme_custom_element.wpb_events_slider .owl-dots .owl-dot,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-dots .owl-dot,
#page .wpb_theme_custom_element.wpb_base_review .owl-dots .owl-dot,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 20px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    margin: 0 8px;
}

#page .wpb_theme_custom_element.wpb_give_forms_slider .owl-dots .owl-dot.active,
#page .wpb_theme_custom_element.wpb_events_slider .owl-dots .owl-dot.active,
#page .wpb_theme_custom_element.wpb_base_carousel .owl-dots .owl-dot.active,
#page .wpb_theme_custom_element.wpb_base_review .owl-dots .owl-dot.active,
#page .wpb_theme_custom_element.wpb_posts_slider_2 .owl-dots .owl-dot.active {
    transform: scale(2);
    -webkit-transform: scale(3);
    background: #d6261f;
    box-shadow: 0 0 13px -2px rgba(1, 1, 1, .2);
}

#page .wpb_theme_custom_element.wpb_give_forms_slider:hover .owl-nav,
#page .wpb_theme_custom_element.wpb_events_slider:hover .owl-nav,
#page .wpb_theme_custom_element.wpb_base_carousel:hover .owl-nav,
#page .wpb_theme_custom_element.wpb_base_review:hover .owl-nav,
#page .wpb_theme_custom_element.wpb_posts_slider_2:hover .owl-nav {
    opacity: 1;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation {
    /****************
menu style inline
*****************/
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item {
    text-align: left;
    position: relative;
    list-style: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.title-hidden>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.title-hidden>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.title-hidden>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.title-hidden>a {
    display: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a {
    position: relative;
    display: block;
    text-decoration: none;
    color: #282828;
    line-height: 80px;
    font-size: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a span {
    display: inline-block;
    vertical-align: middle;
    font-family: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 600;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a sup,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a sup,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a sup,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item a sup {
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>i,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>i,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>i,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>i {
    display: inline-block;
    vertical-align: baseline;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-icon>a>span {
    margin-left: 10px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes>a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes>a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes>a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-hidden-title-yes>a>span {
    display: none !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form {
    margin: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn {
    margin: 0;
    padding: 7px 18px;
    color: #fff;
    background: #d6261f;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    line-height: 80px;
    font-size: 15px;
    font-family: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 600;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover {
    background: #bd185a;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center>a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon {
    display: inline-block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item {
    display: table-cell;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item:not(:last-child) {
    padding-right: 25px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a {
    position: relative;
    color: #282828;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .icon-type-v2 {
    font-size: 120%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover {
    color: #d6261f;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a .notification-cart-total-qtt-dk {
    font-size: 11px;
    height: 14px;
    line-height: 16px;
    margin-left: 1px;
    padding: 0 4px;
    position: absolute;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button.menu-item-has-icon>a {
    padding: 0 12px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>i,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>i,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>i,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>i,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span {
    display: inline-block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a>span {
    background: #fff;
    border: solid 2px #fff;
    color: #333;
    box-shadow: 0 0 18px -8px rgba(1, 1, 1, .3);
    padding: 0 20px;
    height: 32px;
    line-height: 28px;
    border-radius: 32px;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a:hover span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a:hover span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a:hover span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-button>a:hover span {
    background: #d6261f;
    border-color: #d6261f;
    color: #fff;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-qtt,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-qtt,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-qtt,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-qtt,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price {
    display: inline-block;
    vertical-align: top;
    font-weight: bold;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-amount,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-amount,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-amount,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-amount {
    font-weight: bold;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-currencySymbol,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-currencySymbol,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-currencySymbol,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-custom-type-woocommerce-mini-cart>a>span .total-price .woocommerce-Price-currencySymbol {
    display: inline-block;
    vertical-align: top;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap {
    position: absolute;
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form {
    position: relative;
    min-width: 260px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form:after,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form:after,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form:after,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form:after {
    content: "\f002";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 14px;
    color: #999;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 3;
    box-shadow: none;
    border: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form label,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form label,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form label,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form label {
    margin: 0;
    display: block;
    width: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text {
    display: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .search-submit,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .search-submit,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .search-submit,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form .search-submit {
    display: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:active,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:active,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:active,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:active {
    box-shadow: none;
    outline: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.search-form-container form.search-form input.search-field {
    border: medium none;
    height: auto !important;
    padding: 10px 20px 10px 36px !important;
    width: 100%;
    font-weight: normal;
    background: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap {
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .3);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>.off-canvas-menu-closed,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>.off-canvas-menu-closed,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>.off-canvas-menu-closed,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>.off-canvas-menu-closed {
    position: absolute;
    display: block;
    z-index: 5;
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 35px;
    text-align: center;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    background: #333;
    box-shadow: 0 0 26px 3px rgba(0, 0, 0, .3);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div {
    position: absolute;
    right: -100%;
    top: 0;
    width: 260px;
    height: 100%;
    overflow: auto;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 3;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>* {
    margin-top: 30px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*:first-child,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*:first-child,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*:first-child,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*:first-child {
    margin-top: 50px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu {
    position: absolute;
    min-width: 200px;
    padding: 0;
    opacity: 0;
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu:not(.mega-menu-row) {
    margin: 0;
    visibility: hidden;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:not(:last-child) {
    border-bottom: 1px solid rgba(40, 40, 40, 0.05);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a {
    padding: 5px 20px;
    font-size: 15px;
    line-height: 30px;
    color: #282828;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item a span {
    font-family: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 500;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item.current-menu-item>a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item ul.sub-menu li.menu-item:hover>a {
    color: #d6261f !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-divider a {
    color: #dbdbdb;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a {
    cursor: pointer;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-off-canvas-menu a span,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-search a span,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-type-menu-item-custom-link-woocommerce-mini-cart a span {
    display: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row {
    position: absolute;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    white-space: nowrap;
    padding: 10px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col {
    display: inline-block;
    vertical-align: top;
    width: 228px;
    border-bottom: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon>a>i,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon>a>i,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon>a>i,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .menu-item-has-icon>a>i {
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>a span {
    font-family: 'Poppins';
    font-size: 120%;
    text-decoration: underline;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div {
    font-size: 15px;
    line-height: 30px;
    color: rgba(40, 40, 40, 0.7);
    font-family: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 500;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .widget.widget_media_image img {
    width: 100%;
    max-width: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col:hover>a {
    color: #282828;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>div {
    padding: 0 10px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col .sub-menu {
    background: transparent;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu {
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li {
    border-bottom: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li.mega-menu-item-custom-type-sidebar ul.fw-side-posts-list li .posts-content .post-date {
    color: rgba(40, 40, 40, 0.7);
    font-size: 15px;
    font-family: 'Poppins';
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap {
    position: relative;
    background: transparent;
    box-shadow: none;
    padding: 0 10px;
    margin-top: 10px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget .widget-title,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget .widget-title,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget .widget-title,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget .widget-title {
    display: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a {
    padding: 0;
    line-height: normal;
    font-size: 15px;
    color: #282828;
    font-family: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 500;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a:hover,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a:hover,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a:hover,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu li .menu-item-custom-wrap .widget a:hover {
    color: #d6261f;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu {
    opacity: 1;
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    padding-left: 35px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu>li.menu-item,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu>li.menu-item,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu>li.menu-item,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item.menu-item-has-mega-menu .mega-menu .mega-menu-row .mega-menu-col>.sub-menu .sub-menu>li.menu-item {
    list-style: initial;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-item>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-item>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-item>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-item>a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-ancestor>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-ancestor>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-ancestor>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.current-menu-ancestor>a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item:hover>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item:hover>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item:hover>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item:hover>a {
    color: #d6261f !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item {
    display: inline-block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(:first-child),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(:first-child),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(:first-child),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(:first-child) {
    margin-left: 35px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item) {
    /* wpml */
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span {
    display: inline-block;
    position: relative;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span:after,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span:after,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span:after,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children:not(.wpml-ls-item)>a span:after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    margin-left: 6px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span {
    position: relative;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span:after,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span:after,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span:after,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item>a>span:after {
    content: "";
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    margin-left: 6px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span {
    display: block;
    width: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>.wpml-ls-flag {
    padding-right: 4px;
    height: auto;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>*,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>*,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>*,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-children.wpml-ls-menu-item a>span>* {
    display: inline-block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu {
    left: -20px;
    top: calc(100% + 20px);
    z-index: 99;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu>li.menu-item ul.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu>li.menu-item ul.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu>li.menu-item ul.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu>li.menu-item ul.sub-menu {
    left: calc(100% + 20px);
    top: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu li.menu-item:hover>ul.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu li.menu-item:hover>ul.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu li.menu-item:hover>ul.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover>ul.sub-menu li.menu-item:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    left: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row {
    left: 0;
    top: calc(100% + 20px);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-center,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-center,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-center,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-center {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-left,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-left,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-left,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-left {
    left: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-right,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-right,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-right,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row.fw-sub-menu-position-right {
    left: auto;
    right: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu {
    visibility: hidden;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:hover.menu-item-has-mega-menu>.mega-menu>.mega-menu-row .menu-item .sub-menu {
    visibility: visible;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>.menu-item-custom-wrap,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>.menu-item-custom-wrap,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>.menu-item-custom-wrap,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>.menu-item-custom-wrap {
    right: 0;
    top: calc(100% + 20px);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    background: #fff;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap {
    visibility: visible;
    opacity: 1;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap>div,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap>div,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap>div,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.off-canvas-menu-is-open .off-canvas-menu-wrap>div {
    right: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a {
    position: relative;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a:after,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a:after,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a:after,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a:after {
    content: "\f00d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a>i,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a>i,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a>i,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a>i {
    opacity: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active>.menu-item-custom-wrap:not(.off-canvas-menu-wrap),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active>.menu-item-custom-wrap:not(.off-canvas-menu-wrap),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active>.menu-item-custom-wrap:not(.off-canvas-menu-wrap),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-custom-is-active>.menu-item-custom-wrap:not(.off-canvas-menu-wrap) {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu {
    /*******************
menu style offcanvas
********************/
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu>li:not(:last-child),
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu>li:not(:last-child) {
    margin-right: 20px;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item {
    display: inline-block;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item>a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item>a {
    display: block;
    width: 100%;
    /* wpml */
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item>a>i,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item>a>i {
    margin-right: 5px;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item>a>sup,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item>a>sup {
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a>span,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a>span {
    display: block;
    width: 100%;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a>span>.wpml-ls-flag,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a>span>.wpml-ls-flag {
    padding-right: 4px;
    height: auto;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a>span>*,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item.wpml-ls-menu-item a>span>* {
    display: inline-block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div {
    /* menu custom type */
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu {
    padding: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:not(:last-child),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:not(:last-child),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:not(:last-child),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:not(:last-child),
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:not(:last-child),
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:not(:last-child) {
    border-bottom: solid 1px rgba(40, 40, 40, 0.05);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a {
    padding: 5px 20px;
    position: relative;
    display: block;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a>sup,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a>sup,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a>sup,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a>sup,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a>sup,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a>sup {
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 9;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:after,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:after,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:after,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:after,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:after,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:after {
    content: "";
    width: 10px;
    border-top: 1px solid;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:before,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:before,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:before,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:before,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:before,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui:before {
    content: "";
    height: 10px;
    border-left: 1px solid;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui.is-open:before,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui.is-open:before,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui.is-open:before,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui.is-open:before,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui.is-open:before,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li>a .menu-offcanvas-toggle-ui.is-open:before {
    display: none;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a {
    font-size: 15px;
    line-height: 30px;
    color: #282828;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a span,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a span,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li a span {
    font-family: 'Poppins';
    letter-spacing: 0px;
    font-style: normal;
    font-weight: 500;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover {
    /* wpml */
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item>a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item>a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-item>a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent>a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent>a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.current-menu-parent>a,
.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover>a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover>a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover>a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover>a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover>a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li:hover>a {
    color: #d6261f !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span {
    display: block;
    width: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>.wpml-ls-flag,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>.wpml-ls-flag,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>.wpml-ls-flag {
    padding-right: 4px;
    height: auto;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>*,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>*,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>*,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>*,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>*,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.wpml-ls-menu-item a>span>* {
    display: inline-block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap {
    box-shadow: none !important;
    left: 0 !important;
    padding: 20px;
    position: relative !important;
    top: 0 !important;
    transform: translate(0px, 0px) !important;
    -webkit-transform: translate(0px, 0px) !important;
    width: 100%;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget {
    margin-top: 30px;
    margin-bottom: 0px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget .widget-title {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 8px;
    color: #282828;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li {
    width: 60px;
    height: 60px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu li.menu-item-type-custom .menu-item-custom-wrap .widget.fw-widget-instagram .fw-instagram-wrap ul li a {
    padding: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul {
    opacity: 1;
    position: relative;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu {
    visibility: visible !important;
    -webkit-transition: none;
    transition: none;
    opacity: 1;
    display: none;
    box-shadow: none;
    border-top: solid 1px rgba(40, 40, 40, 0.05);
    background: rgba(242, 242, 242, 0.5);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu li:not(:last-child),
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu li:not(:last-child),
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu li:not(:last-child),
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu li:not(:last-child),
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu li:not(:last-child),
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div ul.menu ul.sub-menu li:not(:last-child) {
    border-bottom: solid 1px rgba(40, 40, 40, 0.05);
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu {
    /* style menu mobile default (not yet install plg Unyson) */
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom {
    position: relative;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap {
    right: 0;
    top: calc(100% + 20px);
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    background: #fff;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap {
    visibility: visible;
    opacity: 1;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap>div,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.off-canvas-menu-is-open .off-canvas-menu-wrap>div {
    right: 0;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a {
    position: relative;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a:after,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a:after {
    content: "\f00d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a>i,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active> :not(.menu-item-custom-type-woocommerce-mini-cart)>a>i {
    opacity: 0;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active>.menu-item-custom-wrap:not(.off-canvas-menu-wrap),
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom.menu-custom-is-active>.menu-item-custom-wrap:not(.off-canvas-menu-wrap) {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap {
    text-align: left;
    z-index: 9999;
    position: absolute;
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form {
    position: relative;
    min-width: 260px;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form:after,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form:after {
    content: "\f002";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 14px;
    color: #999;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 3;
    box-shadow: none;
    border: none;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form label,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form label {
    margin: 0;
    display: block;
    width: 100%;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form .screen-reader-text {
    display: none;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form .search-submit,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form .search-submit {
    display: none;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:focus,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:active,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form input.search-field:active {
    box-shadow: none;
    outline: none;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form input.search-field,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.search-form-container form.search-form input.search-field {
    border: medium none;
    height: auto;
    padding: 16px 20px 16px 36px;
    width: 100%;
    font-weight: normal;
    background: none;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap {
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .3);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>.off-canvas-menu-closed,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>.off-canvas-menu-closed {
    position: absolute;
    display: block;
    z-index: 5;
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 35px;
    text-align: center;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    background: #333;
    box-shadow: 0 0 26px 3px rgba(0, 0, 0, .3);
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div {
    position: absolute;
    right: -100%;
    top: 0;
    width: 260px;
    height: 100%;
    overflow: auto;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    z-index: 3;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div>* {
    margin-top: 30px;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*:first-child,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.off-canvas-menu-wrap>div>*:first-child {
    margin-top: 50px;
}

.bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation {
    background: #fff none repeat scroll 0 0;
    border-radius: 3px;
    box-shadow: 0 0 12px -1px rgba(1, 1, 1, 0.15);
    max-width: 300px;
    min-width: 200px;
    padding: 20px 30px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 999;
}

.bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation>ul.bt-nav-menu li {
    display: block !important;
    margin: 0 !important;
}

.bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation>ul.bt-nav-menu li ul.sub-menu {
    position: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    left: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}

.bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation>ul.bt-nav-menu li ul.sub-menu li {
    padding-left: 15px;
    border: none !important;
}

.bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation>ul.bt-nav-menu li ul.sub-menu li a {
    padding-left: 0 !important;
}

.bt-header .bt-header-main .bt-header-container.fw-absolute-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.35) !important;
}

body.is-header-sticky.admin-bar .fw-sticky-header {
    top: 32px !important;
}

body.is-header-sticky .bt-header-container.fw-sticky-header {
    /* end set background */
    background: rgba(31, 31, 31, 0.95) !important;
    /* animate sticky */
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    /* end animate sticky */
    /* START -  padding */
    animation-duration: 1s;
    padding-top: 0px;
    /* END - padding */
    padding-bottom: 0px;
    width: 100%;
    z-index: 999;
    position: fixed !important;
    left: 0;
    top: 0;
}

body.is-header-sticky .bt-header-container.fw-sticky-header.fw-absolute-header {
    background: rgba(31, 31, 31, 0.95) !important;
}

@media (max-width: 1170px) {
    body.is-header-sticky .bt-header-container.fw-sticky-header.fw-sticky-header {
        width: 100%;
        margin-left: 0;
    }
}

body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(.menu-item-custom-type-button)>a {
    color: #ebebeb !important;
}

body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(.menu-item-custom-type-button):hover>a,
body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(.menu-item-custom-type-button).current-menu-ancestor>a,
body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(.menu-item-custom-type-button).current-menu-item>a {
    color: #d6261f !important;
}

body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a {
    color: #ebebeb !important;
}

body.is-header-sticky .bt-header-container.fw-sticky-header .bt-site-navigation>ul.bt-nav-menu>li.menu-item.menu-item-custom-type-notification_center .notification-center-icon .notification-center-item a:hover {
    color: #d6261f !important;
}

body.is-header-sticky.bt-side-boxed .bt-header-container.fw-sticky-header {
    margin-left: calc((100% - 1170px) / 2);
    max-width: 1170px;
}

.fw-wrap-logo .fw-site-logo {
    display: inline-block;
}

.fw-wrap-logo .fw-site-logo strong.site-title {
    display: block;
    font-family: ;
    font-size: ;
    line-height: ;
    letter-spacing: ;
    color: ;
    font-style: ;
    font-weight: ;
}

.fw-wrap-logo .fw-site-logo span.site-description {
    display: block;
    font-family: ;
    font-size: ;
    line-height: ;
    letter-spacing: ;
    color: ;
    font-style: ;
    font-weight: ;
}

.fw-wrap-logo .fw-site-logo.logo-sticky-is-enable img.main-logo {
    display: none;
}

.fw-wrap-logo .fw-site-logo.logo-sticky-is-enable img.sticky-logo {
    display: inline-block !important;
}

img.sticky-logo {
    display: none;
}

.bt-logo-retina .fw-wrap-logo .fw-site-logo img.main-logo {
    width: calc(280px / 2);
}

.bt-logo-retina .fw-wrap-logo .fw-site-logo img.sticky-logo {
    width: calc( / 2);
    display: none;
}

.bt-header-top-bar {
    background: #000;
    padding: 6px 0;
}

.bt-header-top-bar *:not(.fa) {
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 0px;
    color: #fff;
    font-style: normal;
    font-weight: 400;
}

.bt-header-top-bar .menu-item a,
.bt-header-top-bar a {
    color: #fff;
}

.bt-header-top-bar .menu-item a:hover,
.bt-header-top-bar a:hover {
    color: rgba(255, 255, 255, 0.3);
}

.bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-left {
    text-align: left;
}

.bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-center {
    text-align: center;
}

.bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-right {
    text-align: right;
}

.bt-header-top-bar .header-top-sidebar-item.fw-sidebar-content-align-right .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap {
    right: 0;
    left: auto;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_text a,
.bt-header-top-bar .header-top-sidebar-item .widget a {
    text-decoration: none;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 0px;
    color: #fff;
    font-style: normal;
    font-weight: 400;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu>li a {
    padding-top: 0;
    padding-bottom: 0;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li.menu-item-custom-type-button_donate .give-form-wrap form.give-form {
    margin: 0;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn {
    margin: 0;
    padding: 0 20px;
    border-radius: 0;
    box-shadow: 0 7px 0 0 #d6261f, 0 -7px 0 0 #d6261f;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 50px;
    letter-spacing: 0px;
    color: #fff;
    font-style: normal;
    font-weight: 400;
}

.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul li.menu-item-custom-type-button_donate .give-form-wrap form.give-form .give-btn:hover {
    background: #bd185a;
    box-shadow: 0 7px 0 0 #bd185a, 0 -7px 0 0 #bd185a;
}

.bt-header-top-bar-mobi {
    background: #000;
    padding: 9px 0;
    text-align: center;
}

.bt-header-top-bar-mobi *:not(.fa) {
    font-family: 'Poppins';
    font-size: 13px !important;
    line-height: 25px !important;
    letter-spacing: 0px !important;
    color: #fff !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

.bt-header-top-bar-mobi .menu-item a,
.bt-header-top-bar-mobi a {
    color: #fff !important;
}

.bt-header-top-bar-mobi .menu-item a:hover,
.bt-header-top-bar-mobi a:hover {
    color: rgba(255, 255, 255, 0.3) !important;
}

.bt-header.header-1 .bt-container-logo {
    width: 15%;
}

.bt-header.header-1 .bt-container-menu {
    width: 85%;
}

.bt-header.header-1 .bt-header-main {
    display: block;
    width: 100%;
}

.bt-header.header-1 .bt-header-main .fw-wrap-logo {
    display: block;
    vertical-align: middle;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap {
    display: block;
    vertical-align: middle;
}

.bt-header.header-2 .bt-container-logo {
    width: 20%;
}

.bt-header.header-2 .bt-container-menu {
    width: 40%;
}

.bt-header.header-2 .bt-header-main {
    display: block;
    width: 100%;
}

.bt-header.header-2 .bt-header-main .fw-wrap-logo {
    display: block;
    vertical-align: middle;
}

.bt-header.header-2 .bt-header-main .bt-nav-wrap {
    display: block;
    vertical-align: middle;
}

.bt-header.header-3 {
    /* header 3 top */
}

.bt-header.header-3 .bt-container-menu {
    width: 100%;
}

.bt-header.header-3 .bt-header-main {
    display: block;
    width: 100%;
}

.bt-header.header-3 .bt-header-main .bt-nav-wrap {
    display: block;
}

.header-3-top {
    z-index: 20;
}

.header-3-top .bt-header-top-bar {
    position: relative;
    overflow: hidden;
}

.header-3-top .bt-header-logo-sidebar-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
    background: #fff;
    z-index: 1000;
}

.header-3-top .bt-header-logo-sidebar-wrap.bt-header-shadow-effect-yes {
    position: relative;
    box-shadow: 0 0 59px -28px #222;
}

.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget a {
    text-decoration: none;
}

.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header-3-top .bt-header-logo-sidebar-wrap .text-left .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap {
    left: 0;
    right: auto;
}

.header-3-top .bt-header-logo-sidebar-wrap .text-right .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap {
    left: auto;
    right: 0;
}

.bt-header-mobi {
    background: #fff;
}

.bt-header-mobi.fw-absolute-header .bt-header-mobi-main {
    position: absolute;
    z-index: 99;
}

.bt-header-mobi .bt-header-mobi-main {
    padding: 10px 0;
}

.bt-header-mobi.fw-menu-position-left .bt-nav-wrap {
    text-align: left;
}

.bt-header-mobi.fw-menu-position-center .bt-nav-wrap {
    text-align: center;
}

.bt-header-mobi.fw-menu-position-right .bt-nav-wrap {
    text-align: right;
}

.bt-header-mobi.header-mobi .bt-container-logo {
    width: 15%;
}

.bt-header-mobi.header-mobi .bt-container-menu {
    width: 85%;
}

.bt-header-mobi.header-mobi .bt-header-mobi-main {
    display: block;
    width: 100%;
}

.bt-header-mobi.header-mobi .bt-header-mobi-main .fw-wrap-logo {
    display: block;
    vertical-align: middle;
}

.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap {
    display: block;
    vertical-align: middle;
}

.bt-header-mobi .default-mobi-menu-wrap {
    position: relative;
}

.bt-header-mobi .default-mobi-menu-wrap.menu-mobi-is-open #bt-menu-mobi-menu {
    display: block;
}

.bt-header-mobi .default-mobi-menu-wrap .button-toggle-ui {
    background: #d6261f;
    border: 1px solid #d6261f;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 4px;
    padding: 4px 12px 4px 15px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.bt-header-mobi .default-mobi-menu-wrap .button-toggle-ui:hover {
    color: #fff;
    background: #bd185a;
    border-color: #bd185a;
}

.bt-header-mobi .default-mobi-menu-wrap .bt-site-navigation {
    display: none;
}

header.bt-header-mobi {
    display: none;
}

@media (max-width: 996px) {
    /*
responsive Menu Item Type Custom On Mobi 525px
*/
    header.bt-header {
        display: none;
    }
    header.bt-header-mobi {
        display: block;
    }
    header.header-3-top {
        display: none;
    }
}

@media (max-width: 525px) {
    .menu-item-type-custom>.menu-item-custom-wrap:not(.off-canvas-menu-wrap) {
        box-shadow: 0 0 18px 1px rgba(0, 0, 0, .3) !important;
        position: fixed !important;
        top: 100px !important;
        left: 50%;
        width: calc(100% - 50px);
        max-height: calc(100% - 150px);
        overflow: auto;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
    }
    .menu-item-type-custom>.menu-item-custom-wrap:not(.off-canvas-menu-wrap) .widget_shopping_cart_content {
        width: 100% !important;
    }
}

.menu-item-hidden-title-yes a span {
    display: none;
}

.bt-header .bt-header-main {
    position: relative;
}

.bt-header .bt-header-main .bt-header-container {
    background: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
}

.bt-header.fw-menu-position-left .bt-nav-wrap {
    text-align: left;
}

.bt-header.fw-menu-position-center .bt-nav-wrap {
    text-align: center;
}

.bt-header.fw-menu-position-right .bt-nav-wrap {
    text-align: right;
}

.fw-title-bar {
    position: relative;
}

.fw-title-bar>*:not(.fw-main-row-overlay) {
    position: relative;
    z-index: 3;
}

.fw-title-bar .fw-heading .fw-special-title {
    font-family: 'Poppins';
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #fff;
    font-style: normal;
    font-weight: 600;
    margin: 0;
    max-width: 100%;
    display: inline-block;
    position: relative;
    padding-top: 40px;
}

.fw-title-bar .fw-heading .fw-special-title:after {
    content: "\f06c";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    font-size: 100%;
}

.fw-title-bar .fw-heading.fw-content-align-left .fw-special-title:after {
    top: 0;
    left: 0;
}

.fw-title-bar .fw-heading.fw-content-align-center .fw-special-title:after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.fw-title-bar .fw-heading.fw-content-align-right .fw-special-title:after {
    top: 0;
    right: 0;
}

.fw-title-bar .fw-heading .breadcrumbs-right i.fa {
    display: inline-block;
    color: #d6261f;
    margin-right: 5px;
    font-size: 110%;
}

.fw-title-bar .fw-heading .breadcrumbs-right .separator {
    padding: 0 3px;
}

.fw-title-bar .fw-heading .breadcrumbs-right .breadcrumbs {
    margin: 0;
    display: inline-block;
}

.fw-title-bar .fw-heading .breadcrumbs-right .breadcrumbs span {
    color: #d6261f;
}

.fw-title-bar .fw-heading .breadcrumbs-right .breadcrumbs span a {
    color: #d6261f;
}

@media (max-width: 768px) {
    .fw-title-bar .fw-heading .fw-special-title {
        font-size: 7vw;
        line-height: 9vw;
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }
}

.fw-title-bar .fw-main-row-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

body.search-results .fw-title-bar .fw-heading .fw-special-title:after {
    content: "\f002";
}

.post-list-type-blog-1 {
    /* layout creative default */
}

.post-list-type-blog-1 .post-inner {
    border-radius: 1px;
    overflow: hidden;
}

.post-list-type-blog-1 .post-inner .post-featured-image-wrap .post-featured-image-link {
    display: block;
    text-align: center;
}

.post-list-type-blog-1 .post-inner .post-featured-image-wrap .post-featured-image-link .post-single-image {
    max-width: 100%;
    border-radius: 5px;
    height: auto !important;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta {
    display: block;
    margin-bottom: 15px;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta:after {
    content: "";
    display: block;
    clear: both;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta a:hover {
    color: rgba(214, 38, 31, 0.5);
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category,
.post-list-type-blog-1 .post-inner .cat-tag-meta .post-tag {
    float: left;
    font-size: 16px;
    line-height: 24px;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category i,
.post-list-type-blog-1 .post-inner .cat-tag-meta .post-tag i {
    float: left;
    margin-right: 5px;
    color: #d6261f;
    text-align: center;
    width: 24px;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category {
    margin-right: 15px;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories:after {
    content: "";
    display: block;
    clear: both;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories li {
    float: left;
    list-style: none;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-category ul.post-categories li:not(:last-child) {
    margin-right: 5px;
}

.post-list-type-blog-1 .post-inner .cat-tag-meta .post-tag a {
    display: inline-block;
    vertical-align: top;
}

.post-list-type-blog-1 .post-inner .entry-wrap {
    padding: 0;
    position: relative;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-title-link {
    text-decoration: none;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-title-link .post-title {
    font-size: 20px;
    line-height: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin: 0;
    padding: 45px 0px 15px 0px;
    color: #3e3e3e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-title-link:hover .post-title {
    color: #bd185a;
}

.post-list-type-blog-1 .post-inner .entry-wrap .extra-meta {
    margin-top: 0px;
}

.post-list-type-blog-1 .post-inner .entry-wrap .extra-meta>div.post-date {
    background: #d6261f;
    color: #fff;
    border-radius: 30px;
    display: block;
    font-size: 15px;
    vertical-align: middle;
    line-height: 45px;
    position: absolute;
    top: -22px;
    text-transform: uppercase;
    font-weight: 600;
    height: 45px;
    text-align: center;
    width: 140px;
    right: 30px;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-author {
    margin-top: 10px;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-author span.edu-meta-top {
    font-size: 14px;
    font-weight: 600;
    color: #999;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-author span.edu-meta-bot {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: #d6261f;
}

.post-list-type-blog-1 .post-inner .entry-wrap .post-readmore {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-1.format-gallery .post-gallery-image-wrap .post-gallery .gallery-item .post-single-image {
    max-width: 100%;
    height: auto !important;
}

.post-list-type-blog-1.format-link .post-block-link-wrap {
    padding: 50px 20px;
    position: relative;
}

.post-list-type-blog-1.format-link .post-block-link-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8);
}

.post-list-type-blog-1.format-link .post-block-link-wrap i.fa-link {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3;
}

.post-list-type-blog-1.format-link .post-block-link-wrap .post-link-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px;
}

.post-list-type-blog-1.format-link .post-block-link-wrap .post-link-wrap .post-link {
    word-wrap: break-word;
    text-decoration: underline;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-1.format-quote .post-block-quote-wrap {
    padding: 50px 20px;
    position: relative;
}

.post-list-type-blog-1.format-quote .post-block-quote-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8);
}

.post-list-type-blog-1.format-quote .post-block-quote-wrap i.fa-quote-left {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3;
}

.post-list-type-blog-1.format-quote .post-block-quote-wrap .post-quote-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px;
}

.post-list-type-blog-1.format-quote .post-block-quote-wrap .post-quote-wrap .post-quote {
    border-left: medium none;
    color: #fff;
    font-family: caption;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0;
    padding: 0;
    text-align: justify;
}

.post-list-type-blog-1.format-audio .post-block-audio-wrap {
    line-height: 0;
}

.post-list-type-blog-1.format-video .post-block-video-wrap {
    line-height: 0;
}

.post-list-type-blog-1.format-video .post-block-video-wrap .post-video-wrap {
    position: relative;
    padding-bottom: 56%;
    overflow: hidden;
}

.post-list-type-blog-1.format-video .post-block-video-wrap .post-video-wrap>* {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-title-link {
    text-decoration: none;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-title-link .post-title {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-title-link:hover .post-title {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .post-featured-image-link {
    display: block;
    text-align: center;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .post-featured-image-link img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .icon-view-detail {
    border: 1px solid;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    left: 50%;
    letter-spacing: 2px;
    padding: 4px 14px;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 4;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .icon-view-detail span {
    font-size: 18px;
    margin-left: 4px;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .icon-view-detail:hover {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 4;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom:after {
    content: "";
    display: block;
    clear: both;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom .post-total-comment,
.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom .post-total-view {
    display: inline-block;
    vertical-align: top;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap .extra-meta-bottom .post-total-comment {
    margin-right: 15px;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover .icon-view-detail,
.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover .extra-meta-bottom {
    opacity: 1;
    visibility: visible;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-featured-image-wrap:hover .extra-meta-bottom {
    bottom: 20px;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category {
    position: relative;
    display: inline-block;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category a {
    font-size: 16px;
    letter-spacing: 0px;
    color: #999;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .cat-meta .post-category a:hover {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta {
    border-bottom: 1px solid #ececec;
    margin: 0 0 25px;
    padding: 0 0 12px;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta>div {
    color: #999;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    vertical-align: top;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta>div:not(:last-child) {
    margin-right: 30px;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta>div i {
    margin-right: 3px;
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta>div a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
    color: #999;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .extra-meta>div a:hover {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-readmore {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0px;
    line-height: 22px;
    padding: 13px 30px;
    font-family: 'Poppins';
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-readmore:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.post-list-type-blog-2.post-creative-layout-default .post-inner .post-entry-wrap .post-readmore:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap:after {
    content: "\f10e";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 2vw;
    top: 2vw;
    z-index: 3;
    color: #fff;
    font-size: 14px;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-image-background:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    padding: 90px 30px 30px;
    z-index: 4;
    color: #fff;
    opacity: 0.4;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap .post-quote {
    padding: 0;
    border: none;
    font-size: 23px;
    line-height: 37px;
    font-family: caption;
    font-style: italic;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap .post-quote:after {
    content: "";
    position: absolute;
    width: 20%;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 0;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap .post-quote-wrap .post-cite-wrap {
    font-size: 22px;
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap:hover .post-quote-image-background:after {
    background: rgba(0, 0, 0, 0.6);
}

.post-list-type-blog-2.post-creative-layout-default.format-quote .post-inner .post-header-quote-wrap:hover .post-quote-wrap {
    opacity: 0.8;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #d6261f;
    padding-bottom: 55vh;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:after {
    content: "\f03d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 2vw;
    top: 2vw;
    z-index: 5;
    color: #fff;
    font-size: 14px;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .post-video-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .post-video-wrap.video-type-embed iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    z-index: 2;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .icon-view-detail {
    border: 1px solid;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    left: 50%;
    letter-spacing: 2px;
    padding: 4px 14px;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 4;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .icon-view-detail span {
    font-size: 18px;
    margin-left: 4px;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .icon-view-detail:hover {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 4;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom:after {
    content: "";
    display: block;
    clear: both;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom .post-total-comment,
.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom .post-total-view {
    display: inline-block;
    vertical-align: top;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap .extra-meta-bottom .post-total-comment {
    margin-right: 15px;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover:before {
    opacity: 1;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover .icon-view-detail,
.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover .extra-meta-bottom {
    opacity: 1;
    visibility: visible;
}

.post-list-type-blog-2.post-creative-layout-default.format-video .post-inner .post-header-video-wrap:hover .extra-meta-bottom {
    bottom: 20px;
}

.post-list-type-blog-2.post-creative-layout-default.format-audio .post-inner .post-header-audio-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap:after {
    content: "\f0c1";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    right: 2vw;
    top: 2vw;
    z-index: 3;
    color: #fff;
    font-size: 14px;
}

.post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-image-background:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-wrap {
    display: block;
    padding: 80px 30px 30px;
    position: relative;
    z-index: 4;
}

.post-list-type-blog-2.post-creative-layout-default.format-link .post-inner .post-header-link-wrap .post-link-wrap a {
    color: #fff;
    font-family: caption;
    font-size: 22px;
    font-style: italic;
    display: block;
    /* All browsers since IE 5.5+ */
    word-wrap: break-word;
    /* Renamed property in CSS3 draft spec */
    overflow-wrap: break-word;
    width: 100%;
}

.post-list-type-blog-2.post-creative-layout-default.format-gallery .post-inner .post-header-gallery-wrap {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.post-list-type-blog-2.post-creative-layout-default.format-gallery .post-inner .post-header-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ {
    position: relative;
    width: 100%;
    height: 100%;
}

.post-list-type-blog-2.post-creative-layout-default.format-gallery .post-inner .post-header-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ .icon-zoom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap {
    position: relative;
    background: #d6261f;
    padding: 16vh 0;
    overflow: hidden;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-quote-image-background {
    position: absolute;
    left: -20%;
    top: -20%;
    width: 140%;
    height: 140%;
    z-index: 1;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-quote-image-background:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-layout-creative-video-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-layout-creative-video-wrap .post-video-wrap.video-type-embed iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 380%;
    height: 250%;
    z-index: 2;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap {
    position: relative;
    z-index: 3;
    padding: 30px;
    text-align: center;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta {
    display: block;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category {
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category a {
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .cat-meta .post-category a:hover {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-title-link {
    text-decoration: none;
    display: block;
    margin: 20px 0;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-title-link .post-title {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    margin: 20px 0;
    color: #fff;
    display: inline;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-title-link:hover .post-title {
    color: #d6261f;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-readmore {
    border: solid 1px;
    border-radius: 1px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 22px;
    padding: 6px 16px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-readmore:after {
    content: "";
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    margin-left: 8px;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .post-entry-wrap .post-readmore:hover {
    color: #bd185a;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .extra-meta-bottom {
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 4;
    color: #fff;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .extra-meta-bottom>div {
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 22px;
    margin-bottom: 5px;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap .extra-meta-bottom>div:not(:last-child) {
    margin-right: 8px;
}

.post-list-type-blog-2.post-creative-layout-background .post-inner .post-item-container-wrap:hover .extra-meta-bottom {
    visibility: visible;
    opacity: 1;
    bottom: 10px;
}

.post-list-type-blog-2.post-creative-layout-background.format-video .post-inner .post-item-container-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.post-list-type-blog-2.post-creative-layout-background.format-video .post-inner .post-item-container-wrap:hover:after {
    opacity: 1;
}

.search-post-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9e9e9;
}

.search-post-item .post-inner .post-type {
    background: #d6261f;
    border-radius: 20px;
    color: #fff;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    line-height: normal;
    padding: 4px 10px;
    text-transform: uppercase;
}

.search-post-item .post-inner .title-link {
    text-decoration: none;
}

.search-post-item .post-inner .title-link .title {
    font-size: 18px;
    line-height: 26px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.search-post-item .post-inner .title-link:hover .title {
    color: #d6261f;
}

.search-post-item .post-inner .extra-meta>div {
    color: #999;
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    vertical-align: top;
}

.search-post-item .post-inner .extra-meta>div:not(:last-child) {
    margin-right: 12px;
}

.search-post-item .post-inner .extra-meta>div i {
    margin-right: 4px;
}

.search-post-item .post-inner .extra-meta>div a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

.wp-caption {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    border: solid 1px #e9e9e9;
    position: relative;
    background: #fff;
    box-sizing: unset;
    padding: 20px;
    max-width: calc(100% - 40px);
    /* blockquote */
}

.wp-caption.alignleft {
    float: left;
    margin: 0 20px 0 0;
}

.wp-caption.alignleft img {
    padding: 0;
}

.wp-caption.alignright {
    float: right;
    margin: 0 0 0 20px;
}

.wp-caption.alignright img {
    padding: 0;
}

.wp-caption img.custom-image-size-width-350 {
    width: 350px;
    height: auto;
}

.wp-caption img {
    max-width: 100%;
}

.wp-caption .wp-caption-text {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 20px;
    font-family: caption;
    font-style: italic;
    display: block;
    width: 100%;
    bottom: 20px;
    left: 20px;
}

.x-blockquote {
    position: relative;
    margin: 30px 0;
    background: #f5f5f5 none repeat scroll 0 0;
    border: medium none;
    border-radius: 1px;
    color: #737373;
    font-family: caption;
    font-size: 20px;
    font-style: italic;
    line-height: 32px;
    padding: 30px 30px 30px 77px;
    text-align: justify;
    /* author-description */
    /* author-description */
}

.x-blockquote:after {
    content: '\f10d';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 1;
    font-size: 30px;
    color: #dedede;
}

.x-blockquote .x-cite {
    display: block;
}

.x-blockquote.right-text .x-cite {
    text-align: right;
    color: #d6261f;
}

.x-blockquote.center-text {
    text-align: center;
}

.x-blockquote.center-text .x-cite {
    text-align: center;
}

.author-description {
    background: #eaeaea none repeat scroll 0 0;
    position: relative;
    padding: 30px 50px;
    display: table;
    margin-top: 35px;
    width: 100%;
    border-radius: 3px;
    box-sizing: border-box;
}

.author-description .author-image {
    width: 100px;
    margin: 0 auto;
    margin-bottom: 10px;
    display: table-cell;
    vertical-align: middle;
}

.author-description .author-image img.avatar {
    width: 100%;
    height: auto;
    border-radius: 3px;
    max-width: 100px;
}

.author-description .author-text {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding: 0 0 0 50px;
    width: calc(100% - 100px);
    text-align: left;
}

.author-description .author-text .author-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
}

.author-description .author-text .author-name a {
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

.author-description .author-text .author-name a span {
    color: #333;
}

.author-description .author-text>p {
    color: #555;
    font-size: 16px;
    font-style: italic;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 10px;
}

@media (max-width: 768px) {
    /* single-entry-header */
    .author-description .author-image {
        display: block;
        width: 100%;
    }
    .author-description .author-text {
        display: block;
        padding: 0;
        margin-top: 30px;
        width: 100%;
    }
}

.single-entry-header {
    margin-bottom: 30px;
    /* single-entry-tag */
}

.single-entry-header .post-title {
    font-size: 26px;
    line-height: 28px;
    margin: 20px 0;
    color: #333;
    font-weight: 600;
}

.single-entry-header .post-image {
    margin-top: 0px;
}

.single-entry-header .post-image .post-single-image {
    max-width: 100%;
    height: auto;
}

.single-entry-header .post-block-quote-wrap {
    margin-top: 20px;
    padding: 50px 20px;
    position: relative;
}

.single-entry-header .post-block-quote-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8);
}

.single-entry-header .post-block-quote-wrap i.fa-quote-left {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3;
}

.single-entry-header .post-block-quote-wrap .post-quote-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px;
}

.single-entry-header .post-block-quote-wrap .post-quote-wrap .post-quote {
    border-left: medium none;
    color: #fff;
    font-family: caption;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 0;
    padding: 0;
    text-align: justify;
}

.single-entry-header .post-block-link-wrap {
    margin-top: 20px;
    padding: 50px 20px;
    position: relative;
}

.single-entry-header .post-block-link-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(1, 1, 1, .8);
}

.single-entry-header .post-block-link-wrap i.fa-link {
    color: #fff;
    font-size: 32px;
    left: 10px;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    z-index: 3;
}

.single-entry-header .post-block-link-wrap .post-link-wrap {
    position: relative;
    z-index: 9;
    font-size: 20px;
    text-align: center;
}

.single-entry-header .post-block-link-wrap .post-link-wrap .post-link {
    text-decoration: underline;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-entry-header .post-block-audio-wrap {
    margin-top: 20px;
}

.single-entry-header .post-gallery-image-wrap {
    margin-top: 20px;
}

.single-entry-header .post-gallery-image-wrap .post-gallery-wrap .item .post-single-image {
    height: auto;
    width: 100%;
}

.single-entry-header .post-gallery-image-wrap .single-gallery-masonry .gallery-item {
    padding: 15px;
    border: solid 1px #e9e9e9;
    background: #fff;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-entry-header .post-gallery-image-wrap .single-gallery-masonry .gallery-item img {
    width: 100%;
}

.single-entry-header .post-gallery-image-wrap .single-gallery-masonry .gallery-item:hover {
    border-color: #d6261f;
}

.single-entry-header .post-block-video-wrap {
    margin-top: 20px;
}

.single-entry-header .post-block-video-wrap .post-video-wrap {
    position: relative;
    padding-bottom: 56%;
}

.single-entry-header .post-block-video-wrap .post-video-wrap>* {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.single-entry-header .extra-meta {
    border-bottom: 1px solid #d5d5d5;
    padding: 20px 0;
}

.single-entry-header .extra-meta>div {
    display: inline-block;
    vertical-align: top;
    position: relative;
    line-height: 26px;
}

.single-entry-header .extra-meta>div:after {
    content: "";
    display: block;
    clear: both;
}

.single-entry-header .extra-meta>div:not(:last-child) {
    padding-right: 30px;
}

.single-entry-header .extra-meta>div i {
    margin-right: 5px;
    color: #d6261f;
}

.single-entry-header .extra-meta>div.post-cat .post-categories {
    padding-left: 28px;
}

.single-entry-header .extra-meta>div.post-cat .post-categories li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.single-entry-header .extra-meta>div.post-cat .post-categories li:not(:last-child) a:after {
    content: ",";
    color: #333;
}

.single-entry-header .extra-meta>div.post-cat .post-categories li a {
    color: #555;
    display: block;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-entry-header .extra-meta>div.post-cat .post-categories li a:hover {
    color: #bd185a;
}

@media (max-width: 767px) {
    .single-entry-header .extra-meta>div {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }
    .single-entry-header .extra-meta>div i.fa {
        display: none;
    }
}

.single-entry-header .extra-meta .post-author img {
    width: 50px;
    display: inline-block;
    vertical-align: middle;
}

.single-entry-header .extra-meta .post-author>div {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}

.single-entry-header .extra-meta .post-author>div span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}

.single-entry-header .extra-meta .post-author>div span.edu-meta-top {
    font-size: 16px;
    color: #999;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-author>div span.edu-meta-bot {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-author>div span.edu-meta-bot a {
    color: #333;
}

.single-entry-header .extra-meta .post-date {
    padding-left: 30px;
}

.single-entry-header .extra-meta .post-date>div {
    margin-top: 5px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
}

.single-entry-header .extra-meta .post-date>div span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}

.single-entry-header .extra-meta .post-date>div span.edu-meta-top {
    font-size: 16px;
    color: #999;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-date>div span.edu-meta-bot {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-date>div span.edu-meta-bot a {
    color: #333;
}

.single-entry-header .extra-meta .post-cat>div {
    margin-top: 5px;
    display: inline-block;
    vertical-align: middle;
}

.single-entry-header .extra-meta .post-cat>div span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}

.single-entry-header .extra-meta .post-cat>div span.edu-meta-top {
    font-size: 16px;
    color: #999;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-cat>div span.edu-meta-bot {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-cat>div span.edu-meta-bot a {
    color: #333;
}

.single-entry-header .extra-meta .post-total-comment {
    padding-left: 30px;
}

.single-entry-header .extra-meta .post-total-comment>div {
    margin-top: 5px;
    display: inline-block;
    vertical-align: middle;
}

.single-entry-header .extra-meta .post-total-comment>div span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}

.single-entry-header .extra-meta .post-total-comment>div span.edu-meta-top {
    font-size: 16px;
    color: #999;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-total-comment>div span.edu-meta-bot {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.single-entry-header .extra-meta .post-total-comment>div span.edu-meta-bot a {
    color: #333;
}

.single-entry-tag {
    margin-top: 30px;
    /* bt-wrap-related-article */
}

.single-entry-tag>a {
    margin-bottom: 15px;
    margin-left: 15px;
    padding: 5px 10px;
    line-height: normal;
    border: solid 1px #d6261f;
    display: inline-block;
    vertical-align: top;
    border-radius: 1px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-entry-tag>a:hover {
    color: #d6261f !important;
}

.bt-wrap-related-article {
    margin-top: 45px;
    /* single-blog-post-navigation */
}

.bt-wrap-related-article.bt-related-articles-1 .bt-title-related {
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 30px;
    position: relative;
}

.bt-wrap-related-article.bt-related-articles-1 .bt-title-related strong {
    font-weight: 600;
}

.bt-wrap-related-article.bt-related-articles-1 .bt-title-related strong:after {
    content: "";
    height: 2px;
    width: 50px;
    left: 0;
    bottom: 0;
    background: #d6261f;
    position: absolute;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list {
    margin-top: 20px;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item {
    margin-bottom: 25px;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item img.post-single-image {
    width: 100%;
    height: auto !important;
    border-radius: 3px;
    margin-bottom: 28px;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item .post-title-link {
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item .post-title-link .post-title {
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item .post-title-link:hover {
    color: #d6261f;
    text-decoration: none;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item p {
    margin-bottom: 0;
}

.bt-wrap-related-article.bt-related-articles-1 .related-article-list .related-article-item:hover {
    border-color: rgba(212, 27, 101, 0.4);
}

.single-blog-post-navigation {
    margin-top: 40px;
    display: table;
    width: 100%;
}

.single-blog-post-navigation .previous-next-link .previous {
    width: 50%;
    float: left;
}

.single-blog-post-navigation .previous-next-link .previous .btp-nav-thum {
    max-width: 60px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    position: relative;
}

.single-blog-post-navigation .previous-next-link .previous .btp-nav-thum img {
    border-radius: 3px;
}

.single-blog-post-navigation .previous-next-link .previous .btp-nav-thum:before {
    content: "";
    position: absolute;
    border-radius: 3px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.single-blog-post-navigation .previous-next-link .previous .btp-nav-thum:after {
    font-family: FontAwesome;
    content: "\f060";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    opacity: 0;
    position: absolute;
}

.single-blog-post-navigation .previous-next-link .previous .bt-title-nav {
    color: #333;
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 70px);
}

.single-blog-post-navigation .previous-next-link .previous .bt-title-nav .title {
    font-weight: 600;
    line-height: 20px;
}

@media (max-width: 767px) {
    .single-blog-post-navigation .previous-next-link .previous .bt-title-nav .title {
        display: none;
    }
}

.single-blog-post-navigation .previous-next-link .previous:hover .btp-nav-thum:before {
    opacity: 1;
}

.single-blog-post-navigation .previous-next-link .previous:hover .btp-nav-thum:after {
    opacity: 1;
}

.single-blog-post-navigation .previous-next-link .previous:hover .bt-title-nav {
    color: #d6261f;
}

.single-blog-post-navigation .previous-next-link .next {
    width: 50%;
    text-align: right;
    float: left;
}

.single-blog-post-navigation .previous-next-link .next .btp-nav-thum {
    max-width: 60px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    position: relative;
}

.single-blog-post-navigation .previous-next-link .next .btp-nav-thum img {
    border-radius: 3px;
}

.single-blog-post-navigation .previous-next-link .next .btp-nav-thum:before {
    content: "";
    position: absolute;
    border-radius: 3px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.single-blog-post-navigation .previous-next-link .next .btp-nav-thum:after {
    font-family: FontAwesome;
    content: "\f061";
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    opacity: 0;
    position: absolute;
}

.single-blog-post-navigation .previous-next-link .next .bt-title-nav {
    display: inline-block;
    vertical-align: middle;
    max-width: calc(100% - 70px);
    color: #333;
}

.single-blog-post-navigation .previous-next-link .next .bt-title-nav .title {
    font-weight: 600;
    line-height: 20px;
}

@media (max-width: 767px) {
    .single-blog-post-navigation .previous-next-link .next .bt-title-nav .title {
        display: none;
    }
}

.single-blog-post-navigation .previous-next-link .next:hover .btp-nav-thum:before {
    opacity: 1;
}

.single-blog-post-navigation .previous-next-link .next:hover .btp-nav-thum:after {
    opacity: 1;
}

.single-blog-post-navigation .previous-next-link .next:hover .bt-title-nav {
    color: #d6261f;
}

.single-blog-post-navigation>a {
    display: table-cell;
    width: 50%;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #999;
}

.single-blog-post-navigation>a[rel="next"] {
    text-align: right;
}

.single-blog-post-navigation>a .btn {
    background: #d6261f;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.single-blog-post-navigation>a:hover {
    color: #d6261f;
}

.single-blog-post-navigation>a:hover .btn {
    background: #bd185a;
}

.single-blog-post-navigation .pv-left i {
    margin-right: 6px;
}

.single-blog-post-navigation .pv-right i {
    margin-left: 6px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content {
    padding-bottom: 15px;
    padding-top: 15px;
    overflow: hidden;
    border: solid #eceeef;
    border-width: 1px;
    margin-bottom: 30px;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .address-meta {
    font-size: 25px;
    font-weight: 700;
    padding: 15px 0;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .address-meta i.fa {
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-time {
    padding: 15px 0;
    font-weight: 600;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-time br {
    display: none;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-time i.fa {
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-phone {
    padding: 15px 0;
    font-weight: 600;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-phone i.fa {
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-email {
    padding: 15px 0;
    font-weight: 600;
}

body.single .post-single-creative-layout-blog-2.ctc_location .location-content .extra-location .post-email i.fa {
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs {
    border: none;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-heading {
    padding: 10px 0px;
    margin: 0 0 20px;
    background-color: transparent;
    border: none;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-heading ul {
    border: none;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-heading ul li a {
    padding: 10px 30px;
    margin-right: 7px;
    background-color: #ececec;
    color: #171721;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-heading ul li.active a {
    border-color: #333;
    background-color: #333;
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body {
    padding: 30px 40px;
    border: 1px solid #ececec;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body .tab-content {
    min-height: 300px;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body .tab-content .book>p:first-child:first-letter {
    border: 2px solid;
    float: left;
    font-size: 30px;
    font-weight: bold;
    margin: 0 22px 0 0;
    padding: 26px 20px;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body .tab-content .down {
    text-align: center;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body .tab-content .down img {
    width: 160px;
    height: auto;
    padding-top: 120px;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body .tab-content .mp3 {
    margin: 0 60px;
    text-align: center;
    padding-top: 120px;
}

@media (max-width: 768px) {
    body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-body {
        padding: 30px 10px;
    }
    body.single .post-single-creative-layout-blog-2.ctc_sermon .panel.with-nav-tabs .panel-heading ul li a {
        padding: 10px 10px;
        margin-right: 4px;
        font-size: 12px;
        margin-bottom: 5px;
    }
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap {
    padding-top: 25px;
    display: block;
    width: 100%;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap .share-post-item {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: relative;
    border: solid #eceeef;
    border-width: 1px 0px 1px 1px;
    color: #333;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap .share-post-item:last-child {
    border-right-width: 1px;
}

body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap .share-post-item span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap {
        text-align: center;
        width: 100%;
        height: auto;
    }
    body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap a.share-post-item {
        display: inline-block;
        vertical-align: top;
        width: 50px;
        height: 50px;
        border-width: 1px 1px 1px 0;
        margin-bottom: 30px;
    }
    body.single .post-single-creative-layout-blog-2.ctc_sermon .share-post-wrap a.share-post-item:first-child {
        border-left-width: 1px;
    }
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra {
    margin-bottom: 30px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-content-gallery-wrap {
    position: relative;
    overflow: hidden;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-content-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ {
    position: relative;
    width: 100%;
    height: 100%;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-content-gallery-wrap .masonry-hybrid-wrap .grid-item_ .grid-item-inner_ .icon-zoom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    font-size: 23px;
    line-height: 37px;
    font-family: caption;
    font-style: italic;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap a {
    color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap a:hover {
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-link-wrap:before {
    content: "\f0c1";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: block;
    width: 100%;
    text-align: center;
    color: #000;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap:before {
    content: "\f10d";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    display: block;
    width: 100%;
    text-align: center;
    color: #000;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap .post-quote {
    padding: 0;
    border: none;
    font-size: 23px;
    line-height: 37px;
    font-family: caption;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    color: #000;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-quote-wrap .post-cite-wrap {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .audio-type-embed {
    line-height: 0;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-video-wrap {
    border-radius: 3px;
    box-shadow: 0 0 22px -1px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-video-wrap.video-type-embed {
    position: relative;
    padding-bottom: 56%;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra .post-video-wrap.video-type-embed>iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra+.followscreen-shadow {
    margin-bottom: 30px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra.followscreen-is-active {
    margin-bottom: 0;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra.followscreen-is-active .post-video-wrap.video-type-embed {
    padding: 0;
    line-height: 0;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-extra.followscreen-is-active .post-video-wrap.video-type-embed>iframe {
    position: relative;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header {
    position: relative;
    padding: 80px 40px;
    margin-bottom: 35px;
    background: #333;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .post-sing-image-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .post-sing-image-background:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta {
    display: block;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta .post-category {
    display: inline-block;
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta .post-category:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: #d6261f;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta .post-category a {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .cat-meta .post-category a:hover {
    color: #d6261f;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .post-title {
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    margin: 10px 0 20px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta {
    margin-top: 10px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta>div {
    color: #fff;
    display: inline-block;
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    vertical-align: top;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta>div:not(:last-child) {
    margin-right: 12px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta>div i {
    margin-right: 4px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-entry-header .heading-entry-wrap .extra-meta>div a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text>p:first-child:first-letter {
    border: 2px solid;
    float: left;
    font-size: 30px;
    font-weight: bold;
    margin: 0 22px 0 0;
    padding: 26px 20px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text p,
body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ul,
body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text ol {
    margin-bottom: 30px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .x-blockquote {
    padding: 30px 0 2px;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #000;
    background: none;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .x-blockquote:after {
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 18px;
    color: #000;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .x-blockquote .x-cite {
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: normal;
    color: #999;
}

body.single .post-single-creative-layout-blog-2 .entry-content .post-single-content-text .single-entry-tag {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share {
    width: 80px;
    height: 80px;
    max-width: 100%;
    position: relative;
    display: block;
    border: solid #eceeef;
    border-width: 0 1px 1px 1px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share:first-child {
    border-top-width: 1px;
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 16px;
    color: #222;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-facebook-square:before {
    content: "\f09a";
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-twitter-square:before {
    content: "\f099";
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-google-plus-square:before {
    content: "\f0d5";
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-linkedin-square:before {
    content: "\f0e1";
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-pinterest-square:before {
    content: "\f0d2";
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-reddit-square:before {
    content: "\f1a1";
}

body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share i.x-icon-envelope-square:before {
    content: "\f0e0";
}

@media (max-width: 991px) {
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options {
        text-align: center;
    }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share {
        display: inline-block;
        vertical-align: top;
        width: 50px;
        height: 50px;
        border-width: 1px 1px 1px 0;
        margin-bottom: 30px;
    }
    body.single .post-single-creative-layout-blog-2 .entry-content .x-entry-share .x-share-options a.x-share:first-child {
        border-left-width: 1px;
    }
}

body.single .post-single-creative-layout-blog-2 .share-post-wrap {
    display: block;
    width: 80px;
}

body.single .post-single-creative-layout-blog-2 .share-post-wrap .share-post-item {
    display: block;
    width: 80px;
    height: 80px;
    position: relative;
    border: solid #eceeef;
    border-width: 1px 1px 0 1px;
    color: #333;
}

body.single .post-single-creative-layout-blog-2 .share-post-wrap .share-post-item:last-child {
    border-bottom-width: 1px;
}

body.single .post-single-creative-layout-blog-2 .share-post-wrap .share-post-item span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    body.single .post-single-creative-layout-blog-2 .share-post-wrap {
        text-align: center;
        width: 100%;
        height: auto;
    }
    body.single .post-single-creative-layout-blog-2 .share-post-wrap a.share-post-item {
        display: inline-block;
        vertical-align: top;
        width: 50px;
        height: 50px;
        border-width: 1px 1px 1px 0;
        margin-bottom: 30px;
    }
    body.single .post-single-creative-layout-blog-2 .share-post-wrap a.share-post-item:first-child {
        border-left-width: 1px;
    }
}

.class .noo-sidebar .single-sidebar h4.widget-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 6px;
}

.class .noo-sidebar .single-sidebar .class-info-sidebar .clearfix {
    padding: 10px 0;
    border-bottom: 1px solid #dbdada;
}

.class .noo-sidebar .single-sidebar .class-info-sidebar .clearfix i {
    color: #d6261f;
    padding-right: 8px;
}

.class .noo-sidebar .single-sidebar .class-info-sidebar .clearfix span {
    float: right;
    color: #d6261f;
    padding: 0 8px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #f4f4f4;
    margin-left: 5px;
}

.class .noo-sidebar .single-sidebar ul.bt-social {
    margin: 30px 0 30px;
    padding: 0;
}

.class .noo-sidebar .single-sidebar ul.bt-social li {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.class .noo-sidebar .single-sidebar ul.bt-social li a {
    font-size: 20px;
    color: #4e4e4e;
}

.class .noo-sidebar .single-sidebar ul.bt-social li a:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 10px;
    background: #b6b6b6;
    margin: 0 6px 3px;
}

.class .noo-sidebar ul.bt-blogtv-class {
    padding: 10px;
    margin: 25px 0;
    list-style-type: none;
    background: #f4f4f4;
}

.class .noo-sidebar ul.bt-blogtv-class li {
    padding: 10px 0;
    border-bottom: 1px solid #dbdada;
}

.class .noo-sidebar ul.bt-blogtv-class li i {
    color: #d6261f;
    padding-right: 8px;
}

.class .noo-sidebar ul.bt-blogtv-class li:last-child {
    border-bottom: none;
}

.post-list-type-blog-1 {
    /* listing */
}

.post-list-type-blog-2 {
    /* single */
}

body.single .bt-content-area .bt-col-inner {
    z-index: 20px;
}

.portfolio-filter-wrap {
    margin-bottom: 30px;
    text-align: center;
    /* Portfolio Listing */
}

.portfolio-filter-wrap .portfolio-filter-item {
    border: 1px solid #ececec;
    border-radius: 3px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    padding: 4px 20px;
    text-transform: uppercase;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.portfolio-filter-wrap .portfolio-filter-item.is-active {
    background: #d6261f none repeat scroll 0 0;
    border-color: #d6261f;
    color: #fff;
}

.portfolio-filter-wrap .portfolio-filter-item:not(:last-child) {
    margin-right: 20px;
}

.portfolio-filter-wrap .portfolio-filter-item:hover {
    border-color: #d6261f;
}

.portfolio-list {
    /* Portfolio Single */
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner {
    background: #fff;
    border: solid 0.5px rgba(214, 38, 31, 0.5);
    border-radius: 3px;
    overflow: hidden;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap {
    position: relative;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap .post-single-image {
    width: 100%;
    height: auto;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap .zoom-image {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    font-size: 20px;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap:hover:after {
    visibility: visible;
    opacity: 1;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-featured-image-wrap:hover .zoom-image {
    visibility: visible;
    opacity: 1;
    top: 50%;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap {
    padding: 30px;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-title-link {
    text-decoration: none;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-title-link .portfolio-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    letter-spacing: 0px;
    margin: 10px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-title-link:hover .portfolio-title {
    color: #d6261f;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-content {
    color: #666;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    width: 100%;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-content:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 1px;
    background: #dedede;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-view-detail {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Poppins';
    letter-spacing: 0px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-view-detail>* {
    display: table-cell;
    vertical-align: middle;
    line-height: normal;
}

.portfolio-list .portfolio-list-type-loop-default .portfolio-inner .portfolio-entry-wrap .portfolio-view-detail>div {
    padding-right: 8px;
}

.single-fw-portfolio .portfolio-details .gallery-wrap {
    margin-bottom: 30px;
}

.single-fw-portfolio .portfolio-details .social-share-entry {
    text-align: center;
    margin-top: 30px;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item {
    background: #333 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 54px;
    margin-right: 10px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-facebook {
    background: #3b5998;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-facebook:hover {
    background: #344e86;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-twitter {
    background: #1da1f2;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-twitter:hover {
    background: #0d95e8;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-google-plus {
    background: #dc4a38;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-google-plus:hover {
    background: #d53925;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-linkedin {
    background: #0077b5;
}

.single-fw-portfolio .portfolio-details .social-share-entry .share-post-wrap .share-post-item.s-linkedin:hover {
    background: #00669c;
}

@media (max-width: 768px) {
    .single-fw-portfolio .portfolio-details .social-share-entry {
        margin-bottom: 30px;
    }
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .title {
    margin: 0;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 0px;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .extra-meta {
    display: block;
    border: solid #f1f1f1;
    border-width: 1px 0;
    font-size: 16px;
    letter-spacing: 0px;
    margin: 0px 0 20px 0;
    padding: 14px 0;
    text-transform: uppercase;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .extra-meta>div {
    display: inline-block;
    vertical-align: top;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .extra-meta>div:not(:first-child) {
    margin-left: 10px;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .gallery-portfolio .zoom-image {
    width: calc(100% / 3);
    display: inline-block;
    padding: 5px;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .entry-the-content>p:first-child:first-letter {
    border: 2px solid;
    float: left;
    font-size: 30px;
    font-weight: bold;
    margin: 10px 20px 10px 0;
    padding: 20px;
    vertical-align: top;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link {
    margin: 30px 0;
    display: block;
    width: 100%;
    position: relative;
    padding: 5px;
    border: none;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link:after {
    content: "";
    display: block;
    clear: both;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li {
    list-style: none;
    float: left;
    width: 50%;
    position: relative;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li .icon {
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li .title {
    font-size: 18px;
    line-height: 22px;
    display: none;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li a {
    text-decoration: none;
    display: inline-block;
    padding: 5px 15px;
    background: #d6261f;
    color: #fff;
    border-radius: 4px;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.previous {
    text-align: left;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.previous>a>img {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.next {
    text-align: right;
}

.single-fw-portfolio .portfolio-details .entry-content-wrap .previous-next-link li.next>a>img {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}

.tp_single_event .tp-event-top .entry-thumbnail {
    text-align: left;
    /* background: #333; */
    position: relative;
    border-radius: 5px;
}

.tp_single_event .tp-event-top .entry-thumbnail img {
    max-width: 100%;
    max-height: 500px;
    position: relative;
    z-index: 3;
    border-radius: 5px;
}

.tp_single_event .tp-event-top .entry-countdown .tp_event_counter {
    background: #d6261f;
    border-radius: 5px;
}

.tp_single_event .tp-event-top .entry-countdown .tp_event_counter span {
    font-weight: bold;
    color: #fff;
}

.tp_single_event .entry-title {
    padding: 25px 0;
    position: relative;
}

.tp_single_event .entry-title h1 {
    font-size: 26px;
    line-height: 28px;
    color: #333;
    font-weight: 600;
}

.tp_single_event .tp-event-content .event-extra-meta {
    border-top: 1px solid #d5d5d5;
    padding: 15px 0;
    border-bottom: 1px solid #d5d5d5;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event {
    margin: 0;
    padding: 0;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li {
    display: inline-block;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li i.fa {
    display: inline-block;
    color: #d6261f;
    margin-right: 5px;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li>div {
    display: inline-block;
    vertical-align: middle;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li>div>span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li>div>span.edu-meta-top {
    font-size: 14px;
    color: #999;
    font-weight: 700;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li>div>span.edu-meta-bot {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li.event-author img {
    width: 50px;
    display: inline-block;
    vertical-align: middle;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li.event-author>div {
    padding-left: 10px;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li:not(:last-child) {
    padding-right: 30px;
    border-right: #d5d5d5 solid 1px;
}

.tp_single_event .tp-event-content .event-extra-meta .details-event li:not(:first-child) {
    padding-left: 30px;
}

@media (max-width: 768px) {
    .tp_single_event .tp-event-content .event-extra-meta .details-event li:not(:last-child) {
        padding-right: 5px;
    }
    .tp_single_event .tp-event-content .event-extra-meta .details-event li:not(:first-child) {
        padding-left: 5px;
    }
    .tp_single_event .tp-event-content .event-extra-meta .details-event li i.fa {
        display: none;
    }
}

.tp_single_event .tp-event-content .bt-entry-register {
    display: none;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event {
    margin: 0;
    padding: 0;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li {
    display: inline-block;
    margin-right: 40px;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li i.fa {
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
    float: left;
    color: #d6261f;
    margin-right: 10px;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li>div {
    display: inline-block;
    vertical-align: middle;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li>div>span {
    display: block;
    text-transform: uppercase;
    line-height: 20px;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li>div>span.edu-meta-top {
    font-size: 14px;
    color: #999;
    font-weight: 700;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li>div>span.edu-meta-bot {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li.event-author img {
    width: 50px;
    display: inline-block;
    vertical-align: middle;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li.event-author>div {
    padding-left: 10px;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li.tick-but {
    display: none;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li.tick-but a {
    background: #d6261f;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 15px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    letter-spacing: 0;
    font-weight: bold;
    font-family: 'Poppins';
    display: inline-block;
    text-decoration: none;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li.tick-but a:hover {
    background: #333;
}

.tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event:first-child {
    display: inline-block;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .tp_single_event .tp-event-content .bt-entry-register .entry-times .details-times-event li {
        margin-top: 10px;
    }
}

.tp_single_event .tp-event-content .event-content blockquote {
    font-weight: bold;
    margin: 40px 0;
}

.tp_single_event .tp-event-content .event-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.tp_single_event .tp-event-content .entry-location {
    margin-top: 30px;
}

.tp_single_event .entry-location {
    border-radius: 5px;
    overflow: hidden;
}

.tp_single_event .entry-location .gm-style>div:first-child {
    pointer-events: none;
}

.tp_single_event .event-sharing {
    margin: 40px 0 20px;
    padding: 14px 0;
    border-top: solid 1px #d5d5d5;
    border-bottom: solid 1px #d5d5d5;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
}

.tp_single_event .event-sharing .share-post-wrap {
    display: inline-block;
    margin-left: 15px;
}

.tp_single_event .event-sharing .share-post-wrap>a {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 5px;
    color: #555;
}

.tp_single_event .event-sharing .share-post-wrap>a:hover {
    background: #d6261f;
    color: #fff;
}

.tp_single_event .event-sharing .x-entry-share {
    display: inline-block;
    vertical-align: bottom;
}

.tp_single_event .event-sharing .x-entry-share>p {
    margin: 0;
    display: none;
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 20px;
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 12px;
    color: #222;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-facebook-square:before {
    content: "\f09a";
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-twitter-square:before {
    content: "\f099";
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-google-plus-square:before {
    content: "\f0d5";
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-linkedin-square:before {
    content: "\f0e1";
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-pinterest-square:before {
    content: "\f0d2";
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-reddit-square:before {
    content: "\f1a1";
}

.tp_single_event .event-sharing .x-entry-share .x-share-options a.x-share i.x-icon-envelope-square:before {
    content: "\f0e0";
}

.tp_single_event .event-sharing .single-entry-tag {
    display: inline-block;
    margin-left: 15px;
    margin-top: 0;
}

.tp_single_event .event-sharing .single-entry-tag a {
    border: none;
    margin-left: 0px;
    padding: 5px 0px;
    text-transform: none;
    font-weight: normal;
    color: #555;
    margin-bottom: 0;
}

#event-lightbox {
    border-radius: 5px;
}

#event-lightbox form.event_register ul.info-event {
    padding: 0;
    list-style: none;
}

#event-lightbox form.event_register ul.info-event li {
    border-bottom: solid 1px #d5d5d5;
}

#event-lightbox form.event_register ul.info-event li .label {
    color: #333;
    font-size: 14px;
}

#event-lightbox form.event_register ul.info-event li .value {
    padding: 0 20px;
    font-weight: 600;
}

#event-lightbox form.event_register ul.info-event li .value input#event_register_qty {
    padding: 0 10px;
    margin-bottom: 10px;
}

#event-lightbox form.event_register .event_register_foot button.event_register_submit.event_auth_button {
    background: #d6261f;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 15px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    letter-spacing: 0;
    font-weight: bold;
    font-family: 'Poppins';
    display: inline-block;
    text-decoration: none;
}

#event-lightbox form.event_register .event_register_foot button.event_register_submit.event_auth_button:hover {
    background: #333;
}

.event-style1 .vc_grid-item-mini {
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.event-style1 .vc_grid-item-mini .event-style1-content {
    padding: 20px 20px 60px 20px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .event-icon-style1 {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 10px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .event-icon-style1 .vc_icon_element-inner {
    width: 2em;
    height: 2em;
}

.event-style1 .vc_grid-item-mini .event-style1-content .event-icon-style1 .vc_icon_element-inner span.fa {
    color: #d6261f;
    margin-top: 2px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_gitem_event_day {
    display: inline-block;
    font-family: 'Poppins';
    color: #adadad;
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_gitem_event_day span {
    font-size: 30px;
    color: #d6261f;
    margin-right: 7px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_custom_heading h4 {
    margin-top: 0;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 26px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_custom_heading h4:hover {
    color: #d6261f;
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_gitem_event_time {
    font-family: 'Poppins';
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_gitem_event_time i.fa {
    color: #d6261f;
    margin-right: 10px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_gitem_event_location {
    color: #d6261f;
    font-family: 'Poppins';
}

.event-style1 .vc_grid-item-mini .event-style1-content .vc_gitem_event_location i.fa {
    color: #d6261f;
    margin-right: 10px;
}

.event-style1 .vc_grid-item-mini .event-style1-content .event-ticket {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.event-style1 .vc_grid-item-mini .event-style1-content .event-ticket a.vc_btn3 {
    background: #272727 !important;
    color: #fff !important;
    font-family: 'Poppins';
    font-weight: bold;
    border-radius: 0 !important;
}

.event-style1 .vc_grid-item-mini .event-style1-content .event-ticket a.vc_btn3:hover {
    background: #d6261f !important;
}

@media (max-width: 992px) {
    .event-style1 {
        width: calc(100% / 2);
    }
    .event-style1:last-child {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .event-style1 {
        width: calc(100%);
    }
}

.event-booking-form-wrap {
    margin-bottom: 30px;
    border: 0.5px solid #e9e9e9;
    padding: 25px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.event-booking-form-wrap .heading-bpooking-form {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #f1f1f1;
}

.event-booking-form-wrap .heading-bpooking-form .title {
    font-size: 24px;
    letter-spacing: 26px;
    letter-spacing: 0px;
    margin: 0;
}

.event-booking-form-wrap form .btn {
    background: #d6261f;
    letter-spacing: 0px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 8px 21px;
}

.event-booking-form-wrap form .btn:hover {
    background: rgba(214, 38, 31, 0.5);
}

.event-booking-form-wrap form .form-group {
    display: block;
}

.event-booking-form-wrap form .form-group label {
    display: block;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.event-booking-form-wrap form .form-group label .optional {
    letter-spacing: 0;
    text-transform: none;
    font-family: caption;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    color: #999;
}

.event-booking-form-wrap form .form-group input[type="text"],
.event-booking-form-wrap form .form-group input[type="email"],
.event-booking-form-wrap form .form-group input[type="number"],
.event-booking-form-wrap form .form-group select,
.event-booking-form-wrap form .form-group textarea {
    display: block;
    width: 100%;
    margin: 4px 0 10px 0;
    padding: 6px 10px;
    border-radius: 3px !important;
}

.event-booking-form-wrap form .form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 9px 10px;
    background: url('../images/arrow-down-icon.png') no-repeat calc(100% - 10px) 50%;
    background-size: 10px;
}

.event-booking-form-wrap form .event-note {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #f1f1f1;
}

.event-booking-form-wrap form .space-user-book {
    display: inline-block;
    font-size: 16px;
    line-height: normal;
    padding: 9px 0;
}

.event-booking-form-wrap form .event-price {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.event-booking-form-wrap form .event-price label {
    margin: 0;
}

.event-booking-form-wrap form .event-price .amount {
    float: right;
}

.table-event-ext tbody th,
.table-event-ext tbody td {
    width: 50%;
    text-align: left;
}

@-webkit-keyframes event_showSweetAlert {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes event_showSweetAlert {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sweet-alert {
    /* event listing */
}

.sweet-alert.fw-ext-event-booking {
    position: fixed;
    margin: 0 !important;
    width: 500px;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    overflow: auto;
}

.sweet-alert.fw-ext-event-booking.showSweetAlert {
    animation: 0.3s event_showSweetAlert ease;
    -webkit-animation: 0.3s event_showSweetAlert ease;
}

.sweet-alert.fw-ext-event-booking .event-payment-method-box h4 {
    letter-spacing: 0px;
    font-size: 18px;
    line-height: 22px;
}

.sweet-alert.fw-ext-event-booking .event-payment-method-box .payment-list-wrap {
    margin-top: 10px;
}

.sweet-alert.fw-ext-event-booking .event-payment-method-box label {
    font-weight: normal;
    display: inline-block;
    margin: 2px 6px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 1px;
}

.sweet-alert.fw-ext-event-booking .event-payment-method-box label input {
    display: inline-block;
}

.sweet-alert.fw-ext-event-booking .event-payment-method-box label input[type="radio"] {
    height: auto;
    line-height: normal;
    margin: 0 4px 0 0;
    padding: 0;
    vertical-align: middle;
    width: 18px;
}

.sweet-alert.fw-ext-event-booking .event-payment-method-box label img {
    height: 30px;
    width: auto;
}

.list-tab-event .nav-tabs {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #eee;
}

.list-tab-event .nav-tabs li {
    background: 0 0;
    border-radius: 0;
    margin: 0;
    min-width: 240px;
    text-align: center;
    border: 0;
    position: relative;
}

.list-tab-event .nav-tabs li.active {
    background: #fff;
}

.list-tab-event .nav-tabs li.active:before {
    content: '';
    position: absolute;
    left: 0;
    right: 3px;
    z-index: 10;
    top: 0;
    height: 4px;
    background-color: #d6261f;
}

.list-tab-event .nav-tabs li.active:after {
    bottom: -1px;
    height: 1px;
    background: #fff;
    content: '';
    position: absolute;
    left: 0;
    right: 3px;
    z-index: 10;
}

.list-tab-event .nav-tabs li.active a {
    background: #fff;
}

.list-tab-event .nav-tabs li a {
    color: #333;
    font-family: 'Poppins';
    border-radius: 0;
    margin-right: 3px;
    border: 1px solid #eee !important;
    border-bottom: 0 !important;
    font-size: 16px;
    background: #f9f9f9;
    font-weight: 700;
    line-height: 29px;
}

@media (max-width: 768px) {
    .list-tab-event .nav-tabs li {
        width: 33.333%;
        min-width: 0;
    }
}

.bt-list-event {
    padding-top: 60px;
    /*Event Grid Classic*/
}

.bt-list-event .item-event .event-inner-list {
    margin-bottom: 20px;
    display: table;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bt-list-event .item-event .event-inner-list .bg-event-list {
    border-radius: 100px;
    margin: 15px auto;
    width: calc(100% - 80px);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
    height: 160px;
    position: absolute;
    z-index: 0;
    left: 50px;
}

.bt-list-event .item-event .event-inner-list>* {
    display: inline-block;
    vertical-align: middle;
    z-index: 1;
    position: relative;
}

.bt-list-event .item-event .event-inner-list .event-featured-image-wrap .event-thumbnail {
    width: 190px;
    height: 190px;
    border-radius: 50%;
}

.bt-list-event .item-event .event-inner-list .event-featured-image-wrap .event-thumbnail .bt-overlay {
    -wekbit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    border-radius: 50%;
}

.bt-list-event .item-event .event-inner-list .edu-event-date {
    margin-left: 30px;
}

.bt-list-event .item-event .event-inner-list .edu-event-date .edu-event-day {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 900;
}

.bt-list-event .item-event .event-inner-list .edu-event-date .edu-event-day span {
    font-size: 40px;
    color: #d6261f;
    margin-right: 3px;
}

.bt-list-event .item-event .event-inner-list .edu-event-date .edu-event-time {
    font-size: 16px;
    color: #999;
    font-weight: bold;
    text-transform: uppercase;
}

.bt-list-event .item-event .event-inner-list .content-entry {
    padding-left: 20px;
    margin-left: 30px;
    border-left: #c4c4c4 solid 1px;
}

.bt-list-event .item-event .event-inner-list .content-entry .title-link {
    text-decoration: none;
}

.bt-list-event .item-event .event-inner-list .content-entry .title-link .title {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #333;
    margin-bottom: 10px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.bt-list-event .item-event .event-inner-list .content-entry .title-link:hover .title {
    text-decoration: underline;
}

.bt-list-event .item-event .event-inner-list .content-entry .venue-empty {
    color: #d6261f;
    font-weight: 400;
    font-size: 16px;
}

.bt-list-event .item-event .event-inner-list .readmore-link {
    width: 170px;
    height: 50px;
    text-align: center;
    font-size: 14px;
    font-family: 'Poppins';
    background: #222;
    border-radius: 30px;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 70px;
    display: inline-block;
}

.bt-list-event .item-event .event-inner-list .readmore-link:hover {
    background: #d6261f;
    text-decoration: none;
}

.bt-list-event .item-event .event-inner-list:hover .event-featured-image-wrap .event-thumbnail .bt-overlay {
    opacity: 1;
}

@media (max-width: 1200px) {
    .bt-list-event .item-event .event-inner-list a.readmore-link {
        display: none;
    }
}

@media (max-width: 991px) {
    .bt-list-event .item-event .event-inner-list {
        width: 100%;
        -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
        background: #fff;
        padding: 0 0 20px 0;
    }
    .bt-list-event .item-event .event-inner-list .event-featured-image-wrap {
        display: block;
        margin-bottom: 20px;
    }
    .bt-list-event .item-event .event-inner-list .event-featured-image-wrap .event-thumbnail {
        width: 100%;
        height: 250px;
        border-radius: 0;
    }
    .bt-list-event .item-event .event-inner-list .event-featured-image-wrap .event-thumbnail .bt-overlay {
        border-radius: 0;
    }
    .bt-list-event .item-event .event-inner-list a.readmore-link {
        display: none;
    }
    .bt-list-event .item-event .event-inner-list .bg-event-list {
        display: none;
    }
}

@media (max-width: 600px) {
    .bt-list-event .item-event .event-inner-list {
        padding: 0 0 20px 0;
    }
    .bt-list-event .item-event .event-inner-list .event-featured-image-wrap {
        display: block;
        margin-bottom: 20px;
    }
    .bt-list-event .item-event .event-inner-list .event-featured-image-wrap .event-thumbnail {
        width: 100%;
        height: 150px;
        border-radius: 0;
    }
    .bt-list-event .item-event .event-inner-list .event-featured-image-wrap .event-thumbnail .bt-overlay {
        border-radius: 0;
    }
    .bt-list-event .item-event .event-inner-list .edu-event-date {
        padding: 0 15px;
        width: 100%;
        margin-left: 0;
    }
    .bt-list-event .item-event .event-inner-list .edu-event-date .edu-event-time {
        line-height: 36px;
        margin-top: 5px;
        float: right;
    }
    .bt-list-event .item-event .event-inner-list .content-entry {
        margin-left: 0;
        width: 100%;
        padding: 0 15px;
        border: none;
    }
}

.bt-list-event .tab-pane {
    outline: none;
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
    .event-pi .vc_grid-item {
        width: 50%;
    }
}

.event-grid-classic {
    position: relative;
    overflow: visible;
}

.event-grid-classic .event-icon-grid-classic {
    position: absolute;
    bottom: -25px;
    z-index: 99;
}

.event-grid-classic .event-icon-grid-classic .vc_icon_element-inner {
    background-color: #d6261f !important;
    border-radius: 4px !important;
}

.event-grid-classic-content .event-day-grid-classic {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.event-grid-classic-content .event-day-grid-classic span {
    font-size: 30px;
    font-weight: bold;
    color: #d6261f;
    margin-right: 5px;
}

.event-grid-classic-content .event-time-grid-classic {
    color: #d6261f;
    font-size: 16px;
    vertical-align: bottom;
    display: inline-block;
    line-height: 17px;
    text-transform: uppercase;
}

.event-grid-classic-content .event-time-grid-classic i {
    margin-right: 5px;
}

.event-grid-classic-content .vc_custom_heading h4 {
    font-size: 22px;
    color: #444;
    margin: 0;
    line-height: 30px;
}

.event-grid-classic-content .event-local-grid-classic {
    color: #d6261f;
}

.navigation.paging-navigation.paging-navigation-type-1 {
    /* navigation style 2 */
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    display: table;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination .before-hr,
.navigation.paging-navigation.paging-navigation-type-1 .pagination .after-hr {
    display: none;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.pagination-numbers-wrap {
    display: table-cell;
    vertical-align: middle;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next {
    padding: 10px 20px;
    line-height: normal;
    background: #d6261f;
    color: #fff;
    border-radius: 3px;
    line-height: 14px;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev:not(.disabled):hover,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next:not(.disabled):hover {
    background: #bd185a;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev.prev>i,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next.prev>i {
    padding-right: 10px;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev.next>i,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next.next>i {
    padding-left: 10px;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev.disabled,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next.disabled {
    opacity: 0.6;
    cursor: default;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev strong,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next strong,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev i,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next i {
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev:after,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.prev:hover:after,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.next:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.pagination-numbers-wrap {
    margin: 0 20px;
    width: 100%;
    text-align: center;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.pagination-numbers-wrap .page-numbers {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    vertical-align: top;
    width: 30px;
    color: #d6261f;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: #fff;
    font-weight: 600;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.pagination-numbers-wrap .page-numbers:not(:last-child) {
    margin-right: 10px;
}

.navigation.paging-navigation.paging-navigation-type-1 .pagination>.pagination-numbers-wrap .page-numbers.current,
.navigation.paging-navigation.paging-navigation-type-1 .pagination>.pagination-numbers-wrap .page-numbers:hover {
    color: #d9d9d9;
}

.navigation.paging-navigation.paging-navigation-type-2 {
    display: block;
    text-align: center;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination {
    border: 2px solid #e8e8e8;
    border-radius: 0;
    padding: 10px 20px;
    display: inline-block;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination>* {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination .pagination-numbers-wrap {
    margin: 0 20px;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination .pagination-numbers-wrap .page-numbers {
    font-size: 16px;
    min-width: 28px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination .pagination-numbers-wrap .page-numbers:not(:last-child) {
    margin-right: 4px;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination a {
    color: #999;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination a:hover {
    color: #d6261f;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination a.prev i {
    margin-right: 4px;
    font-size: 20px;
    line-height: normal;
    vertical-align: middle;
}

.navigation.paging-navigation.paging-navigation-type-2 .pagination a.next i {
    margin-left: 4px;
    font-size: 20px;
    line-height: normal;
    vertical-align: middle;
}

.comments-template-1 {
    padding: 30px;
    background: #f8f8f8;
    margin-top: 30px;
    border-radius: 5px;
}

.comments-template-1 a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.comments-template-1 .comments-title {
    margin-top: 0;
}

.comments-template-1 .comments-title,
.comments-template-1 .comment-reply-title {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -1px;
    text-decoration: underline;
}

.comments-template-1 .comment-list {
    margin: 30px 0 60px 0;
    padding: 0;
}

.comments-template-1 .comment-list li {
    list-style: none;
}

.comments-template-1 .comment-list li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.comments-template-1 .comment-list .comment .comment-body .comment-avatar {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    margin-top: 10px;
}

.comments-template-1 .comment-list .comment .comment-body .comment-avatar img {
    width: 40px !important;
    height: 40px !important;
}

.comments-template-1 .comment-list .comment .comment-body .comment-aside {
    position: relative;
    display: inline-block;
    width: calc(100% - 61px);
    margin-left: 20px;
    padding: 20px;
    border: solid 1px rgba(0, 0, 0, .06);
    border-radius: 1px;
    background: #f8f8f8;
}

.comments-template-1 .comment-list .comment .comment-body .comment-aside:after {
    content: "";
    width: 10px;
    height: 10px;
    border: solid rgba(0, 0, 0, .06);
    border-width: 1px 1px 0 0;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-135deg);
    background: #f8f8f8;
    position: absolute;
    left: -6px;
    top: 20px;
}

.comments-template-1 .comment-list .comment .comment-body .comment-aside .comment-meta {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 1px;
}

.comments-template-1 .comment-list .children {
    margin: 0;
    padding: 20px 0 0 60px;
    margin-top: 20px;
}

@media (max-width: 582px) {
    .comments-template-1 .comment-list .children.children {
        padding: 20px 0 0 0px;
    }
}

.comments-template-1 .comment-respond .comment-reply-title #cancel-comment-reply-link {
    font-weight: normal;
    font-family: caption;
    font-style: italic;
    font-size: 17px;
    text-decoration: underline;
}

.comments-template-1 .comment-respond .comment-form label {
    display: block;
    width: 100%;
}

.comments-template-1 .comment-respond .comment-form input,
.comments-template-1 .comment-respond .comment-form textarea {
    display: block;
    width: 100%;
    padding: 9px 15px;
    border-radius: 4px !important;
}

.comments-template-1 .comment-respond .comment-form textarea#comment {
    height: 150px;
    border-radius: 4px !important;
}

.comments-template-1 .comment-respond .comment-form .right-side-comment,
.comments-template-1 .comment-respond .comment-form .left-side-comment {
    display: inline-block;
    vertical-align: top;
    width: 50%;
}

.comments-template-1 .comment-respond .comment-form .right-side-comment {
    padding-right: 15px;
}

.comments-template-1 .comment-respond .comment-form .left-side-comment {
    padding-left: 15px;
}

.comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-author {
    margin-bottom: 21px;
}

.comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-email label[for="email"],
.comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-email span.optional {
    display: inline-block;
    vertical-align: top;
    width: auto;
}

.comments-template-1 .comment-respond .comment-form .left-side-comment .comment-form-email span.optional {
    font-family: caption;
    font-style: italic;
}

.comments-template-1 .comment-respond .comment-form .logged-in-as+.right-side-comment {
    width: 100%;
    padding-right: 0px;
}

.comments-template-1 .comment-respond .comment-form .form-submit {
    margin-top: 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.comments-template-1 .comment-respond .comment-form .form-submit:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.comments-template-1 .comment-respond .comment-form .form-submit:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.comments-template-1 .comment-respond .comment-form .form-submit .submit {
    width: auto;
    background: #d6261f;
    color: #fff;
    font-weight: normal;
    border: none;
    border-radius: 3px !important;
    text-transform: uppercase;
    height: 45px;
    font-weight: 700;
    padding: 0 30px !important;
    font-size: 14px !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: 'Poppins';
}

@media (max-width: 767px) {
    .comments-template-1 .comment-respond {
        margin-bottom: 60px;
    }
    .comments-template-1 .comment-respond .comment-form .right-side-comment,
    .comments-template-1 .comment-respond .comment-form .left-side-comment {
        width: 100%;
        padding: 0;
    }
    .comments-template-1 .comment-respond .comment-form .right-side-comment {
        margin-bottom: 21px;
    }
}

.breadcrumbs span,
.breadcrumbs span a {
    font-family: 'Arimo';
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    text-transform: initial;
}

.breadcrumbs span {
    color: #d6261f;
}

.breadcrumbs a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-decoration: none;
}

.breadcrumbs .separator {
    padding: 0 8px;
}

.widget {
    font-size: 15px;
    line-height: 24px;
}

.widget img {
    max-width: 100%;
    height: auto;
}

.widget select {
    max-width: 300px;
}

.widget select option {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
}

.widget a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget p a {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
}

.widget p a:hover {
    color: #d6261f;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget .widget-title {
    font-family: 'Arimo';
    font-weight: 300;
    position: relative;
    color: #333;
    font-size: 23px;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 28px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    /**/
    margin-top: 0;
}

.widget .widget-title span {
    display: inline-block;
}

.widget .post-date,
.widget .facebook-post-date,
.widget .rss-date,
.widget .tweet-date,
.widget.widget_display_replies li div:last-child,
.widget.widget_display_topics li div:last-child {
    display: block;
    line-height: 1em;
    font-size: 0.9em;
    font-weight: normal;
    margin-bottom: 10px;
}

.widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.widget div[class*='fw-btn-'] a {
    text-align: left;
}

.widget div[class*='fw-btn-'] a span:before {
    font-family: 'FontAwesome';
    font-style: normal;
    margin-right: 6px;
}

.fw-side-boxed .widget .widget-title span {
    background-color: ;
}

.fw-sidebar .widget:first-child,
.fw-footer .fw-col-md-3 .widget:first-child,
.fw-footer .fw-col-md-4 .widget:first-child {
    margin-top: 0;
}

@media (max-width: 991px) {
    .footer-sidebar-item .widget {
        margin-bottom: 20px;
    }
}

.bt-sidebar .bt-col-inner {
    padding: 30px;
    border-radius: 5px;
    padding-top: 0;
}

@media (max-width: 991px) {
    .bt-sidebar .widget {
        margin-bottom: 20px;
    }
}

.bt-sidebar .widget {
    margin-bottom: 35px;
    padding: 0;
    border-radius: 1px;
}

.bt-sidebar .widget .widget-title {
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
}

.bt-sidebar .widget .widget-title span {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 600;
}

.bt-sidebar .widget .widget-title span .widget-subtitle {
    font-size: 16px;
    color: #d6261f;
    letter-spacing: 0;
    font-weight: 500;
    line-height: 16px;
    margin-top: 5px;
}

.bt-sidebar .widget .widget-title:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    background: #d6261f;
    left: 0;
    bottom: 0;
}

.bt-sidebar .widget:not(:last-child) {
    padding-bottom: 15px;
}

.bt-sidebar .widget:last-child {
    margin-bottom: 20px;
}

.bt-footer-widgets {
    /* General Widget Responsive */
    /* Screen 768px */
}

.bt-footer-widgets .widget.widget_meta ul li>a,
.bt-footer-widgets .widget.widget_nav_menu ul li>a {
    display: block;
    display: block;
    padding: 8px 0 8px 25px;
    position: relative;
    letter-spacing: -0.7px;
}

.bt-footer-widgets .widget.widget_meta ul li>a:before,
.bt-footer-widgets .widget.widget_nav_menu ul li>a:before {
    content: "";
    width: 10px;
    height: 4px;
    border-radius: 20px;
    background: #d6261f;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
}

@media (max-width: 991px) {
    .widget .widget-title {
        margin-bottom: 25px;
    }
}

.fw-widget-facebook li a {
    font-family: ;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
}

.fw-widget-facebook li a:hover {
    color: #d6261f;
}

.fw-footer .fw-widget-facebook li {
    border-bottom: 1px solid #8d8d8d;
}

.fw-widget-twitter .tweet-list .tweet-item:last-child {
    border: none;
}

.fw-widget-twitter .tweet-list .tweet-item.tw-has-logo .tweet-text {
    padding-left: 40px;
}

.fw-widget-twitter .tweet-list .tweet-item.tw-has-logo .tweet-text .tweet-date {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 6px 0;
    text-align: right;
}

.fw-widget-twitter .tweet-avatar {
    position: relative;
    display: block;
    height: 30px;
}

.fw-widget-twitter .tweet-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.fw-widget-twitter .tweet-text a {
    font-family: ;
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
}

.fw-widget-twitter .tweet-text a:hover {
    color: #d6261f;
}

.bt-footer .fw-widget-twitter .tweet-item {
    border-bottom: 1px solid #8d8d8d;
}

.bt-footer .fw-widget-twitter .tweet-item:not(:last-child) {
    margin-bottom: 10px;
}

.bt-footer .fw-widget-twitter .tweet-item:not(:first-child) .tweet-avatar {
    margin-top: 10px;
}

.bt-footer .fw-widget-twitter .tweet-item .tweet-avatar {
    float: left;
    margin-right: 10px;
}

.flickr_badge_image,
.fw-instagram-wrap li {
    width: 75px;
    height: 75px;
    margin: 0 4px 8px 0;
    display: inline-block;
    position: relative;
    vertical-align: top;
    overflow: hidden;
}

.flickr_badge_image a,
.fw-instagram-wrap li a {
    display: block;
}

.fw-sidebar .fw-widget-flickr .flickr_badge_image,
.fw-sidebar .fw-instagram-wrap li {
    width: 69px;
    height: 69px;
}

.flickr_badge_image img,
.fw-instagram-wrap li img {
    width: 100%;
    height: 100%;
}

.fw-side-posts-list li:not(:last-child) {
    margin-bottom: 15px;
}

.fw-side-posts-list li .fw-widget-post-image,
.fw-side-posts-list li .posts-content {
    display: inline-block;
    vertical-align: top;
}

.fw-side-posts-list li .fw-widget-post-image {
    overflow: hidden;
    background: #d6261f;
    margin-right: 15px;
    width: 100px;
    height: 70px;
    position: relative;
    border-radius: 5px;
}

.fw-side-posts-list li .fw-widget-post-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.fw-side-posts-list li .fw-widget-post-image:after {
    content: "";
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    color: #fff;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 24px;
}

.fw-side-posts-list li .fw-widget-post-image a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fw-side-posts-list li .fw-widget-post-image img {
    width: 100%;
    height: 70px;
}

.fw-side-posts-list li:hover .fw-widget-post-image:before,
.fw-side-posts-list li:hover .fw-widget-post-image:after {
    opacity: 1;
    z-index: 3;
}

.fw-side-posts-list li:hover .fw-widget-post-image:after {
    left: 50%;
}

.fw-side-posts-list li .posts-content {
    width: calc(100% - 120px);
}

.fw-side-posts-list li .posts-content a.post-title {
    font-family: 'Poppins';
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 0px;
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.fw-side-posts-list li .posts-content a.post-title:hover {
    color: #bd185a;
}

.fw-side-posts-list li .posts-content span.post-date {
    color: #d6261f;
    font-weight: 500;
}

.bt-footer-widgets .widget_products .product_list_widget li a {
    color: #d6261f;
    font-weight: bold;
}

.bt-footer-widgets .widget_products .product_list_widget li a .wp-post-image {
    width: 50px !important;
    margin-right: 10px;
}

.bt-footer-widgets .widget_products .product_list_widget li .amount {
    font-size: 0.9em;
}

.bt-footer-widgets .widget_products .product_list_widget li del {
    margin-right: 5px;
}

.bt-footer-widgets .widget_products .product_list_widget li ins {
    text-decoration: none;
}

.widget_search .search-form {
    position: relative;
}

.widget_search .screen-reader-text {
    display: none;
}

.widget_search label {
    display: block;
}

.widget_search .search-field {
    width: 100%;
    line-height: ;
    color: #353535;
    background-color: rgba(255, 255, 255, 0.93);
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    font-size: 'Arimo';
    padding: 12px 15px;
}

.widget_search .search-field::-moz-placeholder {
    color: rgba(53, 53, 53, 0.75);
    opacity: 1;
}

.widget_search .search-field:-ms-input-placeholder {
    color: rgba(53, 53, 53, 0.75);
}

.widget_search .search-field::-webkit-input-placeholder {
    color: rgba(53, 53, 53, 0.75);
}

.widget_search .search-submit {
    width: 28px;
    height: 28px;
    background-color: transparent !important;
    border: none;
    text-indent: 100px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    overflow: hidden;
}

.widget_search label:after {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    font-family: FontAwesome;
    content: "\f002";
    font-size: 16px;
    font-weight: normal;
    color: #353535;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 10px;
    z-index: 1;
}

.widget_recent_entries ul li a {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #d6261f;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget_recent_entries ul li a:hover {
    color: #bd185a;
}

.widget_recent_comments #recentcomments .recentcomments {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.widget_recent_comments #recentcomments .recentcomments a {
    font-style: italic;
    border-bottom: dotted 1px;
}

.widget_recent_comments #recentcomments .recentcomments:not(:last-child) {
    margin-bottom: 10px;
}

.widget_categories ul>li,
.widget_nav_menu ul>li,
.widget_meta ul>li,
.widget_pages ul>li,
.widget_archive ul>li,
.woocommerce.widget_product_categories ul>li {
    color: #d6261f;
}

.widget_categories ul>li a,
.widget_nav_menu ul>li a,
.widget_meta ul>li a,
.widget_pages ul>li a,
.widget_archive ul>li a,
.woocommerce.widget_product_categories ul>li a {
    font-family: ;
    font-size: 15px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
    display: inline-block;
    padding: 4px 0;
}

.widget_categories ul>li a:hover,
.widget_nav_menu ul>li a:hover,
.widget_meta ul>li a:hover,
.widget_pages ul>li a:hover,
.widget_archive ul>li a:hover,
.woocommerce.widget_product_categories ul>li a:hover {
    color: #d6261f;
}

.widget_categories ul>li ul.children,
.widget_nav_menu ul>li ul.children,
.widget_meta ul>li ul.children,
.widget_pages ul>li ul.children,
.widget_archive ul>li ul.children,
.woocommerce.widget_product_categories ul>li ul.children,
.widget_categories ul>li ul.sub-menu,
.widget_nav_menu ul>li ul.sub-menu,
.widget_meta ul>li ul.sub-menu,
.widget_pages ul>li ul.sub-menu,
.widget_archive ul>li ul.sub-menu,
.woocommerce.widget_product_categories ul>li ul.sub-menu {
    padding-left: 14px;
}

.widget_categories .screen-reader-text,
.widget_nav_menu .screen-reader-text,
.widget_meta .screen-reader-text,
.widget_pages .screen-reader-text,
.widget_archive .screen-reader-text,
.woocommerce.widget_product_categories .screen-reader-text {
    display: none;
}

.widget_nav_menu .sub-menu-has-icons .fa {
    margin-right: 10px;
}

.widget_nav_menu .menu-separator {
    display: none;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item {
    display: table;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item>* {
    display: table-cell;
    vertical-align: middle;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item a {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #d6261f;
    display: inline-block;
    padding: 0;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item a:hover {
    color: #d6261f;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item .count {
    width: 10%;
    text-align: right;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item:not(:last-child) {
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item:after {
    content: "";
    display: inline-block;
    font-family: "Ionicons";
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    font-size: 18px;
    position: absolute;
    left: -10px;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item:hover:after {
    opacity: 0.7;
    left: 0;
}

.bt-footer-widgets .widget_product_categories .product-categories .cat-item:hover>a {
    padding-left: 20px;
}

.widget_calendar {
    /* widget calendar */
}

.widget_calendar #wp-calendar {
    background: rgba(53, 53, 53, 0.05);
    border: none;
}

.widget_calendar #wp-calendar a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget_calendar #wp-calendar caption {
    background: #d6261f;
}

.widget_calendar #wp-calendar th {
    color: #d6261f;
    border: none;
    /*
      &:first-child{
        border-left: 1px solid fade_out($fw-widget-inner-title-color, 100%);
      }
      */
    border-left: 1px solid rgba(53, 53, 53, 0.05);
}

.widget_calendar #wp-calendar th:last-child {
    border-right: 1px solid rgba(53, 53, 53, 0.05);
}

.widget_calendar #wp-calendar td {
    color: #353535;
}

.widget_calendar #wp-calendar tbody a {
    color: #d6261f;
}

.widget_calendar #wp-calendar tbody a:hover {
    background-color: #d6261f;
}

.widget_calendar #wp-calendar tr td#today {
    background: #d6261f;
}

.widget_calendar #wp-calendar tfoot a:before {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget_calendar #wp-calendar tfoot #prev a:hover:before,
.widget_calendar #wp-calendar tfoot #next a:hover:before {
    color: #333;
}

.widget_calendar {
    position: relative;
}

.widget_calendar #wp-calendar {
    position: relative;
    width: 100%;
}

.widget_calendar #wp-calendar caption {
    color: #fff;
    font-size: 14px;
    line-height: 46px;
    padding: 0;
    text-transform: uppercase;
    text-align: center;
}

.widget_calendar #wp-calendar th {
    padding: 12px 5px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

.widget_calendar #wp-calendar td {
    font-size: 14px;
    text-align: center;
    border: none;
}

.widget_calendar #wp-calendar tbody td {
    border: none;
    width: 14.285%;
    border-collapse: collapse;
    padding: 0;
    line-height: 3.2em;
}

.widget_calendar #wp-calendar tbody a {
    display: block;
}

.widget_calendar #wp-calendar tbody a:hover {
    color: #fff;
}

.widget_calendar #wp-calendar tr td#today {
    color: #fff;
}

.widget_calendar #wp-calendar tr td#today a {
    color: #fff;
}

.widget_calendar #wp-calendar tfoot {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.widget_calendar #wp-calendar tfoot a {
    font-size: 0;
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    font-weight: normal;
    padding: 0;
}

.widget_calendar #wp-calendar tfoot a:before {
    font-family: 'FontAwesome';
    font-size: 25px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    display: block;
    color: #fff;
    position: relative;
}

.widget_calendar #wp-calendar tfoot #prev,
.widget_calendar #wp-calendar tfoot #next {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    padding: 0;
}

.widget_calendar #wp-calendar tfoot #prev a,
.widget_calendar #wp-calendar tfoot #next a {
    display: block;
}

.widget_calendar #wp-calendar tfoot #prev a:focus:before,
.widget_calendar #wp-calendar tfoot #next a:focus:before,
.widget_calendar #wp-calendar tfoot #prev a:active:before,
.widget_calendar #wp-calendar tfoot #next a:active:before {
    top: 2px;
}

.widget_calendar #wp-calendar tfoot #prev a:before {
    content: '\f104';
}

.widget_calendar #wp-calendar tfoot #next {
    left: auto;
    right: 0;
}

.widget_calendar #wp-calendar tfoot #next a:before {
    content: '\f105';
}

.widget_tag_cloud .tagcloud a,
.fw-tag-links a,
.post-tags a,
.woocommerce.widget_product_tag_cloud .tagcloud a {
    display: inline-block;
    font-size: 14px !important;
    font-family: 'Poppins';
    font-weight: 400;
    font-style: normal;
    color: #353535;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    margin: 5px;
    background-color: #eaeaea;
    border-radius: 3px;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget_tag_cloud .tagcloud a span.tag-link-count,
.fw-tag-links a span.tag-link-count,
.post-tags a span.tag-link-count,
.woocommerce.widget_product_tag_cloud .tagcloud a span.tag-link-count {
    display: none;
}

.widget_tag_cloud .tagcloud a:hover,
.fw-tag-links a:hover,
.post-tags a:hover,
.woocommerce.widget_product_tag_cloud .tagcloud a:hover {
    background-color: #d6261f;
    color: #fff;
}

.widget_tag_cloud .tagcloud a:hover:before,
.fw-tag-links a:hover:before,
.post-tags a:hover:before,
.woocommerce.widget_product_tag_cloud .tagcloud a:hover:before {
    border-right-color: #d6261f;
    box-shadow: 2px 0 0 -1px #d6261f;
}

.off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid;
    border-radius: 1px;
    display: inline-block !important;
    font-size: 10px !important;
    letter-spacing: 2px;
    line-height: normal !important;
    margin: 0 3px 9px 0;
    padding: 8px 10px;
    text-transform: uppercase;
    width: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a:hover {
    color: #d6261f !important;
}

.off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a:before,
.off-canvas-menu-container .widget.widget_tag_cloud .tagcloud a:after {
    display: none;
}

.widget_rss ul li:not(:last-child) {
    margin-bottom: 15px;
}

.widget_rss ul li .rsswidget {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.widget_rss ul li .rsswidget:hover {
    color: #d6261f;
}

.widget_rss ul li .rssSummary {
    font-size: 14px;
}

.widget_rss ul li cite {
    font-size: 15px;
}

.widget_text .textwidget a {
    font-family: ;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #353535;
}

.widget_text .textwidget a:hover {
    color: #d6261f;
}

.fw-widget-login {
    /* Widget login on header nav */
}

.fw-widget-login .input {
    width: 100%;
    line-height: ;
    color: #353535;
    background-color: rgba(255, 255, 255, 0.93);
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    font-size: 13.5px;
    padding: 12px 15px;
}

.fw-widget-login .input::-moz-placeholder {
    color: rgba(53, 53, 53, 0.75);
    opacity: 1;
}

.fw-widget-login .input:-ms-input-placeholder {
    color: rgba(53, 53, 53, 0.75);
}

.fw-widget-login .input::-webkit-input-placeholder {
    color: rgba(53, 53, 53, 0.75);
}

.fw-widget-login .forget_password {
    font-family: 'Poppins';
}

.fw-widget-login .forget_password a {
    font-family: ;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    color: #353535;
    font-size: 14px;
}

.fw-widget-login .forget_password a:hover {
    color: #d6261f;
}

.fw-widget-login .submit .fw-btn-login {
    color: #fff !important;
}

.fw-widget-login .submit .fw-btn-login:hover {
    color: #fff !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login {
    padding: 20px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .widget-title {
    line-height: normal;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform {
    min-width: 280px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input {
    width: 100%;
    line-height: ;
    color: #353535;
    background-color: rgba(255, 255, 255, 0.93);
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    font-size: 13.5px;
    padding: 12px 15px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-moz-placeholder {
    color: rgba(53, 53, 53, 0.75);
    opacity: 1;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input:-ms-input-placeholder {
    color: rgba(53, 53, 53, 0.75);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .input::-webkit-input-placeholder {
    color: rgba(53, 53, 53, 0.75);
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password {
    font-family: 'Poppins';
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a {
    font-family: ;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0px;
    color: #353535;
    font-size: 14px;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .forget_password a:hover {
    color: #d6261f;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit {
    margin-bottom: 0;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login {
    color: #fff !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover,
.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover,
.bt-header.header-3 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover,
.bt-header-mobi.header-mobi .bt-header-mobi-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.menu-item>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover,
.bt-header-top-bar .header-top-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover,
.header-3-top .bt-header-logo-sidebar-wrap .header-sidebar-item .widget.widget_nav_menu ul.menu li.menu-item-type-custom>.menu-item-custom-wrap.sidebar-container .fw-widget-login .loginform .submit .fw-btn-login:hover {
    color: #fff !important;
}

.yith-woocompare-widget .products-list {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebe9eb;
}

.yith-woocompare-widget .products-list li {
    padding: 10px 0 10px 30px !important;
    border-bottom: none !important;
}

.yith-woocompare-widget .products-list li.list_empty {
    padding-left: 0 !important;
}

.yith-woocompare-widget .products-list li .remove {
    text-transform: lowercase !important;
}

.yith-woocompare-widget .products-list li .remove:hover {
    background: none !important;
    color: #555 !important;
}

.yith-woocompare-widget .products-list li .title {
    font-family: !important;
    font-size: 15px !important;
    font-style: normal !important;
    line-height: 24px !important;
    letter-spacing: 0px !important;
    color: #353535 !important;
    text-transform: none !important;
}

.yith-woocompare-widget .products-list li .title:hover {
    color: #d6261f;
}

.yith-woocompare-widget a.button {
    background: #8c8c8c none repeat scroll 0 0;
    color: #fff;
    font-size: 11px;
    font-weight: normal;
    padding: 10px 24px;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.yith-woocompare-widget a.button:hover {
    background: #7f7f7f;
    color: #fff;
}

.widget_wpurp_recipe_list_widget ul li:not(:last-child) {
    margin-bottom: 10px;
}

.widget_wpurp_recipe_list_widget ul li .wp-post-image,
.widget_wpurp_recipe_list_widget ul li a {
    display: inline-block !important;
    vertical-align: top;
}

.widget_wpurp_recipe_list_widget ul li .wp-post-image {
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.widget_wpurp_recipe_list_widget ul li .wp-post-image img {
    width: 50px;
    height: 50px;
}

.widget_wpurp_recipe_list_widget ul li a {
    width: calc(100% - 64px);
    font-family: ;
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    line-height: 24px;
    letter-spacing: 0px;
    color: #d6261f;
    display: block;
    margin-bottom: 10px;
}

.widget_wpurp_recipe_list_widget ul li a:hover {
    color: #bd185a;
}

.widget_wpurp_recipe_search_widget form select {
    display: block;
    padding: 10px;
    width: 100%;
}

.widget_wpurp_nutrition_label_widget .wpurp-nutrition-label {
    max-width: none;
    width: 100%;
}

.widget_newsletterwidget .tnp-field input {
    background: #fff;
}

.notification-wrap {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    overflow: auto;
}

.notification-wrap.is-show {
    visibility: visible;
    opacity: 1;
}

.notification-wrap.is-show .notification-heading-tabs,
.notification-wrap.is-show .notification-content-tabs {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(0, 0) !important;
    -webkit-transform: translate(0, 0) !important;
}

.notification-wrap .close-notification {
    background: #fff none repeat scroll 0 0;
    display: block;
    height: 60px;
    position: fixed;
    right: 60px;
    top: 60px;
    width: 60px;
    z-index: 5;
    border-radius: 100px;
    font-size: 40px;
    box-shadow: 0px 0px 5px 0px rgba(1, 1, 1, 0.5);
}

.notification-wrap .close-notification span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: #333;
}

.notification-wrap.dark {
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    background-size: 100%;
}

.notification-wrap.light {
    color: #333;
    background: url('../images/background-thin-line.png'), rgba(250, 250, 250, 0.97);
    background-size: 100%;
}

.notification-wrap.light .search-field {
    border-color: rgba(1, 1, 1, 0.5) !important;
}

.notification-wrap.light .nav-tab-item {
    color: #999 !important;
}

.notification-wrap.light .nav-tab-item.owl-url-acitive {
    color: #333 !important;
}

.notification-wrap.light a {
    color: #333 !important;
}

.notification-wrap.light .tab-container-cart .button,
.notification-wrap.light .tab-container-cart .remove {
    color: #fff !important;
}

.notification-wrap .notification-inner {
    margin: 8% auto 0 auto;
    width: 860px;
    max-width: calc(100% - 30px);
    min-height: 400px;
}

.notification-wrap .notification-inner .notification-heading-tabs {
    display: block;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
}

.notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item {
    color: #fff;
    display: inline-block;
    font-size: 22px;
    line-height: 24px;
    font-weight: 300;
    margin: 0 20px;
    vertical-align: top;
    text-decoration: none;
    padding-bottom: 10px;
    position: relative;
    opacity: 0.6;
}

.notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    border-bottom: solid 1px;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item.owl-url-acitive {
    opacity: 1;
}

.notification-wrap .notification-inner .notification-heading-tabs .nav-tab-item.owl-url-acitive:after {
    opacity: 1;
    bottom: 0;
}

.notification-wrap .notification-inner .notification-content-tabs {
    margin-top: 30px;
    padding-top: 30px;
    visibility: hidden;
    opacity: 0;
    transform: translate(0, 50px);
    -webkit-transform: translate(0, 50px);
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart {
    width: 550px;
    max-width: 100%;
    padding: 30px;
    margin: 0 auto;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list {
    padding: 0;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .empty {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    list-style: outside none none;
    text-align: center;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: solid 1px rgba(255, 255, 255, .2);
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item:after {
    content: "";
    display: block;
    clear: both;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item .remove {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #333;
    color: #fff;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove) {
    font-size: 22px;
    font-weight: 300;
    line-height: 26px;
    display: block;
    text-decoration: underline;
    color: #333;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove):hover {
    color: #e32571;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item a:not(.remove) img {
    width: 100px;
    height: auto;
    float: left;
    padding-right: 30px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart ul.cart_list .mini_cart_item .quantity {
    display: block;
    margin-top: 8px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .total {
    font-size: 24px;
    letter-spacing: -1.5px;
    line-height: 30px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .total .woocommerce-Price-amount {
    margin-left: 6px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons {
    display: table;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons .button {
    background: #d6261f;
    color: #fff;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 50%;
    padding: 16px;
    text-transform: uppercase;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    opacity: 0.85;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons .button:hover {
    opacity: 1;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-cart #notification-mini-cart .buttons .button.checkout {
    background: #bd185a;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user {
    width: 400px;
    max-width: 100%;
    padding: 30px;
    margin: 0 auto;
    text-align: center;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .current-user-avatar {
    display: block;
    width: 160px;
    border-radius: 100px;
    padding: 10px;
    border: solid 0.5px rgba(255, 255, 255, .5);
    margin: 0 auto;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .current-user-avatar img {
    border-radius: 100px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .current-user-welcome {
    font-size: 30px;
    font-weight: 300;
    margin: 30px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .logout-link {
    border-bottom: 1px solid;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 10px 0;
    text-transform: uppercase;
    opacity: 0.6;
    text-decoration: none;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .logout-link span {
    margin-right: 4px;
    vertical-align: middle;
    font-size: 20px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .welcome-user .logout-link:hover {
    opacity: 1;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form {
    width: 400px;
    max-width: 100%;
    background: #fff;
    padding: 30px;
    margin: 0 auto;
    border-radius: 3px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form h3 {
    margin: 0 0 30px 0;
    font-size: 24px;
    letter-spacing: -1.3px;
    text-decoration: underline;
    line-height: 28px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="text"],
.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="email"],
.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="password"],
.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform input[type="phone"] {
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    border: none;
    border-bottom: solid 1px rgba(1, 1, 1, .3);
    padding: 5px 0;
    border-radius: 0;
    background: transparent;
    color: #333;
    font-size: 26px;
    height: 42px;
    letter-spacing: -1px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform>p:not(:last-child) {
    margin-bottom: 30px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform>p label {
    color: #333;
    font-weight: 300;
    margin: 0;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform>p input#wp-submit {
    background: #d6261f;
    border: medium none;
    border-radius: 4px;
    color: #fff;
    display: block;
    height: 48px;
    width: 100%;
    font-weight: bold;
    letter-spacing: -1px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-login .sign-in-form form#notification-loginform>p input#wp-submit:hover {
    background: #bd185a;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner {
    margin-bottom: 35px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default {
    position: relative;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default .feature-image {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default .feature-image .post-date {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #d6261f;
    color: #fff;
    font-weight: 300;
    padding: 4px 10px;
    line-height: 16px;
    font-size: 14px;
    border-radius: 30px;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-post .item-inner.item-template-default .post-link {
    color: #fff;
    font-weight: 300;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search {
    text-align: center;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search.tab-container-search-animate .custom-search-form .search-field {
    margin-top: 0;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search.tab-container-search-animate #notification-search-ajax-result {
    opacity: 1;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form {
    color: #333;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label {
    display: block;
    width: 100%;
    position: relative;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-field {
    margin-top: 20vh;
    padding: 20px 0;
    border: none;
    border-bottom: solid 1px rgba(0, 0, 0, .5);
    background: transparent;
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    outline: none;
    box-shadow: none;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-field::-webkit-input-placeholder {
    color: #333;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-field::-moz-placeholder {
    color: #333;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-field:-ms-input-placeholder {
    color: #333;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-field:-moz-placeholder {
    color: #333;
}

.notification-wrap .notification-inner .notification-content-tabs .item .item-inner.tab-container-search .custom-search-form label .search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 3;
    background: transparent;
    border: none;
    font-size: 30px;
    padding: 0;
    padding-left: 4px;
}

@media (max-width: 685px) {
    .notification-wrap .close-notification {
        bottom: 20px;
        left: calc(50% - 30px);
        top: auto;
        right: auto;
    }
    .notification-wrap .notification-heading-tabs {
        margin-top: 20%;
    }
    .notification-wrap .notification-heading-tabs a.nav-tab-item {
        font-size: 100% !important;
        margin: 0 15px !important;
    }
    .notification-wrap .tab-container-cart .buttons .button {
        font-size: 16px !important;
    }
    .notification-wrap .item-inner.tab-container-cart {
        padding-bottom: 80px !important;
    }
}

#notification-search-ajax-result {
    text-align: left;
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition: 0.5s cubic-bezier(0.91, -0.05, 0.53, 0.91);
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
}

#notification-search-ajax-result .text-result {
    font-weight: 300;
    margin: 20px 0 30px 0;
}

#notification-search-ajax-result .item-inner {
    margin-bottom: 35px;
}

#notification-search-ajax-result .item-inner.item-template-default-all-result {
    position: relative;
    min-height: 170px;
}

#notification-search-ajax-result .item-inner.item-template-default-all-result .view-all-result {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    left: 50%;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#notification-search-ajax-result .item-inner.item-template-default-all-result .view-all-result span {
    font-size: 30px;
    margin-left: 10px;
    vertical-align: middle;
}

#notification-search-ajax-result .item-inner.item-template-default {
    position: relative;
}

#notification-search-ajax-result .item-inner.item-template-default .feature-image {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 4px;
    margin-bottom: 12px;
    position: relative;
}

#notification-search-ajax-result .item-inner.item-template-default .feature-image .post-type {
    position: absolute;
    left: 10px;
    top: 10px;
    background: #d6261f;
    color: #fff;
    font-weight: 300;
    padding: 4px 10px;
    line-height: 16px;
    font-size: 14px;
    border-radius: 30px;
}

#notification-search-ajax-result .item-inner.item-template-default .post-link {
    color: #fff;
    font-weight: 300;
}

.bt-footer-widgets {
    padding-top: 100px;
    padding-bottom: ;
    background-color: #808080;
    background-image: url();
    background-repeat: ;
    background-position: ;
    background-size: ;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    /*Responsive*/
    /* Screen 768px */
}

.bt-footer-widgets .widget,
.bt-footer-widgets .widget li {
    color: #898d8e;
}

.bt-footer-widgets .widget a,
.bt-footer-widgets .widget .comment-author-link a {
    color: #636767;
}

.bt-footer-widgets .widget a:hover,
.bt-footer-widgets .widget .comment-author-link a:hover {
    color: #707374;
}

.bt-footer-widgets .widget-title {
    font-weight: ;
    font-style: ;
    color: #fff;
    font-size: ;
}

.bt-footer-widgets .widget-title span {
    color: #fff;
}

.bt-footer-widgets .widget_text .textwidget {
    font-size: 16px;
}

@media (max-width: 991px) {
    /*Screen 568px*/
    .footer-sidebar-item:not(:last-child) {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .bt-footer-widgets {
        padding-top: 50px;
        padding-bottom: 0*0.50;
    }
    .bt-footer-widgets h2.widget-title {
        margin-bottom: 10px;
    }
    .footer-sidebar-item:not(:last-child) {
        margin-bottom: 10px;
    }
}

.bt-copyright-center {
    text-align: center;
}

.bt-copyright-left {
    text-align: left;
}

.bt-copyright-right {
    text-align: right;
    /* copyright and social area background & space */
}

.bt-footer-bar {
    background-color: #fafafa;
    padding-top: 0px;
    padding-bottom: 0px;
    color: ;
}

@media (max-width: 991px) {
    .bt-footer-bar.bt-footer-bar * {
        text-align: center;
        float: none;
        padding: 0;
    }
}

.bt-copyright {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    font-family: 'Poppins';
    line-height: 20px;
    letter-spacing: 0px;
    color: #fff;
}

.bt-copyright a {
    color: #fff;
}

.bt-copyright a:hover {
    color: #fff;
}

.bt-header .bt-nav-menu .menu-item>a>span:after {
    content: none !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c .give-form-wrap form.give-form .give-btn {
    line-height: 30px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    overflow: hidden;
    position: relative;
}

.bt-header-top-bar {
    padding: 0 !important;
}

.accent-color {
    color: #d6261f;
}

h3.head-inline {
    display: inline-block;
    float: left;
}

.head-color strong {
    color: #d6261f;
    font-weight: 600;
}

.con-social .vc_icon_element:hover .vc_icon_element-inner {
    background-color: #d6261f !important;
}

.con-social .vc_icon_element:hover .vc_icon_element-inner span.vc_icon_element-icon:before {
    color: #fff !important;
}

.bt-stories-tes {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    position: relative;
}

.bt-stories-tes .wpb_single_image {
    position: absolute;
    top: -30px;
    right: 30px;
}

.bt-stories-tes .head-color strong {
    font-weight: 700;
}

.bt-stories-tes:hover .wpb_single_image img {
    -webkit-animation-name: wobble;
    animation-name: wobble;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.single.single-give_forms .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c a {
    line-height: 30px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    overflow: hidden;
    position: relative;
    display: inline-block;
    padding: 7px 18px;
    color: #fff;
    background: #d6261f;
    text-transform: uppercase;
    border-radius: 3px;
    margin-top: 7px;
    font-family: 'Poppins';
}

.single.single-give_forms .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c a:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.single.single-give_forms .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c a:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.single.single-give_forms .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c a span {
    display: block !important;
    color: #fff !important;
    font-weight: bold;
}

.bt-gallery-s .grid-item-inner {
    padding: 3px !important;
    background: #fff !important;
}

.bt-gallery-s .grid-item-inner .image-item {
    width: calc(100% - 6px) !important;
    height: calc(100% - 6px) !important;
    top: 3px !important;
    left: 3px !important;
}

.section-visible,
.section-visible>.vc_row {
    overflow: visible !important;
    z-index: 1;
}

#page .icon-inline {
    display: inline-block;
}

#page .icon-inline>.vc_icon_element-inner {
    width: 44px !important;
    height: 44px !important;
    border: none !important;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

#page .icon-inline span.fa {
    font-size: 14px !important;
}

.top-bar-c {
    display: inline-block;
    width: calc(100% / 4);
    float: left;
    border-right: rgba(170, 170, 170, 0.21) solid 1px;
}

.top-bar-c h3 {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500 !important;
    margin-right: 20px;
    line-height: 30px !important;
    margin-top: 0px;
    margin-bottom: 0px;
}

.top-bar-c ul.bt-top-bar-social {
    display: inline-block;
}

.top-bar-c ul.bt-top-bar-social li {
    display: inline-block;
    line-height: 30px;
}

.top-bar-c ul.bt-top-bar-social li a {
    line-height: 30px !important;
    font-size: 12px !important;
    background: #2c2b2b;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}

.top-bar-c ul.bt-top-bar-social li a:hover {
    background: #d6261f;
}

.top-bar-c.c2,
.top-bar-c.c3,
.top-bar-c.c4 {
    text-align: center;
}

.top-bar-c.c2 i.fa,
.top-bar-c.c3 i.fa,
.top-bar-c.c4 i.fa {
    color: #d6261f;
    margin-right: 7px;
}

.top-bar-c.c2 a:hover,
.top-bar-c.c3 a:hover,
.top-bar-c.c4 a:hover {
    color: #d6261f !important;
}

.top-bar-c.c4 {
    text-transform: uppercase;
}

.top-bar-c.c4 a {
    font-weight: 500 !important;
}

.bt-header.header-2 .bt-header-main .bt-nav-wrap .bt-site-navigation.secondary-navigation>ul.bt-nav-menu>li.menu-item:not(:first-child) {
    margin-left: 15px;
}

.bt-header .bt-header-main .bt-header-container.fw-absolute-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

li.p-search i.lnr.lnr-magnifier {
    font-size: 16px;
    font-weight: 600;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.is-header-sticky li.p-search i.lnr.lnr-magnifier {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.bt-noti i.lnr {
    font-weight: bold;
}

li.bt-donate>a {
    line-height: 30px !important;
    font-size: 16px !important;
    border-radius: 5px;
    border: none;
    padding: 5px 30px !important;
    background: #d6261f;
}

li.bt-donate>a span {
    color: #fff;
    vertical-align: bottom !important;
}

.bt-img-mega img {
    width: 100%;
}

.bt-mega-recent {
    padding-left: 10px;
}

.bg-zoom>.vc_column-inner {
    overflow: hidden;
    position: relative;
}

.bg-zoom>.vc_column-inner:after {
    background: #fff;
    content: "";
    height: 350px;
    left: -160px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 1;
}

.bg-zoom>.vc_column-inner:hover .wpb_single_image figure img {
    -webkit-animation-delay: 0s, 0.3s;
    animation-delay: 0s, 0.3s;
    -webkit-animation-direction: normal, alternate;
    animation-direction: normal, alternate;
    -webkit-animation-duration: 0.3s, 1.5s;
    animation-duration: 0.3s, 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1, infinite;
    animation-iteration-count: 1, infinite;
    -webkit-animation-name: hvr-bob-float, hvr-bob;
    animation-name: hvr-bob-float, hvr-bob;
    -webkit-animation-timing-function: ease-out, ease-in-out;
    animation-timing-function: ease-out, ease-in-out;
}

.bg-zoom>.vc_column-inner:hover:after {
    left: 130%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.bt-jonus-f>.vc_column-inner>.wpb_wrapper .vc_icon_element>.vc_icon_element-inner {
    border-radius: 3px;
}

.bt-jonus-f>.vc_column-inner>.wpb_wrapper:hover .vc_icon_element>.vc_icon_element-inner span {
    color: #3b5999 !important;
}

.bt-jonus-i>.vc_column-inner>.wpb_wrapper .vc_icon_element>.vc_icon_element-inner {
    border-radius: 3px;
}

.bt-jonus-i>.vc_column-inner>.wpb_wrapper:hover .vc_icon_element>.vc_icon_element-inner span {
    color: #fbad50 !important;
}

.bt-jonus-y>.vc_column-inner>.wpb_wrapper .vc_icon_element>.vc_icon_element-inner {
    border-radius: 3px;
}

.bt-jonus-y>.vc_column-inner>.wpb_wrapper:hover .vc_icon_element>.vc_icon_element-inner span {
    color: #cd201f !important;
}

.bt-jonus-t>.vc_column-inner>.wpb_wrapper .vc_icon_element>.vc_icon_element-inner {
    border-radius: 3px;
}

.bt-jonus-t>.vc_column-inner>.wpb_wrapper:hover .vc_icon_element>.vc_icon_element-inner span {
    color: #55acee !important;
}

ul.bt-top-social {
    display: inline-block;
}

ul.bt-top-social li {
    display: inline-block;
}

ul.bt-top-social li a {
    display: inline-block;
    margin: 0 1px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    line-height: 30px !important;
    text-align: center;
}

ul.bt-top-social li a.bt-google {
    background: #dd4b39;
}

ul.bt-top-social li a.bt-twitter {
    background: #55acee;
}

ul.bt-top-social li a.bt-linkedin {
    background: #0077b5;
}

ul.bt-top-social li a.bt-facebook {
    background: #3b5999;
}

ul.bt-top-social li a.bt-pinterest {
    background: #bd081c;
}

ul.bt-top-social li a:hover {
    background: #d6261f !important;
}

.bt-top-left li {
    display: inline-block;
    padding-right: 20px;
}

.bt-top-left li:last-child {
    padding-right: 0;
}

.widget {
    font-size: 16px;
}

.bt-top-left li i {
    margin-right: 7px;
    color: #d6261f;
}

.logged-in .display-login {
    display: inline-block !important;
}

.logged-in .display-logout {
    display: none !important;
}

.display-login {
    display: none !important;
}

.bt-login a span,
.bt-register a span,
.bt-logout a span,
.bt-profile a span {
    text-transform: uppercase;
    font-weight: 700 !important;
    color: #fff !important;
}

.btp-believe .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg .vc_icon_element-icon {
    font-size: 3.5em !important;
}

.btp-believe .vc_custom_heading b {
    color: #d6261f !important;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-box-volunteer .featured-box-title {
    font-size: 24px !important;
    font-weight: bold !important;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-box-volunteer .featured-box-text {
    font-size: 16px;
    line-height: 22px;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-box-volunteer a.featured-button {
    height: 48px;
    line-height: 44px !important;
    padding: 0 15px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0;
    float: none;
    background: #d6261f;
    border: #fff solid 2px !important;
    color: #fff !important;
    text-transform: uppercase;
    border-radius: 4px;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-box-volunteer a.featured-button:hover {
    background: #fff;
    color: #000 !important;
}

.bt-war .wpb_featured_box .type-image {
    margin-bottom: 0 !important;
}

.bt-war .wpb_featured_box h4.featured-box-title {
    margin-bottom: 3px;
}

.bt-war .wpb_single_image img {
    width: 180px !important;
}

.bt-login a i,
.bt-register a i,
.bt-logout a i,
.bt-profile a i {
    color: #d6261f !important;
}

a.f-logo {
    display: block;
    margin-bottom: 25px;
}

.copyright-left {
    float: left;
    line-height: 25px;
    padding: 10px 0;
}

.copyright-left a {
    color: #d6261f !important;
    font-weight: 600;
}

.copyright-right {
    float: right;
}

.copyright-right ul {
    margin-bottom: 0;
}

.copyright-right ul li {
    line-height: 38px;
}

.but-dream>a {
    text-transform: uppercase;
    font-weight: 700;
    padding: 15px 30px !important;
    background: #d6261f !important;
    color: #fff !important;
    border-radius: 3px !important;
    font-size: 16px !important;
}

.but-dream>a:hover {
    background: #000 !important;
}

.bt-donate-fun button.give-btn.give-btn-modal:hover {
    background: #fff;
    color: #333;
}

.event-cowndow .layout-default .dream-event-date {
    text-align: center;
    width: 100%;
}

.event-cowndow .layout-default .dream-event-date .dream-event-day {
    padding: 22px 10px !important;
    width: 100px !important;
    height: 100px;
    border-radius: 50% !important;
}

.event-cowndow .layout-default .content-entry {
    text-align: center;
    width: 100% !important;
}

.event-cowndow .layout-default .content-entry .dream-event-time span {
    display: none;
}

.event-cowndow .layout-default .content-entry .venue-empty {
    display: none;
}

.button-p>a {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px !important;
    height: 60px;
    line-height: 60px !important;
    padding: 0 50px !important;
    border-radius: 2px !important;
    overflow: hidden;
    position: relative;
    display: inline-block;
    font-family: 'Poppins';
}

.button-p>a:after,
.bt-donate-c form.give-form .give-btn:after,
.button-p-revo>a:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.button-p>a:hover:after,
.bt-donate-c form.give-form .give-btn:hover:after,
.button-p-revo>a:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.button-p-revo.bb>a {
    background-color: #000;
    color: #fff;
}

.button-p-revo.pp>a {
    background-color: #d6261f;
    color: #fff;
}

.button-p-revo>a {
    font-weight: bold !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px !important;
    height: 53px;
    line-height: 53px !important;
    padding: 0 40px !important;
    border-radius: 2px !important;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.bt-progress-s {
    width: 200px;
    position: absolute;
    left: -100px;
    top: 140px;
}

.bt-progress-s .probar {
    font-size: 48px;
    line-height: 50px;
    margin-top: 15px;
    margin-left: 5px;
}

.bt-progress-s .probar sup {
    font-size: 25px;
    color: #000;
}

.bt-progress-s p {
    text-transform: uppercase;
}

#page .wpb_theme_custom_element.wpb_count_down.bt-countdown .layout-tpl1 #getting-started>div {
    display: inline-block;
    width: 90px;
    height: 90px;
    text-align: center;
    background: rgba(212, 27, 101, 0.7);
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    padding-top: 23px;
    border-radius: 4px;
    line-height: 25px;
}

#page .wpb_theme_custom_element.wpb_count_down.bt-countdown .layout-tpl1 #getting-started>div span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}

.bt-donate-fun {
    text-align: center;
}

.bt-donate-fun div#give_error_test_mode,
.bt-donate-fun .give-form .give-total-wrap {
    display: none !important;
}

.bg-cover>.vc_column-inner {
    background-size: 100% 100% !important;
}

#page .wpb_theme_custom_element.wpb_featured_box.box-better .vc-custom-inner-wrap .featured-box-alignment .icon-wrap .type-image {
    margin-bottom: 0;
}

#page .wpb_theme_custom_element.wpb_featured_box.box-better .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
    margin-bottom: 0;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-service .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 10px;
    letter-spacing: 0;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-service .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-button {
    border-bottom: none;
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-work .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 15px;
    letter-spacing: 0;
}

#page .wpb_theme_custom_element.wpb_featured_box.bt-work .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-button {
    border-bottom: none;
    font-size: 20px;
    color: #fff;
    margin-top: 15px;
    font-weight: 600;
}

.bt-icon {
    display: inline-block;
    margin-right: 5px;
}

#page .wpcf7-form {
    margin-bottom: 0 !important;
}

#page .wpcf7-form .bt-ct-form {
    text-align: center;
}

#page .wpcf7-form .bt-ct-form>div {
    margin-bottom: 10px;
}

#page .wpcf7-form .bt-ct-form .bt-ct-name {
    width: calc(100% / 3 - 10px);
    margin-right: 10px;
    float: left;
    clear: none;
    margin-bottom: 15px;
}

#page .wpcf7-form .bt-ct-form .bt-ct-email {
    width: calc(100% / 3 - 10px);
    margin-left: 5px;
    margin-right: 5px;
    float: left;
    clear: none;
    margin-bottom: 15px;
}

#page .wpcf7-form .bt-ct-form .bt-ct-subject {
    width: calc(100% / 3 - 10px);
    margin-left: 10px;
    float: left;
    clear: none;
    margin-bottom: 15px;
}

#page .wpcf7-form .bt-ct-form input {
    font-size: 16px;
    padding-left: 20px !important;
    border-radius: 3px !important;
    background: #f6f6f6 !important;
    height: 60px;
    line-height: 60px;
    width: 100%;
}

#page .wpcf7-form .bt-ct-form textarea {
    font-size: 16px;
    padding-left: 20px !important;
    border-radius: 3px !important;
    background: #f6f6f6 !important;
    height: 200px;
    width: 100%;
    padding: 10px;
}

#page .wpcf7-form .bt-ct-form .bt-ct-submit {
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    margin-top: 20px;
}

#page .wpcf7-form .bt-ct-form .bt-ct-submit input {
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    height: 60px;
    line-height: 60px !important;
    letter-spacing: 0 !important;
    font-family: 'Poppins' !important;
    padding: 0 50px !important;
    border-radius: 2px !important;
    background: #d6261f !important;
}

#page .wpcf7-form .bt-ct-form .bt-ct-submit:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

#page .wpcf7-form .bt-ct-form .bt-ct-submit:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media only screen and (max-width: 767px) {
    #page .wpcf7-form .bt-ct-form .bt-ct-name,
    #page .wpcf7-form .bt-ct-form .bt-ct-email,
    #page .wpcf7-form .bt-ct-form .bt-ct-subject {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
        float: none;
    }
}

.view-link {
    display: none !important;
}

.bt-contact-box-info-row {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    margin-top: -90px;
    background: #fff;
}

.bt-contact-box-info-row .info-contact .vc_column-inner .wpb_featured_box .entry-box-wrap {
    padding-left: 10px !important;
}

.bt-contact-box-info-row .info-contact .vc_column-inner .wpb_featured_box .entry-box-wrap a {
    color: #666;
}

.bt-liq-vi i.fa {
    font-size: 34px !important;
    width: 34px !important;
    height: 34px !important;
    margin-left: 8px;
}

.btp-contri {
    text-align: center;
}

.btp-contri .but-dream {
    padding: 0 3px;
}

.btp-contri .but-dream.btp-cc>a {
    text-transform: uppercase;
    font-weight: 700;
    padding: 13px 28px !important;
    background: #fff !important;
    color: #333 !important;
    border-radius: 3px !important;
    font-size: 16px !important;
    border: #000 solid 2px !important;
}

.btp-contri .but-dream.btp-cc>a:hover {
    background: #d6261f !important;
    border: #d6261f solid 2px !important;
    color: #fff !important;
}

.messenger-dream {
    margin-top: 5px !important;
}

.messenger-dream textarea,
.messenger-dream input {
    border-radius: 5px !important;
    padding-left: 20px !important;
    font-size: 16px;
}

.messenger-dream input[type="button"] {
    background: #d6261f !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 35px !important;
}

.messenger-dream .dream-full {
    margin-bottom: 10px;
}

.messenger-dream .half1 {
    width: 49%;
    margin-right: 1%;
    float: left;
    clear: none;
    margin-bottom: 5px;
}

.messenger-dream .half2 {
    width: 49%;
    margin-left: 1%;
    float: right;
    clear: none;
    margin-bottom: 5px;
}

.messenger-dream textarea {
    height: 100px !important;
}

.messenger-dream .messenger-but {
    margin-bottom: 0;
    text-align: center;
}

.bt-map-dream {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.best-box .featured-box-title {
    font-size: 28px !important;
    font-weight: 700 !important;
}

span.notification-cart-total-qtt-dk {
    margin-top: 21px;
    right: -8px;
    background: #d6261f;
    border-radius: 100%;
    font-size: 11px !important;
    font-weight: 600 !important;
    width: 16px;
    color: #fff;
    height: 16px !important;
    padding: 0 !important;
    text-align: center;
    font-family: sans-serif !important;
    line-height: 1 !important;
    padding: 2.5px 0 !important;
    margin-right: 1px;
}

.bt-icon>.vc_icon_element-inner:hover {
    background: #d6261f !important;
}

.bt-icon>.vc_icon_element-inner:hover span:before {
    color: #fff !important;
}

.bt-inline,
.bt-icon-lib {
    display: inline-block;
    vertical-align: middle;
}

.bt-svg .wpb_single_image img {
    width: 130px;
}

.rev-btn,
.rev-btn:visited {
    font-family: 'Poppins';
}

.fw-site-logo img {
    width: 170px;
}

body.is-header-sticky .bt-header-container.fw-sticky-header {
    box-shadow: 0 0 25.5px 0 rgba(0, 0, 0, 0.06);
}

.bt-newsletter .tnp.tnp-widget-minimal {
    position: relative;
}

.bt-newsletter .tnp.tnp-widget-minimal input.tnp-email {
    border-radius: 0px !important;
    width: calc(100% - 95px);
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 3px !important;
}

.bt-newsletter .tnp.tnp-widget-minimal input.tnp-name {
    border-radius: 0px !important;
    width: calc(100% - 95px);
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 3px !important;
}

.bt-newsletter .tnp.tnp-widget-minimal .tnp-submit {
    display: inline-block;
    text-transform: uppercase;
    width: 90px;
    font-weight: 600;
    height: 40px;
    line-height: 40px;
    border-radius: 3px !important;
}

.bt-about-list ul {
    padding-left: 0;
}

.bt-about-list ul li {
    margin-bottom: 5px;
    font-size: 16px;
    list-style-type: none;
}

.bt-about-list ul li:before {
    font-family: 'FontAwesome';
    font-weight: 100;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    color: #1395df;
    margin-right: 10px;
    content: "\f046";
}

.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel.panel {
    outline: none;
}

.btp-form-donate {
    text-align: center;
    background: #d6261f;
    padding: 50px;
    border-radius: 4px;
}

.btp-form-donate .give-form-wrap .give-goal-progress {
    margin-bottom: 25px;
}

.btp-form-donate .give-form-wrap .give-goal-progress .raised {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.btp-form-donate .give-form-wrap .give-goal-progress .raised span.income {
    letter-spacing: 0px;
    color: #fff;
    font-weight: bold;
    font-size: 24px !important;
    line-height: 26px;
}

.btp-form-donate .give-form-wrap .give-goal-progress .give-progress-bar {
    height: 10px;
    background: #fff;
}

.btp-form-donate .give-form-wrap .give-goal-progress .give-progress-bar span {
    background: #000 !important;
}

.btp-form-donate .give-form-wrap .give_warning {
    display: none;
    background: #ffba00;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 3px;
    margin: 25px 0;
}

.btp-form-donate .give-form-wrap .give-form .give-total-wrap {
    display: inline-block;
}

.btp-form-donate .give-form-wrap .give-form .give-donation-amount {
    display: inline-block;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    margin-right: 13px;
}

.btp-form-donate .give-form-wrap .give-form .give-donation-amount .give-currency-symbol {
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-radius: 3px 0px 0px 3px;
    background: #000;
    color: #fff;
    font-weight: 600;
    height: 42px;
    line-height: 42px;
    font-weight: 600;
}

.btp-form-donate .give-form-wrap .give-form .give-donation-amount #give-amount-text,
.btp-form-donate .give-form-wrap .give-form .give-donation-amount .give-text-input {
    border: none !important;
    background: #fff !important;
    border-radius: 0px 3px 3px 0px !important;
    height: 42px !important;
    line-height: 42px !important;
    font-weight: 600 !important;
}

.btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap {
    display: inline-block;
    margin-bottom: 10px;
}

.btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li {
    margin-bottom: 5px;
    margin-right: 15px;
}

.btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li button {
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 16px;
    line-height: 16px;
    height: 42px;
    font-weight: 600;
    letter-spacing: 0px;
    padding: 13px 24.4px;
}

.btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li:last-child {
    margin-right: 0;
}

.btp-form-donate .give-form-wrap .give-form fieldset#give-payment-mode-select legend.give-payment-mode-label {
    font-size: 20px;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info {
    margin-bottom: 20px;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info legend {
    font-size: 20px;
    color: #fff;
    border-bottom: none;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info .form-row label.give-label {
    display: none;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info .form-row .give-input {
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info #give-email-wrap {
    float: left;
    width: 100%;
    margin-right: 0;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info #give-final-total-wrap {
    width: 48.5%;
    float: right;
    margin: 0;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info #give-final-total-wrap span.give-donation-total-label {
    border-top: none;
    border-bottom: none;
    color: #fff;
    background: #000;
    margin: 0;
    padding: 0 19px;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    font-weight: 700;
    width: 160px;
    float: left;
    border: none;
    border-radius: 3px 0px 0px 3px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info #give-final-total-wrap span.give-final-total-amount {
    border-radius: 0px 3px 3px 0px;
    height: 46px;
    display: inline-block;
    line-height: 46px;
    width: calc(100% - 160px);
    border: none;
    font-weight: 700;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_purchase_submit {
    display: inline-block;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_purchase_submit .give-submit-button-wrap {
    text-align: center;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_purchase_submit .give-submit-button-wrap input#give-purchase-button {
    height: 48px;
    line-height: 44px;
    padding: 0 25px !important;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    float: none;
    border: #fff solid 2px;
}

.btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_purchase_submit .give-submit-button-wrap input#give-purchase-button:hover {
    background: #000;
}

.bt-social-wrap a {
    display: inline-block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px !important;
    background: #f1f1f1;
    margin: 0 5px 8px 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.bt-social-wrap a .fa-facebook {
    color: #3b5999;
}

.bt-social-wrap a .fa-twitter {
    color: #55acee;
}

.bt-social-wrap a .fa-google-plus {
    color: #dd4b39;
}

.bt-social-wrap a .fa-instagram {
    color: #fbad50;
}

.bt-social-wrap a .fa-linkedin {
    color: #0077b5;
}

.bt-social-wrap a .fa-pinterest {
    color: #bd081c;
}

.bt-social-wrap a .fa-tumblr {
    color: #34465d;
}

.bt-social-wrap a .fa-youtube {
    color: #cd201f;
}

.bt-social-wrap a .fa-dribbble {
    color: #ea4c89;
}

.bt-social-wrap a .fa-flickr {
    color: #ff0084;
}

@media only screen and (max-width: 767px) {
    .ft-copyright {
        text-align: center;
    }
    .ft-copyright h5.vc_custom_heading {
        text-align: center !important;
    }
    .ft-copyright ul.bt-link2 {
        float: none !important;
        display: inline-block !important;
    }
    .bt-ser-s1>.vc_column-inner {
        border: none !important;
    }
    .btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li {
        float: none;
        display: inline-block;
    }
    .btp-form-donate {
        padding: 40px 15px;
    }
    .vc_empty_space.dream-space {
        height: 0px !important;
    }
    .but-dream.btpcenter {
        text-align: center;
        margin-bottom: 35px;
    }
    .bt-logo-f {
        text-align: center !important;
    }
}

@keyframes menuhoveritem {
    0% {
        opacity: 0.5;
        width: 10%;
        left: 0px;
        background: #d6261f;
    }
    60% {
        opacity: 0.8;
        width: 70%;
        left: 30%;
    }
    100% {
        opacity: 1;
        width: 0%;
        left: 100%;
        background: #d6261f;
    }
}

@-webkit-keyframes menuhoveritem {
    0% {
        opacity: 0.5;
        width: 10%;
        left: 0px;
        background: #d6261f;
    }
    60% {
        opacity: 0.8;
        width: 70%;
        left: 30%;
    }
    100% {
        opacity: 1;
        width: 0%;
        left: 100%;
        background: #d6261f;
    }
}

.bt-header.header-2 .bt-header-main .bt-menu-primary .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item a {
    position: relative;
}

.bt-header.header-2 .bt-header-main .bt-menu-primary .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu>li.menu-item a {
    position: relative;
    display: inline-block;
}

.bt-header.header-2 .bt-header-main .bt-menu-primary .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item a:hover:after {
    content: "";
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 35px;
    background: #d6261f;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    animation: menuhoveritem 0.6s ease;
    -webkit-animation: menuhoveritem 0.6s ease;
}

.bt-header.header-2 .bt-header-main .bt-menu-primary .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item>ul.sub-menu>li.menu-item a:hover:after {
    bottom: 6px;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.ic-vd>.vc_icon_element-inner:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #d6261f repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.ic-vd>.vc_icon_element-inner:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

@media only screen and (min-width: 1700px) {
    #page .ic-vd1 {
        right: -200px !important;
    }
}

@media only screen and (max-width: 1699px) and (min-width: 1350px) {
    #page .ic-vd1 {
        right: -60px !important;
    }
}

@media only screen and (max-width: 992px) {
    .bt-callj .vc_custom_heading,
    .bt-callj .button-p {
        text-align: center !important;
    }
    #page .ic-vd1 {
        position: relative !important;
    }
    #page .sto-l {
        margin-right: 0 !important;
    }
    #page .sto-r {
        margin-left: 0 !important;
    }
}

#page .ic-vd1 {
    position: absolute;
    right: 0px;
    bottom: 0;
}

#page .ic-vd1 .vc_icon_element-inner {
    width: 100px !important;
    height: 100px !important;
}

#page .ic-vd1 .vc_icon_element-inner span.vc_icon_element-icon.fa.fa-play {
    font-size: 25px !important;
    line-height: 100px !important;
    margin-left: 3px;
}

.ic-vd1>.vc_icon_element-inner:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #d6261f repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.ic-vd1>.vc_icon_element-inner:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

@media only screen and (max-width: 768px) {
    #page .bg-pos-l {
        background-position: left !important;
    }
    .vc_empty_space.sa-space {
        height: 30px !important;
    }
    .mg-bot {
        margin-bottom: 60px;
    }
    .btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info #give-email-wrap {
        width: 100%;
    }
    .btp-form-donate .give-form-wrap .give-form #give_purchase_form_wrap fieldset#give_checkout_user_info #give-final-total-wrap {
        width: 100%;
    }
    .vc_empty_space.dream-space1 {
        height: 0px !important;
    }
    .btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li button {
        padding: 13px 20px;
    }
    .bt-contact-box-info-row {
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 30px;
    }
    .bt-contact-box-info-row .info-contact .vc_column-inner {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        border-right: none !important;
    }
    .btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li {
        margin-bottom: 5px;
    }
    .fw-title-bar .fw-content-align-left {
        text-align: center;
    }
    #main .btp-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    #page .wpb_theme_custom_element.wpb_count_down.bt-countdown .layout-tpl1 #getting-started>div {
        padding-top: 7px;
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
    #page .wpb_theme_custom_element.wpb_count_down.bt-countdown .layout-tpl1 #getting-started>div span {
        font-size: 13px;
    }
    .bg-cover>.vc_column-inner {
        background-size: cover !important;
    }
    #main .bt-full-pad>.vc_column-inner {
        padding: 15px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.bt-service .vc-custom-inner-wrap .featured-box-alignment.alignment-center.content-alignment-left {
        text-align: center;
    }
    #page .vc_custom_1543285489607 {
        padding-top: 0 !important;
    }
    .edu-h1-count .vc_column-inner {
        background-position: 20px !important;
        background-size: 100px !important;
    }
}

@media only screen and (max-width: 600px) {
    .bt-progress-s {
        left: auto !important;
        margin: 0 auto;
        width: 180px;
        top: 0;
        position: relative;
    }
    .bt-m-count>.vc_column-inner {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    #page .vc_section .bt-happy {
        padding-left: 0px !important;
    }
    #page .vc_section .bt-happy .wpb_counter_up h5 {
        text-align: center !important;
    }
    #page .vc_section .bt-happy h5.vc_custom_heading {
        text-align: center !important;
    }
    .wpb_events_listing.event-ac {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .wpb_events_listing.event-ac .layout-style2 {
        padding-right: 0 !important;
    }
    .wpb_events_listing.event-ac .layout-style2 .dt .bt-join,
    .wpb_events_listing.event-ac .layout-style2 .dt .edu-event-featured {
        display: none !important;
    }
    .wpb_events_listing.event-ac .layout-style2 .dt .content-entry {
        width: 100% !important;
        margin-top: 5px;
    }
    .wpb_events_listing.event-ac .layout-style2 .dd {
        margin-left: 0 !important;
    }
}

@media only screen and (max-width: 992px) {
    .bt-mountai>.vc_column-inner {
        padding-right: 0 !important;
    }
    .bt-progress-s {
        left: 100px;
    }
    #page .bt-happy {
        padding-left: 240px !important;
    }
    .life-better>.wpb_column>.vc_column-inner {
        margin-top: 0px !important;
    }
    .life-better>.wpb_column:first-child>.vc_column-inner {
        margin-top: 20px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.box-better .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap {
        padding-left: 0px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.box-better .vc-custom-inner-wrap .featured-box-alignment .icon-wrap {
        display: none !important;
    }
}

@media only screen and (max-width: 1024px) {
    .bt-callj {
        padding-left: 30px;
        padding-right: 30px;
    }
    .edu-title {
        font-size: 30px !important;
        line-height: 35px !important;
        margin-top: 0;
    }
    .bg-cover>.vc_column-inner {
        padding-left: 15px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.box-better .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap {
        padding-left: 4px !important;
    }
}

@media only screen and (max-width: 1200px) {
    .btp-listing .vc_custom_heading {
        text-align: center !important;
    }
    .btp-listing .post-event-item .layout-default {
        text-align: center;
        margin-bottom: 30px !important;
    }
    .btp-listing .post-event-item .layout-default .dream-event-date {
        text-align: center;
        margin-right: 0;
        width: 100%;
    }
    .btp-listing .post-event-item .layout-default .dream-event-date .dream-event-day {
        width: auto !important;
        padding: 5px 10px !important;
    }
    .btp-listing .post-event-item .layout-default .dream-event-date .dream-event-day span {
        font-size: 16px !important;
        display: inline-block !important;
        margin-right: 5px;
    }
    .bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu>li.menu-item:not(:first-child) {
        margin-left: 30px;
    }
    .bt-top-left li {
        padding-right: 5px;
    }
    .bt-top-left li a {
        font-size: 13px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.bt-service .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
        font-size: 22px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.bt-service .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-button {
        font-size: 18px;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.bt-work .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-box-title {
        font-size: 22px !important;
    }
    #page .wpb_theme_custom_element.wpb_featured_box.bt-work .vc-custom-inner-wrap .featured-box-alignment .entry-box-wrap .featured-button {
        font-size: 18px;
    }
}

@media only screen and (max-width: 450px) {
    #page .sto-l,
    #page .sto-r {
        background-image: none !important;
        padding-top: 40px !important;
    }
    .bt-contact-box-info-row {
        margin-left: 0px;
        margin-right: 0px;
    }
    .btp-form-donate .give-form-wrap .give-form #give-donation-level-button-wrap li,
    .btp-form-donate .give-form-wrap .give-form .give-donation-amount {
        margin-right: 4px;
    }
}

.dream-menu-mobile {
    margin-left: 25px !important;
}

.bt-attachment {
    background-attachment: fixed !important;
}

.but-charity>a {
    text-transform: uppercase;
    font-weight: 700;
    padding: 0px 30px !important;
    background: transparent !important;
    color: #d6261f !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    height: 50px !important;
    line-height: 46px !important;
    border: 2px solid #d6261f !important;
}

.but-charity>a:hover {
    background: #d6261f !important;
    color: #fff !important;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.but-charity.c1>a {
    text-transform: uppercase;
    font-weight: 700;
    padding: 0px 30px !important;
    background: #d6261f !important;
    color: #fff !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    height: 50px !important;
    line-height: 46px !important;
    border: 2px solid #d6261f !important;
}

.but-charity.c1>a:hover {
    background: transparent !important;
    color: #d6261f !important;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.box-gift .bt-gift {
    width: 140px;
    height: 140px;
    padding: 40px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    margin-top: -50px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    border-top: 4px solid #d6261f;
    border-bottom: 4px solid #d6261f;
}

.box-gift .bt-gift:hover {
    border-left: 4px solid #d6261f;
    border-right: 4px solid #d6261f;
    border-top: 0px solid #d6261f;
    border-bottom: 0px solid #d6261f;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

.bt-boxsha {
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, .4);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, .4);
}

.info-event {
    color: #fff !important;
    font-size: 14px;
    line-height: 18px;
}

.info-event .vc_message_box-icon i {
    color: #d6261f;
}

.progress-bt svg {
    border-radius: 30px;
    border: 1px solid #ddd;
}

.progress-bt .progressbar__label {
    left: 50% !important;
    top: 36px !important;
}

.bt-reviewp .style-1 article.goza-review .bt-content .bt-excerpt {
    font-style: italic;
    font-size: 17px !important;
    line-height: 31px !important;
}

.bt-reviewp .style-1 article.goza-review .bt-content .bt-position {
    color: #b7b7b7 !important;
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c2 .give-form-wrap form.give-form .give-btn {
    text-transform: uppercase;
    font-weight: 700 !important;
    padding: 0px 30px !important;
    background: #d6261f !important;
    color: #fff !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    height: 50px !important;
    line-height: 46px !important;
    border: 2px solid #d6261f !important;
    /* ================================================  */
    /*start custom goza-charity-2 vvv*/
}

.bt-header.header-1 .bt-header-main .bt-nav-wrap .bt-site-navigation>ul.bt-nav-menu li.bt-donate-c2 .give-form-wrap form.give-form .give-btn:hover {
    background: transparent !important;
    color: #d6261f !important;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}

@media screen and (max-width: 1199px) {
    .bt-title-gzct.vc_custom_heading {
        font-size: 40px !important;
        line-height: 48px !important;
    }
}

@media screen and (max-width: 480px) {
    .bt-title-gzct.vc_custom_heading {
        font-size: 29px !important;
        line-height: 38px !important;
    }
}

@media screen and (max-width: 767px) {
    .bt-column-donatin-gzct {
        margin-bottom: 10px;
    }
    .bt-column-donatin-gzct .vc_column-inner .wpb_wrapper {
        display: flex;
        vertical-align: middle;
        align-items: center;
    }
    .bt-column-donatin-gzct .vc_column-inner .wpb_wrapper>.vc_custom_heading {
        margin-right: 20px !important;
    }
    .bt-column-donatin-gzct .vc_column-inner .wpb_wrapper>.wpb_theme_custom_element>.vc-custom-inner-wrap>h5 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .bt-item-box-gift.box-gift:not(:last-child) {
        margin-bottom: 100px;
    }
    .bt-item-box-gift.box-gift .vc_column-inner {
        padding-top: 30px !important;
    }
    .bt-item-box-gift.box-gift .vc_column-inner .bt-gift {
        margin-top: -85px;
    }
}

@media screen and (max-width: 767px) {
    .bt-title_2-gzct.vc_custom_heading {
        font-size: 29px !important;
        line-height: 38px !important;
        margin-bottom: 20px;
    }
}

.bt-content-doners-gzct .wpb_wrapper .vc_row.bt-ss-doners-gzct .progress-bt svg {
    min-height: 27px;
    height: 27.05px;
}

@media screen and (max-width: 767px) {
    .bt-content-doners-gzct .wpb_wrapper .vc_row.bt-ss-doners-gzct .bt-column-donatin-gzct {
        margin: 20px 0px -20px 0px;
    }
}

@media screen and (max-width: 767px) {
    .bt-content-doners-gzct .wpb_wrapper>h5.vc_custom_heading {
        text-align: left !important;
    }
    .bt-content-doners-gzct .wpb_wrapper>.wpb_counter_up>.vc-custom-inner-wrap>h5 {
        text-align: left !important;
    }
}

@media screen and (max-width: 767px) {
    #page .wpb_theme_custom_element.wpb_base_review.bt-reviewp .owl-carousel.review .owl-item .item.layout-style-1 article {
        padding: 0px;
    }
}

#page .wpb_theme_custom_element.wpb_base_review.bt-reviewp .owl-carousel.review .owl-item .item.layout-style-1 article .bt-name-position .bt-title {
    line-height: 38px;
}

@media screen and (max-width: 480px) {
    #page .wpb_theme_custom_element.wpb_base_review.bt-reviewp .owl-carousel.review .owl-item .item.layout-style-1 article .bt-name-position .bt-title {
        font-size: 29px;
    }
}

@media screen and (max-width: 480px) {
    .bt-title-ft-gzct.vc_custom_heading {
        font-size: 23px !important;
        line-height: 33px !important;
    }
}

@media screen and (max-width: 991px) {
    .bt-item-donatin>.vc_column-inner {
        margin-top: -40px !important;
    }
}

.bt-social-icon-ft .wpb_wrapper {
    display: inline-block;
}

.bt-content-cnt-footer .bt-nav-contact {
    padding-left: 0px;
}

.bt-content-cnt-footer .bt-nav-contact li {
    list-style-type: none;
    font-family: 'Poppins';
}

.bt-content-cnt-footer .bt-nav-contact li a:hover {
    text-decoration: none;
}

.bt-item-insg-ft #sb_instagram .sbi_photo {
    border-radius: 4px;
}

.bt-item-insg-ft #sb_instagram #sbi_images {
    background-color: red;
}

@media screen and (max-width: 480px) {
    .bt-item-insg-ft #sb_instagram #sbi_images .sbi_item {
        width: calc(100% / 3);
    }
}

.bt-item-insg-ft #sb_instagram #sbi_load {
    text-align: left;
}

.bt-item-insg-ft #sb_instagram #sbi_load .sbi_follow_btn {
    margin-left: 10px;
}

.bt-item-insg-ft #sb_instagram #sbi_load .sbi_follow_btn a svg {
    width: 30px !important;
    font-size: 35px !important;
    vertical-align: middle;
    margin-bottom: 5px;
}

.bt-content-insg-footer #sb_instagram .sbi_photo {
    border-radius: 4px;
}

@media screen and (max-width: 767px) {
    .bt-content-insg-footer #sb_instagram .sbi_photo {
        max-height: 120px;
    }
}

@media screen and (max-width: 480px) {
    .bt-content-insg-footer #sb_instagram .sbi_photo {
        max-height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .bt-content-insg-footer #sb_instagram #sbi_images .sbi_item {
        width: calc(100% / 3);
    }
}

.bt-copyright {
    margin-bottom: 0px;
}

.bt-give-gird-gz {
    width: 100%;
    display: inline-block;
    overflow: hidden;
}

.bt-give-gird-gz .vc-custom-inner-wrap .give-grid {
    margin: 0px -15px;
}

.bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item {
    width: 30% !important;
}

.bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item:first-child {
    width: 40% !important;
}

.bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item:last-child {
    width: 40% !important;
}

@media only screen and (max-width: 991px) {
    .bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item {
        width: 50% !important;
    }
    .bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item:first-child {
        width: 50% !important;
    }
    .bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item:last-child {
        width: 50% !important;
    }
}

@media only screen and (max-width: 640px) {
    .bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item {
        width: 100% !important;
    }
    .bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item:first-child {
        width: 100% !important;
    }
    .bt-give-gird-gz .vc-custom-inner-wrap .give-grid .item:last-child {
        width: 100% !important;
    }
}

@media screen and (max-width: 991px) {
    .bt-tt-gzw.vc_custom_heading {
        font-size: 45px !important;
        line-height: 51px !important;
    }
}

@media screen and (max-width: 480px) {
    .bt-tt-gzw.vc_custom_heading {
        font-size: 33px !important;
        line-height: 40px !important;
    }
}

@media screen and (max-width: 991px) {
    section.bt-item-ss-intro-gzw {
        background-position: right !important;
    }
}

@media screen and (max-width: 768px) {
    .vc_custom_heading.bt-tt-intro-gzw {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 480px) {
    .vc_custom_heading.bt-tt-intro-gzw {
        font-size: 43px !important;
        line-height: 49px !important;
    }
}

@media screen and (max-width: 767px) {
    .bt-carousel-intro-gz {
        padding-right: 0px !important;
    }
}

.bt-ss-item-vd>.container {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .bt-row-item-space>.item-row-space.wpb_column:not(:first-child) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    h2.bt-tt-intro-carousel {
        font-size: 35px !important;
        line-height: 41px !important;
    }
}

#page .wpb_theme_custom_element.wpb_base_carousel.bt-carousel-intro-gz .owl-dots {
    text-align: left;
}

#page .wpb_theme_custom_element.wpb_base_carousel.bt-carousel-intro-gz .owl-dots .owl-dot {
    border-radius: 0px;
    width: 10px;
    height: 10px;
    background: #833dcc;
}

#page .wpb_theme_custom_element.wpb_base_carousel.bt-carousel-intro-gz .owl-dots .owl-dot.active {
    transform: scale(1);
    -webkit-transform: scale(1);
    width: 15px;
    height: 15px;
}

.bt-bkg-video-gz>div.vc_column-inner {
    padding: 270px 0px;
}

@media screen and (max-width: 480px) {
    .bt-bkg-video-gz>div.vc_column-inner {
        padding: 200px 0px;
    }
}

.bt-name-event-gz .wpb_wrapper p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #555;
}

@media screen and (max-width: 480px) {
    .bt-name-event-gz .wpb_wrapper p {
        font-size: 15px;
    }
}

.bt-name-event-gz .wpb_wrapper span {
    color: #833dcc;
    font-weight: 700;
}

.bt-map-event-gz.vc_custom_heading {
    position: relative;
    padding-left: 30px;
}

@media screen and (max-width: 480px) {
    .bt-map-event-gz.vc_custom_heading {
        padding-left: 25px;
        font-size: 15px !important;
    }
}

.bt-map-event-gz.vc_custom_heading:before {
    content: "\f041";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translatey(-50%);
    color: #d6261f;
    font: normal normal normal 25px/1 FontAwesome;
}

.bt-logo-gzw-footer {
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .bt-logo-gzw-footer {
        text-align: center !important;
    }
}

@media screen and (max-width: 767px) {
    .bt-item-footer_1>.vc_column-inner {
        padding-bottom: 0px !important;
    }
}

@media screen and (max-width: 991px) {
    .bt-item-footer_4>.vc_column-inner {
        padding-left: 55px !important;
    }
}

@media screen and (max-width: 767px) {
    .bt-item-footer_4>.vc_column-inner {
        padding-top: 0px !important;
        padding-left: 15px !important;
    }
}

@media screen and (max-width: 767px) {
    .bt-item-footer_2>.vc_column-inner {
        padding-left: 15px !important;
    }
}

.bt-item-counter {
    font-family: 'Poppins';
    font-size: 32px;
    line-height: 38px;
}

.bt-item-counter h3 span {
    font-size: 52px;
    line-height: 58px;
}

@media screen and (max-width: 480px) {
    .bt-item-counter h3 span {
        font-size: 40px;
        line-height: 46px;
    }
}

.bt-fnt-alone-bold {
    font-family: 'Poppins';
    margin-top: 0px;
}

@media screen and (max-width: 480px) {
    .bt-fnt-alone-bold {
        font-size: 17px !important;
        line-height: 27px !important;
    }
}

.vc_btn3-container.bt-btn-goza {
    width: 100%;
    display: inline-block;
    margin-bottom: 0px;
    overflow: hidden;
}

.vc_btn3-container.bt-btn-goza a {
    background-color: #d6261f !important;
    border: 1px solid #d6261f !important;
    border-radius: 0px;
    color: #fff !important;
    padding: 14.5px 40px;
    font-size: 15px;
    line-height: 25px;
    font-weight: 700;
    background-image: none !important;
    position: relative;
    z-index: 9;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.vc_btn3-container.bt-btn-goza a>svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
}

.vc_btn3-container.bt-btn-goza a>svg rect {
    height: 48px;
    width: 95%;
    x: 4px;
    y: 3px;
}

.vc_btn3-container.bt-btn-goza a:hover {
    color: #fff !important;
}

.vc_btn3-container.bt-btn-goza a:hover>svg {
    animation-play-state: running;
    stroke: #fff;
}

.bt-btn-slider-goza {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.bt-btn-slider-goza>svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashed_border_running 20s linear infinite both;
    animation-play-state: paused;
    stroke-width: 2;
    stroke-dasharray: 9, 5;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    fill: none;
    transition: 0.4s;
}

.bt-btn-slider-goza>svg rect {
    height: 45px;
    width: 95%;
    x: 4.5px;
    y: 5px;
}

.bt-btn-slider-goza:hover>svg {
    animation-play-state: running;
    stroke: #fff;
}

.bt-newsletter-alone .wpb_wrapper .widget .tnp.tnp-widget-minimal {
    position: relative;
}

.bt-newsletter-alone .wpb_wrapper .widget .tnp.tnp-widget-minimal:after {
    content: "\f003";
    font-family: FontAwesome;
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    color: #636363;
}

.bt-item-scroll>.vc_column-inner>.wpb_wrapper {
    text-align: right;
    margin-bottom: 0px;
}

.bt-item-scroll>.vc_column-inner>.wpb_wrapper>.wpb_content_element {
    margin-bottom: 0px;
}

.bt-item-scroll .bt-btn-scroll {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    cursor: pointer;
    transition: 0.4s;
}

@media screen and (max-width: 767px) {
    .bt-item-scroll .bt-btn-scroll {
        font-size: 0px;
    }
    .bt-item-scroll .bt-btn-scroll i {
        font-size: 30px;
    }
}

.bt-item-scroll .bt-btn-scroll i {
    margin-left: 15px;
}

section.bt-content-ft-gzw .container:nth-child(2) {
    max-height: 5px !important;
}

@media screen and (max-width: 767px) {
    section.bt-content-ft-gzw .container:nth-child(2) {
        width: 100%;
    }
    section.bt-content-ft-gzw .container:nth-child(3) {
        width: 100%;
    }
}

.or-volunteer a {
    font-size: 18px !important;
    font-weight: 600;
}

.or-volunteer a i.fa {
    color: #d6261f;
    font-size: 23px;
}

.or-donate>a {
    display: none !important;
}

.or-donate form.give-form {
    margin-bottom: 0 !important;
}

.or-donate form.give-form button.give-btn.give-btn-modal {
    height: 52px;
    border-radius: 30px;
    font-size: 15px;
    padding: 0 30px;
    color: #fff;
    font-weight: 700;
}

.or-donate form.give-form button.give-btn.give-btn-modal:hover {
    background: #f9f9f9 !important;
    color: #333 !important;
}

.or-search a {
    width: 52px !important;
    height: 52px;
    border-radius: 3px;
    display: inline-block !important;
    background: #efefef;
    text-align: center;
    line-height: 52px !important;
    padding: 0 !important;
    padding-left: 5px !important;
}

.or-search a i.fa {
    color: #727b7b;
}

.bt-btn-gzor>a {
    text-transform: uppercase;
    font-weight: 700;
    padding: 19px 40px !important;
    background: #d6261f !important;
    color: #fff !important;
    font-size: 16px !important;
    border-radius: 30px !important;
    -webkit-box-shadow: 0 0 14.5px 0 rgba(0, 0, 0, 0.2) !important;
    -moz-box-shadow: 0 0 14.5px 0 rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 0 14.5px 0 rgba(0, 0, 0, 0.2) !important;
}

.bt-btn-gzor>a:hover {
    background: #fff !important;
    color: #333 !important;
}

.bt-btn-gzor.c2>a {
    background: #fff !important;
    color: #333 !important;
}

.bt-btn-gzor.c2>a:hover {
    background: #d6261f !important;
    color: #fff !important;
}

.footer-home-main {
    color: #fff;
}

.footer-home-main .widget .widget-title span {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0;
}

.footer-home-main .footer-contact-info-ui .c-item {
    padding-bottom: 15px;
}

.footer-home-main .footer-contact-info-ui .c-item .icon-wrap {
    display: inline-block;
    width: 20px;
    color: #fff;
}

.footer-home-main .footer-contact-info-ui .c-item .entry-content {
    vertical-align: top;
    line-height: 25px;
    display: inline-block;
    width: calc(100% - 30px);
}

.footer-home-main .footer-contact-info-ui .c-item .entry-content a {
    color: #fff;
    font-weight: 400;
}

.footer-home-main ul.bt-link li {
    padding-bottom: 8px;
}

.footer-home-main ul.bt-link li a {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #fff;
}

.footer-home-main ul.bt-link li a i {
    color: #fff;
    margin-right: 10px;
}

.footer-home-main ul.bt-link li a:hover {
    color: #d6261f !important;
}

.footer-home-main ul.bt-link li a:hover i {
    color: #d6261f !important;
}

.bt-footer-custom-layout.footer-1 {
    font-size: 15px;
}

.bt-footer-custom-layout.footer-1 ul.bt-link {
    padding: 0;
    list-style-type: none;
    font-size: 17px;
    margin-top: 30px;
}

.bt-footer-custom-layout.footer-1 ul.bt-link li {
    padding-bottom: 8px;
}

.bt-footer-custom-layout.footer-1 ul.bt-link li a {
    font-weight: 400 !important;
    color: #c3c3c3;
}

.bt-footer-custom-layout.footer-1 ul.bt-link li a i {
    color: #c3c3c3;
    margin-right: 10px;
    font-size: 12px;
    bottom: 2px;
    display: inline-block;
    position: relative;
}

.bt-footer-custom-layout.footer-1 ul.bt-link li a:hover {
    color: #d6261f !important;
}

.bt-footer-custom-layout.footer-1 ul.bt-link li a:hover i {
    color: #d6261f !important;
}

.bt-footer-custom-layout.footer-1 ul.bt-link1 {
    padding: 0;
    list-style-type: none;
    font-size: 17px;
    margin-top: 30px;
}

.bt-footer-custom-layout.footer-1 ul.bt-link1 li {
    padding-bottom: 8px;
}

.bt-footer-custom-layout.footer-1 ul.bt-link1 li a {
    font-weight: 400 !important;
    color: #c3c3c3;
    text-decoration: underline;
}

.bt-footer-custom-layout.footer-1 ul.bt-link1 li a:hover {
    color: #d6261f !important;
}

.bt-footer-custom-layout.footer-1 ul.bt-link2 {
    padding: 0;
    list-style-type: none;
    font-size: 17px;
    float: right;
}

.bt-footer-custom-layout.footer-1 ul.bt-link2 li {
    display: inline-block;
}

.bt-footer-custom-layout.footer-1 ul.bt-link2 li a {
    font-weight: 400 !important;
    color: #c3c3c3;
    padding: 0 10px;
}

.bt-footer-custom-layout.footer-1 ul.bt-link2 li a:hover {
    color: #d6261f !important;
}

.bt-footer-custom-layout.footer-1 .btp-newles {
    margin-top: 40px;
}

.bt-footer-custom-layout.footer-1 .btp-newles .tnp-widget-minimal input.tnp-name {
    height: 60px;
    margin-bottom: 10px;
    border-radius: 2px !important;
    text-align: center;
}

.bt-footer-custom-layout.footer-1 .btp-newles .tnp-widget-minimal input.tnp-email {
    height: 60px;
    margin-bottom: 10px;
    border-radius: 2px !important;
    text-align: center;
}

.bt-footer-custom-layout.footer-1 .btp-newles .tnp-widget-minimal input.tnp-submit {
    height: 60px;
    border-radius: 2px !important;
    font-weight: 500;
    font-size: 14px !important;
}

.bt-footer-custom-layout.footer-1 .btp-newles form.tnp-form {
    overflow: hidden;
    position: relative;
}

.bt-footer-custom-layout.footer-1 .btp-newles form.tnp-form:after {
    background: #fff;
    content: "";
    height: 115px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: 40px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.bt-footer-custom-layout.footer-1 .btp-newles form.tnp-form:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.single-give_forms .give_forms .single-give-thubnail .images {
    text-align: center;
    background: #333;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
}

.single-give_forms .give_forms .single-give-thubnail .images img {
    max-width: 100%;
}

.single-give_forms .give_forms .entry-summary {
    display: block;
    width: 100%;
    float: none;
    width: 100%;
}

.single-give_forms .give_forms .entry-summary .entry-title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
    max-width: 100%;
    width: 500px;
    margin: 0 auto;
    margin-top: 30px;
}

.single-give_forms .give_forms .entry-summary .give-form-wrap {
    position: relative;
    margin-top: 30px;
    padding-top: 20px;
}

.single-give_forms .give_forms .entry-summary .give-form-wrap:after {
    content: "";
    position: absolute;
    width: 40%;
    border-top: solid 0.5px #d6261f;
    top: 0;
    left: 30%;
    z-index: 1;
}

.single-give_forms .give_forms .entry-summary .give-goal-progress {
    text-align: center;
    margin-bottom: 30px;
}

.single-give_forms .give_forms .entry-summary .give-goal-progress .raised .income {
    font-size: 150%;
}

.give-single-layout-style-2 .give_forms .give-single-heading {
    position: relative;
    padding: 28vh 0;
    min-height: 300px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0px;
}

.give-single-layout-style-2 .give_forms .give-single-heading .heading-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.give-single-layout-style-2 .give_forms .give-single-heading .heading-background:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap {
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
    display: table;
    z-index: 3;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap>* {
    display: table-cell;
    vertical-align: middle;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide {
    padding: 15px;
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide .owl-carousel {
    width: 100%;
    display: block;
    transition: translateZ(10px);
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide .item img {
    padding: 0px;
    border-radius: 50%;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-goal-progress-bar {
    cursor: pointer;
    width: 80px;
    position: relative;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-goal-progress-bar svg {
    position: relative;
    z-index: 3;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .raised {
    padding-left: 20px;
    color: #fff;
}

.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .raised .income {
    font-size: 150%;
}

.give-single-layout-style-2 .give_forms .entry-container {
    position: relative;
    display: block;
}

.give-single-layout-style-2 .give_forms .entry-container:after {
    content: '';
    display: block;
    clear: both;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap h2.give-form-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    /* fix goal */
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success {
    clear: none;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress .give-progress-bar,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error .give-progress-bar,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success .give-progress-bar {
    height: 10px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress .raised,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error .raised,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success .raised {
    margin-bottom: 0;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading {
    border-bottom: 1px solid #d5d5d5;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item {
    display: inline-block;
    margin-right: 20px;
    color: #999;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item i {
    margin-right: 5px;
    color: #d6261f;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item.meta-donors {
    background: #d6261f;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    padding: 4px 10px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item.post-author {
    padding-right: 30px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post {
    position: absolute;
    right: 0;
    top: 12px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    margin-left: 2px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item>span {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-facebook {
    background: #3b5999;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-twitter {
    background: #55acee;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-google-plus {
    background: #dd4b39;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-linkedin {
    background: #0077b5;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap blockquote {
    margin: 30px 0;
    font-size: 20px;
    border-color: #d6261f;
    font-weight: bold;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form {
    text-align: center;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-total-wrap {
    display: inline-block;
    vertical-align: middle;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount.form-row-wide {
    width: 200px;
    margin-bottom: 10px;
    margin-right: 5px;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form button.give-btn.give-btn-reveal {
    width: 200px;
    margin: 0 auto;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-family: 'Poppins';
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form button.give-btn.give-btn-reveal:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form button.give-btn.give-btn-reveal:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form p#give-final-total-wrap {
    width: 300px;
    margin: 20px auto;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form ul#give-donation-level-button-wrap {
    text-align: center;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form ul#give-donation-level-button-wrap li {
    display: inline-block !important;
    float: none !important;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-submit-button-wrap {
    width: 200px;
    margin: 0 auto;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-family: 'Poppins';
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-submit-button-wrap:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-submit-button-wrap:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 500px) {
    .give-single-layout-style-2 .give_forms .title-heading .extra-meta {
        display: block !important;
        text-align: center;
    }
    .give-single-layout-style-2 .give_forms .title-heading .extra-meta .post-author {
        padding-right: 0px;
    }
    .give-single-layout-style-2 .give_forms .title-heading .give-social-share-post {
        position: relative !important;
        text-align: center;
        float: none !important;
    }
}

.give-form-navigation-link-wrap {
    display: table;
    margin: 30px 0;
    padding: 30px 0;
    width: 100%;
}

.give-form-navigation-link-wrap>* {
    display: table-cell;
}

.give-form-navigation-link-wrap a {
    text-align: right;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.give-form-navigation-link-wrap a.prev-link .btn-text,
.give-form-navigation-link-wrap a.next-link .btn-text {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    padding: 6px 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-family: 'Poppins';
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.give-form-navigation-link-wrap a.prev-link .btn-text:after,
.give-form-navigation-link-wrap a.next-link .btn-text:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.give-form-navigation-link-wrap a.prev-link .btn-text:hover:after,
.give-form-navigation-link-wrap a.next-link .btn-text:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.give-form-navigation-link-wrap a.prev-link .btn-text span {
    margin-right: 10px;
}

.give-form-navigation-link-wrap a.next-link .btn-text span {
    margin-left: 10px;
}

.give-form-navigation-link-wrap a .title-text {
    display: none;
    font-weight: bold;
    font-size: 18px;
}

.give-form-navigation-link-wrap a:first-child {
    text-align: left;
}

.give-form-donor-listing {
    padding: 0;
    margin: 0;
}

.give-form-donor-listing .item {
    list-style: none;
    display: table;
    width: 100%;
    margin-bottom: 20px;
}

.give-form-donor-listing .item>* {
    display: table-cell;
    vertical-align: middle;
}

.give-form-donor-listing .item .ava {
    margin-top: 8px;
    width: 50px;
    border-radius: 3px;
}

.give-form-donor-listing .item .donor-entry-wrap {
    padding-left: 20px;
    width: 100%;
}

.give-form-donor-listing .item .donor-entry-wrap .name {
    font-size: 18px;
}

.give-form-donor-listing .item .donor-entry-wrap .value {
    color: #999;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap {
    position: relative;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-thumbnail {
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta {
    overflow: hidden;
    left: 10px;
    position: absolute;
    top: 10px;
    z-index: 1;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta>* {
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    opacity: 1;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta .entry-date {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: normal;
    padding: 5px 10px;
    text-transform: uppercase;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s cubic-bezier(0.9, 0.14, 0.69, 1.01);
    transition: 0.4s cubic-bezier(0.9, 0.14, 0.69, 1.01);
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form {
    margin: 0;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form .give-btn {
    background: #d6261f;
    font-size: 13px;
    margin: 0;
    padding: 13px 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Poppins';
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form .give-btn:hover {
    background: #bd185a;
    opacity: 1;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .5);
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .extra-meta>* {
    transform: translateY(-140%);
    -webkit-transform: translateY(-140%);
    opacity: 0;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .give-thumbnail {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover:after {
    opacity: 1;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .give-display-button-only {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap {
    padding: 30px;
    border: solid #f5f5f5;
    border-width: 0 1px 1px;
    border-radius: 0 0 3px 3px;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .title-link {
    text-decoration: none;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .title-link .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 20px;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress {
    margin-bottom: 15px;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress .raised {
    margin: 0;
    font-size: 16px;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress .give-progress-bar {
    height: 8px;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 10px 20px;
    display: inline-block;
    line-height: 24px;
    margin-top: 15px;
    font-family: 'Poppins';
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}

.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore span {
    font-size: 20px;
    margin-left: 4px;
    vertical-align: middle;
}

@keyframes give_open_modal_animate {
    from {
        opacity: 0;
        transform: translateY(-15%);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@-webkit-keyframes give_open_modal_animate {
    from {
        opacity: 0;
        -webkit-transform: translateY(-15%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }
}

.mfp-wrap.give-modal .mfp-content {
    width: 600px;
    max-width: 100%;
    animation: give_open_modal_animate 0.6s cubic-bezier(0.93, 0.29, 0.49, 0.77);
    -webkit-animation: give_open_modal_animate 0.6s cubic-bezier(0.93, 0.29, 0.49, 0.77);
}

.mfp-wrap.give-modal .mfp-content form.give-form {
    margin-top: 22px !important;
}

.mfp-wrap.give-modal .mfp-content form.give-form .give-form-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1px;
    max-width: 100%;
    text-align: center;
}

.mfp-wrap.give-modal .mfp-content form.give-form .give-goal-progress {
    text-align: center;
    margin-bottom: 50px;
}

.mfp-wrap.give-modal .mfp-content form.give-form .give-goal-progress .raised .income {
    font-size: 150%;
}

.give-btn {
    background: #d6261f;
    color: #ebebeb;
    border: medium none;
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 0px;
    padding: 13px 20px;
    text-transform: uppercase;
}

.give-btn:hover {
    background: #d6261f;
    color: #fff;
    text-decoration: none;
}

.give-button-donate.custom-give-button-donate form.give-form {
    margin: 0;
}

.give-button-donate.custom-give-button-donate form.give-form .give-btn {
    margin: 0;
    display: inline-block !important;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.give-button-donate.custom-give-button-donate form.give-form .give-btn:hover {
    background: #bd185a;
}

.give-button-donate.custom-give-button-donate.give-btn-alignment-left form.give-form {
    text-align: left;
}

.give-button-donate.custom-give-button-donate.give-btn-alignment-right form.give-form {
    text-align: right;
}

.give-button-donate.custom-give-button-donate.give-btn-alignment-center form.give-form {
    text-align: center;
}

.give-button-donate.custom-give-button-donate.give-btn-style-rounded form.give-form .give-btn {
    border-radius: 4px;
}

.give-button-donate.custom-give-button-donate.give-btn-style-square form.give-form .give-btn {
    border-radius: 0px;
}

.give-button-donate.custom-give-button-donate.give-btn-style-circle form.give-form .give-btn {
    border-radius: 50px;
}

.give-goal-progress {
    margin-bottom: 50px;
}

.give-goal-progress .raised .income {
    font-size: 150%;
}

.custom-give-goal-progress {
    margin-bottom: 30px;
    width: 100%;
}

.custom-give-goal-progress>.give-goal-progress {
    margin: 0;
}

.custom-give-goal-progress .progress-bar {
    box-shadow: none;
}

.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg {
    width: 100%;
}

.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .raised {
    float: none;
}

.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar {
    background: none;
    padding: 0 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative;
}

.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar svg {
    width: 100%;
}

.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .raised {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center;
}

.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg {
    width: 100%;
}

.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .raised {
    float: none;
}

.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar {
    background: none;
    padding: 0 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative;
}

.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar svg {
    width: 100%;
}

.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .raised {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center;
}

.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg {
    width: 100%;
    display: table;
}

.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
    display: table-cell;
    vertical-align: middle;
    float: none;
}

.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar {
    background: none;
    width: 52px;
    margin: 0 auto;
    position: relative;
}

.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar:after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    left: 50%;
    top: 50%;
    background: #333;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1;
}

.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar svg {
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
}

.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px;
}

@media (max-width: 360px) {
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar {
        width: 36px;
    }
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar:after {
        width: 36px;
        height: 36px;
    }
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar svg {
        width: 70%;
    }
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
        font-size: 13px;
        line-height: 18px;
    }
}

.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg {
    display: table;
}

.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
    display: table-cell;
    vertical-align: middle;
    float: none;
}

.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .progress-bar {
    width: 60px;
    background: none !important;
}

.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px;
}

@media (max-width: 360px) {
    .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
        font-size: 14px;
        line-height: 18px;
    }
}

.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar {
    padding-top: 9px;
}

.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar {
    display: block;
    width: 100%;
    background: #eee;
    border-radius: 5px;
}

.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar .progress-line {
    position: relative;
    height: 2px;
    border-radius: 5px;
}

.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar .progress-line .tick-progress {
    position: absolute;
    right: 0;
    top: 8px;
    transform: translate(50%, -100%);
    -webkit-transform: translate(50%, -100%);
    border: solid 9px transparent;
}

.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .raised .income {
    font-size: 150%;
}

#give-login-form input[type="text"],
#give-login-form input[type="password"] {
    padding: 2px 10px;
}

.single-give_forms .give_forms .entry-summary form.give-form,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form,
.mfp-wrap.give-modal .mfp-content form.give-form {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    margin-top: 50px;
}

@media (max-width: 360px) {
    .single-give_forms .give_forms .entry-summary form.give-form,
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form,
    .mfp-wrap.give-modal .mfp-content form.give-form {
        padding: 20px 20px 5px 20px;
    }
}

.single-give_forms .give_forms .entry-summary form.give-form:after,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form:after,
.mfp-wrap.give-modal .mfp-content form.give-form:after {
    content: "";
    clear: both;
    display: block;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount {
    display: table;
    width: 100%;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount>*,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount>*,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount>* {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    max-width: none;
    height: 53px;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount .give-currency-symbol,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount .give-currency-symbol,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount .give-currency-symbol {
    background: #d6261f;
    color: #fff;
    border-color: #bd185a;
    padding: 0 20px;
    text-align: center;
    width: 1%;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount label.give-hidden,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount label.give-hidden,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount label.give-hidden {
    background: #d6261f;
    color: #fff;
    border: solid #bd185a;
    border-width: 1px 0;
    white-space: nowrap;
    width: 1%;
    padding-right: 20px;
}

@media (max-width: 515px) {
    .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount label.give-hidden,
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount label.give-hidden,
    .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount label.give-hidden {
        display: none;
    }
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount input.give-text-input,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount input.give-text-input,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount input.give-text-input {
    height: 53px !important;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount .give-text-input,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount .give-text-input,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount .give-text-input {
    text-align: left;
    border-color: #bd185a !important;
    width: 100%;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap {
    margin-bottom: 0 !important;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap.give-select,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap.give-select,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap.give-select {
    margin-bottom: 15px !important;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap:after,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap:after,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap:after {
    content: "";
    display: block;
    clear: both;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li {
    margin: 0 15px 15px 0 !important;
    float: left;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li *,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li *,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li * {
    vertical-align: middle;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li .give-donation-level-btn,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li .give-donation-level-btn,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li .give-donation-level-btn {
    background: none;
    font-size: 13px;
    height: auto;
    margin: 0;
    padding: 12px 20px;
    border: solid 1px #d6261f;
    color: #d6261f;
    min-width: 110px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level {
    background: #d6261f;
    color: #fff;
}

.single-give_forms .give_forms .entry-summary form.give-form #give-donation-level-radio-list,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-donation-level-radio-list,
.mfp-wrap.give-modal .mfp-content form.give-form #give-donation-level-radio-list {
    margin-bottom: 15px !important;
    padding: 15px 15px 0 15px;
    border: solid 1px #d6261f;
}

.single-give_forms .give_forms .entry-summary form.give-form #give-donation-level-radio-list li,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-donation-level-radio-list li,
.mfp-wrap.give-modal .mfp-content form.give-form #give-donation-level-radio-list li {
    margin-right: 25px !important;
}

.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap {
    display: table;
    width: 100%;
}

.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap>*,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap>*,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap>* {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    max-width: none;
    height: 53px;
}

.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap .give-donation-total-label,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap .give-donation-total-label,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap .give-donation-total-label {
    background: #d6261f;
    color: #fff;
    border-color: #bd185a;
    padding: 0 20px;
    white-space: nowrap;
}

.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap .give-final-total-amount,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap .give-final-total-amount,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap .give-final-total-amount {
    text-align: left;
    border-color: #bd185a !important;
    width: 100%;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-select,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-select,
.mfp-wrap.give-modal .mfp-content form.give-form .give-select {
    height: 53px;
    display: block;
    width: 100%;
    border-color: #bd185a !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/arrow-down-icon.png") no-repeat scroll calc(100% - 10px) 50% / 16px auto;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-btn,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-btn,
.mfp-wrap.give-modal .mfp-content form.give-form .give-btn {
    height: 53px;
    display: block;
    width: 100%;
    background: #d6261f;
    color: #fff;
    border: none;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

.single-give_forms .give_forms .entry-summary form.give-form .give-btn:hover,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-btn:hover,
.mfp-wrap.give-modal .mfp-content form.give-form .give-btn:hover {
    opacity: 0.9;
}

color: #d6261f !important;

}
.bt-footer-custom-layout.footer-1 ul.bt-link li a:hover i {
    color: #d6261f !important;
}
.bt-footer-custom-layout.footer-1 ul.bt-link1 {
    padding: 0;
    list-style-type: none;
    font-size: 17px;
    margin-top: 30px;
}
.bt-footer-custom-layout.footer-1 ul.bt-link1 li {
    padding-bottom: 8px;
}
.bt-footer-custom-layout.footer-1 ul.bt-link1 li a {
    font-weight: 400 !important;
    color: #c3c3c3;
    text-decoration: underline;
}
.bt-footer-custom-layout.footer-1 ul.bt-link1 li a:hover {
    color: #d6261f !important;
}
.bt-footer-custom-layout.footer-1 ul.bt-link2 {
    padding: 0;
    list-style-type: none;
    font-size: 17px;
    float: right;
}
.bt-footer-custom-layout.footer-1 ul.bt-link2 li {
    display: inline-block;
}
.bt-footer-custom-layout.footer-1 ul.bt-link2 li a {
    font-weight: 400 !important;
    color: #c3c3c3;
    padding: 0 10px;
}
.bt-footer-custom-layout.footer-1 ul.bt-link2 li a:hover {
    color: #d6261f !important;
}
.bt-footer-custom-layout.footer-1 .btp-newles {
    margin-top: 40px;
}
.bt-footer-custom-layout.footer-1 .btp-newles .tnp-widget-minimal input.tnp-email {
    height: 60px;
    margin-bottom: 10px;
    border-radius: 2px !important;
    text-align: center;
}
.bt-footer-custom-layout.footer-1 .btp-newles .tnp-widget-minimal input.tnp-submit {
    height: 60px;
    border-radius: 2px !important;
    font-weight: 500;
    font-size: 14px !important;
}
.bt-footer-custom-layout.footer-1 .btp-newles form.tnp-form {
    overflow: hidden;
    position: relative;
}
.bt-footer-custom-layout.footer-1 .btp-newles form.tnp-form:after {
    background: #fff;
    content: "";
    height: 115px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: 40px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}
.bt-footer-custom-layout.footer-1 .btp-newles form.tnp-form:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}
.single-give_forms .give_forms .single-give-thubnail .images {
    text-align: center;
    background: #333;
    text-align: center;
    border-radius: 3px;
    overflow: hidden;
}
.single-give_forms .give_forms .single-give-thubnail .images img {
    max-width: 100%;
}
.single-give_forms .give_forms .entry-summary {
    display: block;
    width: 100%;
    float: none;
    width: 100%;
}
.single-give_forms .give_forms .entry-summary .entry-title {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
    max-width: 100%;
    width: 500px;
    margin: 0 auto;
    margin-top: 30px;
}
.single-give_forms .give_forms .entry-summary .give-form-wrap {
    position: relative;
    margin-top: 30px;
    padding-top: 20px;
}
.single-give_forms .give_forms .entry-summary .give-form-wrap:after {
    content: "";
    position: absolute;
    width: 40%;
    border-top: solid 0.5px #d6261f;
    top: 0;
    left: 30%;
    z-index: 1;
}
.single-give_forms .give_forms .entry-summary .give-goal-progress {
    text-align: center;
    margin-bottom: 30px;
}
.single-give_forms .give_forms .entry-summary .give-goal-progress .raised .income {
    font-size: 150%;
}
.give-single-layout-style-2 .give_forms .give-single-heading {
    position: relative;
    padding: 28vh 0;
    min-height: 300px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0px;
}
.give-single-layout-style-2 .give_forms .give-single-heading .heading-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.give-single-layout-style-2 .give_forms .give-single-heading .heading-background:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap {
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
    display: table;
    z-index: 3;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap>* {
    display: table-cell;
    vertical-align: middle;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide {
    padding: 15px;
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide .owl-carousel {
    width: 100%;
    display: block;
    transition: translateZ(10px);
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-donor-slide .item img {
    padding: 0px;
    border-radius: 50%;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-goal-progress-bar {
    cursor: pointer;
    width: 80px;
    position: relative;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .give-goal-progress-bar svg {
    position: relative;
    z-index: 3;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .raised {
    padding-left: 20px;
    color: #fff;
}
.give-single-layout-style-2 .give_forms .give-single-heading .give-progress-bar-wrap .raised .income {
    font-size: 150%;
}
.give-single-layout-style-2 .give_forms .entry-container {
    position: relative;
    display: block;
}
.give-single-layout-style-2 .give_forms .entry-container:after {
    content: '';
    display: block;
    clear: both;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap h2.give-form-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    /* fix goal */
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success {
    clear: none;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress .give-progress-bar,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error .give-progress-bar,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success .give-progress-bar {
    height: 10px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give-goal-progress .raised,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_error .raised,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .give_success .raised {
    margin-bottom: 0;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading {
    border-bottom: 1px solid #d5d5d5;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item {
    display: inline-block;
    margin-right: 20px;
    color: #999;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item i {
    margin-right: 5px;
    color: #d6261f;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item.meta-donors {
    background: #d6261f;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    padding: 4px 10px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .extra-meta .meta-item.post-author {
    padding-right: 30px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post {
    position: absolute;
    right: 0;
    top: 12px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 50%;
    margin-left: 2px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item>span {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-facebook {
    background: #3b5999;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-twitter {
    background: #55acee;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-google-plus {
    background: #dd4b39;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title-heading .give-social-share-post .share-post-wrap .share-post-item.s-linkedin {
    background: #0077b5;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap blockquote {
    margin: 30px 0;
    font-size: 20px;
    border-color: #d6261f;
    font-weight: bold;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form {
    text-align: center;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-total-wrap {
    display: inline-block;
    vertical-align: middle;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount.form-row-wide {
    width: 200px;
    margin-bottom: 10px;
    margin-right: 5px;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form button.give-btn.give-btn-reveal {
    width: 200px;
    margin: 0 auto;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-family: 'Poppins';
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form button.give-btn.give-btn-reveal:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form button.give-btn.give-btn-reveal:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form p#give-final-total-wrap {
    width: 300px;
    margin: 20px auto;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form ul#give-donation-level-button-wrap {
    text-align: center;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form ul#give-donation-level-button-wrap li {
    display: inline-block !important;
    float: none !important;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-submit-button-wrap {
    width: 200px;
    margin: 0 auto;
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-family: 'Poppins';
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-submit-button-wrap:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-submit-button-wrap:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 500px) {
    .give-single-layout-style-2 .give_forms .title-heading .extra-meta {
        display: block !important;
        text-align: center;
    }
    
    .give-single-layout-style-2 .give_forms .title-heading .extra-meta .post-author {
        padding-right: 0px;
    }
    
    .give-single-layout-style-2 .give_forms .title-heading .give-social-share-post {
        position: relative !important;
        text-align: center;
        float: none !important;
    }
}
.give-form-navigation-link-wrap {
    display: table;
    margin: 30px 0;
    padding: 30px 0;
    width: 100%;
}
.give-form-navigation-link-wrap>* {
    display: table-cell;
}
.give-form-navigation-link-wrap a {
    text-align: right;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.give-form-navigation-link-wrap a.prev-link .btn-text,
.give-form-navigation-link-wrap a.next-link .btn-text {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    padding: 6px 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-family: 'Poppins';
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.give-form-navigation-link-wrap a.prev-link .btn-text:after,
.give-form-navigation-link-wrap a.next-link .btn-text:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}
.give-form-navigation-link-wrap a.prev-link .btn-text:hover:after,
.give-form-navigation-link-wrap a.next-link .btn-text:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}
.give-form-navigation-link-wrap a.prev-link .btn-text span {
    margin-right: 10px;
}
.give-form-navigation-link-wrap a.next-link .btn-text span {
    margin-left: 10px;
}
.give-form-navigation-link-wrap a .title-text {
    display: none;
    font-weight: bold;
    font-size: 18px;
}
.give-form-navigation-link-wrap a:first-child {
    text-align: left;
}
.give-form-donor-listing {
    padding: 0;
    margin: 0;
}
.give-form-donor-listing .item {
    list-style: none;
    display: table;
    width: 100%;
    margin-bottom: 20px;
}
.give-form-donor-listing .item>* {
    display: table-cell;
    vertical-align: middle;
}
.give-form-donor-listing .item .ava {
    margin-top: 8px;
    width: 50px;
    border-radius: 3px;
}
.give-form-donor-listing .item .donor-entry-wrap {
    padding-left: 20px;
    width: 100%;
}
.give-form-donor-listing .item .donor-entry-wrap .name {
    font-size: 18px;
}
.give-form-donor-listing .item .donor-entry-wrap .value {
    color: #999;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap {
    position: relative;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-thumbnail {
    max-width: 100%;
    height: auto;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta {
    overflow: hidden;
    left: 10px;
    position: absolute;
    top: 10px;
    z-index: 1;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta>* {
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    opacity: 1;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .extra-meta .entry-date {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: normal;
    padding: 5px 10px;
    text-transform: uppercase;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s cubic-bezier(0.9, 0.14, 0.69, 1.01);
    transition: 0.4s cubic-bezier(0.9, 0.14, 0.69, 1.01);
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form {
    margin: 0;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form .give-btn {
    background: #d6261f;
    font-size: 13px;
    margin: 0;
    padding: 13px 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    font-family: 'Poppins';
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap .give-display-button-only form.give-form .give-btn:hover {
    background: #bd185a;
    opacity: 1;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 1, .5);
    z-index: 2;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .extra-meta>* {
    transform: translateY(-140%);
    -webkit-transform: translateY(-140%);
    opacity: 0;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .give-thumbnail {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover:after {
    opacity: 1;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-thumbnail-wrap:hover .give-display-button-only {
    top: 50%;
    opacity: 1;
    visibility: visible;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap {
    padding: 30px;
    border: solid #f5f5f5;
    border-width: 0 1px 1px;
    border-radius: 0 0 3px 3px;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .title-link {
    text-decoration: none;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .title-link .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-top: 20px;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress {
    margin-bottom: 15px;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress .raised {
    margin: 0;
    font-size: 16px;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .give-goal-progress .give-progress-bar {
    height: 8px;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore {
    background: #d6261f;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 10px 20px;
    display: inline-block;
    line-height: 24px;
    margin-top: 15px;
    font-family: 'Poppins';
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 30px;
    z-index: 1;
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore:hover:after {
    left: 120%;
    transition: all 950ms cubic-bezier(0.19, 1, 0.22, 1);
}
.post-type-archive-give_forms .post-give-list .post-give .post-give-inner .post-entry-wrap .readmore span {
    font-size: 20px;
    margin-left: 4px;
    vertical-align: middle;
}
@keyframes give_open_modal_animate {
    from {
        opacity: 0;
        transform: translateY(-15%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
@-webkit-keyframes give_open_modal_animate {
    from {
        opacity: 0;
        -webkit-transform: translateY(-15%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0px);
    }
}
.mfp-wrap.give-modal .mfp-content {
    width: 600px;
    max-width: 100%;
    animation: give_open_modal_animate 0.6s cubic-bezier(0.93, 0.29, 0.49, 0.77);
    -webkit-animation: give_open_modal_animate 0.6s cubic-bezier(0.93, 0.29, 0.49, 0.77);
}
.mfp-wrap.give-modal .mfp-content form.give-form {
    margin-top: 22px !important;
}
.mfp-wrap.give-modal .mfp-content form.give-form .give-form-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -1px;
    max-width: 100%;
    text-align: center;
}
.mfp-wrap.give-modal .mfp-content form.give-form .give-goal-progress {
    text-align: center;
    margin-bottom: 50px;
}
.mfp-wrap.give-modal .mfp-content form.give-form .give-goal-progress .raised .income {
    font-size: 150%;
}
.give-btn {
    background: #d6261f;
    color: #ebebeb;
    border: medium none;
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 0px;
    padding: 13px 20px;
    text-transform: uppercase;
}
.give-btn:hover {
    background: #d6261f;
    color: #fff;
    text-decoration: none;
}
.give-button-donate.custom-give-button-donate form.give-form {
    margin: 0;
}
.give-button-donate.custom-give-button-donate form.give-form .give-btn {
    margin: 0;
    display: inline-block !important;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.give-button-donate.custom-give-button-donate form.give-form .give-btn:hover {
    background: #bd185a;
}
.give-button-donate.custom-give-button-donate.give-btn-alignment-left form.give-form {
    text-align: left;
}
.give-button-donate.custom-give-button-donate.give-btn-alignment-right form.give-form {
    text-align: right;
}
.give-button-donate.custom-give-button-donate.give-btn-alignment-center form.give-form {
    text-align: center;
}
.give-button-donate.custom-give-button-donate.give-btn-style-rounded form.give-form .give-btn {
    border-radius: 4px;
}
.give-button-donate.custom-give-button-donate.give-btn-style-square form.give-form .give-btn {
    border-radius: 0px;
}
.give-button-donate.custom-give-button-donate.give-btn-style-circle form.give-form .give-btn {
    border-radius: 50px;
}
.give-goal-progress {
    margin-bottom: 50px;
}
.give-goal-progress .raised .income {
    font-size: 150%;
}
.custom-give-goal-progress {
    margin-bottom: 30px;
    width: 100%;
}
.custom-give-goal-progress>.give-goal-progress {
    margin: 0;
}
.custom-give-goal-progress .progress-bar {
    box-shadow: none;
}
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg {
    width: 100%;
}
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .raised {
    float: none;
}
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar {
    background: none;
    padding: 0 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative;
}
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .progress-bar svg {
    width: 100%;
}
.custom-give-goal-progress.custom-goal-temp-circle_2 .give-goal-progress-circle2-svg .raised {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center;
}
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg {
    width: 100%;
}
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .raised {
    float: none;
}
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar {
    background: none;
    padding: 0 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    position: relative;
}
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .progress-bar svg {
    width: 100%;
}
.custom-give-goal-progress.custom-goal-temp-square .give-goal-progress-square-svg .raised {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    max-width: 70%;
    text-align: center;
}
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg {
    width: 100%;
    display: table;
}
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar {
    background: none;
    width: 52px;
    margin: 0 auto;
    position: relative;
}
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar:after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    left: 50%;
    top: 50%;
    background: #333;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 1;
}
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar svg {
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 3;
}
.custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px;
}
@media (max-width: 360px) {
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar {
        width: 36px;
    }
    
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar:after {
        width: 36px;
        height: 36px;
    }
    
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .progress-bar svg {
        width: 70%;
    }
    
    .custom-give-goal-progress.custom-goal-temp-heart .give-goal-progress-heart-svg .raised {
        font-size: 13px;
        line-height: 18px;
    }
}
.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg {
    display: table;
}
.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .progress-bar,
.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .progress-bar {
    width: 60px;
    background: none !important;
}
.custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
    padding-left: 20px;
    font-size: 16px;
    line-height: 20px;
}
@media (max-width: 360px) {
    .custom-give-goal-progress.custom-goal-temp-circle .give-goal-progress-circle-svg .raised {
        font-size: 14px;
        line-height: 18px;
    }
}
.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar {
    padding-top: 9px;
}
.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar {
    display: block;
    width: 100%;
    background: #eee;
    border-radius: 5px;
}
.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar .progress-line {
    position: relative;
    height: 2px;
    border-radius: 5px;
}
.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .progress-bar .progress-line .tick-progress {
    position: absolute;
    right: 0;
    top: 8px;
    transform: translate(50%, -100%);
    -webkit-transform: translate(50%, -100%);
    border: solid 9px transparent;
}
.custom-give-goal-progress.custom-goal-temp-thinbar .give-goal-progress-thinbar .raised .income {
    font-size: 150%;
}
#give-login-form input[type="text"],
#give-login-form input[type="password"] {
    padding: 2px 10px;
}
.single-give_forms .give_forms .entry-summary form.give-form,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form,
.mfp-wrap.give-modal .mfp-content form.give-form {
    display: block;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    margin-top: 50px;
}
@media (max-width: 360px) {
    .single-give_forms .give_forms .entry-summary form.give-form,
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form,
    .mfp-wrap.give-modal .mfp-content form.give-form {
        padding: 20px 20px 5px 20px;
    }
}
.single-give_forms .give_forms .entry-summary form.give-form:after,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form:after,
.mfp-wrap.give-modal .mfp-content form.give-form:after {
    content: "";
    clear: both;
    display: block;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount {
    display: table;
    width: 100%;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount>*,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount>*,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount>* {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    max-width: none;
    height: 53px;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount .give-currency-symbol,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount .give-currency-symbol,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount .give-currency-symbol {
    background: #d6261f;
    color: #fff;
    border-color: #bd185a;
    padding: 0 20px;
    text-align: center;
    width: 1%;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount label.give-hidden,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount label.give-hidden,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount label.give-hidden {
    background: #d6261f;
    color: #fff;
    border: solid #bd185a;
    border-width: 1px 0;
    white-space: nowrap;
    width: 1%;
    padding-right: 20px;
}
@media (max-width: 515px) {
    .single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount label.give-hidden,
    .give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount label.give-hidden,
    .mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount label.give-hidden {
        display: none;
    }
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount input.give-text-input,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount input.give-text-input,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount input.give-text-input {
    height: 53px !important;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-amount .give-text-input,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-amount .give-text-input,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-amount .give-text-input {
    text-align: left;
    border-color: #bd185a !important;
    width: 100%;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap {
    margin-bottom: 0 !important;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap.give-select,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap.give-select,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap.give-select {
    margin-bottom: 15px !important;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap:after,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap:after,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap:after {
    content: "";
    display: block;
    clear: both;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li {
    margin: 0 15px 15px 0 !important;
    float: left;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li *,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li *,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li * {
    vertical-align: middle;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li .give-donation-level-btn,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li .give-donation-level-btn,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li .give-donation-level-btn {
    background: none;
    font-size: 13px;
    height: auto;
    margin: 0;
    padding: 12px 20px;
    border: solid 1px #d6261f;
    color: #d6261f;
    min-width: 110px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level,
.mfp-wrap.give-modal .mfp-content form.give-form .give-donation-levels-wrap li .give-donation-level-btn.give-default-level {
    background: #d6261f;
    color: #fff;
}
.single-give_forms .give_forms .entry-summary form.give-form #give-donation-level-radio-list,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-donation-level-radio-list,
.mfp-wrap.give-modal .mfp-content form.give-form #give-donation-level-radio-list {
    margin-bottom: 15px !important;
    padding: 15px 15px 0 15px;
    border: solid 1px #d6261f;
}
.single-give_forms .give_forms .entry-summary form.give-form #give-donation-level-radio-list li,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-donation-level-radio-list li,
.mfp-wrap.give-modal .mfp-content form.give-form #give-donation-level-radio-list li {
    margin-right: 25px !important;
}
.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap {
    display: table;
    width: 100%;
}
.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap>*,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap>*,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap>* {
    display: table-cell;
    vertical-align: middle;
    float: none !important;
    max-width: none;
    height: 53px;
}
.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap .give-donation-total-label,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap .give-donation-total-label,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap .give-donation-total-label {
    background: #d6261f;
    color: #fff;
    border-color: #bd185a;
    padding: 0 20px;
    white-space: nowrap;
}
.single-give_forms .give_forms .entry-summary form.give-form #give-final-total-wrap .give-final-total-amount,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form #give-final-total-wrap .give-final-total-amount,
.mfp-wrap.give-modal .mfp-content form.give-form #give-final-total-wrap .give-final-total-amount {
    text-align: left;
    border-color: #bd185a !important;
    width: 100%;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-select,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-select,
.mfp-wrap.give-modal .mfp-content form.give-form .give-select {
    height: 53px;
    display: block;
    width: 100%;
    border-color: #bd185a !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/arrow-down-icon.png") no-repeat scroll calc(100% - 10px) 50% / 16px auto;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-btn,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-btn,
.mfp-wrap.give-modal .mfp-content form.give-form .give-btn {
    height: 53px;
    display: block;
    width: 100%;
    background: #d6261f;
    color: #fff;
    border: none;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: uppercase;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.single-give_forms .give_forms .entry-summary form.give-form .give-btn:hover,
.give-single-layout-style-2 .give_forms .entry-container .give-content-wrap form.give-form .give-btn:hover,
.mfp-wrap.give-modal .mfp-content form.give-form .give-btn:hover {
    opacity: 0.9;
}

/* donate-form */
#donateform,
#volunteerform {
    padding: 20px;
}
#donateform fieldset,
#volunteerform fieldset {
    margin-bottom: 20px;
}
#donate-modal .modal-header,
#volunteer-modal .modal-header {
    border: 0!important;
    padding: 15px 40px 0;
}
#donate-modal .modal-header h5,
#donate-modal .modal-header a,
#volunteer-modal .modal-header h5,
#volunteer-modal .modal-header a {
    font-size: 24px;
    font-weight: bold;
}
#donate-modal .modal-header a,
#volunteer-modal .modal-header a {
    text-decoration: none;
}
#donate-modal textarea,
#volunteer-modal textarea {
    height: 100px
}
@media (max-width: 425px) {
    #donate-modal .modal-header,
    #volunteer-modal .modal-header {
        padding: 15px 33px 0;
    }
}