/*
 * Buttons
 */

.btn {
    position: relative;
    padding: 15px 25px;
    margin: 0;
    color: #262626;
    font-size: 16px;
    /*font-family: MetaWebPro, Verdana, sans-serif;*/
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    text-shadow: none;
    border-radius: 2.5em;
    border: 0;
    background: none #ffc100;
    box-shadow: none;
    /* Disables the default callout shown when you touch and hold a touch target  */
    -webkit-touch-callout: none;
    -ms-touch-action: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-sizing: border-box;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
    background: #ffdf7f;
    color: #262626;
    transition: none;
    box-shadow: none;
    outline: none;
}
/* remove :focus state on print button on thank-you page */
.column-wrap .column-full-page .btn:not([class*=btn-type-]):focus {
    background: none #ffc100;
}
.column-wrap .column-full-page .btn:not([class*=btn-type-]):focus:active,
.column-wrap .column-full-page .btn:not([class*=btn-type-]):focus.active {
    background: #ffdf7f;
}

.btn.btn-large {
    font-size: 18px;
    padding: 20px 30px;
}
.btn.btn-small {
    font-size: 14px;
    padding: 10px 20px;
}
.btn.btn-full-width {
    width: 100%;
}

/* Button type Button-Link */
.btn-link {
    background: none;
    color: #00c;
}
.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link.active {
    background: none;
    color: #262626;
}

/* Button type 2 */
.btn-type-2 {
    border: 2px solid #d8d8d8;
    padding: 17px 30px 17px 50px;
    background: transparent;
    color: #00c;
    text-align: left;
}
.btn-type-2:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    width: 20px;
    height: 20px;
}
.btn-type-2 small {
    display: block;
    font-size: 75%;
    font-weight: normal;
    color: #7f7f7f;
    line-height: 1;
}
.btn-type-2:hover,
.btn-type-2:focus,
.btn-type-2:active,
.btn-type-2.active {
    background: transparent;
    border-color: #262626;
    color: #262626;
}
.btn-type-2:hover small,
.btn-type-2:focus small,
.btn-type-2:active small,
.btn-type-2.active small {
    color: #262626;
}

.btn-type-2.btn-small {
    font-size: 12px;
    padding: 10px 23px 10px 43px;
}

/* Button type 3 */
.btn-type-3 {
    background: #262626;
    color: #ffc100;
}
.btn-type-3:hover,
.btn-type-3:focus,
.btn-type-3:active,
.btn-type-3.active {
    background: #3f3f3f;
    color: #ffc100;
}

/* Button type 4 */
.btn-type-4 {
    background: #fff;
    color: #262626;
}
.btn-type-4:hover,
.btn-type-4:focus,
.btn-type-4:active,
.btn-type-4.active {
    background: #ffdf7f;
    color: #262626;
}

/* Button type 5 */
.btn-type-5 {
    background:none;
    color:#fff;
    border:2px solid #fff;
}

.btn-type-5:hover,
.btn-type-5:focus,
.btn-type-5:active,
.btn-type-5.active {
    background: #fff;
    color: #000;
}