button {
    border: none;
}
button:focus {
    outline: none;
}

.btn-secondary {
    border: none;
    margin-bottom: 1rem !important;
    margin-right: 1rem;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active:focus {
    box-shadow: none;
}

.btn_site {
    text-decoration: none;
    font-family: "Century Gothic", LevenimMT, sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    min-width: 200px;
    margin-bottom: 5px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    letter-spacing: 1px;
}

.btn_gray_and_black {
    background: #eeeeee;
    color: black !important;
}
.btn_turquoise_and_transparent {
    background: #009881;
    color: white !important;
}
.btn_yellow_and_dark_grey {
    background: #ffdc2e;
    color: black !important;
}
.btn:hover, a:not([href]):not([tabindex]).btn:hover {
    background: #3b3b3c;
    color: #ffffff !important;
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.btn_hover_yellow_and_dark_grey:hover, a:not([href]):not([tabindex]).btn_hover_yellow_and_dark_grey:hover {
    background: #ffdc2e;
    color: black !important;
}
.btn_hover_turquoise_and_white:hover, a:not([href]):not([tabindex]).btn_hover_turquoise_and_white:hover {
    background: #009881;
    color: white !important;
}
.btn_hover_gray_and_black:hover, a:not([href]):not([tabindex]).btn_hover_gray_and_black:hover {
    background: #eeeeee;
    color: black !important;
}

.btn:disabled {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    cursor: default;
}

.btn_smaller {
    padding: 5px 10px;
    min-width: 150px;
}
.btn_smallest {
    padding: 5px;
    min-width: 0;
}
.btn_small {
    font-size: 14px;
    padding: 5px 10px;
}
.btn_medium {
    font-size: 15px;
    padding: 7px 10px;
}
.btn_large {
    font-size: 17px;
    padding: 10px 15px;
}
.btn_nav_yellow{
    line-height:normal;
    padding-bottom: 10px;
    padding-top: 10px;
}
@media screen and (max-width: 992px){
    .btn_small {
        font-size: 11px;
        padding: 5px 10px;
    }
    .btn_medium {
        font-size: 12px;
        padding: 7px 10px;
    }
    .btn_large {
        font-size: 13px;
        padding: 10px 15px;
    }
}
.btn_xlarge {
    font-size: 20px;
    padding: 17px 10px;
    min-width: 300px;
}
.btn_full_width {
    width: 100%;
}
.btn_wrap_width {
    width: auto;
}
.btn_no_min {
    min-width: unset;
}

.btn-secondary:not(:disabled):not(.disabled).active {
    color: white !important;
}
