/*!
 Theme Name: Rubrum
 Theme URI:
 Author: Dev Team
 Author URI:
 Description: Rubrum is a blank canvas for your ideas and it makes the block editor your best brush.
 Requires at least: 6.6
 Tested up to: 6.8.3
 Requires PHP: 8.0
 Version: 6.8
 Text Domain: rubrum
*/


/** Add your custom styles here **/


@media (min-width: 641px) {
    .form-home .address_city,
    .form-home .address_state {
        flex: 0 0 38% !important;
    }
    .form-home .address_zip {
        flex: 0 0 24% !important;
    }
}

a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.cut-corners {
    /*
        clockwise from the top left,
        set the x y position of each point in the shape,
        adding / removing the size of the corner from the start / end
        to create the cut-off shape
    */
    clip-path: polygon(
        /* top edge */
            var(--corner)              0%, /* left top */
            calc(100% - var(--corner-2)) 0%, /* right top */
                /* right edge */
            100% var(--corner),              /* right top */
            100% calc(100% - var(--corner)), /* right bottom */
                /* bottom edge*/
            calc(100% - var(--corner)) 100%, /* right bottom */
            var(--corner-2)              100%, /* left bottom*/
                /* left edge */
            0% calc(100% - var(--corner)), /* left bottom */
            0% var(--corner)               /* left top */
    );

    /* set a default value for the corner cutoff size */
    --corner: 1em;
    --corner-2: 0.25em;
}
