.checkbox-wrapper-4 * {
            box-sizing: border-box;
            color: white;
        }

        .checkbox-wrapper-4 .cbx {
            -webkit-user-select: none;
            user-select: none;
            cursor: pointer;
            padding: 6px 8px;
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .checkbox-wrapper-4 .cbx:not(:last-child) {
            margin-right: 6px;
        }

        .checkbox-wrapper-4 .cbx:hover {
            background: rgba(0, 0, 0, 0.06);
        }

        .checkbox-wrapper-4 .cbx span {
            float: left;
            vertical-align: middle;
            transform: translate3d(0, 0, 0);
        }

        .checkbox-wrapper-4 .cbx span:first-child {
            position: relative;
            width: 18px;
            height: 18px;
            border-radius: 4px;
            transform: scale(1);
            border: 1px solid rgb(66, 66, 66);
            background-color: rgb(66, 66, 66);
            box-shadow: 0 1px 4px black;
            transition: all 0.2s ease;
        }

        .checkbox-wrapper-4 .cbx span:last-child {
            padding-left: 8px;
            line-height: 18px;
        }

        .checkbox-wrapper-4 .cbx:hover span:first-child {
            box-shadow: 0 1px 8px black;
        }

        .checkbox-wrapper-4 .inp-cbx {
            position: absolute;
            visibility: hidden;
        }

        .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
            background: rgb(189, 189, 189);
            border-color: rgb(189, 189, 189);
        }

        .checkbox-wrapper-4 .inline-svg {
            position: absolute;
            width: 0;
            height: 0;
            pointer-events: none;
            user-select: none;
        }

        @media screen and (max-width: 640px) {
            .checkbox-wrapper-4 .cbx {
                width: 100%;
                display: inline-block;
            }
        }

       
        .form-check-label {
            color: #f1dabb;
            font-weight: bold;
        }