.btn-row,
.btn-group {
    position: relative;
}
.default-btn {
    position: relative;
    font-family: 'Prompt', sans-serif !important;
	display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.1px;
    text-align: center;
	max-width: 200px;
	padding: 10px 20px;
    background: #0b4da1 !important;
    color: #FFF !important;
	border-radius: 30px !important;
	border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.default-btn.max-w-150 { max-width: 150px; }
.default-btn.max-w-200 { max-width: 200px; }
.default-btn.max-w-250 { max-width: 250px; }
.default-btn.max-w-300 { max-width: 300px; }

.default-btn.shadow {
    -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, .3) !important;
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, .3) !important;
}
.default-btn.w-auto {
    width: auto !important;
    min-width: 0 !important;
}
.default-btn.w-full {
    max-width: 100% !important;
    width: 100% !important;
}

.default-btn[class*="-btn"][disabled],
.default-btn[class*="-btn"][disabled]:hover {
    background: #dadada !important;
    color: #FFF !important;
    cursor: no-drop !important;
}

.btn-group.inline {
    display: flex;
    flex-wrap: nowrap;
}
.btn-group.inline .default-btn+.default-btn {
    margin-left: 15px;

}
.btn-group.inline.center {
    justify-content: center;
}

/* primary btn */

.default-btn,
.default-btn.primary-btn {
    background: #0b4da1 !important;
    color: #FFF !important;
}
.default-btn:hover,
.default-btn.primary-btn:hover {
    background: #7f7f7f !important;
}

/* secondary btn */

.default-btn.secondary-btn {
    background: #00864c !important;
    color: #FFF !important;
}
.default-btn.secondary-btn:hover {
    background: #7f7f7f !important;
}

/* secondary btn */

.default-btn.gray-btn {
    background: #7f7f7f !important;
    color: #FFF !important;
}
.default-btn.gray-btn:hover {
    background: #4b4b4b !important;
}

/* cancel btn */

.default-btn.cancel-btn {
    background: #d93f33 !important;
    color: #FFF !important;
}
.default-btn:hover,
.default-btn.cancel-btn:hover {
    background: #7f7f7f !important;
}

/* facebook btn */

.default-btn.facebook-btn {
    background: #308bff !important;
    color: #FFF !important;
}
.default-btn.facebook-btn:hover {
    background: #7f7f7f !important;
}

/* line btn */

.default-btn.line-btn {
    background: #0db445 !important;
    color: #FFF !important;
}
.default-btn.line-btn:hover {
    background: #7f7f7f !important;
}