/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/

.mulberry-additional-info {
    display: flex;
    /* Enables Flexbox */
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    gap: 20px;
}

.col-sm-6 {
    flex: 0 0 calc(50% - 10px);
    /* Takes up 50% of the container */
    max-width: calc(50% - 10px);
    display: flex;
    /* Enables Flexbox */
    flex-direction: column;
    /* Ensures proper stacking inside */
}
body.single-product.print .sections-container {
	background-color: #ffffff;
}
body.single-product.print {
	background-color: #ffffff;
}
iframe #_builder-form {
	padding-left: 15px !important;
	padding-right: 15px !important;
}
.d-none {
	display: none;
}

/* On smaller screens (mobile), make it take full width */
@media (max-width: 768px) {
    .col-sm-6 {
        flex: 0 0 100%;
        /* Takes up 100% */
        max-width: 100%;
    }
}