.wrapper{
	display: none;
}
.visible{
	display: block;
}

.title-container{
    margin-top: 35px;
}

.subProduct-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.subProduct{
    border-radius: 12px;
    background-color: white;
    box-shadow: 3px 3px 20px -13px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    margin: 15px 0;
}
.subProduct:hover{
    box-shadow: 3px 3px 20px -13px rgba(0, 0, 0, 0.75);
}
.subProduct-active, .subProduct-active:hover{
    box-shadow: 3px 3px 25px -13px rgba(44, 188, 99, 1);
    border: solid 2px #2cbc63;
}
.subProduct-small{
    width: 47%;
}
.subProduct-big{
    width: 100%;
}


.subProduct-title{
    font-weight: 600;
    margin: 10px 0 5px 0;
}
.subProduct-small .subProduct-title{
    font-size: 16px;
}
.subProduct-big .subProduct-title{
    font-size: 20px;
}
.subProduct-imgLogo{
    max-height: 20px;
}

.subProduct-footer{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


/* Checkboxes */
.subProduct-checkbox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.subProduct-checkbox input[type="checkbox"]{
    display: none;
    visibility: hidden;
}

.subProduct-checkbox label{
    font-weight: 600;
    position: relative;
    padding-left: 2em;
    padding-right: 1em;
    line-height: 2;
    cursor: pointer;
    display: inline-flex;
}
.subProduct-checkbox label:before{
    box-sizing: border-box;
    content: " ";
    position: absolute;
    top: 0.3em;
    left: 0;
    display: block;
    width: 1.4em;
    height: 1.4em;
    border: 2px solid #9098A9;
    border-radius: 6px;
}
.subProduct-checkbox label,
.subProduct-checkbox label::before{
    transition: 0.25s all ease;
}

.subProduct-checkbox input[type=checkbox]:checked + label{
    padding-left: 1em;
}
.subProduct-checkbox input[type=checkbox]:checked + label:before{
    top: 0;
    width: 100%;
    height: 2em;
    background: #b7e6c9;
    border-color: #2cbc63;
}
.subProduct-labelText{
	z-index: 1;
}


/* ****** Mobile / Tablet edits ****** */
@media only screen and (max-width: 1000px){
    .subProduct-small{
        width: 100%;
    }
}