/*
 * Smart Resort
 * Универсальная кнопка "На главную"
 */

.sr-home-nav-host {
    position: relative;
    padding-right: 145px !important;
}

.sr-home-nav {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 100;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 13px;

    border: 1px solid currentColor;
    border-radius: 8px;

    background: transparent !important;

    text-decoration: none !important;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    white-space: nowrap;

    box-shadow: none !important;

    transition: background .15s ease;
}

.sr-home-nav:hover {
    background: rgba(255,255,255,.12) !important;
}

/* Телефон */
@media (max-width: 650px) {

    .sr-home-nav-host {
        padding-right: 105px !important;
    }

    .sr-home-nav {
        top: 10px;
        right: 10px;

        padding: 6px 9px;

        font-size: 11px;
    }
}

/* На печати кнопка не нужна */
@media print {

    .sr-home-nav {
        display: none !important;
    }
}
