@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: menuFont;
    src: url("../fonts/bpg_nino_mtavruli_bold/bpg_nino_mtavruli_bold.ttf");
}

@font-face {
    font-family: titleFont;
    src: url("../fonts/bpg_nino_mtavruli_normal/bpg_nino_mtavruli_normal.ttf");
}

@font-face {
    font-family: 'bpg_sans_web';
    src: url('../fonts/bpg_sans_web/bpg_sans_web.eot');
    src: url('../fonts/bpg_sans_web/bpg_sans_web.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bpg_sans_web/bpg_sans_web.ttf') format('truetype');
}

@font-face {
    font-family: 'bpg_sans_web_caps';
    src: url('../fonts/bpg_sans_web/bpg_sans_web_caps.eot');
    src: url('../fonts/bpg_sans_web/bpg_sans_web_caps.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bpg_sans_web/bpg_sans_web_caps.ttf') format('truetype');
}

#header_images {
    height: 140px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    #header_images div {
        font-family: verdana, arial, sans-serif, helvetica, sans-serif;
        letter-spacing: 1pt;
        font-weight: bold;
        color: #fff;
        position: absolute;
        right: 15px;
        bottom: 5px;
    }

.top_menu {
    height: 56px;
    line-height: 56px;
    color: #333;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid #e3e3e3;
    padding: 0 15px 0 240px;
    position: relative;
}

    .top_menu a {
        color: #333;
    }

    .top_menu a:hover {
        color: #df2121;
        text-decoration: none;
    }

    .top_menu a:focus {
        color: #333;
        text-decoration: none;
    }

.logo {
    width: 220px;
    height: 58px;
    position: absolute;
    background: transparent url("../images/logo.png") no-repeat center center;
    background-size: contain;
    top: 5px;
    left: 15px;
    display: block;
}

#main_menu {
    border-bottom: 2px solid #dddddd;
    padding: 15px 0 5px 0;
    position: relative;
}

    #menu {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        #menu > li {
            display: table-cell;
            cursor: pointer;
            position: relative;
        }

            #menu > li > a {
                color: #000;
                text-decoration: none;
                border-right: 1px solid #dddddd;
                padding: 5px 15px;
                text-transform: uppercase;
                display: block;
                font-size: 17px;
            }

            .sub-menu {
                font: 13px titleFont;
                min-width: 100%;
                text-transform: capitalize;
                white-space: nowrap;
                background: #fff;
                list-style-type: none;
                display: none;
                position: absolute;
                padding: 0;
                margin: 0;
                z-index: 999999;
                box-shadow: 0 0 10px #888888;
                -webkit-box-shadow: 0 0 10px #888888;
                -moz-box-shadow: 0 0 10px #888888;
            }

                .sub-menu > li, .sub-menu1 > li {
                    border-bottom: 1px solid #dddddd;
                    padding: 5px 15px;
                    position: relative;
                }

                .sub-menu > li:hover, .sub-menu1 > li:hover {
                    background: #f9f9f9;
                }

                    .sub-menu > li > a, .sub-menu1 > li > a {
                        color: #000;
                        display: block;
                    }

                        .sub-menu > li > a:hover, .sub-menu1 li > a:hover {
                            text-decoration: none;
                        }

                        .sub-menu1 {
                            background: #fff;
                            list-style-type: none;
                            display: none;
                            position: absolute;
                            top: 0;
                            padding: 0;
                            margin: 0;
                            box-shadow: 0 0 10px #888888;
                            -webkit-box-shadow: 0 0 10px #888888;
                            -moz-box-shadow: 0 0 10px #888888;
                        }

                        #mobileMenu .sub-menu1 {
                            background: red;
                            position: absolute;
                            left: 150px;
                        }

    div.social-block {
        height: 100%;
        line-height: 46px;
        position: absolute;
        right: 15px;
        top: 0;
    }

    div.social-block a {
        border-radius: 6px;
    }

