/* Container */
.xgn-icons {
    margin-top: 80px;
    margin-bottom: 60px;
}

.xgn-icons__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* max 4 per row */
    gap: 24px;
    justify-content: center!important;
    
}

/* Individual item */
.xgn-icons__item {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

/* Image */
.xgn-icons__img-wrapper img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}

/* Text */
.xgn-icons__copy {
    text-align: center;
    width: 60%;
    margin: auto;
}

.xgn-icons__copy-wrapper h4 {
    margin: 8px 0;
}


.xgn-icons__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
    .xgn-icons__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .xgn-icons__copy-wrapper {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .xgn-icons__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .xgn-icons__wrapper {
        grid-template-columns: 1fr;
    }
}
.xgn-table__container {
    padding-top: 60px;
    overflow-x: scroll;
}
.xgn-table__container::-webkit-scrollbar {
    display: none;
}

.xgn-table {
    border: 0px !important;
}
.xgn-table th, .xgn-table td {
    border: 0px !important;
    font-size: 16px;
    min-width: 175px;
}
.xgn-table th:nth-child(odd), .xgn-table td:nth-child(odd) {
    background-color: #EBE9EA;
}
.xgn-table th:nth-child(even), .xgn-table td:nth-child(even) {
    background-color: #FFFFFF;
}
.xgn-table th img, .xgn-table td img {
    width: 100%;
}
.xgn-table thead tr:first-of-type th:nth-child(odd) {
    background: linear-gradient(to bottom, #F1F3F5, #F1F3F5 38%, #EBE9EA 38%, #EBE9EA);
}
.xgn-table thead tr:first-of-type th:nth-child(even) {
    background: linear-gradient(to bottom, #F1F3F5, #F1F3F5 38%, #FFFFFF 38%, #FFFFFF);
}
.xgn-table thead tr:nth-child(2) th:nth-child(odd) {
    background-color: #87DADE;
}
.xgn-table thead tr:nth-child(2) th:nth-child(even) {
    background-color: #F3B235;
}
.xgn-table thead .xgn-table__life-studio th {
    text-align: center;
    padding: 20px;
}
.xgn-table thead .xgn-table__life-studio img {
    max-width: 175px;
}
.xgn-table tbody tr:nth-child(even) td {
    background-color: #D0D0D0;
    font-size: 12px;
    padding: 10px;
}
.xgn-table tbody tr:not(.align-left):not(:nth-child(even)) {
    text-align: center;
}
.xgn-table tbody tr .variation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.xgn-table tbody tr .variation-container .variation {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}
.xgn-table tbody tr .variation-container .variation.ice-green {
    background-color: #CFD8D4;
}
.xgn-table tbody tr .variation-container .variation.rose-quartz {
    background-color: #E7DDD8;
}
.xgn-table tbody tr .variation-container .variation.diamond-white {
    background-color: #FEFCFB;
}
.xgn-table tbody tr .variation-container .variation.metallic-navy {
    background: transparent linear-gradient(129deg, #ABACAE 0%, #C6C8C7 100%) 0% 0% no-repeat padding-box;
}
.xgn-table tbody tr .variation-container .variation.metallic-black {
    background-color: #2E2E2F;
}