
@media only screen and (min-width:480px) {
    .product-size-container {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    .product-size-item {
        display: flex;
        width: 75px;
        padding: 18px 14px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        border: 1px solid #E2E8F0;
        background: #FFF;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
    }

    .product-size-item:hover {
        border-radius: 8px;
        border: 1px solid #253691;
        background: #FCD944;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
        cursor: pointer;
    }

    .product-size-item-active {
        border-radius: 8px;
        border: 1px solid #253691;
        background: #FCD944;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
        cursor: pointer;
    }

    .product-size-label {
        color: #1E293B;
        text-align: center;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        /* 18px */
    }

    .product-size-description {
        color: #94A3B8;
        text-align: center;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        /* 12px */
    }
}

@media only screen and (max-width:480px) {
    .product-size-container {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 12px;
    }
    .product-size-item {
        display: flex;
        width: 60px;
        height: 60px;
        padding: 12px 13px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 8px;
        border: 0.812px solid #E2E8F0;
        background: #FFF;
        box-shadow: 0px 16.238px 20.298px -4.06px rgba(16, 24, 40, 0.02), 0px 6.495px 8.119px -4.871px rgba(16, 24, 40, 0.05);
    }

    .product-size-item:hover {
        border-radius: 8px;
        border: 1px solid #253691;
        background: #FCD944;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
        cursor: pointer;
    }

    .product-size-item-active {
        border-radius: 8px;
        border: 1px solid #253691;
        background: #FCD944;
        box-shadow: 0px 20px 25px -5px rgba(16, 24, 40, 0.02), 0px 8px 10px -6px rgba(16, 24, 40, 0.05);
        cursor: pointer;
    }

    .product-size-label {
        color: #1E293B;
        text-align: center;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 100%;
        /* 14px */
    }

    .product-size-description {
        color: #94A3B8;
        text-align: center;
        font-family: "SVN Omnes", Sans-serif;
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        /* 10px */
    }
}