/*!
# Elements
    ## Box
    ## Price List
    ## Table
    ## Testimonial
    ## Posts
    ## Portfolio
    ### Single Portfolio
    ## Gallery
    ## Team
    ## BMI
    ## Collapse
# widgets
    ## Ad
    ## Latest Posts
    ## Social Media
    ## Tags
!*/

/*--------------------------------------------------------------
## Box
--------------------------------------------------------------*/
.yung-box {
    padding: 30px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.yung-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.yung-box-inner {
    position: relative;
    z-index: 9;
}
.yung-box i,
.yung-box svg {
    margin-bottom: 20px;
}
.yung-box h4 {
    margin-bottom: 5px;
    text-transform: uppercase;
}
.yung-box p {
    margin-bottom: 15px;
}
.yung-box a {
    border: 2px solid;
    border-radius: 7px;
    z-index: 1;
    display: inline-block;
    padding: 6px 18px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    color: #fff;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.yung-box a:before {
    content: "";
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.yung-box a:hover:before {
    opacity: 1;
    width: calc(100% + 50%);
    height: calc(100% + 50%);
}

/*--------------------------------------------------------------
## Price List
--------------------------------------------------------------*/
.yung-price {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.yung-price-inner {
    border: 1px solid #e2e2e2;
    padding: 30px;
    transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.yung-price-head i,
.yung-price-head svg {
    margin-bottom: 20px;
}
.yung-price-head h4 {
    margin-bottom: 7px;
    text-transform: uppercase;
}
.yung-price-head p {
    margin-bottom: 10px;
}
.yung-price-price del {
    margin-right: 3px;
    opacity: 0.7;
}
.yung-price-tag {
    font-size: 23px;
}
.yung-price-price span{
    margin-left: 4px;
}
.yung-price-items {
    margin: 10px 0;
}
.yung-price-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.yung-price-items li {
    display: block;
    margin: 0;
    padding: 5px 0;
}
.yung-price-items li i,
.yung-price-items li svg {
    margin-right: 5px;
}
.yung-price-items li svg {
    width: 20px;
    height: 20px;
}
.yung-price-items li p {
    margin: 0;
}
.yung-price-items .del-item {
    text-decoration: line-through;
    opacity: 0.7;
}
.yung-price-link a {
    margin-top: 10px;
    border: 2px solid;
    border-radius: 7px;
    z-index: 1;
    display: inline-block;
    text-transform: uppercase;
    padding: 6px 18px;
    position: relative;
    overflow: hidden;
    color: #fff;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.yung-price-link a:before {
    content: "";
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.yung-price-link a:hover:before {
    opacity: 1;
    width: calc(100% + 50%);
    height: calc(100% + 50%);
}

/*--------------------------------------------------------------
## Table
--------------------------------------------------------------*/
.yung-table {
    overflow-y: auto;
}
.yung-table:before {
    content: "\f0a6";
    font-family: 'FontAwesome';
    font-weight: 900;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 22px;
    background-color: #fff;
    padding: 20px;
    line-height: 1;
    color: #000;
    border-radius: 20px;
    box-shadow: 0 0 25px -15px;
    transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    animation: pointer 0.6s infinite ease-in-out alternate;
    -o-animation: pointer 0.6s infinite ease-in-out alternate;
    -moz-animation: pointer 0.6s infinite ease-in-out alternate;
    -webkit-animation: pointer 0.6s infinite ease-in-out alternate;
}
.yung-table.opacity-before:before {
    display: none;
}
@keyframes pointer {
    0% {
        left: 49%;
    }
    100% {
        left: 50%;
    }
    100% {
        left: 50%;
    }
}
@-o-keyframes pointer {
    0% {
        left: 49%;
    }
    100% {
        left: 50%;
    }
    100% {
        left: 50%;
    }
}
@-moz-keyframes pointer {
    0% {
        left: 49%;
    }
    100% {
        left: 50%;
    }
    100% {
        left: 50%;
    }
}
@-webkit-keyframes pointer {
    0% {
        left: 50%;
    }
    50% {
        left: 49%;
    }
    100% {
        left: 50%;
    }
}
.yung-table table{
    margin: 0 0 1px;
}
.yung-table th {
    width: 12.5%;
}
.yung-table p {
    margin-bottom: 0;
}
.yung-table td,.yung-table th {
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #e2e2e2;
}
.yung-table tbody span {
    font-size: 13px;
}

/*--------------------------------------------------------------
## Testimonial
--------------------------------------------------------------*/
.yung-testimonial {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.yung-testimonial .yung-t-info {
    padding-left: 0;
    padding-bottom: 60px;
    padding-right: 60px;
    opacity: 0;
    transition: transform 0.5s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    -o-transition: -o-transform 0.5s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    -moz-transition: -moz-transform 0.5s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    -webkit-transition: -webkit-transform 0.5s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
    transform: translate(30px, 0);
    -o-transform: translate(30px, 0);
    -ms-transform: translate(30px, 0);
    -moz-transform: translate(30px, 0);
    -webkit-transform: translate(30px, 0);
}
.yung-t-info span {
    display: block;
    margin-bottom: 8px;
}
.yung-t-info h3 {
    text-transform: uppercase;
}
.yung-testimonial .yung-t-image {
    position: relative;
    padding-right: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.owl-item.active .yung-t-info,
.owl-item.active .yung-t-image {
    opacity: 1;
    transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}
.yung-t-image {
    display: inline-table;
}
.yung-t-image:before {
    content: "";
    border: 10px solid;
    position: absolute;
    right: 0;
    left: 40px;
    top: 25px;
    bottom: 0;
}
.yung-t-image:after {
    content: "\f10e";
    font-family: 'FontAwesome';
    font-weight: 900;
    position: absolute;
    left: -170px;
    top: 0;
    font-size: 105px;
    opacity: 0.15;
    color: #454545;
}
.yung-t-image img{
    padding-right: 25px;
    padding-bottom: 25px;
    z-index: 9;
    position: relative;
}
.yung-testimonial.owl-theme .owl-dots {
    width: auto;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.yung-testimonial .owl-dot {
    width: 60px;
    height: 60px;
    margin-left: 0;
    margin-right: 20px;
    border-radius: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.yung-testimonial .owl-dot span {
    display: none !important;
}
/*--------------------------------------------------------------
## Posts
--------------------------------------------------------------*/
.yung-posts {

}
.post_list_two,
.post_masonry,
.post_grid {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
.post_list_two .article-item,
.post_masonry .article-item,
.post_grid .article-item {
    padding-left: 20px;
    padding-right: 20px;
}
.post_list_two .article-item{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.post_list_two .post-inner,
.post_list .post-inner{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
}
.post_list_two .post-thumbnail,
.post_list .post-thumbnail {
    margin-bottom: 0;
}
.post_list_two .entry-header,
.post_list .entry-header {
    margin-bottom: 0;
    width: 49%;
    display: inline-block;
}
.post_list_two .entry-content,
.post_list .entry-content {
    display: inline-block;
    width: 51%;
    padding: 15px 0 15px 30px;
}
.load-more-post {
    text-align: center;
}
.load-more-btn a {
    margin-top: 10px;
    border: 2px solid;
    border-radius: 7px;
    z-index: 1;
    display: inline-block;
    padding: 6px 18px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.load-more-btn a:before {
    content: "";
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.load-more-btn a:hover:before {
    opacity: 1;
    width: calc(100% + 50%);
    height: calc(100% + 50%);
}

/*--------------------------------------------------------------
## Portfolio
--------------------------------------------------------------*/
.slider_portfolio .portfolio-item {
    margin: 0 15px;
}
.portfolio-content {
    padding-right: 30px;
    margin-top: 20px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.slick-current .portfolio-content {
    opacity: 1;
    visibility: visible;
}
.link-portfolio {
    position: absolute;
    font-size: 17px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.slider_portfolio .portfolio-image .post-thumbnail {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    filter: blur(2px);
    -ms-filter: blur(2px);
    -webkit-filter: blur(2px);
    transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -webkit-transition: all 0.4s ease-in-out 0s;
}
.slider_portfolio .slick-current .portfolio-image .post-thumbnail {
    filter: blur(0);
    -ms-filter: blur(0);
    -webkit-filter: blur(0);
}
.portfolio-image .post-thumbnail a {
    display: block;
    pointer-events: none;
    cursor: default;
    transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transition: all 0.9s ease 0s;
    -o-transition: all 0.9s ease 0s;
    -moz-transition: all 0.9s ease 0s;
    -webkit-transition: all 0.9s ease 0s;
}
.slick-current .post-thumbnail a {
    pointer-events: auto;
    cursor: pointer;
}
.slick-current .portfolio-inner:hover .post-thumbnail a {
    transform: scale(1.03, 1.03);
    -o-transform: scale(1.03, 1.03);
    -ms-transform: scale(1.03, 1.03);
    -moz-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
}
.portfolio-content h5 {
    margin-top: 10px;
}
.grid_portfolio {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
.grid_portfolio .portfolio-item {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.grid_portfolio .portfolio-inner {
    position: relative;
    overflow: hidden;
}
.grid_portfolio .portfolio-image .post-thumbnail {
    margin: 0;
}
.grid_portfolio .portfolio-content {
    position: absolute;
    width: 100%;
    top: auto;
    margin: 0;
    bottom: 0;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    z-index: 99;
    transition: transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
}
.grid_portfolio .portfolio-content span,
.grid_portfolio .portfolio-content h5 {
    transition: transform 0.4s;
    -o-transition: -o-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -webkit-transition: -webkit-transform 0.4s;
    transform: translate3d(0, 200%, 0);
    -o-transform: translate3d(0, 200%, 0);
    -moz-transform: translate3d(0, 200%, 0);
    -ms-transform: translate3d(0, 200%, 0);
    -webkit-transform: translate3d(0, 200%, 0);
}
.grid_portfolio .portfolio-inner:hover .portfolio-content h5,
.grid_portfolio .portfolio-inner:hover .portfolio-content span,
.grid_portfolio .portfolio-inner:hover .portfolio-content {
    transform: translate3d(0, 1px, 0);
    -o-transform: translate3d(0, 1px, 0);
    -moz-transform: translate3d(0, 1px, 0);
    -ms-transform: translate3d(0, 1px, 0);
    -webkit-transform: translate3d(0, 1px, 0);
}
.grid_portfolio .link-portfolio {
    display: none;
}
/*--------------------------------------------------------------
### Single Portfolio
--------------------------------------------------------------*/
.single-portfolio {
    position: relative;
}
.single-portfolio-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
}
.single-portfolio .port-thumbnail  {
    display: inline-block;
    width: 50%;
    min-width: 50%;
}
.owl-single-gallery-slider .post-thumbnail,
.single-portfolio .post-thumbnail  {
    margin-bottom: 0;
}
.single-portfolio .single-portfolio-content {
    display: inline-block;
    width: 50%;
    min-width: 50%;
    padding-left: 40px;
}
.single-portfolio .post-share {
    margin-right: auto;
    margin-left: 0;
}
.port-heading {
    padding: 30px 30px 10px;
    box-shadow: 0 0 13px -3px rgba(0,0,0,0.2);
    margin-bottom: 40px;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.port-heading h6 {
    width: 50%;
    display: inline-block;
    margin-bottom: 20px;
    color: #777;
}
.port-heading h6:before {
    font-family: "FontAwesome";
    font-weight: 400;
    margin-right: 10px;
    opacity: 0.8;
    font-size: 16px;
    display: inline-block;
    padding: 7px;
    background-color: #e2e2;
    color: #000;
    border-radius: 50px;
    line-height: 1;
}
.port-heading .entry-date:before {
    content: "\f073";
}
.port-category:before {
    content: "\f07b";
}
.portfolio-client:before {
    content: "\f007";
}
.portfolio-duration:before {
    content: "\f017";
}
.portfolio-service:before {
    content: "\f1cd";
}
.port-heading span {
    margin-right: 5px;
    color: #000;
}
.port-heading a {
    color: #777;
}

/* Layout One */
.port-layout-one {
    display: block;
}
.single-portfolio .port-layout-one .port-thumbnail {
    display: block;
    width: 100%;
    min-width: 100%;
    margin-bottom: 40px;
}
.single-portfolio .port-layout-one .single-portfolio-content {
    width: 100%;
    min-width: 100%;
    padding: 0;
}

/*--------------------------------------------------------------
## Gallery
--------------------------------------------------------------*/
.feab-gallery {
    overflow: hidden;
}
.gallery-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}
.gallery-tabs li {
    display: inline-block;
    margin: 0 10px;
}
.feab-gallery img {
    width: 100%;
}
.gallery-items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.no-space .gallery-items li {
    padding: 0;
}
.with-space .gallery-items {
    margin-left: -15px;
    margin-right: -15px;
}
.with-space .gallery-items li {
    margin-bottom: 30px;
}
.gallery-items-inner {
    position: relative;
}
.gallery-grid .gallery-items img {
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    -o-object-fit: cover;
    transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    height: 100%;
    width: 100%;
}
.zoom-gallery {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: 2;
    font-size: 30px;
    color: #fff;
    transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
}
.zoom-gallery:hover {
    color: #fff;
}
.gallery-items-inner:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0;
    transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    z-index: 1;
}
.gallery-items-inner:hover:before {
    opacity: 0.4;
}

.gallery-items-inner:hover .zoom-gallery {
    opacity: 1;
}
.gallery-tabs button {
    border: 2px solid;
    border-radius: 7px;
    z-index: 1;
    display: inline-block;
    padding: 6px 18px;
    position: relative;
    overflow: hidden;
    color: #fff;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
}
.gallery-tabs button:before {
    content: "";
    transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.gallery-tabs .active button:before,
.gallery-tabs button:hover:before {
    opacity: 1;
    width: calc(100% + 50%);
    height: calc(100% + 50%);
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.team-image {
    position: relative;
    text-align: center;
}
.team-image img{
    padding-bottom: 20px;
    z-index: 2;
    position: relative;
}
.team-image:before {
    content: "";
    border: 10px solid;
    position: absolute;
    right: 30px;
    left: 30px;
    top: 10px;
    bottom: 0;
    z-index: 1;
}
.team-content {
    padding: 15px 30px;
}
.team-content h4 {
    margin-bottom: 5px;
    text-transform: uppercase;
}
.team-content p {
    margin-top: 5px;
    margin-bottom: 15px;
}
.team-social{
    margin-top: 7px;
}
.team-social ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.team-social li{
    text-align: center;
    display: inline-block;
    margin: 0 9px;
    padding: 0;
}
.team-social li a{
    display: inline-block;
    font-size: 15px;
}

/*--------------------------------------------------------------
## BMI
--------------------------------------------------------------*/
.yung-bmi input[type="number"] {
    margin-bottom: 30px;
    margin-right: 20px;
    width: calc(50% - 20px);
    margin-top: 10px;
    font-size: 15px;
    padding: 10px 20px;
    background-color: rgba(0,0,0,0);
    border: 2px solid #e2e2e2;
}
.bmi-calculate > h2 {
    text-transform: uppercase;
}
.bmi-calculate > p {

}
#metric_r {
    margin-left: 15px;
}
#imperial,
#metric {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
#metric_b,
#metric {
    display: none;
}
.bmi-result {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}
.bmi-result-inner {
    width: 100%;
    text-align: right;
    padding-right: 20px;
}
.bmi-result-inner span{
    padding: 7px 10px;
    background-color: #F3F3F3;
    margin-left: 7px;
    display: inline-block;
    border-radius: 7px;
}
.bmi-result-inner p {
    display: inline-block;
    margin: 0;
}
.bmi-head {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 25px;
}
.bmi-head h5 {
    display: inline-block;
    width: 50%;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    padding-top: 5px;
}
.bmi-body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 25px;
    background-color: #f4f4f4;
    margin-bottom: 1px;
}
.bmi-body span {
    display: inline-block;
    width: 50%;
}

/*--------------------------------------------------------------
## Collapse
--------------------------------------------------------------*/
.collapse-item {
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    margin-bottom: 20px;
}
.feab-collapse .collapse-item a {
    padding: 20px;
    color: #000;
    width: 100%;
    text-transform: uppercase;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}
.collapse-item svg,
.collapse-item i {
    margin-right: 0;
    margin-left: auto;
}
.collapse-item svg {
    width: 20px;
    height: 20px;
}
.content-collapse {
    padding: 0 20px 20px;
}

/*--------------------------------------------------------------
## Title
--------------------------------------------------------------*/
.feab-title {
    display: block;
    overflow: hidden;
}
.feab-title h3 {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.feab-title h3:after,
.feab-title h3:before {
    content: "";
    position: absolute;
    top: 50%;
    background-color: #000;
    height: 2px;
    width: 15px;
}
.feab-title h3:before {
    left: -30px;
}
.feab-title h3:after {
    right: -30px;
}
.feab-title span {
    display: block;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Ad
--------------------------------------------------------------*/
.yung-ad-widget {
    padding: 0;
    border: none;
    background-color: inherit;
}

/*--------------------------------------------------------------
## Latest Posts
--------------------------------------------------------------*/
.widget.recent-widget li {
    padding-bottom: 20px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    align-items: center;
    -webkit-align-items: center;
}
.widget.recent-widget li:last-child {
    padding-bottom: 0;
}
.recent-widget .list-post {
    padding-left: 20px;
    width: 65%;
}
.recent-widget img {
    width: 100%;
}
.thumb-post {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 35%;
}
.thumb-post a {
    display: block;
    position: relative;
}
.widget .format-icon i {
    font-size: 1.3em;
}
.widget .format-icon .icon_quotations {
    font-size: 1.9em;
}

/*--------------------------------------------------------------
## Social Media
--------------------------------------------------------------*/
.widget.social-widget li {
    position: relative;
    overflow: unset;
    display: inline-block;
    padding: 0 10px;
    margin: 5px 0;
}
.social-widget i {
    font-size: 16px;
}

/*--------------------------------------------------------------
## Tags
--------------------------------------------------------------*/
.widget.tags-widget li {
    overflow: unset;
    display: inline-block;
    text-align: center;
    padding: 0 0 5px;
    margin-right: 10px;
}
.tags-widget a {
    letter-spacing: 1px;
}
.tags-widget span {
    padding: 0 2px;
}
