.af-table {
    width: 100%;
    border: 1px solid #eee;
    border-collapse: collapse;
}

.af-table>tr {
    border: 1px solid #eee !important;
}

.af-table>tr>td {
    border: 1px solid #eee !important;
    width: 50% !important;
    padding: 10px !important;
}

.af-input {
    border: 1px solid black;
    padding: 10px !important;
    width: 100% !important;
    background-color: white !important;
}

input[type='color'].af-input {
    padding: 0 !important;
}

.af-radio-buttons {
    display: flex;
    gap: 10px;
}
.af-radio-buttons div {
    display: flex;
    gap: 5px;
}

.af-radio-button {
    width: 50% !important;
    display: flex;
}

.af-mt-10 {
    margin-top: 10px !important;
}

.af-mb-10 {
    margin-bottom: 10px !important;
}

.af-my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.af-my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.af-checkbox {
    display: flex !important;
}

.af-textarea {
    resize: none;
}

#calculator-form {
    display: flex;
    flex-direction: column;
}

td>.af-result-data {
    display: flex;
}

.af-result-data>.af-value {
    width: min-content;
    order: 0;
    padding: 0 3px;
}

.af-result-data>.af-unit {
    width: min-content;
    padding: 0 3px;
}

.af-image-swatch-container {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.af-image-swatch-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 10px;
}

.af-image-swatch-columns {
    width: calc(50% - 10px) !important;
    display: flex;
    flex-direction: column;
    margin-right: 5px;
    margin-right: 5px;
}

.af-image-swatch-columns:first-child {
    margin-left: 0;
    margin-right: 5px;
}

.af-image-swatch-columns:last-child {
    margin-left: 0;
    margin-right: 0;
}

.af-image-swatch-columns>.af-label {
    display: flex;
    width: 100%;
    justify-content: center;
}

.af-image-swatch-columns>.af-price {
    display: flex;
    width: 100%;
    justify-content: center;
}

.input-hidden {
    position: absolute;
    left: -9999px;
}

input[type="radio"]:checked+label>img {
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px 3px #090;
}

input[type="radio"]+label>img {
    border: 1px solid #444;
    border-radius: 5px;
    transition: 500ms all;
    min-width: 100%;
    max-width: 100%;
    max-height: 150px;
    min-height: 150px;
}

.af-spin-360 {
    animation: rotate 0.5s infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.af-toast {
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.af-toast.success {
    background-color: #167D7F;
    color: white;
}

.af-toast.error {
    background-color: #5E091A;
    color: white;
}

.af-flex {
    display: flex !important;
}

input-number-field {
    border: 1px solid #eee !important;
}

input-number-field button {
    background-color: inherit !important;
    border: none !important;
    cursor: pointer;
}

input-number-field input[type="number"] {
    background-color: inherit !important;
    border: none !important;
}

input-number-field button:nth-child(1) {
    border-right: 1px solid #eee !important;
}

input-number-field button:nth-child(3) {
    border-left: 1px solid #eee !important;
}

input[step]::-webkit-outer-spin-button,
input[step]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number][step] {
    -moz-appearance: textfield;
}

button[shop="irgb0v-ba.myshopify.com"].af-mt-10 {
    width: 100% !important;
    background: inherit;
    border: 1px solid;
    padding: 10px;
    border-radius: 20px;
}

/* skelton */
.af-skeleton-loader {
    width: 100%;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}

.af-skeleton {
    background: #e0e0e0;
    margin: 10px 0;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

.af-skeleton-field {
    height: 20px;
    width: 100%;
}

.af-skeleton-price {
    height: 20px;
    width: 50%;
}

@keyframes pulse {
    0% {
        background-color: #e0e0e0;
    }

    50% {
        background-color: #d0d0d0;
    }

    100% {
        background-color: #e0e0e0;
    }
}