/********************************************************
 * Toolbar
 ********************************************************/
.a365-mgr {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    background-color: #F3F3F3;
}

.m-auc-sale + .a365-mgr {
    margin-top: -1.5rem;
}

.a365-mgr--sale {

}

.a365-mgr--lot {

}

.m-caslot__body .a365-mgr--lot {
    margin-bottom: 0;
}

.a365-mgr__admin-link {
    grid-column-start: 1;
    display: flex;
}

.a365-mgr__icon {
    width: 30px;
    height: auto;
}

.a365-mgr__container {
    grid-column-start: 2;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 0.5rem;
}

.a365-mgr__update {
    flex-shrink: 0;
}

.a365-mgr__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    padding: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
    border-radius: 5px;
    background-color: #E3E3E3;
    color: #444;
    transition: all 300ms ease-in-out;
}

.a365-mgr__btn:hover {
    background-color: #D6D6D6;
    color: #666;
    cursor: pointer;
}

a365-mgr__btn-icon {
    fill: currentColor;
    height: 20px;
    width: 20px;
}

.a365-mgr__tools {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
    margin: 0;
}

.a365-mgr__tools > .a365-mgr__btn {
    margin-left: 0.25rem;
}

/********************************************************
 * Loading Overlay
 ********************************************************/
.a365-overlay {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.a365-overlay__content {
    display: flex;
    flex-direction: row;
    justify-items: center;
    flex-wrap: wrap;
    width: 30vw;
    padding: 3rem;
    border-radius: 5px;
    background-color: white;
}

.a365-overlay__heading {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: #333;
}

.a365-overlay__loading {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    padding: 5px 0;
}

.a365-overlay__loading-icon {
    display: block;
    width: 100px;
    height: 100px;
    animation: a365-loading-spin 2s linear infinite;
}

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