﻿/*CheckBox JOIN NAIT FORM */
.check-box-container {
    display: block;
    position: relative;
    padding: 10px 30px 10px 40px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    /*background: #fff3cdad;*/
    font-size:14pt!important;
    background: #d1ecf1;
    font-weight: normal !IMPORTANT;
}

    .check-box-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 20px;
    width: 20px;
    /* background-color: #482a01; */
    border: 1px solid #482a01;
}

.check-box-container input:checked ~ .checkmark {
    background-color: #362901;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-box-container input:checked ~ .checkmark:after {
    display: block;
}

.check-box-container .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}