.header-search {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: stretch;
    height: 30px;
    width: 560px;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
}

    .header-search .header-search-input {
        flex: 1 1 auto;
        min-width: 0;
        height: 100%;
        margin: 0;
        padding: 0 10px;
        border: 0;
        outline: 0;
        background: transparent;
        font: 13px verdana, arial, sans-serif;
        color: #333;
        line-height: 30px;
        -webkit-appearance: none;
        appearance: none;
    }

    .header-search .header-search-input::-webkit-search-cancel-button {
        -webkit-appearance: none;
        appearance: none;
    }

    .header-search .header-search-input:focus {
        outline: 2px solid #df2121;
        outline-offset: -2px;
    }

    .header-search .header-search-button {
        flex: 0 0 auto;
        height: 100%;
        margin: 0;
        padding: 0 14px;
        border: 0;
        background: #c01818;
        color: #fff;
        cursor: pointer;
        line-height: 30px;
        transition: background 0.2s ease;
    }

    .header-search .header-search-button:hover,
    .header-search .header-search-button:focus {
        background: #a01010;
        outline: 0;
    }

    .header-search .header-search-button .glyphicon {
        top: 0;
    }

.lang-switch {
    position: absolute;
    top: 12px;
    left: calc(50% - 375px);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
    font-size: 13px;
    line-height: 1;
    color: #333;
    white-space: nowrap;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.lang-switch:hover,
.lang-switch:focus {
    border-color: #df2121;
    color: #df2121;
    text-decoration: none;
}

.lang-switch .fa-globe {
    font-size: 14px;
    color: #df2121;
}

.lang-switch .lang-switch-caret {
    font-size: 11px;
    color: #aaa;
}

.lang-switch:hover .lang-switch-caret,
.lang-switch:focus .lang-switch-caret {
    color: #df2121;
}

.top-actions {
    position: absolute;
    top: 0;
    right: 15px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #444;
    font-size: 11px;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
}

.top-action .fa {
    font-size: 17px;
    color: #555;
}

.top-action:hover,
.top-action:focus {
    color: #df2121;
    text-decoration: none;
}

.top-action:hover .fa,
.top-action:focus .fa {
    color: #df2121;
}

.header-cart-badge {
    color: #df2121;
    font-weight: bold;
}

    .header-cart-badge[hidden] {
        display: none;
    }

.header-cart-badge-mobile {
    margin-left: 8px;
    background: #c01818;
    color: #fff;
    display: inline-block;
    min-width: 18px;
    padding: 0 5px;
    border-radius: 9px;
    font-size: 11px;
    text-align: center;
}

.mobile-search-item {
    padding: 10px 15px !important;
    border-bottom: 1px solid #dddddd;
}

.header-search-mobile {
    position: static;
    transform: none;
    width: 100%;
    left: auto;
    top: auto;
}

        div.social-block a, div.social-block a:hover, div.social-block a:focus {
            color: #ffffff;
        }


/* responsive  */
#mobileMenuContainer, #mobileMenu, .mobile-sub-menu {
    display: none;
}

#mobileMenu > li {
    padding: 10px 15px;
}

.mobile-sub-menu {
    max-height: 300px;
    overflow-y: auto;
    margin: 10px 0 0 15px;
}

.mobile-sub-menu > a {
    color: #000;
    display: block;
    padding: 10px 0;
}

.mobile-sub-menu > a:hover {
    text-decoration: none;
}


/*@media screen and (max-width: 600px) {  */
@media screen and (max-width: 912px) {
/*@media screen and (max-width: 768px) {*/
    .top_menu {
        height: auto;
        padding: 0 15px 8px 15px;
    }

    .top_menu > span {
        display: none;
    }

    .top-actions,
    .lang-switch {
        display: none;
    }

    #menu {
        display: none;
    }

    #mobileMenuContainer {
        display: block;
    }

    .left-side {
        display: none;
    }

    .top_menu > .header-search {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        width: auto;
        margin: 24px 10px 0 10px;
        clear: both;
    }

    .top_menu > .header-cart {
        display: none;
    }

    .mobile-search-item {
        display: none;
    }
}