/**
 * Webkul Software.
 *
 * @category  Webkul
 * @package   Webkul_FrequentlyBoughtTogether
 * @author    Webkul
 * @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
 * @license   https://store.webkul.com/license.html
 */
.wk-fbt {
    display: block;
    clear: both;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fbt-collection {
    display: inline-block;
    width: 65%;
    height: auto;
    float: left;
    margin-right:3%;
}

.fbt-summary {
    display: inline-block;
    float: right;
    width: 32%;
    height: auto;
    padding:25px;
    background:#F3F3F3;
}

.block.fbt .products-grid .product-item {
    width: calc((100% - 3%) / 3);
    position: relative;
    /* width: 100%; */
    /* max-width: 100%; */
    /* float: left; */
    padding-right: 20px;
    display: inline-block;
}

.dashed-block {
    border-bottom: 1px dashed #828282;
}

.summary-section {
    display: flex;
    padding: 1rem;
}

.summary-title {
    width: 50%;
    text-align: left;
    font-weight: 600;
    line-height: 2rem;
    font-size: 1.5rem;
}

.summary-calc {
    width: 50%;
    text-align: right;
    font-weight: bold;
    line-height: 2rem;
    font-size: 1.8rem;
}

.fbt-summary button.action.tocart.primary {
    width: 100%;
    padding: 1rem;
    line-height: 3rem;
    font-size: 1.7rem;
}

.block.fbt input {
    position: absolute;
    z-index: 99;
    right: 4.5rem;
    top: 0;
    opacity: 0;
    height: 2rem;
    width: 2rem;
}

.block.fbt {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.checkmark {
    position: absolute;
    top: 0;
    right: 5rem;
    z-index: 98;
    height: 2rem;
    width: 2rem;
    background-color: #ccc;
    border-radius: 2px;
}
  
.block.fbt input:checked ~ .checkmark {
    background-color: #F89016;
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.block.fbt input:checked ~ .checkmark:after {
    display: block;
}
  
.block.fbt .checkmark:after {
    left: 0.7rem;
    top: 0.3rem;
    width: 0.5rem;
    height: 1rem;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

span#fbt-error {
    color: #f10000de;
}

.block-title.title.error {
    padding: 1rem;
    margin: 1rem 0;
    background-color: #f9cbcb;
    display: none;
}

.fbt-prices {
    display: none;
}

@media screen and (max-width: 768px) {
    .fbt-collection, .fbt-summary {
      width: 100%;
    }

    .block.fbt .products-grid .product-item {
        width: calc((100% - 4%) / 3);
    }
}

@media screen and (max-width: 640px) {
    .block.fbt .products-grid .product-item {
        width: calc((100% - 2%) / 2);
    }
}