/* Button Styling */

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn {
    border: none;
    border-radius: 4px;
}

.button-full {
    padding: 1.66em;
}

.btn-outline-primary {
    color: #e53f26 !important;
    background-color: transparent;
    background-image: none;
    border: 1px solid;
    border-color: #e53f26;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #e53f26 !important;
    border: 1px solid;
    border-color: #e53f26;
}

.btn:focus, .btn:hover {
    text-decoration: none;
}

.nav-link-button {
    padding-left: 15px;
    padding-right: 15px;
}

a.btn.menu-button {
    padding: 5px 34px;
}

a.btn.menu-text {
    padding: 7px 5px;
}

a.btn.menu-text.btn-link {
    color: lightgray;
}

.btn-outline-primary:hover {
    color: gray;
}

.btn-primary {
    color: #fff;
    background-color: #e53f26;
}

.btn-primary:hover {
    color: #fff;
    background-color: #c4331d;
    border-color: #c4331d;
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover,
.btn-outline-light:hover {
    color: #fff;
    background-color: #c4331d;
    border-color: #c4331d;
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover,
.btn-lightgray:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-lightgray {
    color: #343a40;
    background-color: #cecece;
    border-color: #cecece;
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border: 1px solid;
    border-color: #f8f9fa;
}

.btn-floating {
    width: 47px;
    height: 47px;
    position: relative;
    z-index: 1;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 3px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
}

.btn-floating.social-circle i {
    line-height: 41.2px;
}

.btn-floating.social-circle {
    width: 34px;
    height: 34px;
}

a.social-circle {
    padding-top: .15em;
    padding-bottom: .15em;
}

.btn-floating.btn-lg {
    padding: .7em .68em;
}

.btn-floating .medium-icon i {
    line-height: 61px;
}

.btn-floating.btn-lg.social-circle {
    width: 52px;
    height: 52px;
}