.contact__container {
    display: none;
    position: fixed;
    border-radius: 16px;
    background: var(--white--white100, #FFF);
    z-index: 10001;
    flex-direction: column;
    width: 100%;
    max-width: 460px;
    padding: 16px 24px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact__header {
    position: relative;
    display: flex;
    flex-direction: column;
}
.x-close {
    cursor:pointer;
    margin-left:auto;
    margin-right:0;
}
.x-close svg {
    width: 16px;
    height: 16px;
}
.contact__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}
.contact__body a{
    color: var(--black--black10, #222324);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 31px; /* 129.167% */
}
.contact__label {
    align-self: stretch;
    color: var(--black--black10, #222324);
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    font-style: normal;
}
.contact__data {
    display:flex;
    flex-direction:column;
    gap: 16px;
}
.contact__seller-data {
    display: flex;
    gap: 8px;
}
.contact__seller-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact__seller-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact__store-data {

}
.contact__seller-name {
}
.contact__seller-name span{
    color: var(--black--black10, #222324);
    font-size: 14px;
    line-height: 120%; /* 16.8px */
}
.contact__name {
    display:flex;
    align-items:center;
    margin-top:0;
    margin-bottom:7px;
    column-gap:5px;
}
.contact__no,
.contact__member-from {
    color: var(--black--black40, #666);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
}
.contact__no {
    display:flex;
    align-items:center;
    gap:8px;
}
.contact__stores-name {
    display:flex;
    align-items:center;
    gap:8px;
}
.contact__stores-name a{
    color: var(--azure--azure40, #0056B6);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 16.8px */
    transition: .2s color ease;
}
.contact__stores-name a:hover{
    color: var(--azure--azure50, #006BE2);
}

@media only screen and (max-width: 768px) {

    .contact__container {
        max-width: 100%;
        width: 100%;
        padding: 16px 24px 40px;
        border-radius: 16px 16px 0 0;

        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        margin: 0;
    }

    .x-close svg {
        width: 24px;
        height: 24px;
    }

    .contact__body a {
        font-size: 24px;
        line-height: 31px; /* 129.167% */
    }

    .contact__label {
        font-size: 16px;
    }

    .contact__seller-data {
        gap: 6px;
    }

    .contact__seller-name span {
        font-size: 13px;
    }
}
