/* forms */


/*
:root {
    --e-global-color-primary: #ff0000;
    --lbc-color-black: #000;
    --lbc-color-white: #fff;
}

*/


input[type=text]::selection,
input[type=text]::-moz-selection,
input[type=password]::selection,
input[type=password]::-moz-selection,
input[type=email]::selection,
input[type=email]::-moz-selection,
input[type=tel]::selection,
input[type=tel]::-moz-selection {
    background-color: var(--e-global-color-primary);
    color: #fff;
}

label.lbc-register-label {
    color: #000;
}

.container-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: Open Sans, serif;
}
.container-radio {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 7px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox and radio button */
.container-checkbox input[type=checkbox],
.container-radio input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.container-checkbox.disabled,
.container-radio.disabled{
    color: #ccc;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
    box-shadow: 0 0 0 1px #000;
}
.disabled .checkmark {
    box-shadow: 0 0 0 1px #ccc;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover > .checkmark {
    background-color: #049BB0;
}

.container-checkbox:hover > .checkmark {
    background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input[type=checkbox]:checked ~ .checkmark {
    background-color: var(--e-global-color-primary);
    box-shadow: 0 0 0 2px var(--e-global-color-primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input[type=checkbox]:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 5px;
    top: 0px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Create a custom radio */
.radiomark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #000;
}

/* On mouse-over, add a grey background color */
.container-radio:hover > .radiomark {
    background-color: var(--e-global-color-primary);
}

/* When the radio is checked, add a blue background */
.container-radio input[type=radio]:checked ~ .radiomark {
    background-color: #fff;
    box-shadow: 0 0 0 2px var(--e-global-color-primary);
}

/* Create the radiomark/indicator (hidden when not checked) */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the radiomark when checked */
.container-radio input[type=radio]:checked ~ .radiomark:after {
    display: block;
}

/* Style the radiomark/indicator */
.container-radio .radiomark:after {
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
}

.form-check {
    padding-left: unset;
    width: fit-content;
}


.lbc-read-more-content {
    display: none;
    transition: all 250ms ease-in-out;
}

.lbc-read-more-content.lbc-read-more-content-expanded {
    display: block;
}

.lbc-read-more-btn {
    font-size: .9rem;
    line-height: normal;
    font-family: "Open Sans", sans-serif;
    color: #000;
}

.lbc-read-more-btn:hover{
    cursor: pointer;
}

.lbc-filter-title,
h5.lbc-filter-title {
    font-family: Open Sans, serif;
    font-weight: 600;
    text-transform: uppercase;
}