.contacts_module {
    clear: both;
    padding: 10px 0px;
}

.contacts_module #contacts_map {
    width: 100%;
    height: 100%;
    max-width: 439px;
    max-height: 213px;
    display: block;
    padding: 5px;
}

.contacts_module .contacts {
    clear: both;
    padding-top: 30px;
}

.contacts_module .contacts .col{
    padding-top: 30px;
}

.contacts_module .contact_box {
    padding: 10px 0px;
}

.contacts_module .contact_box.retail {
    padding-bottom: 20px;
}

.contacts_module .contact_box .inner_box {
    width: 100%;
}

.contacts_module .contact_box p{
    padding: 0px;
    line-height: 18px;
}

.contacts_module .contact_box p.name{
    font-weight: bold;
}

.contacts_module .contact_box p.type{
    display: none;
}

.contacts_module .contact_box .description p{
    font-size: 10px;
}

.contacts_module .contact_box a{
    font-size: 12px;
    font-weight: normal;
    display: block;
    line-height: 20px;
}

.contacts_module .contact_box .contact_to_qrcode{
    padding: 10px 0px;
}

.contacts_module .active_contact {
    border: 1px solid #5cd3ff;
    padding: 10px 15px;
    border-radius: 10px;    
    display: none;
}

.contacts_module .active_contact_arrow {
    background-image: url(../img/arrow.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    display: block;
    width: 10px;
    height: 5px;
    position: relative;
    left: 103px;
    display: none;
}

/* Tablets */
@media only screen and (min-width: 585px) {
    .contacts_module .contact_box {
        display: grid;
        grid-template-columns: 3fr 1fr;
        grid-gap: 10px;
        justify-items: end;
    }

    .contacts_module .contact_box .contact_to_qrcode{
        padding: 0px;
    }
}

/* Desktop large */
@media only screen and (min-width: 1024px) {
    .contacts_module .contact_box.retail {
        padding-bottom: 50px;
        width: 48%;
        margin-right: 2%;
    }
}