.radio1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 9;
}

.select_one {
    position: relative;
    width: 24px;
    height: 24px;
}

.select_one .left::after {
    content: " ";
    background-image: url('../images/svg/unchecked.svg  ');
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    position: absolute;
    left: 0px;
}

.select_one input[type="checkbox"]:checked~.left:after {
    content: " ";
    background-image: url('../images/svg/checked.svg  ');
    right: 0px;
}

.select_one input[type="radio"]:checked~.left:after {
    content: " ";
    background-image: url('../images/svg/radio-checked.svg  ');
    right: 0px;
}

.dropdown-theam-notification .dropdown-menu .dropdown-item:active{
    background-color: transparent;
}