/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/

.form-control,
input,
select {
    border-radius: 0;
    box-shadow: none;
    line-height: 18px;
    padding: 10px 16px;
    border-radius: 20px;
    border: 1px solid #eebc3e;
    background-color: rgba(255, 0, 0, 0.0);
    transition: all .3s ease;
    font-size: 1rem;
    &:focus {
        background-color: $background-light;
        border-color: $color-theme;
        box-shadow: none;
    }
    &.form-control-lg {
        line-height: 22px;
        padding: 18px 20px;
        font-size: 1.2rem;
    }
    &.form-control-sm {
        line-height: 14px;
        padding: 8px 12px;
        font-size: .8rem;
    }
    &.input-lg {
        resize: none;
        font-size: 1.2rem;
    }
    &.rounded {
        border-radius: 4px;
    }
}

.form-group label:not(.error) {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

a.btn:not([href]):not([tabindex]),
.btn {
    font-family: "Poppins", "Helvetica", "Arial", sans-serif;
    border-radius: 5px 5px 5px 5px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    outline: none;
    padding: 10px 18px;
    position: relative;
    text-transform: uppercase;
    border-radius: 20px;
    background-color: #eebc3e;
    border-color: #eebc3e;
    border-width: 1px;
    border-style: solid;
    color: #202020;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 6px;
    outline: none;
    line-height: 14px;
}

.btn:hover {
    background-color: white;
    color: black;
    border: none;
}

.column {
    float: left;
    width: 33.33%;
    display: none;
    /* Hide all elements by default */
}

.show {
    display: block;
}

.btn:not(:disabled):not(.disabled).active {
    background-color: #eebc3e;
    border-color: #eebc3e;
    color: #202020;
}