/*

Template: The Corps — Responsive Multi-purpose HTML5 Template
Author: potenzaglobalsolutions.com
Version:  2.0
Design and Developed by: potenzaglobalsolutions.com

Note: This is the file where you can add your custom styles to change the look of the
theme. But don't modify "style.css" file.

*/

/* Your custom css codes start from here: */
#risk-disclosuresmodule{
    background-color: #000000a1;
}
#risk-disclosuresmodule li {
    list-style-type: disc;
}

#risk-disclosuresmodule ul {
    padding-inline-start: 20px;
}

#risk-disclosuresmodule .form-control {
    border: none;
    display: flex;
    height: auto;
    width: 100%;
    align-items: center;
}

/* #risk-disclosuresmodule input[type=checkbox] {
    width: 25px;
    margin-right: 10px;
    height: 25px;
    display: grid;
    place-content: center;
}


#risk-disclosuresmodule input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
}

#risk-disclosuresmodule input[type="checkbox"]:checked::before {
    transform: scale(1);
} */

.styled-checkbox {
    position: absolute;
    opacity: 0;
}

.styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0;
}

.styled-checkbox+label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 25px;
    height: 25px;
    background: #e2e2e2;
}

.styled-checkbox:hover+label:before {
    background: #f88627;
}

.styled-checkbox:focus+label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.styled-checkbox:checked+label:before {
    background: #f88627;
}

.styled-checkbox:disabled+label {
    color: #b8b8b8;
    cursor: auto;
}

.styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd;
}

.styled-checkbox:checked+label:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 11px;
    background: white;
    width: 3px;
    height: 3px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}

#acceptBtn {
    height: 35px;
    width: 90px;
    background-color: #f88627;
    border: 1px solid #f88627;
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
    margin-top: 20px;
    margin-left: auto;
    opacity: 1;
}

button#acceptBtn:disabled,
button#acceptBtn[disabled] {
    background-color: gray;
    border: gray;
    opacity: .5;
}