/* Catalog banner: collapse / expand */

#catalog {
    position: relative;
}

.gopro-banners.owl-gopro-banners {
    position: relative !important;
}

/* Крестик */

.pont-banner-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;

    width: 40px;
    height: 40px;
    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, .95);
    color: #333;

    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 38px;

    text-align: center;
    cursor: pointer;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);

    transition:
        background .2s ease,
        transform .2s ease;
}

.pont-banner-close:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Свёрнутая панель */

.pont-banner-collapsed {
    display: none;
    position: absolute;
    z-index: 20;

    height: 38px;
    padding: 0 15px;

    box-sizing: border-box;

    border: 1px solid #ddd;
    border-radius: 2px;

    background: #f7f7f7;
    color: #444;

    font-size: 13px;
    line-height: 36px;
    text-align: center;

    cursor: pointer;

    transition: background .2s ease;
}

.pont-banner-collapsed:hover {
    background: #eee;
}

.pont-banner-collapsed span {
    display: inline-block;
    margin-left: 7px;
    font-size: 10px;
}

/* Mobile */

@media (max-width: 767px) {

    .pont-banner-collapsed {
        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        float: none !important;

        width: 100% !important;
        height: 40px;

        margin: 10px 0 15px;
        padding: 0 15px;

        box-sizing: border-box;

        border: 1px solid #ddd;
        border-radius: 2px;

        background: #f7f7f7;

        font-size: 13px;
        line-height: 38px;
        text-align: center;
    }

    .pont-banner-close {
        top: 10px;
        right: 10px;

        width: 36px;
        height: 36px;

        font-size: 26px;
        line-height: 34px;
    }
}
