.fixed-call-button{
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    padding: 12px;
    cursor: pointer;
    color: #FFFFFF;
    background: var(--mrt-first-color);
    border-radius: 50px;
    border: none;
    cursor: pointer;
}

.call-btn::before, .fixed-call-button::before{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: url(../image/footer-telephone.png) no-repeat;
    background-size: 100%;
}

.fixed-call-button-hide{
    display: none;
}

.mobile-contact-block .contact-container{
    position: fixed; 
    bottom: -100%; 
    left: 0; 
    width: 100%; 
    background: white; 
    padding: 15px; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2); 
    border-top-left-radius: 23px;
    border-top-right-radius: 23px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    z-index: 1000; 
    transition: bottom 0.2s ease-in-out;
}

.contact-title{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-item {
    font-size: 14px;
    display: grid;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border-bottom: 1px solid #ddd; padding: 10px;
}

.contact-address{
    font-size: 10px;
}

.call-btn{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    padding: 5px 10px;
    background: var(--mrt-first-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
}

.close-btn{
    position: absolute;
    width: 24px;
    height: 24px;
    top: -30px;
    right: 10px;
    cursor: pointer;
    background: url(../image/close.svg) no-repeat;
    background-size: 50%;
    background-position: center center;
    background-color: white;
    border: none;
    border-radius: 100%;
}

.whts-btn{
    display: block;
    width: 14px;
    height: 14px;
    background: url('../image/whatsapp.svg') no-repeat;
    background-size: 100%;
}

.contact-item.locked{
    pointer-events: none;
    opacity: 0.5;
}

.contact-item.locked .whts-btn,
.contact-item.locked .btn__blick{
    display: none;
}

@media (min-width: 768px) {
    .fixed-call-button, .mobile-contact-block { display: none; }
}