form[id=tenant-selection] {
    .container {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 0;
        flex-wrap: wrap;
    }

    /* set dimensions for invisible container */

    .input-container {
        position: relative;
        height: 7rem;
        width: 15rem;
        margin: 0.5rem;
        padding-left: 0;
        flex: 25%;

        /* make actual radio input invisible */
        /* + stretch to fill container */

        .radio-button {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            margin: 0;
            cursor: pointer;
        }

        /* default tile styles */

        .radio-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 100%;
            border: 2px solid #201DE1;
            border-radius: 5px;
            padding: 12px;
            transition: transform 300ms ease;
        }

        .icon img {
            max-width: 8rem;
            max-height:60px;
        }

        .radio-tile-label {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: black;
            word-break: break-word;
        }

        /* active tile styles */

        .radio-button:checked + .radio-tile {
            border: 2px solid #C0FF5E;
            color: white;
            transform: scale(1.1, 1.1);
        }
    }
}

/* https://codepen.io/caseycallow/pen/yaGQMo */
.swal2-popup {
    border-radius: 10px !important;
    background: #fff !important;
}
