﻿
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');

html,
body {
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12pt;
    color: black;
    
    position: relative;
}

a {
    color: #ff6a00;
    text-decoration: none;
}

    a:hover {
        color: #f99146;
        text-decoration: none;
    }

    a.darker {
        color: #3d4d6a;
        text-decoration: none;
    }

        a.darker:hover {
            color: #73c5eb;
            text-decoration: none;
        }

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Condensed", sans-serif;
}

.loader-overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1000;
}

    .loader-overlay:before {
        content: '';
        background: gray;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.3;
    }
.loading {
    position: absolute;
    top: 49%;
    left: 50%;
}

    .loading i {
        color: #ff6600; /*transform:scale(2);*/
        font-size: 50px !important;
        animation-duration: 2s;
    }

.text-shadow {
    text-shadow: 3px 0px 7px rgba(81,67,21,0.8), -3px 0px 7px rgba(81,67,21,0.8), 0px 4px 7px rgba(81,67,21,0.8);
}

section.quote-out { margin:0; border:solid 1px #e7e7e7; display:block; } 
h3.quote, h3.quote_about { color:gray; padding:20px; text-align:center; margin-top:20px;}
h3.quote span, h3.quote_about span { font-size:11pt; letter-spacing:4px; }
h3.quote_about { margin-top:20px; }
.separator {margin-bottom:0px; min-height:20px; background:url("/images/sep-1.jpg") no-repeat center center; opacity:0.4;}
.inner-page { margin-top:99px !important;}
@media (max-width: 768px) { .separator  { background-size:80%; } .inner-page { margin-top:92px !important;}}

.form-row { margin-top:10px; padding:4px; }

.form-control {
    padding: 7px 10px;
    font-weight: bold !important;
}
.form-control:focus, .form-select:focus, .form-check-input:focus {
    border-color: #FF0000;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 102, 0, 0.6);
    
}

.form-check-input:checked {
    background-color: #ff6600 !important;
    border: 0;
}
.form-check-label { cursor:pointer; }

.disabled {
    pointer-events: none;
    color: silver;
}
.text-ribo { color:#ff6600; }
/*input[type='radio'] {
    accent-color: #ff6600;
    border:solid 1px red;
}
*/
/*input[type='radio']:after {
    width: 18px;
    height: 18px;
    border-radius: 18px;
    top: 2px;
    left: -2px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

input[type='radio']:checked:after {
    width: 18px;
    height: 18px;
    border-radius: 18px;
    top: 2px;
    left: -2px;
    position: relative;
    background-color: #ff6600;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}
*/
.radio-item {
    display: inline-block;
    position: relative;
    padding: 0 6px;
    margin: 10px 0 0;
}

    .radio-item input[type='radio'] {
        display: none;
    }

    .radio-item label {
        color: #666;
        font-weight: normal;
    }

        .radio-item label:before {
            content: " ";
            display: inline-block;
            position: relative;
            top: 3px;
            margin: 0 5px 0 0;
            width: 20px;
            height: 20px;
            border-radius: 11px;
            border: 2px solid #ff6600;
            background-color: transparent;
        }

    .radio-item input[type=radio]:checked + label:after {
        border-radius: 11px;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 7px;
        left: 10px;
        content: " ";
        display: block;
        background: #ff6600;
    }
.paylbl { border:solid 0px red;}

.section-title {
    text-align: center;
    padding-bottom: 10px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        position: relative;
        margin-bottom: 10px;
        color: #2f4d5a;
        z-index: 2;
    }
    .section-title h2 i {
        font-size: 32px;
        position: relative;
        top: 3px;
        color: #ff6a00;
        opacity:0.8;
    }
    .section-title h2 .counter {
        font-size: 24px;
        position: relative;
        top: -1px;
        color: #999;
    }

        .section-title h2::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 122px;
            height: 66px;
            background: url(/images/section-title.png) no-repeat;
            opacity:0.7;
            z-index: -1;
        }

    .section-title p {
        margin-bottom: 0;
    }

.cat-desc { padding:15px; background-color:#eee; border-radius:15px; }
.page-filter { margin-top:20px; border-bottom:solid 0px #e7e7e7; position:relative; }
.page-order { position:relative; }
.page-order .po-lab { position:absolute; left:-40px; top:8px; }

.posrel-1 { position:relative; top:1px; }
.posrel-2 { position:relative; top:2px; }
.posrel-3 { position:relative; top:3px; }
.posrel-4 { position:relative; top:4px; }
.posrel-5 { position:relative; top:5px; }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    /*    visibility: visible;
    opacity: 0.8;
*/
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 10996;
    background: #f8893a;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #ff6a00;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.pre-header {
    background-color: #eee;
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    z-index: 1000;
}
.top-menu-linkz { display:flex; flex-direction: row; justify-content: right; padding-bottom: 5px; flex-wrap: nowrap;}
.top-menu-item { display:inline-block; margin-left:5px; font-size:11pt; position:relative; margin: 0 5px; }
.top-menu-item a { color:#333; }
.top-menu-item i { font-size:18pt; color:gray; position:relative; top:3px; }
.top-menu-item select { padding:2px 5px; border:solid 1px silver; margin-left :3px; }

.top-menu-item:hover { color:#ff6600; }
.top-menu-item:hover a { color:#ff6600; }
.top-menu-item:hover a i { color:#ff6600; }
.top-menu-item:hover select { color:#ff6600; }

.top-menu-item a.active i/*, .top-menu-item a.active span*/ { color:#ff6600; }
.cbadge { position:absolute; right:-7px; top:2px; font-size:8px; padding:1px; background-color:red; color:#fff; width:12px; height:12px; text-align:center; border-radius:50%; }
.tmi-curr { padding-top: 5px; padding-left: 5px; }
.tmi-curr span { font-size: 10pt; }
.tmi-curr select { border:solid 1px #f3b68b; border-radius:4px; }

@media (max-width: 500px) {
    .tuname  { display:none; }
    .top-menu-linkz { justify-content:space-between; }
}



#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
    border: solid 0px blue;
}
#header.fixed-top {
    top: 37px;
}

    #header.header-scrolled, #header.header-inner-pages {
        background: rgba(255, 106, 0, 0.9);
    }

    #header .logo {
        font-size: 20px;
        margin: 0;
        padding: 0 5px 5px;
        border-radius: 5px;
/*        line-height: 1;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
*/
        background-color:#fff;
    }

        #header .logo a {
            color: #fff;
        }

        #header .logo img {
            max-height: 30px;
            border:solid 1px #f1f1f1;
            margin-top:4px;
            
        }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0; position:relative; top:3px;
    border: solid 0px blue;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        
    }

    .navbar li {
        position: relative;
    }

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 7px 17px;
        font-size: 14pt;
        font-weight: 500;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
        border-radius:4px;
    }

        .navbar a i, .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
            color: #fff;
            background:rgba(0,0,0,0.1);
        }

    .navbar .getstarted {
        padding: 8px 20px;
        margin-left: 30px;
        border-radius: 50px;
        color: #fff;
        font-size: 14px;
        border: 2px solid #47b2e4;
        font-weight: 600;
    }

        .navbar .getstarted:hover {
            color: #fff;
            background: #31a9e1;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            font-weight: 500;
            color: #0c3c53;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
                color: #47b2e4;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    background: none;
    border: 0;
}

    .mobile-nav-toggle.bx-x {
        color: #333;
    }

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(255, 106, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 10px;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a {
        padding: 10px 20px;
        font-size: 15px;
        color: #37517e;
    }

        .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
            color: #47b2e4;
        }

    .navbar-mobile .getstarted {
        margin: 15px;
        color: #37517e;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
                color: #47b2e4;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

.mobile-nav-toggle .bx-x { color:#333; }
.mobile-nav-toggle  { }
.navbar-mobile .mobile-nav-toggle { top:65px; z-index:1000;}




/*
    # FOOTER
*/
footer { background-color: #f9fcff; background-image: linear-gradient(180deg, #f9fcff 0%, #dee4ea 74%); }
.foothead { min-height: 60px; background-color: #ff6600; }
.footbody { min-height:300px; padding-top:50px;  }
.footfoot { padding-top: 5px; font-size:10pt; }
	.footbody ul { line-height:30px; margin-left:0; padding-left:10px; }
	.footbody ul li { list-style:none; margin-left:0; padding-left:0;}
@media (max-width: 768px) { 
	.footbody ul li { text-align:center; }
}

.foot-contact { background-color: #fff; border:solid 3px #eee; border-radius: 10px; padding-top: 20px; position:relative; top:-20px;}
	.foot-contact ul { color:#333; }
	.foot-contact i { font-size:14pt; color:#333; position:relative; top:3px; }

.stay-in-touch { margin-top:10px; }
.stay-in-touch label { margin-left:10px; display:block; }
.stay-in-touch i { font-size:24pt; color:#ff6600; margin-left:7px; margin-top:3px; }
@media (max-width: 768px) { 
    .stay-in-touch { text-align:center;  }     
    .foot-contact { top: -10px;}
}

.foot_lnk { font-size:14pt; position: relative; display:inline;}
.foot_lnk:hover { color:#ff6600; font-weight:bold; }
.foot_lnk:before { transition:all 0.5s; content:' '; position:absolute; left:0; bottom: -3px; right:100%; height:2px; background-color:#ff6a00; }
.foot_lnk:hover:before { right:0; }
.foot-title { font-weight:bold; font-size:16pt; letter-spacing: 2px; }



.headback { height:110px; background-color:#ff6a00;}
@media (max-width: 991px) {
    .headback { height:100px;}
}

/*   Slider  */
.hpslider {
    /*height: 75vh;*/
    background-color: #eee;
    position: relative;
    /*background-blend-mode: lighten;*/
    border: solid 1px red;
    margin-top: 80px;
    min-height:600px;
    
}


.slider-out {
    background-color: #333;
    min-height: 395px;
    text-align: center;
    /*box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;*/
    padding-bottom: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.banner-slider {
    margin: 0;

}
.hslide {
    width: 100%;
    height: 600px;
    overflow: hidden;
    padding: 5px;
    margin-bottom:20px;
}

.hslide img { width:100%; }

/*.slick-dots { bottom:-51px !important;  padding-bottom:20px;}
.slick-dots li { color:#fff !important; }
    .slick-dots li button {
        color: #fff;
        width: 20px !important;
    }
.slick-dots li button:before { color:#fff !important; }
*/
.slick-dots li {
    width: 30px !important;
}
        .slick-dots li button:before {
            background-color: #ff6a00;
            height: 10px;
            width: 30px;
            text-indent: -9999px;
            overflow: hidden;
            border-radius:4px;
        }

@media (max-width: 768px) {
    .slider-out { margin-top: 0px;}
    .hslide {
        height: 550px;
        overflow: hidden;
    }
        .hslide img {
/*            width: 100%;
            height: 100%;
*/        }
}

/* HP */
.extra-box {
    background-color: #eee;
    padding: 10px
}

    .extra-box:hover {
        background-color: #ff6600;
        color: #fff;
    }

    .extra-box a, .extra-box i {
        color: #333;
    }

    .extra-box:hover a, .extra-box:hover i {
        color: #fff;
        font-weight: bold;
    }

    .product-thumb-out {
        min-height: 250px;
        margin-top: 10px;
        
    }
    .product-thumb { margin-top:10px; padding: 10px; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;
                     box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 20px -20px; border:dotted 1px #ff6600; border-radius:8px; }
    .product-thumb-title { font-weight:bold; color:black; line-height:20px; }
    .product-thumb-image { height: 240px; margin-top:0px; text-align:center; overflow:hidden; position:relative;  }
    .product-thumb-image img {  width:80%; z-index:200; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; opacity:1; }
    .product-thumb-brand { margin-top: 0px; color:#333; min-height:20px; font-size:10pt; background-color:#f1f1f1; display:inline-block; padding-right: 5px; }
    .product-thumb-desc { margin-top: 10px; height:95px;  overflow:hidden; color:black; line-height:20px; padding:10px; font-size:11pt; border-radius:5px; background-color:#f7f7f7}
    .product-thumb-price { margin-top: 10px; font-weight:bold; font-size:14pt; color:#333; position:relative; }
    .product-thumb-price i { font-size:32px; margin-right:7px; color:#ff6600; position:relative; top:5px; }
    .product-thumb-image .badge_video { position:absolute; right:0; bottom:10px; color:red; font-size:10pt; z-index:100; }
    .product-thumb-image .badge_video i { font-size:20px; position:relative; top:3px; }
    .product-thumb-image .badge_new { position:absolute; left:0; bottom:10px; color:dodgerblue; font-size:10pt; z-index:101; }

    .product-thumb:hover { border:dotted 1px #ff6600;  border-radius:5px; box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; }
    .product-thumb:hover .product-thumb-title { font-weight:bold; color:#ff6600; transform:scale(1.05); position:relative; left:5px; }
    .product-thumb:hover .product-thumb-image img { transform:scale(1.1); opacity:0.8; }
    .product-thumb:hover .product-thumb-desc  { background-color:#eee; }
    .product-thumb:hover .product-thumb-price { /*transform:scale(1.05);*/ color:black; }
    /*.product-thumb:hover .product-thumb-price i { left:5px; }*/
    .product-thumb:hover .badge_video { opacity:0.8; }

    .pth-action { position:absolute; right:2px; bottom:0px; z-index:502; padding:4px 8px; font-size:12pt; display:none; background-color:#eee;}
    .pth-action a { color:#333; font-size:14pt; }
    .pth-action a i { color:#333; font-size:24px; }
    .product-thumb:hover .pth-action { display:block; }
    .pth-action a:hover i { color:#ff6600; }

    @media (max-width: 768px) {
        .product-thumb-image {
            height: 300px;
        }
        .product-thumb-desc {
            height: 70px;
            font-size: 12pt;
        }
        .product-thumb-price {
            position: relative;
            left:0px;
        }
    }

/*.main-banner { }
.main-banner a img { width:100%; }
*/
/**/
.hero-area, .hero-area-blog, .hero-area-about, .hero-area-petshop, .hero-area-news, .hero-area-contact,
.hero-area-club, .hero-area-account {
    position: relative;
    background: url("/images/hero/y1.jpg") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
    padding-top: 0px;
    margin: 0;
    color: #fff;
    min-height: 300px;
    border: solid 0px red;
}

.hero-area-blog {
    background: url("/images/hero/y5.jpg") no-repeat center center;
}

.hero-area-about {
    background: url("/images/hero/y8.jpg") no-repeat center center;
}

.hero-area-petshop {
    background: url("/images/hero/y7.jpg") no-repeat center center;
}

.hero-area-news {
    background: url("/images/hero/y3.jpg") no-repeat center center;
}

.hero-area-contact {
    background: url("/images/hero/y4.jpg") no-repeat center center;
}

.hero-area-club {
    background: url("/images/hero/y6.jpg") no-repeat center center;
}

.hero-area-account {
    background: url("/images/hero/y2.jpg") no-repeat center center;
}

.hero-area-compare {
    background: url("/images/hero/y10.jpg") no-repeat center center;
}

.hero-area-rss {
    background: url("/images/hero/y14.jpg") no-repeat center center;
}

.hero-area-cart {
    background: url("/images/hero/y15.jpg") no-repeat center center;
}

.hero-area-brand {
    background: url("/images/hero/y20.jpg") no-repeat center center;
}

.hero-area-jez {
    background: url("/images/hero/y21.jpg") no-repeat center center;
}
.hero-area-login {
    background: url("/images/hero/y22.jpg") no-repeat center center;
}
.hero-area-katalog {
    background: url("/images/hero/y28.jpg") no-repeat center center;
}
.hero-area-gnp {
    background: url("/images/hero/y27.jpg") no-repeat center center;
}
.hero-area-checkout {
    background: url("/images/hero/y31.jpg") no-repeat center center;
}
.hero-area-srch {
    background: url("/images/hero/y25.jpg") no-repeat center center;
}
.hero-area-strane {
    background: url("/images/hero/y30.jpg") no-repeat center center;
}

.hero-area-big { height:800px; padding-top:150px; position:relative; }
.hero-big-txt { font-size:14pt; font-style:italic; line-height:20px !important;}
.hero-big-act { font-size:9pt; display:inline-block; background-color:#fff; color:#333; text-transform:uppercase; padding:2px 4px; border-radius:3px; margin-bottom:10px; }
@media (max-width: 768px) { .hero-area-big { height:700px; padding-top:100px;} .hero-big-act { font-size:8pt; padding:1px 2px; }}

.hero-area2 {
    background: url("/images/hero/h2.jpg") no-repeat center center;
    background-size: cover;
    padding: 10px;
    color: #fff;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    min-height: 300px;
    padding-top: 80px;
    border: solid 0px red;
}

    .hero-area2 a, .hero-area3 a {
        color: #fff;
    }

        .hero-area2 a:hover, .hero-area3 a:hover {
            text-decoration: underline;
        }


.hero-area3 {
    background: url("/images/hero/h3.jpg") no-repeat center center;
    background-size: cover;
    padding: 10px;
    color: #fff;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    min-height: 300px;
    padding-top: 80px;
}

.hero-area4 {
    background: url("/images/hero/h5.jpg") no-repeat center center;
    background-size: cover;
    padding: 10px;
    color: #fff;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    min-height: 300px;
    padding-top: 80px;
    margin-top: 50px;
}

.hero-area5 {
    background: url("/images/hero/h1.jpg") no-repeat center center;
    background-size: cover;
    padding: 10px;
    color: #fff;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    min-height: 800px;
    padding-top: 80px;
    margin-top: 50px;
}
.errnum { font-size: 150px; color:#f1f1f1; font-weight:bold; text-shadow: 7px 5px 5px #CEBFAC; }

.home-banner {
    color: #fff;
    margin: 0px;
    text-align: center;
    background-color: #eee;
    padding: 10px;
    border-radius: 10px;
    background: rgb(255,102,0);
    background: linear-gradient(90deg, rgba(255,102,0,1) 0%, rgba(121,63,9,1) 31%, rgba(255,128,0,1) 100%);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}



/* left c */
.lcol-tmi { }
.lcol-tmi img { width:100%; }

.hp-srch {
    position: relative; /*left: calc(50% - 160px); bottom:10px;*/
    padding: 0px;
    padding-bottom: 30px;
    /*border: solid 1px #f39755;*/
    background-color: #d3d3d3;
    background-image: linear-gradient(315deg, #d3d3d3 0%, #57606f 74%);
    color: #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 25px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    height: 64px;
}

    .hp-srch a.srch-btn {
        position: absolute;
        right: 15px;
        top: 15px;
        border: solid 1px #eee;
        font-size: 14pt;
        width: 33px;
        height: 33px;
        text-align: center;
        padding-top: 5px;
        border-radius: 50%;
        background-color: #fb9e60;
        color: #fff;
    }
        .hp-srch a.srch-btn:hover {
            background-color: #ff6a00;
        }

    .hp-srch input {
        padding: 5px 10px;
        border: solid 1px #e7e7e7;
        border-radius: 50px;
        width: 100%;
        font-size: 12pt;
        margin-top:5px;
        max-height:33px;
    }
        .hp-srch input::placeholder {
            color: #999;
        }

@media (max-width: 1024px) {
    .hp-srch input {
        /*width: 150px !important;*/
    }
}

.hp-srch input:focus {
    padding: 5px 8px;
    border: solid 1px #FF0000 !important;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.025), 0 0 8px rgba(255, 102, 0, 0.2);
    outline: none;
    font-weight: bold;
}
.hp_srch_results {
    position: absolute;
    left: 10px;
    top: 54px;
    border: solid 2px #eee;
    background-color: #eee;
    /*background:rgba(0,0,0,0.75);*/
    width: 420%;
    min-height: 300px;
    max-height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 1000;
    padding: 10px;
    text-align: left;
    /*box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 20px -20px;*/
    box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.075), 0 0px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s;
}
.hp_srch_results-close {
    position: absolute;
    right: 0px;
    top: 0px;
    border: solid 2px #ff6600;
    border-radius:50%;
    background-color: #eee;
    color:#ff6600;
    width: 30px;
    height: 30px;
    padding: 10px;
    text-align: center;
}
@media (max-width: 1024px) {
    .hp_srch_results {
        width: 95%;
    }
}

.srch-lnk { }
.srch-lnk row { padding:10px 0; }
.srch-lnk:hover { background-color:#fff; }
.srch-lnk:hover .row { background-color:#fff; border-radius:10px; }
.i-cat { color:gray; font-size:11pt; margin-top:20px; }
.i-txt { font-size:12pt; font-weight:bold; }
.i-prc { color:#333; font-weight:bold; }
.i-img { text-align:center; }
.i-img img { width:80%; }


categories, .special-offers, .brands {
    border: solid 0px silver;
}
.special-offers {
    /*background-color: #db6829;*/
    /*background: rgba(219,104,41,0.8);*/
    background-color: #d3d3d3;
    background-image: linear-gradient(315deg, #d3d3d3 0%, #57606f 74%);
    color: #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.special-offers .box-item {
    position:relative;
}
.special-offers .box-item a {
    color:#333; padding:0; text-align:left; background-color:#fff; padding:3px 10px; border-radius: 50px; transition:all 0.3s;
}
.special-offers .box-item a i {
    position:absolute; left:-18px; top:9px; font-size:22px; color:orangered; 
}
.special-offers .box-item a:hover {
    color:#ff6600; background-color:#f1f1f1;
}
.special-offers .box-item a:hover i {
    position:absolute; left:-17px; top:9px; font-size:22px; color:red; 
}
@media (max-width: 768px) {
    .brands {
        padding-left:20px;
    }
}


.categories {
    
    position: relative;
    /*padding-top:0px; background-color: #f1f2f6; background-image: linear-gradient(315deg, #f1f2f6 0%, #c9c6c6 74%);*/
}

/*.special-offers i { color:red; position:relative; left:-1px; top:1px; font-size:14pt;}*/

.pg-gr {
    border: solid 1px #999;
    background-color: #F6C324;
    background-color: #f1f2f6;
    background-image: linear-gradient(315deg, #f1f2f6 0%, #c9c6c6 74%);
    padding: 20px;
    padding-left: 60px;
    margin: 10px 0;
    margin-bottom: 20px;
    color: #333;
}
    .pg-gr i.bx-map-alt {
        position:absolute;
        left:10px; top:35px;
        font-size:40px;
        color:silver;
        z-index:3000;
    }
    .pg-gr i.bx-map {
        position:absolute;
        left:17px; top:22px;
        font-size:30px;
        color:#ff6600;
        z-index:4000;
        opacity:0.7;
    }

.box-header2 {
    font-size: 12pt;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #eee;
    margin-top:10px;
}

.box-item {  position:relative; letter-spacing:normal; padding:10px 10px; }
.box-item:not(:last-child):after {
        content: " ";
        display: block;
        /*background: silver;*/
    height: 1px;
    width: 90%;
    position: absolute;
    bottom: 0px;
    left: 5%;
}
​

.box-item .catlink {
    margin:0; 
}
.box-item .catlink img {
    width:100%; opacity:0.8; transition:all 0.3s; box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; 
}
.box-item .catlink .cat {
    position:absolute; left:20px; top:24px; color:#fff; font-size:14pt;  letter-spacing:1px;
}
.box-item .catlink:hover .cat {
    font-weight: bold;
}
.box-item .catlink:hover img {
    opacity: 1;
    box-shadow: rgba(50, 50, 93, 0.45) 0px 13px 27px -5px, rgba(0, 0, 0, 0.5) 0px 8px 16px -8px;
}

.box-item ul {
    line-height: 30px;
    margin-left: 0;
    margin-top:15px;
    padding-left: 0px;
    padding-inline-start:10px;
}
.box-item ul li {
    list-style: none;
    margin-top: 4px;
    padding: 5px 20px;
    border: solid 1px #fff;
    background-color: #e7e7e7;
    border-radius:20px;
    color:#333;
    position:relative; left:0px;
}
    .box-item ul li:hover {
        /*background-color: rgba(255,106,0,0.1);*/
        background-color: #f4f2f2;
        font-weight: bold;
        color:#ff6a00;
    }
.brand-boxitem {
    float: left;
    margin-right: 10px;
    border: solid 1px #eee;
    margin-bottom: 5px;
    width:64px;
}
    .brand-boxitem:hover {
        border: solid 1px #ff6600;
        border-radius: 5px;
        background-color:#fff;
    }
    .brand-boxitem img {
        width: 100%;
    }

@media (max-width: 768px) {
    .brand-boxitem {
        width: 64px;
    }
    .box-item ul li {
        margin-top: 8px;
    }
}

.gnp-box, .xgnp-box { position:relative; text-align:center;  }
.gnp-box label { position:absolute; left:25px; bottom:10px; color:#fff; }
.gnp-box img { transition:all 0.3s; border-radius: 15px; overflow:hidden; width:100%; }
.xgnp-box img { transition:all 0.3s; border-radius: 15px; overflow:hidden; }
.xgnp-box label { position:absolute; left:0px; right:0; top:35px; color:#fff; text-align:center;  font-size:13pt; transition:all 0.3s; cursor:pointer;  }
.gnp-box:hover label, .xgnp-box:hover label { font-weight:bold; letter-spacing:2px; }
.xgnp-box:hover img { transform:scale(1.1); }
@media (max-width: 768px) {
    .gnp-box, .xgnp-box img { width:100%; }
}



/* pag */
.paging-row {
    margin-bottom: 30px;
    margin-top: 20px;
}
.paging-pub { }
.paging-pub a { width:36px; height:36px; background-color:#eee; border-radius:50%; display:inline-block; text-align:center; padding-top:7px; margin-left:7px; font-weight:bold; }
.paging-pub a:hover { transform:scale(1.2); }
.paging-pub a.sel { background-color:#ff6600; color:#fff; }


/*jez*/

.lactivity { float:left; width:77px; padding:10px; border-radius:50%; margin-right:5px; }
    .lactivity img { width: 100%; position: relative; }

.img-sd { /*position:absolute; left:0; right:0;*/
    margin-top: 0px;
    text-align: center;
    font-size: 20pt;
}



.prev-item { cursor:pointer; position: absolute; left: 150px; bottom: 380px; font-size: 12pt; padding:10px; padding-top: 5px; border-radius: 10px; }
.prev-item:hover { background: rgba(0, 0, 0, 0.3); }
.prev-item i { font-size: 30px; position:relative; top: 5px; left: -5px;}

.next-item { cursor:pointer; position: absolute; right: 150px; bottom: 380px; font-size: 12pt; padding:10px; padding-top: 5px; border-radius: 10px; }
.next-item:hover { background: rgba(0, 0, 0, 0.3); }
.next-item i { font-size: 30px; position:relative; top: 5px; left: 5px;}

/*.item-title { text-align: center; max-width: 800px; margin: 50px auto; }*/
.item-title h1 { }
.item-title h3 { font-size: 14pt; max-width: 600px; margin: 30px auto; line-height: 30px; letter-spacing: 1px; }

@media (max-width: 768px) {
    .prev-item { left: 10px; bottom: 150px; }
    .next-item { right: 10px; bottom: 150px; }
}


.previous-lake {
    position: absolute;
    left: 150px;
    bottom: 380px;
    font-size: 16pt;
}
@media (max-width: 1200px) {
    .previous-lake { bottom:300px; }
    .lactivity { width:44px; padding:5px; margin-right:5px; }
}

    .previous-lake a:link, .previous-lake a:active, .previous-lake a:visited {
        text-decoration: none; color:#fff; position:relative; 
    }

    .previous-lake a i {
        font-size: 50px;
    }

    .previous-lake a span {
        font-size: 11pt;
    }

    .previous-lake a label {
        position: relative;
        top: 0px;
        cursor: pointer;
    }

    .previous-lake a:hover {
        color: #ff6600;
    }

        .previous-lake a:hover i {
            opacity: 0.7;
        }

@media (max-width: 768px) {
    .previous-lake {
        position: absolute;
        left: 10px;
        bottom: 150px;
        font-size: 16pt;
    }
        .previous-lake a i {
            font-size: 40px;
            position: absolute;
            left: 40px;
            top: -80px;
        }
}

.next-lake {
    position: absolute;
    right: 150px;
    bottom: 380px;
    font-size: 16pt;
}
@media (max-width: 1200px) {
    .next-lake {
        bottom: 300px;
    }
}

    .next-lake a:link, .next-lake a:active, .next-lake a:visited {
        text-decoration: none;  color:#fff; position:relative;
    }

    .next-lake a i {
        font-size: 40px;
    }

    .next-lake a span {
        font-size: 11pt;
    }

    .next-lake a label {
        position: relative;
        top: 0px;
        cursor: pointer;
        padding: 0 10px;
    }

    .next-lake a:hover {
        color: #ff6600;
    }

        .next-lake a:hover i {
            opacity: 0.7;
        }

@media (max-width: 768px) {
    .next-lake {
        position: absolute;
        right: 0px;
        bottom: 150px;
        font-size: 16pt;
    }

        .next-lake a i {
            font-size: 40px;
            position: absolute;
            right: 60px;
            top: -80px;
        }
}

/*.next-lake a label:before { content: ''; background-color:#fff; opacity:0.5; position:absolute; bottom:0; left:0; right:0; top:100%; transition:all 0.7s; }
.next-lake a:hover label:before { top:0; }
*/
.lake-index {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    font-size: 12pt;
    text-align: center;
}

    .lake-index a:link, .lake-index a:active, .lake-index a:visited {
        text-decoration: none; color:#fff;
    }

    .lake-index a i {
        font-size: 24px;
    }

    .lake-index a label {
        position: relative;
        top: -5px;
        cursor: pointer;
        padding: 0 10px;
    }

    .lake-index a:hover {
        color: #ff6600;
    }

        .lake-index a:hover i {
            opacity: 0.7;
        }

.text-shadow {
    text-shadow: 3px 0px 7px rgba(81,67,21,0.9), -3px 0px 7px rgba(81,67,21,0.9), 0px 4px 7px rgba(81,67,21,0.9);
}

.copy-row {
    margin-top: 5px;
    font-size: 9pt;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
}

.stat-title {
    font-size: 18pt;
    color: #ff6600;
}

    .stat-title i {
        font-size: 32pt;
        color: #ff6600;
        position: relative;
        top: 10px;
    }

.stat-data {
    font-size: 14pt;
    text-align: center;
    display: block;
    margin-top: 10px;
}

.stat-row .col-md-3 .stat-out {
    height: 300px;
    background-color: #eee;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

    .stat-row .col-md-3 .stat-out .stat-title {
        font-size: 18pt;
        font-weight: bold;
    }

    .stat-row .col-md-3 .stat-out .stat-data {
        font-size: 48pt;
        text-align: center;
        display: block;
        margin-top: 50px;
    }

.lake-desc {
    font-size:18pt;
    font-style: italic;
    color: #333;
    margin-bottom: 20px;
}

.map-out {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: dashed 1px #333;
    letter-spacing: 1px;
    margin: 10px auto;
    padding-top: 55px;
    font-size: 12pt
}

    .map-out a i.bx-map-alt {
        font-size: 50px;
        color: #ff6600;
    }

    .map-out a label {
        color: #333;
        cursor: pointer;
    }

    .map-out a:hover label {
        color: #ff6600;
    }

    .map-out:has(a:hover) {
        border-color: #ff6600;
        ;
        font-weight: bold;
    }

.jez-map {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: dashed 1px #333;
}

/*.lake-activity label {
    font-size: 16pt;
    margin-bottom: 10px;
}

.lake-activity img {
    width: 64px;
}
*/

/*jezz*/
.jezera-out {
    margin-top: 30px;
}

.jez-thumb {
    position: relative;
    margin-bottom: 30px;
}

    .jez-thumb a img { /*transition:all 3s ease-in-out;*/
        width: 100%;
    }

    .jez-thumb a .jez-title, .jez-thumb a .jez-subtitle {
        /*display: none;*/
        transition: all 5.7s ease-out;
        position: absolute;
        left: 20px;
        right: 25px;
        top: 60px;
        text-align: center;
        z-index: 100;
        color: #fff;
        font-size: 24px;
        font-weight: bold;
    }

    .jez-thumb a .jez-subtitle {
        top: 110px;
        font-size: 18px;
        display: none;
    }

    .jez-thumb a:hover .jez-title, .jez-thumb a:hover .jez-subtitle {
        display: block; /*color: #cfc547;*/
        text-shadow: 10px 10px 25px rgb(81,67,21), -10px 10px 25px rgb(81,67,21), -10px -10px 25px rgb(81,67,21), 10px -10px 25px rgb(81,67,21);
    }


    .jez-thumb a:hover img {
    }

    .jez-thumb a .jez-img-out {
        position: relative;
        transition: all 0.7s ease-in-out;
    }

        .jez-thumb a .jez-img-out:before {
            content: '';
            background-color: #ff6600;
            opacity: 0.5;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 100%;
            transition: all 0.7s;
        }

    .jez-thumb a:hover .jez-img-out:before {
        top: 0;
    }

.overly {
    position: relative;
}

    .overly:before {
        content: '';
        background: rgba(0, 0, 0, 0.51);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

.jez-thumb {
}

.jez-name { font-size:9pt; letter-spacing:3px; color:#333; }
/* about*/
.aboutus {
    padding: 20px;
    font-size: 14pt;
}

    .aboutus h1 {
        margin-top: 40px;
    }

.right-col {
    padding-left: 10px;
    font-size: 13pt;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 50px;
    background-color: #eee;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
    top: -2px;
}

.about-gallery {
    position: relative;
    min-height: 400px;
    margin-top: 20px;
    margin-bottom: 50px;
}

    .about-gallery .col-md-3 {
        margin-bottom: 20px;
    }

.about-thumb {
    margin-bottom: 20px;
    position: relative;
}

    .about-thumb img {
        width: 100%;
        opacity: 0.8;
    }

    .about-thumb:hover img {
        opacity: 1;
    }

    .about-thumb a:before {
        content: '';
        background-color: #ff6600;
        opacity: 0.5;
        position: absolute;
        bottom: 0;
        left: 10px;
        right: 10px;
        top: 100%;
        transition: all 0.9s;
    }

    .about-thumb a:hover:before {
        top: 0;
    }


/* contact */
.contact-form-out {
    margin: 40px;
}

.contact-form-out h2 {
    margin-bottom: 30px;
}

    .contact-form-out h2 i {
        font-size: 30px;
        position: relative;
        top: 5px;
        left: 10px;
        color: #ff6600;
    }

.contact-form-out textarea {
    border: solid 1px #eee;
    padding: 10px;
}

    .contact-form-out textarea:active {
        border: solid 1px #eee;
    }

.contact-form-right {
    padding-top: 20px;
    font-size: 18pt;
}

    .contact-form-right p {
        margin-top: 40px;
        margin-bottom: 50px;
    }

    .contact-form-right i {
        font-size: 100px;
    }

    .contact-form-right a:hover {
        color: #ff6600;
    }

        .contact-form-right a:hover i {
            font-size: 100px;
            color: #ff6600;
        }

@media (max-width: 768px) {
    .contact-form-right p {
        margin-top: 0px;
    }

    .contact-form-right i {
        font-size: 100px;
    }
}


.xhid {
    display: none;
}



.ribobtn, .btn-red {
    background: none;
    font-size: 16px;
    padding: 8px 25px;
    background: #ff6600;
    color: #fff;
    /*color: #646464;*/
    transition: all 0.5s;
    border-radius: 50px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    border: solid 1px #eee;
    display: inline-block;
    cursor:pointer;
}

.btn-red {
    background: #ea3b3b;
}

.btn-quit {
    display: inline-block;
    margin-right: 20px;
    font-size: 14px;
}

.ribobtn:hover {
    background: #fb9e60;
    color: #fff;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.btn-red:hover {
    background: #fa3b3b;
    color: #fff;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.ribobtn-sm {
    font-size: 13px;
    padding: 4px 10px;
}

.mylabel {
    color: #fff;
    position: absolute;
    top: 30px;
    left: 0px;
    z-index: 500;
    padding: 3px 20px;
    font-size: 11pt;
    padding-right: 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    clip-path: polygon(0 0, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
/*    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
*/    /*border:solid 1px red;*/
}
.mylabel-sale { background-color:red; }
.mylabel-new { background-color: #0899fa; }
/*.mylabel:before {content:""; position:absolute; left:-10px; top:40px; width:30px; height:30px; background-color:lime; z-index:700;}
*/

.rel-blog-link { position:relative; margin-bottom:10px; overflow:hidden; }
.rel-blog-link img { width:100%; transition:all 2s; }
.rel-blog-link:hover img { transform:scale(1.1); opacity:0.9; }
.rel-blog-link .blog-post-title { font-size:12pt; color:#333; margin-top:20px; margin-bottom:10px; min-height:30px;font-weight:bold; }
.rel-blog-link:hover .blog-post-title { font-weight:bold; color:#ff6600; }
.rel-blog-link p { font-size:11pt; color:#333; }


.mynotify {
    cursor: pointer;
    position: fixed;
    right: 40px;
    z-index: 9999;
    bottom: 40px;
    /*margin-bottom: 22px;
    margin-right: 15px;*/
    max-width: 350px;
    padding: 7px 15px;
    border: solid 1px #eee;
/*    background-color: #ff6600;
*/    
    color: #fff;
    border-radius: 7px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.mnf-error { background-color:red; }
.mnf-success { background-color: #27ae60; }
.mnf-warning { background-color: #ff6600; }

.mynotify label {font-weight:normal; font-size:13pt; }
.mynotify i { font-size:24px; position:relative; top:3px; }

/*tabs*/
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #2c384e;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            color: #ff6600;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: #fff;
            color: #ff6600;
            border-bottom: 2px solid #ff6600;
        }


.cookie-consent-banner {
    align-items: center;
    background-color: #000000b3;
    bottom: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 30px 10px;
    position: fixed;
    visibility: hidden;
    width: 100%;
    z-index: 1010;
}
.cookie-consent-banner__message1 {
    color: #fff;
    font-size: 16px;
    line-height: 1.21;
    margin: 0 20px
}

@media (min-width: 768px) {
    .cookie-consent-banner__message1 {
        max-width: 70%
    }
}
.cookie-consent-banner__link {
    color: #fff;
    font-weight: 500;
    text-decoration: underline
}
/*.cookie-consent-banner__button--accept {
    color: #fff;
    background-color: #f09831;
    margin: 0 7px 0 0;
    padding:5px 10px;
}

    .cookie-consent-banner__button--accept:hover {
        background-color: #de7f10
    }*/

.cookie-consent-banner-visible {
    visibility: visible;
}

.herof .hero-waves {
    display: block;
    width: 100%;
    height: 30px;
    position: relative;
}

.herof .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: #ff6600;
    opacity: 0.6;
}

.herof .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: #ff6600;
    opacity: 0.4;
}

.herof .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #ff6600;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

.part-label { padding:3px 20px; font-size:12pt; padding-right: 40px; clip-path: polygon(0 0, 100% 0%, calc(100% - 16px) 100%, 0% 100%); background-color: #eee; }

.act-item { text-align: center; margin-top: 10px;}
.act-item:hover { background-color: #eee;}
.act-item img { width:60%; }
.act-item label { font-size: 10pt; letter-spacing: 1px; display: block; }

.mo-item { position:relative; border:solid 1px silver; border-radius:20px; padding: 5px; }
.mo-item .mo-title {padding: 3px 10px; font-weight: bold; }
.mo-item .mo-img img { width: 100%; }
    .mo-item .mo-lbl {
        padding: 3px 40px;
        font-size: 10pt;
        font-weight: bold;
        text-transform: uppercase;
        padding-right: 20px;
        clip-path: polygon(0 0, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
        background-color: #fff;
        color: #ff6a00;
        position: absolute;
        left: 0;
        top: 50px;
    }
        .mo-item .mo-lbl i {
            position: absolute;
            left: 7px;
            top: 0px;
            font-size:20px;
            border: solid 0px red;
        }
.mo-item .mo-txt { padding: 5px; min-height: 80px;}
.mo-item .mo-kon {  }
.mo-item .mo-kon .kon-left { color: #333; padding-top: 5px; }
.mo-item .mo-kon .kon-left i { color: #ff6600; }
.mo-item .mo-kon .kon-right { text-align: center; }
.mo-item .mo-kon .kon-right .phonelink { padding:2px 10px; font-weight:bold; }



.smo-item { padding: 7px; border-bottom: dotted 1px silver; }
.smo-item .smo-title { padding: 3px; font-weight: bold; }
.smo-item .smo-tel { margin-top: 8px; font-weight: bold; text-align: right; }

.mo_left h4 i { font-size:0.9em; color:#ff6600; position:relative; top:0px; }
.price_box { padding-left: 20px; padding-top:7px; }
.price_box label { font-weight: bold; font-size: 15pt; color: #333; }


/*compare*/
.compare-price {
    width: 100%;
    text-align: center;
    font-size: 22px;
    padding: 20px;
    font-weight: bold;
}

    .compare-price a {
        display: inline-block;
        margin-left: 30px;
    }

        .compare-price a i {
            font-size: 22px;
            position: relative;
            top: 2px;
        }

        .compare-price a:hover i {
            color: #ff6600;
        }

.prod-image {
    text-align: center;
    height: 600px;
    position: relative;
    border:solid 1px red;
}

    .prod-image a {
        /*height:100%;*/
        border: solid 1px lime;
    }
    .prod-image img {
        /*height:100%;*/
        border: solid 1px red;
    }

@media (min-width: 768px) {
    .prod-image {
        height: 300px !important;
        border: solid 1px blue;
    }
}

.news-item { margin-top:20px; padding-bottom:20px; margin-bottom:20px; border-bottom: dotted 1px silver; text-align:center; }
.nitem-title { margin-top: 40px; }
.nitem-text { }
.nitem-image { margin-top: 10px }
.nitem-image img { width: 100% }
.nitem-desc { margin-top:10px; }


/**/