/**
* Theme Name: Zeen Child
* Description: Zeen child theme.
* Author: Codetipi
* Template: zeen
* Version: 1.0.0
*/
/********* Start Presso Theme ShortCode CSS ********/
/* -----------------------------------------------------------------------------
 * 
 * SHORTCODES
 * 
 * -------------------------------------------------------------------------- */
/*//////////////////////////////////////
// ACCORDION
//////////////////////////////////////*/
.vw-accordions {
    margin-bottom: 24px;
  }
  
  .vw-accordion {
    background-color: #FFFFFF;
  }
  .vw-accordion .ui-icon {
    vertical-align: middle;
    display: inline-block;
    margin-top: 2px;
  }
  .vw-accordion .ui-icon:before {
    content: "";
    font-family: "entypo";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    width: 24px;
    line-height: 24px;
    font-size: 19px;
    color: #333333;
  }
  .vw-accordion .ui-accordion-header-active .ui-icon:before {
    content: '\e81b';
  }
  .vw-accordion:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .vw-accordion__header {
    outline: none;
    margin: 0;
    cursor: pointer;
    position: relative;
    padding: 12px 0 12px 10px;
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .vw-accordion__header.ui-accordion-header-active {
    border-top: 3px solid #333333;
  }
  .vw-accordion__header span {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: all;
  }
  
  .vw-accordion__title {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
  }
  
  .vw-accordion__content {
    display: none;
    padding: 0 1em 12px 56px;
  }
  
  /*//////////////////////////////////////
  // Author list
  //////////////////////////////////////*/
  .vw-author-list {
    margin-top: 36px;
    margin-bottom: 12px;
  }
  
  /*//////////////////////////////////////
  // COLUMN
  //////////////////////////////////////*/
  .vw-row-shortcode {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 24px;
  }
  .vw-row-shortcode::after {
    content: "";
    display: table;
    clear: both;
  }
  
  .vw-column-shortcode {
    position: relative;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
  }
  .vw-column-shortcode > :last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 991px) {
    .vw-row-shortcode > .vw-column-shortcode:not(:last-child) {
        margin-bottom: 48px;
    }
  }
  
  @media (min-width: 992px) {
    .vw-one-half {
        width: 50%;
    }
    .vw-one-third {
        width: 33.333333333%;
    }
    .vw-two-third {
        width: 66.666666666%;
    }
    .vw-one-fourth {
        width: 25%;
    }
    .vw-three-fourth {
        width: 75%;
    }
    .vw-one-fifth {
        width: 20%;
    }
    .vw-two-fifth {
        width: 40%;
    }
    .vw-three-fifth {
        width: 60%;
    }
  }
  
  /*//////////////////////////////////////
  // 2 Columns
  //////////////////////////////////////*/
  .vw-2-columns {
    margin-bottom: -24px;
  }
  @media (min-width: 768px) {
    .vw-2-columns {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
        -webkit-column-gap: 24px;
           -moz-column-gap: 24px;
                column-gap: 24px;
    }
  }
  
  /*//////////////////////////////////////
  // Content Slider
  //////////////////////////////////////*/
  .vw-content-slider {
    margin-top: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    padding: 12px 15px;
  }
  .vw-content-slider figure {
    width: auto !important;
    max-width: 100%;
  }
  .vw-content-slider figure:first-child {
    margin-top: 0;
  }
  .vw-content-slider .vw-slides {
    padding-top: 36px;
  }
  .vw-content-slider .vw-slides__slide {
    padding-top: 24px;
  }
  .vw-content-slider .slick-prev,
  .vw-content-slider .slick-next {
    top: 24px;
    height: 36px;
    margin-top: -25px;
  }
  .vw-content-slider .slick-prev:before,
  .vw-content-slider .slick-next:before {
    font-size: 18px;
  }
  .vw-content-slider .slick-prev {
    left: auto;
    right: 44px;
  }
  .vw-content-slider .slick-dots {
    top: 0;
    bottom: auto;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
  }
  .vw-content-slider .slick-dots li {
    margin: 0;
  }
  
  /*//////////////////////////////////////
  // Custom Font
  //////////////////////////////////////*/
  .vw-custom-font-1 {
    font-family: 'custom_font_1';
  }
  
  .vw-custom-font-2 {
    font-family: 'custom_font_2';
  }
  
  /*//////////////////////////////////////
  // Customer Quote
  //////////////////////////////////////*/
  .vw-customer-quote blockquote:not(:last-child) {
    margin-bottom: 0;
  }
  
  .vw-customer-quote__customer {
    position: relative;
    z-index: 1;
    margin-top: -20px;
    text-align: center;
  }
  .vw-customer-quote__customer img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 50%;
  }
  
  .vw-customer-quote__customer-text {
    margin-bottom: 48px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  /*//////////////////////////////////////
  // DROPCAP
  //////////////////////////////////////*/
  .vw-dropcap {
    font-size: 42px;
    line-height: 1em;
    float: left;
    margin-right: 10px;
    margin-top: 4px;
    padding: 4px 15px;
    display: inline-block;
  }
  
  .vw-dropcap-standard {
    margin-top: 2px;
    margin-right: 10px;
  }
  
  .vw-dropcap-circle,
  .vw-dropcap-box {
    padding: 0;
    margin-right: 20px;
    font-size: 1.75em;
    color: #FFFFFF;
    text-align: center;
    line-height: 2.0em;
    width: 2.0em;
  }
  
  .vw-dropcap-circle {
    border-radius: 50%;
  }
  
  /*//////////////////////////////////////
  // GAP
  //////////////////////////////////////*/
  .vw-gap {
    display: block;
  }
  
  /*//////////////////////////////////////
  // INFOBOX
  //////////////////////////////////////*/
  .vw-infobox {
    margin: 48px 0;
    padding: 24px 24px;
    text-align: center;
    background-color: #F9F9F9;
  }
  
  .vw-infobox-inner {
    border-top: 3px solid #DDDDDD;
    border-bottom: 3px solid #DDDDDD;
    padding: 24px 0;
  }
  
  .vw-infobox-title {
    margin-bottom: 24px;
    font-size: 22px;
    color: #111111;
    text-transform: uppercase;
  }
  
  .vw-infobox-content {
    font-size: 16px;
    margin: 0;
  }
  
  /*//////////////////////////////////////
  // LIST
  //////////////////////////////////////*/
  .vw-list-shortcode {
    list-style: none;
    margin-left: 30px;
  }
  .vw-list-shortcode > li {
    position: relative;
    margin: 6px 0;
    font-size: 0.95em;
  }
  .vw-list-shortcode > li > .vw-icon:first-child {
    position: absolute;
    left: -30px;
    color: #111111;
  }
  
  /*//////////////////////////////////////
  // MARK
  //////////////////////////////////////*/
  mark.vw-mark-style-yellow {
    background-color: #FFF176;
    color: inherit;
  }
  
  mark.vw-mark-style-grey {
    background-color: #CCCCCC;
  }
  
  mark.vw-mark-style-dark {
    background-color: #000000;
    color: #FFFFFF;
  }
  
  /*//////////////////////////////////////
  // POSTS
  //////////////////////////////////////*/
  .vw-post-shortcode {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  
  /*//////////////////////////////////////
  // QUOTE
  //////////////////////////////////////*/
  .vw-quote {
    position: relative;
  }
  
  .vw-quote-icon {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 24px;
    line-height: 32px;
    height: 36px;
    width: 36px;
    color: #FFFFFF;
    display: none;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .vw-quote {
        margin-top: 0.5em;
        max-width: 40%;
    }
    .vw-quote-align-right,
    .vw-quote-align-left {
        padding: 50px 0px;
        text-align: left;
    }
    .vw-quote-align-right {
        float: right;
        margin-left: 30px !important;
        margin-right: 0;
    }
    .vw-quote-align-left {
        float: left;
        margin-left: 0;
        margin-right: 30px !important;
    }
  }
  
  .vw-quote-align-none {
    float: none;
    max-width: none;
  }
  
  .vw-quote-cite {
    margin: 12px 0 0 0;
    display: block;
  }
  
  /*//////////////////////////////////////
  // SIDE CONTENT
  //////////////////////////////////////*/
  .vw-side-content .vw-gallery__thumbnail {
    background-position: 50% 50%;
  }
  
  .vw-side-content__gallery {
    min-height: 350px;
    margin: 0 0 48px 0;
  }
  
  @media (min-width: 992px) {
    .vw-side-content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: stretch;
        align-items: stretch;
    }
    .vw-side-content__gallery {
        flex: 1 1 50%;
        margin: 0 48px 0 0;
    }
    .vw-side-content__content {
        flex: 1 1 50%;
    }
  }
  
  @keyframes vw-side-content-animation {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 100% 50%;
    }
  }
  
  /*//////////////////////////////////////
  // TABS
  //////////////////////////////////////*/
  .vw-tabs {
    margin: 24px 0;
  }
  .vw-tabs .vw-tab-title {
    cursor: pointer;
    margin: 0;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: all;
  }
  .vw-tabs .vw-tab-title i {
    float: left;
    margin-right: 5px;
    margin-top: -1px;
    font-size: 14px;
  }
  .vw-tabs .vw-tab-title i:before {
    text-align: left;
    display: inline;
  }
  .vw-tabs .vw-full-tab {
    margin-top: -1px;
    font-weight: bold;
    background-color: #FFFFFF;
    padding: 10px 15px;
  }
  .vw-tabs .vw-full-tab.active {
    border-color: #464646;
  }
  .vw-tabs .vw-full-tab.active:hover {
    color: #FFFFFF;
  }
  .vw-tabs .vw-tab-content {
    display: none;
    padding: 24px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #FFFFFF;
  }
  .vw-tabs .vw-tab-content#tab-1 {
    border-top-left-radius: 0px;
  }
  
  .vw-tabs.vw-style-top-tab .vw-tab-titles {
    margin-bottom: -1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .vw-tabs.vw-style-top-tab .vw-tab-title {
    padding: 10px 15px;
    float: left;
    display: inline-block;
    margin: 0;
    color: inherit;
    text-align: center;
    border: 1px solid transparent;
  }
  .vw-tabs.vw-style-top-tab .vw-tab-title.active {
    box-shadow: none;
    background-color: #333333;
    color: #FFFFFF;
  }
  .vw-tabs.vw-style-top-tab .vw-tab-title.active:hover {
    background-color: #333333;
  }
  .vw-tabs.vw-style-top-tab .vw-tab-title:hover {
    background-color: #EEEEEE;
  }
  
  @media (min-width: 768px) {
    .vw-tabs.vw-style-top-tab .vw-tab-content {
        border-top: 3px solid #333333;
    }
  }
  
  @media (max-width: 767px) {
    .vw-tabs.vw-style-top-tab .vw-tab-title {
        float: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
  }
  
  /*//////////////////////////////////////
  // LOGO
  //////////////////////////////////////*/
  .vw-logo-shortcode {
    margin-bottom: 24px;
    display: block;
  }
  
  /*//////////////////////////////////////
  // PRICING TABLE
  //////////////////////////////////////*/
  .vw-pricing-table {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .vw-pricing-table .vw-column-shortcode:nth-child(2) .vw-pricing-item {
    -webkit-transition-delay: 0.1s;
       -moz-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .vw-pricing-table .vw-column-shortcode:nth-child(3) .vw-pricing-item {
    -webkit-transition-delay: 0.2s;
       -moz-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .vw-pricing-table .vw-column-shortcode:nth-child(4) .vw-pricing-item {
    -webkit-transition-delay: 0.3s;
       -moz-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .vw-pricing-table .vw-column-shortcode:nth-child(5) .vw-pricing-item {
    -webkit-transition-delay: 0.4s;
       -moz-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .vw-pricing-table .vw-column-shortcode:nth-child(6) .vw-pricing-item {
    -webkit-transition-delay: 0.5s;
       -moz-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  
  .vw-pricing-item {
    background-color: #F9F9F9;
  }
  
  .vw-pricing-header {
    position: relative;
  }
  
  .vw-pricing-featured {
    border: none;
    border-radius: 0;
  }
  
  .vw-pricing-title {
    margin: 0;
    padding: 24px 0;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    background-color: #F9F9F9;
  }
  
  .vw-pricing-image {
    display: block;
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
  
  .vw-pricing-info {
    text-align: center;
    position: relative;
    padding: 24px 0;
  }
  .vw-pricing-image + .vw-pricing-info {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .vw-pricing-image + .vw-pricing-info .vw-pricing-per {
    color: #FFFFFF;
  }
  
  .vw-pricing-price {
    font-size: 60px;
    font-weight: bold;
    line-height: 1em;
    color: #FFFFFF !important;
  }
  
  .vw-pricing-currency {
    font-size: 22px;
    font-weight: normal;
    line-height: 1em;
    display: inline-block;
    position: absolute;
    top: 0;
    margin-top: 26px;
    margin-left: -1em;
  }
  
  .vw-pricing-per {
    font-size: 12px;
    font-style: italic;
  }
  
  .vw-pricing-content {
    margin-top: 24px;
    padding-bottom: 24px;
    font-size: 14px;
    text-align: center;
  }
  .vw-pricing-content ul {
    padding: 0 15px;
    margin: 0;
    list-style: none;
    text-align: center;
  }
  .vw-pricing-content li {
    margin: 0;
    padding: 12px 15px;
  }
  .vw-pricing-content p:first-child:empty,
  .vw-pricing-content p:last-child:empty {
    display: none;
  }
  
  .vw-pricing-footer {
    text-align: center;
    margin-top: 24px;
  }
  
  /*//////////////////////////////////////
  // TITLE
  //////////////////////////////////////*/
  .vw-title-shortcode {
    border-bottom: 6px solid #333333;
    padding-bottom: 15px;
    font-size: 28px;
    text-transform: uppercase;
  }
  
  .vw-title-shortcode--left {
    text-align: left;
  }
  
  .vw-title-shortcode--center {
    text-align: center;
  }
  
  .vw-title-shortcode--right {
    text-align: right;
  }
  
  .vw-title-shortcode--medium {
    margin-bottom: 48px !important;
    font-size: 22px;
  }
  
  .vw-title-shortcode--large {
    margin-bottom: 48px !important;
  }
  
  /*//////////////////////////////////////
  // 404
  //////////////////////////////////////*/
.vw-404-text {
    font-size: 90px;
    line-height: 1em;
    margin-top: 0;
    margin-bottom: 15px;
}
.vw-button,
.link-color-wrap a.vw-button {
    padding: 10px 30px;
    color: #FFF;
}
.vw-button--accent {
    background-color: #3e4b6d;
}
 .vw-button--orange {
    background-color: #FC7844;
}
  /********* End Presso Theme ShortCode CSS ********/