/*
 Theme Name:   Landlr Child
 Theme URI:    https://portal.businesscardstar.com
 Description:  Landlr Child Theme for Business Card Star
 Author:       Marc Fontaine
 Author URI:   https://portal.businesscardstar.com
 Template:     landlr
 Version:      1.0.0
*/
.page-turquoise .dropdown-menu.dropdown-white> li > a,
.dropdown-white>li >a {
    background: white;
    color: #000;
}
div.structure li {
    list-style:none;
}

div.structure ul{
    padding:10px;
}

input[type="checkbox"].nf-element{
margin-right:6px;
}

@media (max-width: 767px) {
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
        text-align: left !important;
    }
}

h4 {
    color:rgb(48, 180, 203);
}
.contact-form label {
    color:rgb(48, 180, 203);
}
.contact-form li>label {
    color:black;
}
/**
    Custom Checkbox
 **/
.mycb {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.mycb input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgb(48, 180, 203);
}

/* On mouse-over, add a grey background color */
.mycb:hover input ~ .checkmark {
    background-color: rgb(99, 221, 243);
}

/* When the checkbox is checked, add a blue background */
.mycb input:checked ~ .checkmark {
    background-color: rgb(48, 180, 203);
}

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

/* Show the checkmark when checked */
.mycb input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.mycb .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/**
    End Custom Checkbox
 **/


/**
    Custom Select
 **/

/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}
