#loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.125);
    text-align: center;
    display: flex;
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

#loading::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin: 30px auto 10px;
    border: 5px solid rgb(7, 89, 133, 1);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

footer {
    background-color: #403B39;
}

/* This stylesheet override some default Bootstrap's styling */

body {
	background-color: #FFFFFF;
}

.container {
  width: auto;
  padding: 0 15px;
}

.container-narrow {
	width: auto;
	max-width: 480px;
}

.btn-mk {
	color: #fff;
	background-color: #3776eb;
}

.table {
	background-color: #fff;
}

.table-status td {
	background-color: #fff8e8;
}

.text_asat {
	font-size: small;
	font-weight: normal;
	color: #838383;
}

.link-mk {
	color: #403B39;
	text-decoration: none;
}

.link-mk:hover {
	text-decoration: underline;
}

.card {
	margin-bottom: 0.5em;
}

.card-title {
	border-bottom: 1px dotted #E8E6E6;
	padding-bottom: 0.5em;
	font-size: 1rem;
}

footer {
	background-color: #403B39;
}

footer .list-group-item, footer .list-group-item:hover {
	background: none;
	border: none;
}

footer a.nav-link {
	color: #fff;
	padding-top: 0;
}

footer a.nav-link:hover {
	text-decoration: underline;
}
._record-box {
	background: #fff;
	width: 100%;
	margin-top: 30px;
	padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 0.2667rem #ececec;
    border: 1px solid #ececec;
}

._record-box .label {
    font-size: 19px;
    font-weight: bold;
	text-align: center;
}

._record-box .list-box {
    height: 190px;
    overflow: hidden;
}

._record-box .list {
    padding-top: 0.0133rem;
}

._record-box .list .item {
    margin-bottom: 0.2667rem;
    display: flex;
    align-items: center;
    padding: 0.2rem 0.3467rem;
    border-radius: 0.2667rem;
    background-color: #f4f4f4;
}

._record-box .list .item .record_logo {
    font-size: 0;
}

._record-box .list .item .record_logo img {
    width: 48px;
    height: 48px;
	border: 1px solid #ececec;
    border-radius: 50%;
}

._record-box .list .item .center {
    flex: 1;
    padding-left: 0.3733rem;
}

._record-box .list .item .center .h1 {
    font-size: 16px;
}

._record-box .list .item .center .h1 .name {
    font-size: 16px;
}

._record-box .list .item .center .h1 .number {
    color: #ff2f2f;
    margin-left: 0.1067rem;
}

._record-box .list .item .center .h2 {
    font-size: 15px;
    color: #999999;
}

.btn:hover {
    --bs-btn-hover-bg: #6F5552;
}