.page[name='dealerHome'] > .header {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 64px;
}
.page[name='dealerHome'] > .header > .side > .button {
    padding: 20px;
}
.page[name='dealerHome'] > .header > .side > .button > img {
    display: block;
    height: 24px;
}
.page[name='dealerHome'] > .header > .side:last-child > .button > .new {
    position: absolute;
    width: 7px;
    height: 7px;
    top: 23px;
    border-radius: 50%;
}
.page[name='dealerHome'] > .header > .side:last-child > .button > .new.animation {
    animation: heartbeat 5s infinite;
    opacity: 0.5;
}
.page[name='dealerHome'] > .header > .side:last-child > .button:not(.active) > .new {
    display: none;
}
.page[name='dealerHome'] > .header > .center {
    display: table;
    height: 64px;
    text-align: center;
    width: calc(100% - 130px);
}
.page[name='dealerHome'] > .header > .center > div {
    display: table-cell;
    font-size: 18px;
    font-weight: 600;
    vertical-align: middle;
}
.page[name='dealerHome'] > .content {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}
.page[name='dealerHome'] > .content > .map {
    width: 100%;
    height: 100%;
    z-index: 469;
}
.page[name='dealerHome'] > .content > .map .balloon {
    position: absolute;
    max-width: 180px;
    font-family: 'poppins';
    font-size: 14px;
    line-height: 18px;
    padding: 6px 8px;
    border-radius: 12px;
    text-align: center;
}
.page[name='dealerHome'] > .content > .map .balloon > .user {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.page[name='dealerHome'] > .content > .map .balloon > .orderCount {
    position: absolute;
    top: -14px;
    border-radius: 12px;
    padding: 2px 7px;
    font-weight: 500;
    min-width: 22px;
    z-index: 1;
}
.page[name='dealerHome'] > .content > .button {
    position: absolute;
    bottom: 100px;
    width: 56px;
    height: 56px;
    right: 50%;
    border-radius: 50%;
    transform: translateX(50%);
    text-align: center;
    padding: 12px;
    transition: opacity 0.7s ease-in-out;
    z-index: 470;
}
.page[name='dealerHome'] > .content > .button > img {
    width: 32px;
}
.page[name='dealerHome'] > .content > .button.spin > img {
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear; 
}