.customization-identifiers__block-title {
    display: block;
    width: 100%;
    padding-left: 12px;
}

.customization-identifiers__blocks {
    width: 100%;
}

.customization-identifiers__block {
    padding: 12px 12px 20px 12px;
    border-radius: 12px;
    background-color: #f7f7f7;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
}

a.customization-identifiers__item {
    color: #000 !important;
    margin-top: 12px;
    border: solid 1px #e3e3e3;
}

.customization-details__section {
    display: none;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.customization-details__section.customization-details__section--visible {
    display: block;
    transform: scale(1);
}

.customization-identifiers__item {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 12px;
    /* padding: 12px; */
    display: flex;
    align-items: stretch;
    width: 100%;
    max-height: 70px;
    overflow: hidden;
    cursor: pointer;
}

.customization-identifiers__item.selected {
    background-color: #E5E5E5 !important;
}

/* Wrap for checkbox and label */
.customization-identifiers__checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

/* Custom Checkbox Styles */

/* Hide the default checkbox */
.customization-identifiers__checkbox-container:not(:has(:checked)) {
    visibility: hidden;
}

.customization-identifiers__checkbox-container input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}
.customization-identifiers__checkbox-container {
    position: relative;
    display: inline-block;
    cursor: default;
    pointer-events: none; /* Prevent pointer events on the checkbox container, meaning that it cannot be manually clickable */
    margin: 0;
}

.customization-identifiers__checkmark {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: white;
    border: 1px solid #8a8a8a !important;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.customization-identifiers__checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.customization-identifiers__checkbox-container input:checked ~ .customization-identifiers__checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* When checkbox is checked */
.customization-identifiers__checkbox-container input:checked ~ .customization-identifiers__checkmark {
    background-color: #333;
    border-color: #333;
}

/* Show customization-identifiers__checkmark when checked */
.customization-identifiers__checkbox-container input:checked ~ .customization-identifiers__checkmark::after {
    display: block;
}

/* Hide customization-identifiers__checkmark when not checked */
.customization-identifiers__checkbox-container:not(:has(:checked)) {
    visibility: hidden;
}

/* Hover effect */
.customization-identifiers__checkbox-container:hover .customization-identifiers__checkmark {
    border-color: #555;
}

/* Text Styling */
.customization-identifiers__label {
    font-weight:500;
    /* font-size: 18px; */
}

/* Image Styling */
.customization-identifiers__item-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.customization-identifiers__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0 12px 12px 0;
    display: block;
}

.customization-details__images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 12px;
}

.customization-details__image {
    border: 2px solid #ddd;
    border-radius: 5px;
    height: 60px;
    width: 60px;
}

.customization-details__image.customization-details__image--selected {
    border: 2px solid #000;
}

.vas-identifier-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

