/* =========================================
   Строй Коттедж
   Кнопка визуализатора кровли Grand Line
   ========================================= */

.stroykt-roof-viz-button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 82px;

    margin: 18px 0;
    padding: 13px 18px;

    box-sizing: border-box;

    background: #fff;

    border: 1px solid #bd1f3c;
    border-radius: 9px;

    text-decoration: none !important;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.03);

    transition:
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* Hover для компьютера */

.stroykt-roof-viz-button:hover {
    background: #fffafb;

    border-color: #a71935;

    box-shadow:
        0 5px 18px rgba(130, 20, 45, 0.10);

    text-decoration: none !important;
}


/* Иконка дома */

.stroykt-roof-viz-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    margin-right: 16px;

    color: #b51e3a;
}

.stroykt-roof-viz-button__icon svg {
    display: block;

    width: 42px;
    height: 42px;
}


/* Текст */

.stroykt-roof-viz-button__text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;

    min-width: 0;
}


/* Заголовок */

.stroykt-roof-viz-button__text strong {
    display: block;

    margin: 0 0 4px;

    color: #a71935;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}


/* Подзаголовок */

.stroykt-roof-viz-button__text small {
    display: block;

    color: #555;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}


/* Стрелка справа */

.stroykt-roof-viz-button__arrow {
    display: block;

    flex: 0 0 auto;

    margin-left: 15px;

    color: #bd1f3c;

    font-size: 31px;
    font-weight: 300;
    line-height: 1;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .stroykt-roof-viz-button {
        min-height: 76px;

        margin: 14px 0;
        padding: 10px 12px;

        border-radius: 8px;
    }


    .stroykt-roof-viz-button__icon {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;

        margin-right: 10px;
    }


    .stroykt-roof-viz-button__icon svg {
        width: 35px;
        height: 35px;
    }


    .stroykt-roof-viz-button__text strong {
        margin-bottom: 3px;

        font-size: 16px;
        line-height: 1.2;
    }


    .stroykt-roof-viz-button__text small {
        font-size: 12px;
        line-height: 1.3;
    }


    .stroykt-roof-viz-button__arrow {
        margin-left: 8px;

        font-size: 27px;
    }
}


/* Очень узкие телефоны */

@media (max-width: 380px) {

    .stroykt-roof-viz-button {
        padding-left: 9px;
        padding-right: 9px;
    }


    .stroykt-roof-viz-button__icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;

        margin-right: 8px;
    }


    .stroykt-roof-viz-button__icon svg {
        width: 31px;
        height: 31px;
    }


    .stroykt-roof-viz-button__text strong {
        font-size: 15px;
    }


    .stroykt-roof-viz-button__text small {
        font-size: 11px;
    }


    .stroykt-roof-viz-button__arrow {
        margin-left: 5px;

        font-size: 24px;
    }
}