/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* for variant description */
.product-info-container {
    display: flex;
    flex-direction: column;
    
}

.product-info-item {
    display: inline-flex;
    align-items: anchor-center;
    margin-bottom: 15px;
}

.product-icon {
    width: 40px; /* Resize the image */
    height: auto; /* Keep the aspect ratio */
    margin-right: 15px;
}

.product-icon1 {
    width: 30px; /* Resize the image */
    height: auto; /* Keep the aspect ratio */
    margin-right: 15px;
}

.text-grey {
    color: #808080  ; /* Hard grey */
    font-size: 16px;
    margin-right: 5px;
	font-weight: 600;
}

.text-grey1 {
    color: #808080  ; /* Hard grey */
    font-size: 16px;
    margin-right: 5px;
	font-weight: 600;
	margin-left: 10px;
}

    

.weight-grey {
    color: #A9A9A9; /* Normal grey */
    font-size: 16px;
    margin-left: 10px;
}

.weight-grey1 {
    color: #A9A9A9; /* Normal grey */
    font-size: 16px;
	margin-left: 50px;
}

.weight-grey2 {
    color: #A9A9A9; /* Normal grey */
    font-size: 16px;
	margin-left: 40px;
}



.info-container {
    position: relative;
}

.info-button {
       background-color: #ffcd05;
    border: none;
    cursor: pointer;
    font-size: 14px;
    margin-left: 25px;
    margin-top: 10px;
    padding: 4px 8px 4px 8px;
    border-radius: 21px;
    color: grey;
    font: small-caption;
}

.info-button:hover {
    background-color: #f7a800;
}

.info-box {
    display: none; /* Hidden by default */
    position: absolute;
    bottom: 100%; /* Position it above the button */
    right: -350%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 10px;
    width: 200px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
	border-radius: 10px;
}

.info-container:hover .info-box {
    display: block; /* Show the info box on hover */
}

.info-text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.download-link {
    display: inline-block;
    margin-top: 10px;
    color: green;  /* green when hovered */
    font-size: 14px;
    text-decoration: none;  /* Remove underline */
    font-weight: bold;
}

.download-link:hover {
    text-decoration: underline;  /* Underline the link on hover */
    color:  #FFB600;  /* yellow color */
}

/* hide second price*/
.woocommerce-variation-price {
	display:none !important;
}



