::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #919496 !important;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #919496 !important;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #919496 !important;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #919496 !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #919496 !important;
}

::placeholder { /* Most modern browsers support this now. */
    color: #919496 !important;
}

.control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control_indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 30px;
    width: 30px;
    background: #fff;
    border: 1px solid #000;
    border-radius: 2px;
}

.control_req {
    border: 1px solid red;
}


.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #ffffff;
}

.control input:checked ~ .control_indicator {
    background: #ffffff;
    border: 1px solid #000000;
}

.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #0e6647;
}

.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}

.control input:checked ~ .control_indicator:after {
    display: block;
}

.control-checkbox .control_indicator:after {
    left: 10px;
    top: 2px;
    width: 7px;
    height: 16px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}


/*  =================================
    WTL Limited – Bump Offer
    ================================= */
.wtl-checkbox-label {
    border-bottom-color: rgb(226, 232, 240);
    border-bottom-style: solid;
    border-bottom-width: 0px;
    border-left-color: rgb(226, 232, 240);
    border-left-style: solid;
    border-left-width: 0px;
    border-right-color: rgb(226, 232, 240);
    border-right-style: solid;
    border-right-width: 0px;
    border-top-color: rgb(226, 232, 240);
    border-top-style: solid;
    border-top-width: 0px;
    box-sizing: border-box;
    color: rgb(160, 174, 192);
    cursor: default;
    display: block;
    font-family: Roboto, system-ui, -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    font-weight: 700;
    line-height: 24px;
    text-size-adjust: 100%;
    width: 362px;
}

.wtl-checkbox-label-text {
    border-bottom-color: rgb(226, 232, 240);
    border-bottom-style: solid;
    border-bottom-width: 0px;
    border-left-color: rgb(226, 232, 240);
    border-left-style: solid;
    border-left-width: 0px;
    border-right-color: rgb(226, 232, 240);
    border-right-style: solid;
    border-right-width: 0px;
    border-top-color: rgb(226, 232, 240);
    border-top-style: solid;
    border-top-width: 0px;
    box-sizing: border-box;
    color: rgb(113, 128, 150);
    cursor: default;
    display: inline;
    font-family: Roboto, system-ui, -apple-system, system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    font-size: 12px;
    font-weight: 700;
    height: auto;
    line-height: 24px;
    text-size-adjust: 100%;
    width: auto;
}

.wtl-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    color: rgb(69, 85, 104);
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-top: 3px;
}

.wtl-checkbox-container a {
    color: rgb(113, 128, 150);
}

.wtl-checkbox-container a:hover {
    color: rgb(113, 128, 150);
    text-decoration: none;
}

.wtl-checkbox-container input {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 5px;
}

.wtl-checkbox-container input.focus-visible + .checkmark {
    outline: 1px dotted #212121;
    outline: 5px auto -webkit-focus-ring-color;
}

/* Create a custom checkbox */
.wtl-checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    background-color: #fff;
    border-radius: 3px;
    margin-top: 5px;
}


/* On mouse-over, add a grey background color */
.wtl-checkbox-container:hover input ~ .checkmark {
    background-color: #eee;
    border-radius: 3px;
    border: 2px solid #d8dfe6;
}

/* When the checkbox is checked, add a blue background */
.wtl-checkbox-container input:checked ~ .checkmark {
    background-color: #2196f3;
    border-radius: 3px;
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.wtl-checkbox-container .checkmark:after {
    content: '';
    position: absolute;
    display: none;
    border: none;
}

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

/* Style the checkmark/indicator */
.wtl-checkbox-container .checkmark:after {
    left: 6px;
    top: 4px;
    width: 7px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wtl-form-group {
    margin-bottom: 0.5rem;
}

.wtl-form-group--select {
    position: relative;
}

.wtl-form-group--select:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: rgba(0, 0, 0, 0.5) transparent transparent transparent;
    display: block;
    right: 10px;
    top: 45px;
    pointer-events: none;
}

select.wtl-input {
    cursor: pointer;
}

.wtl-form-group--coupon .wtl-form-group-inputs {
    display: flex;
}

.wtl-form-group-inputs .wtl-input {
    flex: 3;
    min-width: 0;
}

.wtl-form-group-inputs .wtl-activate {
    flex: 1;
}

.wtl-form-group--error .wtl-input {
    background: #ffe2e2;
    border-color: #f03f00;
    color: red;
}

.wtl-form-group--success .wtl-input {
    background: #f5ffef;
    border-color: #61bf7e;
}

.wtl-form-group--cta {
    text-align: center;
    margin: 20px 0 20px;
}