.abc-checkbox input[type="checkbox"]:focus + label::before, .abc-checkbox input[type="radio"]:focus + label::before {
    outline: none !important;
}

#loading-bg {
    width: 100%;
    height: 100%;
    background: #FFF;
    display: block;
    position: absolute;
}

#loading-bg .loading-container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#loading-bg .loading-logo {
    position: relative;
    top: 67px;
    left: 39px;
}

#loading-bg .loading {
    position: absolute;
    top: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid transparent;
}

#loading-bg .loading .effect-1, .loading .effect-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left: 3px solid rgba(203, 55, 74, 1);
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#loading-bg .loading .effect-1 {
    animation: rotate 1s ease infinite;
}

#loading-bg .loading .effect-2 {
    animation: rotateOpacity 1s ease infinite .1s;
}

#loading-bg .loading-loading .effect-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left: 3px solid rgba(121, 97, 249, 1);
    -webkit-animation: rotateOpacity 1s ease infinite .2s;
    animation: rotateOpacity 1s ease infinite .2s;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#loading-bg .loading .effects {
    transition: all .3s ease;
}

#loading-request-bg {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    display: none;
    position: fixed;
    z-index: 99999;
}

#loading-request-bg .loading-request-container {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
}

#loading-request-bg .loading-request-logo {
    position: relative;
    margin: auto;
}

#loading-request-bg .loading-request-loading {
    position: absolute;
    top: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid transparent;
}

#loading-request-bg .loading-request-loading .effect-1, .loading .effect-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left: 3px solid rgba(203, 55, 74, 1);
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#loading-request-bg .loading-request-loading .effect-1 {
    animation: rotate 1s ease infinite;
}

#loading-request-bg .loading-request-loading .effect-2 {
    animation: rotateOpacity 1s ease infinite .1s;
}

#loading-request-bg .loading-request-loading .effect-3 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-left: 3px solid rgba(121, 97, 249, 1);
    -webkit-animation: rotateOpacity 1s ease infinite .2s;
    animation: rotateOpacity 1s ease infinite .2s;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#loading-request-bg .loading-request-loading .effects {
    transition: all .3s ease;
}

.permission-inactive {
    display: none;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes rotateOpacity {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: .1;
    }
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
        opacity: 1;
    }
}
