/* Custom Style Vars */

:root {
    --color-dark: #000000;
    --color-medium: #707070;
    --color-light: #E1E1E1;
    --color-white: #ffffff;
    --color-highlight: #006666;
    --space-big: 100px;
    --space-default: 50px;
    --space-small: 25px;
    --transition-short: all 0.2s ease;
}


@media screen and (max-width: 991px) {
    :root {
        --space-big: 50px;
        --space-default: 25px;
        --space-small: 12px;
    }
}


/* Campaign Monitor Form Styling*/

.cmformstyles button,
.cmformstyles .btn {
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px 30px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Oswald','HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif;
    
    color: var(--color-white);
    margin-top: var(--space-small);
    transition: var(--transition-short);
    background-color: var(--color-highlight);
}
.cmformstyles button:hover,
.cmformstyles .btn:hover {
    background-color: var(--color-dark);
}


/* Form Specific */

.cmformstyles .form-wrapper {
    background-color: var(--color-white);
    padding: 0px;
}

.cmformstyles .form-wrapper * {
    color: var(--color-dark);
}

.cmformstyles .form-wrapper form {
    margin-bottom: 0 !important;
}

.cmformstyles .form-wrapper h1 {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
}

.cmformstyles .form-wrapper label {
    font-weight: normal !important;
}

.cmformstyles .form-wrapper input,
.cmformstyles .form-wrapper select {
    margin: 0;
    width: 100%;
    outline: none;
    display: block;
    padding: 8px 6px;
    border-radius: 0px !important;
    margin-bottom: 10px !important;
    background-color: transparent !important;
    border: solid 1px var(--color-medium) !important;
}

.form-wrapper div {
    position: relative;
}

.cmformstyles .form-wrapper input[type="checkbox"],
.cmformstyles .form-wrapper input[type="checkbox"] + label {
    width: auto;
}
.cmformstyles .form-wrapper input[type="checkbox"] {
    display: none !important;
}
.cmformstyles .form-wrapper input[type="checkbox"] + label {
    /* margin-left: 5px; */

    padding-left: 1.9rem;
    /* left: 1.5rem; */
}
.cmformstyles .form-wrapper input[type="checkbox"] + label::before { /* Box */
    position: absolute;
    left: 0px;
    display: block;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: var(--color-medium) solid 1px;

    top: 0;
	width: 1.5rem;
	height: 1.5rem;
}
.cmformstyles .form-wrapper input[type="checkbox"] + label::after { /* Check sign */
    position: absolute;
    left: 0px;
    display: block;
    content: "";
    background: no-repeat 50%/50% 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");

	top: 0;
	width: 1.5rem;
	height: 1.5rem;
}
.cmformstyles .form-wrapper input[type="checkbox"]:checked + label::before { /* Checked */
    border-color: var(--color-highlight);
	background-color: var(--color-highlight);
}



/* .cmformstyles .btn, */
.cmformstyles .form-wrapper button {
    color: var(--color-white);
    margin-top: var(--space-small);
}
