/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* Loader */
.absg-loader {
    margin: 30px auto;
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #96c31e;
    --_m:
        conic-gradient(#0000 10%, #000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}

/* Map List */
.mapp-list .mapp-info .mapp-template{
    flex-wrap: wrap;
}

.mapp-list .mapp-info .mapp-template .mapp-icon{
    margin: 0 5px 0 0;
}

.mapp-list .mapp-info .mapp-template .mapp-list-item-content{
    width: calc(100% - 32px - 5px);
    display: flex;
    flex-direction: column;
}

.mapp-list .mapp-info .mapp-template .mapp-list-item-content .address{
    font-size: small;
    color: gray;
    font-style: italic;
}

/* Mapp Item */
.absg-partner__list-item .mapp-modal-logo{
    text-align: center;
}

.absg-partner__list-item .mapp-modal-logo img{
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    margin: 0 auto 1rem;
}