﻿.tour-btn-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 4px;
    width: 100%;
    box-sizing: border-box;
}

    .tour-btn-row .btn-call,
    .tour-btn-row .btn-quote,
    .tour-btn-row .btn-viewmore {
        width: 42px;
        height: 42px;
        border: 2px solid #6d2f92;
        border-radius: 10px;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

        .tour-btn-row .btn-call:active,
        .tour-btn-row .btn-quote:active,
        .tour-btn-row .btn-viewmore:active {
            transform: translate(1px, 1px);
        }

    .tour-btn-row .btn-call {
        background: #fff;
        color: #6d2f92;
    }

    .tour-btn-row .btn-quote {
        background: #6d2f92;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        width: 90px;
    }

    .tour-btn-row .btn-viewmore {
        background: #fff;
        color: #6d2f92;
    }
