/* HTML Elements Styling
   ========================================================================== */

select {
    border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
    border-radius: var(--wp--preset--border-radius--x-small);
    padding: 5px;
    color: var(--wp--preset--color--text-90);
    font-family: var(--wp--preset--font-family--body);
    background-color: transparent;

    & option {
        background-color: var(--wp--preset--color--primary);

        &:hover {
            background-color: var(--wp--preset--color--accent);
        }
    }
}

input {
    border: 1px solid color-mix(in srgb, currentColor 50%, transparent);
    border-radius: var(--wp--preset--border-radius--x-small);
    background-color: transparent;
    padding: 0.25rem 0.75rem;
    color: inherit;

    &::placeholder {
        color: color-mix(in srgb, currentColor 70%, transparent);
    }
}

/* Mobile / Desktop Hide
   ========================================================================== */

@media screen and (max-width: 599px) {
    .symcooblocs-mobile-hide {
        display: none !important;
    }
}

@media screen and (max-width: 781px) {
    .symcooblocs-tablet-hide {
        display: none !important;
    }
}

@media screen and (min-width: 600px) {
    .symcooblocs-desktop-tablet-hide {
        display: none !important;
    }
}

@media screen and (min-width: 782px) {
    .symcooblocs-desktop-hide {
        display: none !important;
    }
}