/** Shopify CDN: Minification failed

Line 52:10 Expected identifier but found whitespace
Line 52:12 Unexpected "{"
Line 52:21 Expected ":"

**/
.custom-tabs .tabs {
	display: flex;
	flex-wrap: wrap;
	width: 100%; 
} 
.custom-tabs .tabs label {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    margin-right: 4px;
    cursor: pointer;
    margin: 0 0 -1px;
    background-color: #fff;
    text-transform: capitalize;
    border: 1px solid transparent;
    font-size: 14px font-weight: 500;
    transition: background-color ease 0.3s;
    font-weight: bold;
}
.custom-tabs .tabs label .label-heading {
	margin-right: 0.3rem;
}
.custom-tabs .tabs .tab {
	flex-grow: 1;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    display: none;
    padding: 1rem 2rem;
    color: #000;
    background-color: #fff;
    border: 1px solid #6cb8ec;
    margin: 0 0 -1px;
}
.custom-tabs .tabs .tab > *:not(:last-child) {
	margin-bottom: 0.8rem;
}
.custom-tabs .tabs [type=radio] {
	display: none;
}
.custom-tabs .tabs [type=radio]:checked + label {
    background-color: #fff;
    color: {{ section.settings.color_active_heading }};
    font-weight: bold;
    border-top: 2px solid #6cb8ec;
    background-color: #fff;
    border-top: 2px solid #6cb8ec;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #6cb8ec;
    border-right: 1px solid #6cb8ec;
    z-index: 999;
}
.custom-tabs .tabs [type=radio]:checked + label + .tab {
	display: block;
}

@media (max-width: 768px){
 .custom-tabs .tabs label {
    margin: 2px 0px;
    border: 1px solid black;
  }
 .custom-tabs .tabs .tab {
    margin: 0;
  }
  .custom-tabs .tabs [type=radio]:checked + label {
    border-bottom: 1px solid #6cb8ec;
  }
}  
  
@media (min-width: 768px) { 
	.custom-tabs .tabs label {
		order: 1;
		width: auto;
	}
	.custom-tabs .tabs .tab {
		order: 9;
	}
}