.single-product-wrapper {
    display: flex;
    gap: 50px;  
    flex-wrap: nowrap;
    align-items: start;
    justify-content: space-between;
}

.woocommerce .single-product-wrapper .woocommerce-breadcrumb {
    justify-content: start;
}

.single-product-wrapper .product-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    color: #1D1D1D;
    margin-bottom: 15px;
}

.single-product-wrapper .product-subtitle {
    font-size: 19px;
    font-weight: 600;
    line-height: 27px;
    color: #5d5d5d;
    margin-bottom: 15px;
}

.single-product-wrapper .delivery-info-wrapper {
    display: flex;
    justify-content: end;
    margin-top: 10px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 800;
    color: green;
}

.single-product-wrapper .secure-payment-wrapper {
    display: flex;
    justify-content: end;   
    margin-top: 5px;
}

.single-product-wrapper .toggle-item {
	border-bottom: 1px solid #CCC;    
}

.single-product-wrapper .toggle-item.toggle-item-first {
    margin-top: 30px;
}

.single-product-wrapper .toggle-item .toggle-item-title-wrapper {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
}

.single-product-wrapper .toggle-item .toggle-item-title {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 15px;
}

.single-product-wrapper .toggle-item .toggle-item-title-wrapper:hover .toggle-item-title,
.single-product-wrapper .toggle-item.open .toggle-item-title {
    font-weight: 500;
}

.single-product-wrapper .toggle-item .toggle-item-icon {
    width: 13px;
    height: 10px;
    background-image: url(../img/accordeon-closed.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.single-product-wrapper .toggle-item.open .toggle-item-icon {
	transform: scaleY(-1);
}
.single-product-wrapper .toggle-item.disabled .toggle-item-icon {
    display: none;
}


.single-product-wrapper .toggle-item .toggle-item-content {
	display: none;
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
    padding-bottom: 30px;
}

.single-product-wrapper .toggle-item.open .toggle-item-content {
	display: block;
}

.single-product-wrapper .toggle-item .toggle-item-content p {
    margin-bottom: 7px;
}

.single-product-wrapper .toggle-item .toggle-item-content p b {
    font-weight: bold;
}

.single-product-wrapper .default-buttom-container table.variations {
    display: none;
}

.single-product-reviews-wrapper {
    margin-top: 100px;
}


@media screen and (max-width: 950px) {
    .single-product-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

