/* FOTO-TOURS: social share
-------------------------------------------------- */

.ft-share {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 22px 0;
    padding: 12px 14px;

    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

.ft-share-title {
    flex: 0 0 auto;

    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    color: #777;

    text-transform: uppercase;
    letter-spacing: .04em;
}

.ft-share-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.ft-share-button {
    box-sizing: border-box;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    height: 34px;
    padding: 0 11px;

    border: 0;
    border-radius: 7px;

    font-family: inherit;
    font-size: 13px;
    line-height: 34px;
    font-weight: 500;

    text-decoration: none !important;

    cursor: pointer;

    transition:
        transform .15s ease,
        box-shadow .15s ease,
        opacity .15s ease;
}

.ft-share-button:hover,
.ft-share-button:focus {
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 7px rgba(0,0,0,.12);
}

.ft-share-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.ft-share-vk {
    background: #2787f5;
    color: #fff !important;
}

.ft-share-ok {
    background: #ee8208;
    color: #fff !important;
}

.ft-share-tg {
    background: #229ed9;
    color: #fff !important;
}

.ft-share-plane {
    display: inline-flex;
    align-items: center;
}

.ft-share-pin {
    background: #e60023;
    color: #fff !important;
}

.ft-share-icon-p {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: bold;
}

.ft-share-copy {
    background: #fff;
    color: #555 !important;
    border: 1px solid #ddd;
}

.ft-share-copy:hover {
    background: #fafafa;
}

.ft-share-icon {
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 600px) {

    .ft-share {
        display: block;
        padding: 12px;
    }

    .ft-share-title {
        display: block;
        margin: 0 0 10px;
    }

    .ft-share-buttons {
        gap: 8px;
    }

    .ft-share-button {
        width: 40px;
        height: 40px;

        padding: 0;
        border-radius: 50%;
    }

    .ft-share-name {
        display: none;
    }

    .ft-share-icon {
        font-size: 12px;
    }

    .ft-share-icon-p {
        font-size: 20px;
    }
}
