/** Default style **/
#sun-floating {
    position: fixed;
    bottom: 1.5em;
    left: 1.5em;
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
/*    max-height: 90vh;
    overflow: auto; */
}

#sun-floating.hidden,
.sun-floating-body .card.hidden,
.extra-bundle-product.hidden
{
    display: none;
}

.sun-floating-header {
    font-size: 1.2em;
    padding: 1em;
}
/*
.sun-floating-body .item {
    margin-bottom: 5px;
}

.sun-floating-body .item img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 5px;
}
*/
.sun-floating-price {
    margin-top: 10px;
    font-weight: bold;
    padding: 1em;
    float: right;
}

.sun-floating-body {
    /*
    display: flex;
    flex-direction: column;
    justify-content: center;
    */
    min-width: 250px;
    max-width: 300px;
    margin: auto;
    padding: 10px;
    max-height: 70vh;
    overflow: hidden auto;
}
.sun-floating-body .card{
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    box-shadow: 0px 0.12rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 10px;
    background: #fff;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    height: fit-content;
}

.sun-floating-body .card .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

.sun-floating-body .card .container .attr-data {
    display: flex;
    flex-direction: column;
    padding: 0.5em;
    align-content: center;
}
.sun-floating-body .card .container .attr-data h4{
    margin-bottom: 0px;
    font-family: "Playfair Display",Georgia,"Times New Roman",serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 0px;
    text-align: left;
}

.sun-floating-body .card .container .attr-data p{
    margin-top: 0px;
    margin-bottom: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #212529;
    text-align: left;
}

.sun-floating-body .card .container img{
    width: 75px;
    height: 75px;
    overflow: hidden;
    object-fit: cover;
    /*border-radius: 10px 0px 0px 10px;*/
    border-radius: 0px 10px 10px 0px;
}

.sun-floating-body .card .container span{
    width: 75px;
    height: inherit;
    /*border-radius: 10px 0px 0px 10px;*/
    border-radius: 0px 10px 10px 0px;
}

/** BUNDLE ACCORDEON **/
#floating-bundle-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    /**width: 360px;**/
    margin: auto;
}
#floating-bundle-main input.bundle-product-summary {
    display: none;
}

label.bundle-product-summary {
    display: block;
    padding: 8px 22px;
    margin: 0 0 1px 0;
    cursor: pointer;
    background: #6AAB95;
    border-radius: 3px;
    color: #FFF;
    transition: ease .5s;
    position: relative;
}

label.bundle-product-summary::after {
    content: '+';
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 2px;
}

input:checked + label::after {
    content: '-';
    right: 14px;
    top: 3px;
}

label.bundle-product-summary:hover {
    background: #4E8774;
}

.sun-floating-body.content {
    background: #E2E5F6;
}

input.bundle-product-summary + label + .sun-floating-body.content {
    display: none;
}

input:checked + label + .sun-floating-body.content {
    display: block;
}

/** Alternate Style **/
.sun-floating-body .card.alternate {
    border: none;
    box-shadow: none;
    text-align: start;
}

.sun-floating-body .card.alternate .container.alternate {
    display: unset;
}

.sun-floating-body .card.alternate .container.alternate h4.attr-name {
    font-size: 16px;
    font-weight: 600;
}

.sun-floating-body .card.alternate .container.alternate .attr-data {
    flex-direction: row;
    padding: 0px;
}

.sun-floating-body .card.alternate .container.alternate .attr-data.alternate span,
.sun-floating-body .card.alternate .container.alternate .attr-data.alternate img {
    border-radius: 0px;
    margin-right: 0.5em;
}

.sun-floating-body .card.alternate .container.alternate .attr-data div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sun-floating-body .card.alternate .container.alternate .attr-data div p {
    margin: 0px;
}