/*
Theme Name: Lemmon Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

}
/* switch VAT settings */
.wdevs-tax-switch-label-text {
	color: #ffffff !important;
}

@media only screen and (max-width: 800px) {
  .wdevs-tax-switch-label-text {
    color: #000000 !important;
  }
}

.repeater-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjust the gap between items as needed */
}

.repeater-item {
    flex: 1 1 calc(50% - 20px); /* Two items per row with gap */
    box-sizing: border-box;
    display: flex;
	background: #f7f7f7;
	font-weight: bold;
	border-radius: 10px;
	padding: 10px;
    align-items: center;
    gap: 10px; /* Adjust the gap between icon and text as needed */

}

@media (max-width: 768px) {
    .repeater-item {
        flex: 1 1 100%;
    }
}

.icon img {
    width: 38px; /* Set a fixed width for the icon */
    height: auto; /* Maintain aspect ratio */
}

.text {
    /* Add styles for the text if needed */
}