<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ==================================================
buttons 
================================================== */
.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    height: 48px;
    font-size: inherit;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0 20px;
    margin: auto;
    border: none;
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
input.btn[type=submit] {
    width: 100%;
}
/*  */
.btn.primary {
    color: #fff;
    background-color: var(--color-primary);
}
/*  */
.btn.secondary {
    color: #fff;
    background-color: var(--color-secondary);
}
.btn.secondary:hover {
    background-color: var(--color-secondary-dark);
}


a.primary {
    color: var(--color-primary);
}
a.secondary {
    color: var(--color-secondary);
}


/* ==================================================
inputs y selects
================================================== */
.form-group input::-webkit-input-placeholder {color: var(--color-grey);}/* Chrome/Opera/Safari */
.form-group input ::-moz-placeholder {color: var(--color-grey);}/* Firefox 19+ */
.form-group input :-ms-input-placeholder {color: var(--color-grey);}/* IE 10+ */
.form-group input :-moz-placeholder {color: var(--color-grey);}/* Firefox 18- */

.form-group input {
    display: block;
    width: 100%;
    height: 40px;
    color: var(--color-grey);
    font-size: inherit;
    line-height: 1;
    background-color: #fff;
    background-clip: padding-box;
    padding: 8px 15px;
    border: none;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.form-group textarea {
    width: 100%;
    font-size: inherit;
    border: none;
    border-radius: 0px;
}

/* selects */
.slc {
    position: relative;
    height: 40px;
	margin-bottom: 1rem;
	border: 1px solid var(--color-grey-light);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.slc::before {
    position: absolute;
    content: "\e900";
    top: 12px;
    right: 20px;
    z-index: 1;
    width: 0;
    height: 0;
    color: var(--color-primary);
    font-family: "icomoon";
    font-size: 12px;
    line-height: 1.2;
    pointer-events: none;
}
.slc select {
    position: relative;
    width: 100%;
    height: 100%;
    color: var(--color-secondary);
    text-indent: 0.01px;
    padding: 0px 25px 0 15px;
    background: #fff;
    border: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.slc select::-ms-expand {
    display: none;
}</pre></body></html>