@import url('https://fonts.googleapis.com/css?family=Ruslan+Display');
@import url('https://fonts.googleapis.com/css?family=Vollkorn');

a {
    color: #000;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
    font-weigth:bold;
}

a:focus,
a:hover {
    color: #000;
}
.btn-xl {
    font-size: 19px;
    padding: 15px 45px
}
.btn {
    border-radius: 300px;

    letter-spacing: 2px;
    text-transform: uppercase
}

textarea {
    border: 2px solid #D1EBFA;
    padding: 6px 15px;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(2.25rem + 2px);
}

.form-control {
    border: 2px solid #f1daa4;
}

.custom-checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 20px;
}

.custom-checkbox span {
    display: block;
    margin-left: 20px;
    padding-left: 7px;
    line-height: 20px;
    text-align: left;
}

.custom-checkbox span::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    background: #fdfdfd;
    border: 1px solid #e4e5e7;
@include vendorize(box-shadow, inset 2px 2px 0px 0px rgba(0, 0, 0, 0.1));
}

.custom-checkbox span::after {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    font-size: 18px;
    color: #0087b7;
    line-height: 20px;
    text-align: center;
}

.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    z-index: -1;
    position: absolute;
}

.custom-checkbox input[type="checkbox"]:checked + span::after {
    font-family: "FontAwesome";
    content: "x";
    background:#d44803;
    color:#fff;
}