.contacts-card {
    width: 336px;
    height: 420px;
    /* position: absolute; */
    left: 3162px;
}

.contacts-row {
    display: flex;
    /* justify-content: space-between; */
    align-items: start;
    margin-top: 6px;
}

.contacts-row > div {
    color: #FFF;
    font-family: 'DeusEx', sans-serif;
    font-size: 10px;
}
.contacts-row > div:first-child {
    margin-left: 33px;
    margin-right: 10px;
}

.contacts-card__body {
    opacity: 0;
    animation: opacity-animation-zero-to-one 1s ease-in-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;


    .contacts-card__schedule {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        width: 290px;
        height: 200px;
        background-image: url(../../contacts/schedule-bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;

        .contacts-card__schedule__inner {
            padding: 36px 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            width: 100%;
        }

        .contacts-card__schedule_row {
            height: 40px;
            font-family: 'DeusEx';
            font-style: normal;
            font-weight: 400;
            font-size: 12px;
            line-height: 13px;
            color: #CACACA;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding-left: 12px;
            padding-top: 12px;
            position: relative;

            &:first-child {
                padding-top: 0;
            }

            .contacts-card__schedule_row__mini_icon {
                position: absolute;
                width: 12px;
                top: 0;
                left: 0;
            }

            .contacts-card__schedule_row__icon {
                width: 27px;
                height: 27px;
            }

            .contacts-card__schedule_row__title {
                width: 130px;
                font-size: 9.5px;
            }

            .contacts-card__schedule_hours {
                background-image: url(../../contacts/hours-bg.png);
                background-size: 100% 100%;
                padding: 3px 6px;
                width: 73px;
                letter-spacing: 5%;

                sup {
                    font-size: 9px;
                }
            }
        }
    }
}

.contacts-card__address {
    font-family: 'DeusEx';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 13px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #CACACA;
}

.contacts-card__phone > a {
    font-family: 'DeusEx';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    /* identical to box height */
    display: flex;
    align-items: center;
    margin-top: 30px;
    color: #E0C522;
    text-decoration: none;
}

.contacts-card__icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}