
.slot-row-vml{
    display: flex;
    margin: 3rem 0;
}

.slot-single-vml{
    display: flex;
    flex-direction: column;
    position: relative;

}
.slot-content-vml{
    width: 80%;
}
.vml-wrapper{
    margin-top: 3rem;
}

.vml-wrapper  hr{
    border-top: 1px solid #ddd;
}

.vml-wrapper label{
    font-weight: 500;
    font-size: 16px;
}

.trigger-label:hover{
    cursor: pointer;
}

.trigger-label{
    color: #3155a4;
}

.slot-name-vml{
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 2rem;
}

.view-more-label{
    position: absolute;
    display: none;
}

.view-more-paragraph{
    position: absolute;
    display: none;
}
.chevron::before {
	border-style: solid;
	border-width: 0.05em 0.05em 0 0;
	content: '';
	display: inline-block;
	height: 0.4em;
	left: 0.45em;
	position: relative;
	top: 0.5em;
	vertical-align: top;
	width: 0.4em;
}
.view-more-label:checked ~ .extra-content{
    opacity: 1;
    font-size: inherit;
    max-height: 999em; 
}
.view-more-label:checked ~ .trigger-label:before, .view-more-paragraph:checked ~ .trigger-label:before{
    content: "View less ";
}
.view-more-label:checked ~ .trigger-label .chevron.down:before, .view-more-paragraph:checked ~ .trigger-label .chevron.down:before{
    top: 0.7em;
    transform: rotate(-45deg);
}
.trigger-label:before{
    content: "View more";
}
.chevron.down:before{
    transform: rotate(135deg);
}
.chevron.up:before{
    top: 0.7em;
    transform: rotate(-45deg);
}
.extra-content-paragraph{
  
    overflow: hidden;
    transition: .25s ease-in-out;
    max-height: 3em;
}
.extra-content{
    opacity: 0;
    max-height: 0;
    font-size: 0;
    transition: .25s ease;
}
.slot-desc-vml ul{
    list-style: none;
    margin-top: 0.5rem;
    margin-bottom:0.5rem;
}
.slot-desc-vml li{
    white-space: nowrap;
    position: relative;
}
.slot-desc-vml ul li:before{
    color: #3155a4;
    content: "\2022";
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -2.9em;
}
.slot-single-bottom-vml{

    border-right: 2px solid #3155a4;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slot-desc-vml{
    overflow: hidden;
}

.slot-img-vml{
    width: 70%;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 600px){
    .slot-row-vml{
        display: block;
    }
    .slot-right-vml > .slot-single-bottom-vml{
        margin-bottom: 0;
    }

    .slot-content-vml{
        margin-bottom: 4rem;
    }
    .slot-single-vml{
        width: 100%;
    }
    .slot-single-top-vml{
        border-right: none;
    }

    .slot-single-bottom-vml{
        margin-bottom: 2rem;
        border-right: none;
    }
    .slot-right-vml > .slot-single-bottom-vml > .slot-content-vml{
        margin-bottom: 0;
    }

    .slot-single-bottom-vml:after{
        content: "";
        width: 100%;
        height: 2px;
        left: 0;
        bottom: 0;
        position: absolute;
        z-index: 4;
       
        margin-bottom: 2rem;
    }
    .slot-right-vml > .slot-single-bottom-vml:after{
        
       display: none;
    }
}