.clw-tabs {
    display: flex;
    gap: 1.667vw;
    justify-content: center;
    margin-bottom: 1.927vw;
}

.clw-tab {
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

.clw-tab-line1 {
    font-size: 16px;
}

.clw-tab-line2 {
    font-size: 13px;
    opacity: 0.8;
}

.clw-content { display: none; }
.clw-content.active { display: block; }

.clw-line1 {
    text-align: center;
    margin-bottom: 5px;
}

.clw-line2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.clw-boxes {
    display: flex;
}

.clw-box {
    flex: 1;
    border-left: 1px solid #000000;
    padding: 0 1.042vw;
}
.clw-box:first-child {
    border-left: 0;
    padding-left: 0;
}
.clw-tabs button.clw-tab {
    width: 7.344vw;
    border-radius: 0;
    padding: 0.26vw 0;
}
.clw-tabs button.clw-tab div {
    font-size: 1.042vw;
    font-weight: 700;
}
.clw-tabs .clw-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff6fa5;
    color: #fff;
    text-decoration: none;
}
.clw-tabs button.clw-tab small {
    font-size: 0.833vw;
    font-weight: 400;
	    font-family: "Open Sans", sans-serif;
}
.clw-content p {
    font-size: 1.302vw;
    line-height: 1.563vw;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 0.781vw;
}
h3.clw-line2 {
    font-weight: 700;
    font-size: 1.042vw;
    color: #F1729E;
    line-height: 1.563vw;
    margin-top: 0;
    margin-bottom: 0.729vw;
}
.clw-content-editor ul {
    padding-left: 20px;
}
.clw-box h4 {
    margin-top: 0;
    font-size: 1.042vw;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
}
.clw-box h4 {
    margin-top: 0;
    font-size: 1.042vw;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 0.781vw;
}
.clw-content-editor ul li, .clw-content-editor p{
	    font-size: 0.781vw;
	    margin-bottom: 0.781vw;
	line-height:1.042vw;
}
a.clw-btn {
    display: inline-block;
    text-decoration: none;
    background: radial-gradient(circle at center, #F1729E, #FBA8D5) padding-box, linear-gradient(207deg, #FBA8D5, #F1729E) border-box;
    border: 2px solid transparent;
    box-shadow: inset 0px 2px 2px #FFFFFFCC, 0px 1px 3px #00000033 !important;
    position: relative;
    font-family: "Playfair Display", Sans-serif;
    padding: 0.26vw 1.823vw 0.26vw 1.823vw;
    border-radius: 50px;
    font-size: 0.938vw;
    color: #000000;
	text-decoration: none !important;
}
.clw-tab {
    position: relative;
}

/* ACTIVE TRIANGLE */
.clw-tab.active::after {
    content: "";
    position: absolute;
    bottom: -19px; /* distance from tab */
    left: 50%;
    transform: translateX(-50%);
    
    width: 0;
    height: 0;
    
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #ff6fa5; /* same as active bg */
}

@media screen and (max-width:540px){
	.clw-tabs button.clw-tab{
		width: 112px;
		    padding: 5px 0;
	}
	.clw-tabs button.clw-tab div {
		font-size: 14px;
	}
	.clw-tabs button.clw-tab small {
		font-size: 12px;
	}
	.clw-tabs{
		margin-bottom: 24px;
	}
	.clw-content p{
		font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
	}
	h3.clw-line2{
		font-size: 12px;
		    line-height: 17px;
		    margin-bottom: 10px;
	}
	.clw-box h4{
		font-size: 15px;
	}
	.clw-content-editor ul li, .clw-content-editor p{
		    font-size: 12px;
    margin-bottom: 10px;
    line-height: 16px;
	}
	.clw-box{
		    padding: 0 10px;
	}
	.clw-box:first-child{
		padding-left: 10px;
	}
	a.clw-btn{
		padding: 2px 20px;
    font-size: 12px;
	}
}

@media screen and (max-width:540px){

    .clw-boxes {
        flex-direction: column;
        gap: 10px;
    }

    .clw-box {
        border-left: 0;
    }

    /* Header clickable */
    .clw-acc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    /* Arrow icon */
    .clw-acc-header::after {
        content: "+";
        font-size: 18px;
    }

    /* Active state */
    .clw-box.active .clw-acc-header::after {
        content: "-";
    }

    /* Hide body */
    .clw-acc-body {
        display: none;
        margin-top: 10px;
    }

    .clw-box.active .clw-acc-body {
        display: block;
    }
}