.mobile-modal-overlay {
    opacity: 0;
    visibility: hidden;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 80;
    transition: 0.4s ease;
}

.mobile-modal{}
.mobile-modal__container {
    opacity: 0;
    visibility: hidden;

    display: flex;
    flex-direction: column;
    padding: 100px 16px 62px 16px;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    color: #ffffff;
    transform: translate(-50%, -155%);
    background-color: #2B272F;
    transition: 0.4s ease;
    position: absolute;
    top: 56%;
    left: 50%;
    z-index: 100;
}

#mobile-modal-icon-close{
    position: absolute;
    display: flex;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    top: 107px;
    left: 31px;
    background: url("/local/templates/dtrd/assets/images/x-close.svg") center no-repeat;
}
.mobile-modal__head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-head__logo{
    width: 81px;
    height: 30px;
    margin-bottom: 30px;
}
.mobile-head__logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mobile-head__tel{
    color: #F9252F !important;
    font-size: 16px;
    margin-bottom: 16px;
}
.mobile-head__tel::before{
    content: url("/local/templates/dtrd/assets/images/phone.svg");
    position: relative;
    top: 8px;
    right: 6px;
    width: 18px;
    height: 18px;
}

.mobile-modal__body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.mobile-body-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    margin-top: 16px;
    background: #F5F5F5;
    border-radius: 8px;
    user-select: none;
}

.mobile-body-item__arrow{
    background: url("/local/templates/dtrd/assets/images/arrow-narrow-right.svg") center no-repeat;
    width: 22px;
    height: 18px;
}
.mob-item-prod{
    display: inline-block;
    background: url("/local/templates/dtrd/assets/images/prod.svg") center no-repeat;
    width: 18px;
    height: 18px;
    margin-right: 13px;
    top: 3px;
    position: relative;
}
.mob-item-user{
    display: inline-block;
    background: url("/local/templates/dtrd/assets/images/user-01.svg") center no-repeat;
    width: 18px;
    height: 20px;
    margin-right: 13px;
    top: 3px;
    position: relative;
}

.mob-overlay-active{
    opacity: 1;
    visibility: visible;
}
.mob-modal-active{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}
