
Magnetic Wristband
.custom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); grid-gap: 20px; } .item { text-align: center; padding: 0; } .text{ text-align: left; padding-left: 3px; padding-top: 0; margin-bottom: 50px; } .title { text-align: center; } img { max-width: 100%; height: auto; margin: 0; } .text-container img:not([style*=float]), .rte img:not([style*=float]) { margin-top: 0; } @media only screen and (max-width: 600px) { .custom-grid { grid-template-columns: 1fr; } } @media only screen and (min-width: 601px) { .custom-grid { grid-template-columns: repeat(2, 1fr); } } @media only screen and (max-width: 600px) { .mobile-only { display: block; } .desktop-only { display: none; } } @media only screen and (min-width: 601px) { .mobile-only { display: none; } .desktop-only { display: block;