/* buttons
================================================== */
.btn-group .btn-dropdown {
    display: inline-block;
}

.btn-group {
    display: table;
    width: 100%;
}

.btn-group.btn-align-left {
    text-align: left;
}

.btn-group.btn-align-left .btn {
    margin-right: 10px;
}

.btn-group.btn-align-right {
    text-align: right;
}

.btn-group.btn-align-right .btn {
    margin-left: 10px;
}

.btn.btn-icon-left i {
    margin-right: 10px;
}

.btn.btn-icon-right i {
    margin-left: 10px;
}

.btn {
    border-radius: 2px;
    height: 40px;
    line-height: 35px;
    padding: 0 15px;
    display: inline-block;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-primary {
    background-color: #E64A19;
    border-color: #E64A19;
    color: #fff;
}

.btn-primary:focus,
.btn-primary:hover {
    opacity: .9;
    color: #fff;
    background-color: #E64A19;
    border-color: #E64A19;
}

.btn-outline {
    background-color: transparent;
    border-color: #E64A19;
    color: #4886ff;
}

.btn-outline:focus,
.btn-outline:hover {
    color: #fff;
    background-color: #E64A19;
}

.btn-default {
    background-color: #676767;
    border-color: #676767;
    color: #fff;
}

.btn-default:focus,
.btn-default:hover {
    color: #fff;
    background-color: #5a5d6d;
    border-color: #5a5d6d;
}

.btn-default:active {
    background-color: #545766;
}

.btn-success {
    background-color: #28D094;
    border-color: #28D094;
    color: #fff;
}

.btn-success:focus,
.btn-success:hover {
    color: #fff;
    background-color: #48D7A4;
}

.btn-success:active {
    background-color: #18BE77;
}

.btn-danger {
    background-color: #FF4961;
    border-color: #FF4961;
    color: #fff;
}

.btn-danger:focus,
.btn-danger:hover {
    color: #fff;
    background-color: #FF6479;
}

.btn-danger:active {
    background-color: #FF3145;
}


/* pagination
================================================== */
.pagination {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    font-size: 0;
    border-radius: 2px;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-item.active .page-link:hover,
.pagination .page-item.active .page-link {
    z-index: 1;
    color: #FFFFFF;
    background-color: #E64A19;
    border-color: #E64A19;
}

.pagination .page-item .page-link {
    display: block;
    line-height: 33px;
    height: 35px;
    padding: 0 15px;
    border: 1px solid #CACFE7;
    font-size: 14px;
    margin-left: -1px;
    color: #E64A19;
}

.pagination .page-item .page-link:hover {
    background-color: #ebedff;
}


/* alerts
================================================== */
.alert {
    position: relative;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #fff;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 10px;
}

.alert .close {
    font-size: 24px;
    opacity: 1;
    text-shadow: none;
    color: #fff;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.alert .close:hover,
.alert .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: .7;
    filter: alpha(opacity=70);
    text-shadow: none;
}

.alert strong {
    font-weight: bold;
}

.alert a {
    color: #fff;
}

.alert a:hover {
    text-decoration: underline;
}

.bg-primary {
    background-color: #666EE8;
}

.bg-default {
    background-color: #6B6F82;
}

.alert-success,
.bg-success {
    background-color: #28D094;
}

.alert-danger,
.bg-danger {
    background-color: #FF4961;
}

.alert-warning,
.bg-warning {
    background-color: #FF9149;
}

.alert-info,
.bg-info {
    background-color: #1E9FF2;
}

/* forms
================================================== */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

form select:focus,
form textarea:focus,
form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="email"]:focus {
    border: 0;
}

label {
    margin-bottom: 7px;
    display: inline-block;
    color: #464855;
}

.form-control {
    font-size: 14px;
    line-height: 1.25;
    height: 50px;
    padding: 15px 15px;
    display: block;
    width: 100%;
    border: 0;
    border-radius: 30px;
    font-weight: bold;
    background-color: #656565;
    color: #fff;
}

textarea.form-control {
    height: auto;
    resize: none;
}

::-webkit-input-placeholder { /* Edge */
    color: #fff;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

::placeholder {
    color: #fff;
}

.form-control-icon {
    position: relative;
}

.form-control-icon.has-icon-right .form-control {
    padding: 10px 35px 10px 15px;
}

.form-control-icon.has-icon-right i {
    position: absolute;
    top: 13px;
    right: 15px;
}

.form-control-icon.has-icon-left .form-control {
    padding: 10px 15px 10px 35px;
}

.form-control-icon.has-icon-left i {
    position: absolute;
    top: 13px;
    left: 15px;
}

.form-horizontal .form-group .label-control {
    text-align: right;
    line-height: 40px;
}

.form-group {
    margin-bottom: 15px;
}
