/*-------- Custom CheckBox Style Start --------*/
.checkbox-dd .container-dd {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-dd .container-dd input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-dd .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #8e8e8e;
}

.checkbox-dd .container-dd input:checked~.checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

.checkbox-dd .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-dd .container-dd input:checked~.checkmark:after {
    display: block;
}

.checkbox-dd .container-dd .checkmark::after {
    left: 7px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox-dd .container-dd .check_text {
    margin: 0;
    padding: 0;
    font-size: 16px;
    letter-spacing: .3px;
    font-weight: 400;
    position: relative;
    top: -3px;
}
/*-------- Custom CheckBox Style End --------*/