.west-42-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 70px;
    padding-top: 42px;
}

.west-42-tabs__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 11px
}

.west-42-tabs__wrapper button {
    height: 41px;
    padding: 0 22px;
    border: 1px solid rgba(64, 31, 22, 1);
    border-radius: 5px;
    color: rgba(64, 31, 22, 1);
    font-weight: 300;
    text-transform: capitalize;
    font-size: 16px;

    &.active {
        background: rgba(64, 31, 22, 1);
        color: #fff;
    }

    &:hover {
        background: rgba(64, 31, 22, 1);
        color: #fff;
    }
}

.west-42-tabs span {
    color: rgba(64, 31, 22, 1);
    font-size: 20px;
    line-height: 140%;
    display: inline-block;
    margin-right: 20px;
    font-weight: 300;
}

.west-42-tab {
    padding: 12px 25px;
    border: 1px solid #D1C7B7;
    background: transparent;
    color: #4A4A4A;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

[v-cloak] {
    display: none;
}

.west-42-floorplans .floorplans-wrapper {
    display: block;

    .floorplan {
        display: block;
        width: 100%;
        margin-bottom: 26px;
        padding: 32px;
        height: auto;
    }
}

.floorplan-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 37px;

    .floorplan-wrapper__left {
        background: #fff;
        width: 500px;
        padding: 28px;
        display: flex;
        flex-direction: column;
        position: relative;

        a.floorplan-link {
            position: absolute;
            top: 0;
            left: 0;
            background: transparent;
            border: none;
            width: 100%;
            height: 100%;
            display: block;
            z-index: 1;
        }

        a.download-btn {
            position: relative;
            z-index: 5;
            border: 1px solid rgba(64, 31, 22, 1);

            &:hover {
                background: transparent;
                color: rgba(64, 31, 22, 1);
            }
        }

        picture {
            height: 280px;
        }

        p {
            display: block;
            text-align: center;
            padding-top: 36px;
            margin-bottom: 0;
        }

        h3 {
            margin: 0 0 16px 0;
            text-transform: uppercase;
            font-size: 45px;
            font-weight: 300;
        }

        a {
            display: block;
            width: 100%;
            text-align: center;
            background: rgba(64, 31, 22, 1);
            height: 41px;
            color: #fff;
            line-height: 41px;
            margin-top: 22px;
            border-radius: 5px;
            font-size: 16px;
        }
    }

    .floorplan-wrapper__right {
        flex: 1;
    }

    .floorplan-wrapper__right .floorplan-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;

        th {
            font-size: 20px;
            color: rgba(64, 31, 22, 1);
            font-weight: 400;
            border-bottom: 1px solid rgba(64, 31, 22, 1);
            text-align: center;
            padding: 20px 0;
        }

        td {
            padding: 16px 0;
            font-size: 20px;
            color: rgba(64, 31, 22, 1);
            font-weight: 300;
            vertical-align: middle;
            text-align: center;
        }

        .status-available {
            color: #2D5A27;
            font-weight: 400;
        }

        .status-leased {
            color: rgba(64, 31, 22, 0.4);
        }

        .apply-btn {
            position: relative;
            display: inline-flex;
            flex-wrap: wrap;
            line-height: 1;
            text-decoration: underline;
            align-items: center;
            border-bottom: none;
            font-size: 20px;

            &:hover {
                text-decoration: none;
            }

            &:after {
                margin-left: 6px;
                content: "";
                width: 12px;
                height: 7px;
                background: url(../src/media/svgs/styled-link-arrow.svg) no-repeat center;
                background-size: contain;
            }
        }
    }
}

@media(max-width:992px) {
    .west-42-tabs {
        flex-direction: column;
        align-items: flex-start;
    }

    .west-42-tabs span {
        display: block;
        margin-bottom: 20px;
    }

    .west-42-tabs__wrapper {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;

        button {
            width: 100%;
        }
    }

    .west-42-floorplans .floorplans-wrapper {
        .floorplan {
            padding: 15px;
        }
    }

    .floorplan-wrapper {
        flex-direction: column;
    }

    .floorplan-wrapper .floorplan-wrapper__left {
        width: 100%;
    }

}