@charset "utf-8";
/* CSS Background Color */
.bg-primary {
    background-color: #004aad !important;
}
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #5271ff !important;
}
/* CSS Text Primary */
.text-primary {
    color: #004aad !important;
}
a.text-primary:hover, a.text-primary:focus {
    color: #5271ff !important;
}
/* CSS Hyperlink */
a {
    color: #004aad;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #5271ff;
    text-decoration: underline;
}
a:not([href]):not([class]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
/* CSS Header */
.fixed-header {
    position: fixed;
    z-index: 100;
    background: white;
    color: inherit;
	width:100%;
}
.fixed-navbar-header {
    position: fixed;
    top: 123px;
    z-index: 100;
    background: white;
    color: inherit;
	width:100%;
}
@media (min-width: 100px) {
    .fixed-navbar-header {
        top: 110px;
    }
}
@media (min-width: 576px) {
    .fixed-navbar-header {
        top: 110px;
    }
}
@media (min-width: 768px) {
    .fixed-navbar-header {
        top: 110px;
    }
}
@media (min-width: 992px) {
    .fixed-navbar-header {
        top: 120px;
    }
}
@media (min-width: 1200px) {
    .fixed-navbar-header {
        top: 123px;
    }
}
.fixed-space-header {
    color: inherit;
    width:100%;
    height: 188px;
}
/* CSS Navbar */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #004aad;
}
/* CSS Primary Button */
.btn-primary {
    color: #fff;
    background-color: #004aad;
    border-color: #004aad;
}
.btn-primary:hover {
    color: #fff;
    background-color: #5271ff;
    border-color: #5271ff;
}
.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #5271ff;
    border-color: #5271ff;
    box-shadow: 0 0 0 0.2rem rgba(183, 138, 135, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #004aad;
    border-color: #004aad;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #004aad;
    border-color: #004aad;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(183, 138, 135, 0.5);
}
/* CSS Paging */
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #004aad;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-link:hover {
    z-index: 2;
    color: #ba6a62;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}
.page-item:first-child .page-link {
    margin-left: 0;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #004aad;
    border-color: #004aad;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
/* CSS Custom Input */
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #004aad;
    background-color: #004aad;
}
.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #f8f0ef;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: white;
    border-color: white;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef;
}
/* CSS Lists */
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}
.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}
.list-group-item-action:active {
    color: #6F6F6F;
    background-color: #e9ecef;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
}
.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #004aad;
    border-color: #004aad;
}
.list-group-item + .list-group-item {
    border-top-width: 0;
}
.list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}
.list-group-horizontal {
    flex-direction: row;
}
.list-group-horizontal > .list-group-item.active {
    margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
}
/* CSS Dropdown */
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #004aad;
}
.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
}
/* CSS Table Responsive */
@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: inherit;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}
@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: inherit;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md > .table-bordered {
        border: 0;
    }
}
@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: inherit;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}
@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: inherit;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: inherit;
    -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
    border: 0;
}
/* CSS Data Table */
table.dataTable thead tr td,
table.dataTable tbody tr td,
table.dataTable tfoot tr td {
	vertical-align: middle;
}
/* CSS Data Table Sorting */
/*table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  	background: transparent;
}
table.dataTable thead .sorting_asc:after {
  	content: "\f0de";
  	float: right;
  	font-family: fontawesome;
}
table.dataTable thead .sorting_desc:after {
  	content: "\f0dd";
  	float: right;
  	font-family: fontawesome;
}
table.dataTable thead .sorting:after {
  	content: "\f0dc";
  	float: right;
  	font-family: fontawesome;
  	color: rgba(50, 50, 50, 0.5);
}*/
/* CSS Button Link */
.btn-link {
    font-weight: 400;
    color: #004aad;
    text-decoration: none;
}
.btn-link:hover {
    color: #5271ff;
    text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}
/* CSS Button Product */
.product-item .btn:hover {
    color: #004aad !important;
}
/* CSS Circle Buttons */
.btn-circle {
	width: 30px;
	height: 30px;
	padding: 6px 0;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	line-height: 1.428571429;
}
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 18px;
	line-height: 1.33;
}
.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	border-radius: 35px;
	font-size: 24px;
	line-height: 1.33;
}
/* CSS Back To Top */
.backtotop {
	width:50px;
	height:50px;
	position:fixed;
	bottom:98px;
	right:23px;
	z-index:99;
	cursor:pointer;
	border-radius:100px;
	transition:all .5s;
	background:#004aad url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z' fill='%23fff'/%3E%3C/svg%3E") no-repeat center center;
}
.backtotop:hover {
	background:#3d464d url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41,15.41L12,10.83L16.59,15.41L18,14L12,8L6,14L7.41,15.41Z' fill='%23fff'/%3E%3C/svg%3E") no-repeat center center;
}
/* CSS Text Color */
.text-red {
  	color: #dd4b39 !important;
}
.text-yellow {
  	color: #f39c12 !important;
}
.text-aqua {
  	color: #00c0ef !important;
}
.text-blue {
  	color: #0073b7 !important;
}
.text-black {
  	color: #111111 !important;
}
.text-light-blue {
  	color: #3c8dbc !important;
}
.text-green {
  	color: #00a65a !important;
}
.text-gray {
  	color: #d2d6de !important;
}
.text-navy {
  	color: #001f3f !important;
}
.text-teal {
  	color: #39cccc !important;
}
.text-olive {
  	color: #3d9970 !important;
}
.text-lime {
  	color: #01ff70 !important;
}
.text-orange {
  	color: #ff851b !important;
}
.text-fuchsia {
  	color: #f012be !important;
}
.text-purple {
  	color: #605ca8 !important;
}
.text-maroon {
  	color: #d81b60 !important;
}