/* ======================================================
   Product Online Stores
====================================================== */

.lg-pos {
    margin-top: 30px;
}

.lg-pos__title {
    position: relative;
    display: inline-block;

    font-size: 20px;
    font-weight: 600;

    margin: 0 0 30px;
    padding-bottom: 10px;
}

.lg-pos__title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 32px;
    height: 1px;

    background: #000;
}

.lg-pos__table {
    border: 1px solid #e5e5e5;
    background: #fff;
}

.lg-pos__row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 72px;
    border-bottom: 1px solid #e5e5e5;
    
    background: #fafafa;
}

.lg-pos__row:last-child {
    border-bottom: 0;
}

.lg-pos__store {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 0 24px;

    background: #f7f7f7;
}

.lg-pos__action {
    width: 220px;
}

.lg-pos__logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.lg-pos__name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.lg-pos__button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 72px;

    background: #6fb23a;
    color: #fff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    transition: background .2s ease;
}

.lg-pos__button:hover {
    background: #5d992f;
    color: #fff;
}

@media (max-width: 767px) {

    .lg-pos__store,
    .lg-pos__action {
        flex: 1;
    }

}