.preference-wrapper {
    padding: 20px 20px 110px 20px;
    .bottom-button {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        text-align: center;
        z-index: 2;
        button {
            width: 100%;
            background-color: #29285b;
            color: #fff;
            border-radius: 8px;
            height: 45px;
            font-size: 16px;
            text-transform: uppercase;
        }
        span {
            text-transform: uppercase;
            font-size: 16px;
            text-align: center;
            margin-top: 10px;
            display: inline-block;
            font-weight: 600;
        }
    }
    .pref-wrap-two {
        .preference-box {
            width: 100%;
            position: relative;
            img {
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
            h1 {
                color: #fff;
                position: absolute;
                bottom: 0px;
                left: 14px;
                font-size: 14px;
                text-transform: uppercase;
                z-index: 2;
            }
            .preference {
                -webkit-appearance: none;
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center;
                width: 100%;
                height: 90px;
                padding: 17px;
                outline: none;
                -webkit-transition: all 0.6s ease-in-out;
                transition: all 0.6s ease-in-out;
                position: relative;
                display: block;
                z-index: 9;
            }
            &:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 100%;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.46);
                z-index: 1;
            }
        }
        .preference:checked {
            &:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 100%;
                width: 100%;
                background-color: rgba(41, 40, 91, 0.52);
                z-index: 9;
            }
        }
    }
}