:root {
    --defautColor1: #feb800;
    --defautColor2: #380e47;
    --defautColor3: #0062cc;
    --defautColor4: #fff;
    --defautColor5: #343a40;
    --defautColor6: #f4f7f9;
    --defautColor7: #e8e8e8;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --notification: #dc3545;
    --randomColor1: #007bff;
    --randomColor2: #6610f2;
    --randomColor3: #6f42c1;
    --randomColor4: #e83e8c;
    --randomColor5: #dc3545;
    --randomColor6: #fd7e14;
    --randomColor7: #ffc107;
    --randomColor8: #28a745;
    --randomColor9: #20c997;
    --randomColor10: #17a2b8;
    --randomColor11: #fff;
    --randomColor12: #6c757d;
    --randomColor13: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --defautBoxShadow: 0 3px 5px 0px rgba(0,0,0,0.1);
    --defautTransitionTime: all 0.3s ease-in-out;
    --defautBorderRadius: 0.4rem;
}
*{
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}
.error{
    color: var(--danger);
}
body ::selection {
    color: #fff;
    background: #feb800;
}
html, body {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: verdana,"Open Sans",sans-serif;
    font-size: 14px;
}
.home-wrapper {
    position: relative;
    display: flex;
    /*margin: 0;*/
    /*padding: 0*/
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    background-origin: content-box;
    background-size: cover;
}

.l-overlay{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.lightBox {
    background: #fff;
    padding: 2em;
    color: #282828;
    border-radius: 0.25em;
    z-index: 99;
}
.lightBox .lightBoxBackground {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.lightBox .lightBoxContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: var(--defautColor4);
    border-radius: 5px;
    padding: 2em;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
.lightBox .lightBoxContent h2 {
    color: #575757;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    position: relative;
    margin: 25px 0;
    padding: 0;
    line-height: 40px;
    display: block;
}
.lightBox .lightBoxContent label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 30px;
    margin: 0 0 20px 0;
}
.lightBox .lightBoxContent input[type="checkbox"] {
    display: none;
}
.lightBox .lightBoxContent input[type="checkbox"]+span {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: 0.3s;
}
.lightBox .lightBoxContent input[type="checkbox"]:checked+span {
    background: var(--defautColor1);
    border-color: var(--defautColor1);
    transform: rotate(45deg);
}
.lightBox .lightBoxContent input[type="checkbox"]:checked+span::after {
    color: var(--defautColor4);
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform: translate(-50%, -50%);
}
.lightBox .lightBoxContent .submit {
    margin: 0;
}
select, input, button, .btn {
    height: 36px;
    display: inline-block;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: #fff;
    background-clip: padding-box;
    vertical-align: middle;
    width: 100%;
}
input[type="submit"] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    margin-top: 20px;
}