@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    body *:not(.switch) > input[type=checkbox] {
        --active: #275EFE;
        --active-inner: #fff !important;
        --focus: 2px rgba(39, 94, 254, .3);
        --border: #989cb0;
        --border-hover: #275EFE;
        --background: #fff !important;
        --disabled: #F6F8FF !important;
        --disabled-inner: #9d9d9d !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        margin-right: 2px;
        margin-bottom: 3px;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

        body *:not(.switch) > input[type=checkbox]:after {
            content: "";
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        body *:not(.switch) > input[type=checkbox]:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: .3s;
            --d-t: .6s;
            --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
        }

        body *:not(.switch) > input[type=checkbox]:disabled {
            --b: var(--disabled);
            cursor: not-allowed !important;
            opacity: 0.9;
        }

            body *:not(.switch) > input[type=checkbox]:disabled:checked {
                cursor: not-allowed !important;
                --b: var(--disabled-inner);
                --bc: var(--border);
            }

            body *:not(.switch) > input[type=checkbox]:disabled::after {
                border-color: gainsboro !important;
            }

            body *:not(.switch) > input[type=checkbox]:disabled + label {
                cursor: not-allowed;
            }

        body *:not(.switch) > input[type=checkbox]:hover:not(:checked):not(:disabled) {
            --bc: var(--border-hover);
        }

        body *:not(.switch) > input[type=checkbox]:focus {
            box-shadow: 0 0 0 var(--focus);
        }

        body *:not(.switch) > input[type=checkbox]:not(.switch) {
            width: 21px;
            min-width: 21px;
        }

            body *:not(.switch) > input[type=checkbox]:not(.switch):after {
                opacity: var(--o, 0);
            }

            body *:not(.switch) > input[type=checkbox]:not(.switch):checked {
                --o: 1;
            }

        body *:not(.switch) > input[type=checkbox] + label, body *:not(.switch) > input[type=checkbox] + small {
            display: inline-block;
            vertical-align: middle;
            cursor: pointer;
            margin-left: 2px;
            /* padding-top:2px; */
            line-height: 23px;
        }

        body *:not(.switch) > input[type=checkbox]:not(.switch) {
            border-radius: 4px;
        }

            body *:not(.switch) > input[type=checkbox]:not(.switch):after {
                width: 5px;
                height: 9px;
                border: 2px solid var(--active-inner);
                border-top: 0;
                border-left: 0;
                left: 7px;
                top: 4px;
                transform: rotate(var(--r, 20deg));
            }

            body *:not(.switch) > input[type=checkbox]:not(.switch):checked {
                --r: 43deg;
            }
}

  .goto-booth-alert{
    border-bottom:5px solid rgba(83, 92, 100, 1)
}
.goto-booth-alert .swal-footer{
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
}
.goto-booth-alert .swal-icon{
    min-height:60px;
}
.goto-booth-alert .swal-icon img{
    display:none;

}
.goto-booth-alert .swal-icon:before{
    content: "\f5fd";  
    font-family: FontAwesome;
    left: calc(50% - 38px);
    font-size: 70px;
    position:absolute;
    top:-5px;
    color:rgba(83, 92, 100, 1);
}