/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* Variation Custom Fields Tabs/Accordion */
.vcf-tabs-accordion {
  margin-top: 20px;
}
.vcf-tab-titles {
  display: none;
}
.vcf-tab-title,
.vcf-tab-title-mobile {
  cursor: pointer;
  padding: 12px 16px;
  background: #f7f7f7;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}
.vcf-tab-content {
  display: none;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.vcf-tab-item.active .vcf-tab-content {
  display: block;
}
.vcf-tab-item.active .vcf-tab-title-mobile,
.vcf-tab-title.active {
  background: #e9e9e9;
}

/* Tabs for desktop */
@media (min-width: 768px) {
  .vcf-tab-titles {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 0;
  }
  .vcf-tab-title {
    flex: 1;
    border-bottom: none;
    background: #f7f7f7;
    border-right: 1px solid #eee;
    margin-bottom: 0;
    text-align: center;
  }
  .vcf-tab-title:last-child {
    border-right: none;
  }
  .vcf-tab-title-mobile {
    display: none;
  }
  .vcf-tab-item {
    display: none;
  }
  .vcf-tab-item.active {
    display: block;
  }
  .vcf-tab-content {
    display: block;
    border-top: none;
  }
}