/* Alapszínek: fehér–piros–fekete */
:root{
    --bg: #ffffff;
    --fg: #00660f;
    --muted: #6b7280; /* sötétebb szürke szöveghez */
    --border: #e5e7eb;
    --accent: #e10600; /* piros */
    --overlay: rgba(255,255,255,.7); /* 50% szürkítés */ /* 50% szürkítés */
    --safe-bottom: env(safe-area-inset-bottom, 0); /* iOS notch */
}

html, body{ height:100%; }
body{ margin:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; color:var(--fg); background:#f7f7f7; }
#catBack:disabled {
    opacity: 0;
}

/* ===== Trigger (mobilon látható) ===== */
.cat-trigger{ display: flex;
    width: 100%;
    left: 0px; position: fixed; right: 0px; bottom: calc(12px + var(--safe-bottom)); z-index: 1030; display:none; }
.cat-trigger button{ width:100%;   background: var(--fg); color:#fff; border:solid 1px #000; padding: .9rem 1rem; font-weight:700; letter-spacing:.2px; box-shadow: 0 8px 24px rgba(0,0,0,.25); }

/* Hamburger változat fejlécbe – opcionális, most rejtve desktopon is */
.cat-hamburger{ position: fixed; top: 12px; left: 12px; z-index: 1030; display:none; }
.cat-hamburger button{ border:0; background: var(--fg); color:#fff; border-radius:.7rem; padding:.6rem .8rem; font-weight:700; }

/* Csak kis kijelzőn jelenjen meg (nincs JS device info, CSS media query) */
@media (max-width: 992px){
    .cat-trigger{ display:block; }
    /* ha inkább hamburger kell, vedd fel display:block-ra és a trigger-t rejtsd el */
    /* .cat-hamburger{ display:block; } */
}

/* ===== Overlay + Panel ===== */
.cat-overlay{ position: fixed; inset: 0; background: var(--overlay); z-index: 1040; display:none; opacity:0; transition: opacity .2s ease; }
.cat-panel{ position: fixed; inset: 0; z-index: 1050;  color:var(--fg); height:100vh; width:100vw; display:none; overflow-y:auto; -webkit-overflow-scrolling: touch; transform: translateY(8%); opacity:0; transition: transform .22s ease, opacity .22s ease; }

.cat-overlay[aria-hidden="false"], .cat-panel[aria-hidden="false"]{ display:block; }
.cat-overlay.is-open{ opacity:1; }
.cat-panel.is-open{ transform: translateY(0); opacity:1; }

@media (prefers-reduced-motion: reduce){
    .cat-overlay, .cat-panel{ transition: none !important; overflow-x: hidden;}
}

/* Fejléc (sticky) */
.cat-header{ position: sticky; top:0; padding-left:10px; padding-right:10px; z-index:2; background: var(--bg); border-bottom:1px solid var(--border); }
.cat-header .row{ display:flex; align-items:center; padding:.5rem .5rem; }
.cat-header .title{ margin:0; font-weight:800; font-size:1.1rem; }
.cat-header .crumb{ font-size:.9rem; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cat-header .btn{ border:0; background:transparent; font-weight:700; color:var(--fg); padding:.4rem .6rem; border-radius:.5rem; }
/*.cat-header .btn:focus{ outline:3px solid var(--accent); outline-offset:2px; }*/
.cat-atlatszo { opacity: 0; !important;}
/* Kiemelt gyorslinkek */
.quick-wrap{ background:#fafafa; border-bottom:1px solid var(--border); padding:.75rem .75rem; display:none; }
.quick-grid{ display:grid; grid-template-columns:1fr 1fr; gap:.6rem; }
.quick-grid a{ display:block; text-align:center; font-weight:700; text-decoration:none; color:var(--fg); background:#fff; border:1px solid var(--border); border-radius:.75rem; padding:.6rem .8rem; }

/* Lista */
.cat-list{ list-style:none; margin:0; padding:0; }
.cat-item{ display:flex; align-items:center; gap:.75rem; padding:.9rem 1rem; border-bottom:1px solid var(--border); background: var(--bg); }
.cat-item a.label{ color:var(--fg); text-decoration:none; font-weight:700; flex:1; }
.cat-item a.label:hover{ color:var(--accent); }
.cat-item .expand{ border:0; background:transparent; padding:.25rem .5rem; font-size:1.2rem; line-height:1; color:var(--fg); }


/*############ Alap HTML ##############


img {
    border: 0px;
}


*/
.duma {
    width: 100%;
    padding: 5px;
    float: left;
    padding-top:8px;

}  

.szurketakaro {
    background: rgba(0,0,0,0.42);
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    z-index: 16;
    display: none;
}

.btn-outline-dark {
    background-color: #fff !important;
}
.btn-outline-dark:hover {
    background-color: #565c62 !important;
}

.nagylovas__logo__tarto, .nagylovas__logo, .szurkefelett {
    z-index: 42;
}

/*###############   ALJ   #####################*/
.alj {
    background: #515151;          /* webshop színeihez igazíthatod */
    color: #f5f5f5;
    font-size: 0.9rem;
    padding: 2rem 0 1.5rem;
    margin-top: 2rem;
}

.alj a {
    color: #ffffff;
    text-decoration: none;
}

.alj a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* Menü – sorba rendezett, tördelődő linkek */
.alj__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;  /* sor- és oszlop-köz */
    padding: 0;
    margin: 0;
}

.alj__menu li {
    list-style: none;
    position: relative;
    padding-left: 0.9rem;      /* kis pöttynek hely */
}
@media (min-width: 767.98px) {

    .alj__menu li::before {
        content: "|";
        position: absolute;
        left: 0;
        top: 0;
        line-height: 1.1;
        font-size: 0.8rem;
        opacity: 0.6;
    }
}

/* Dobozok a kapcsolat / vevőszolgálat köré */
.alj__box {
    text-align: center;
}

.alj__title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Copyright */
.alj_copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 1.5rem;
    padding-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

/* Mobil finomhangolás */
@media (max-width: 767.98px) {
    .alj {
        text-align: center;
    }

    .alj__menu {
        justify-content: center;
        margin-bottom: 2em;

    }

    .alj__menu li {
        white-space: normal;       /* mobilon törhet a sor */
        width: 45%;                /* két oszlopos menü mobilon */
    }

    .alj__box {
        text-align: center;
        margin-bottom: 2em;
    }
}



.disabled {
    cursor: not-allowed;
}

.copyr{
    text-align: center;
    padding-top: 10px;
}

.nopadding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body {
    background-color: lightgrey;
    color: #000;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.btn{
    background-color: transparent;
}




.betoltesjelzo {
     text-align: center;
     font-weight:700;
     display:none;
     border:solid 2px #000;
}


/*Új v2 template*/
.header__jobb {
    width: 342px;
}

.header__logo {
    width: 242px;
    text-align: center;
    
}
.header__logo img {
    width:60%;
    margin-left: auto;
    margin-right: auto;
}
.header__kozep{
    width: calc( 100% - 584px );
}

.header__tovabiimenu {
    text-align: right;
}

.flex {
    display: flex;
}
.nopadding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.no__leftpadding {
    padding-left: 0 !important;
}
.no__rightpadding {
    padding-right: 0 !important;
}

.header__sor {
    height: 42px;
}

.btn-outline-secondary {
    background: #fff !important;
}
.btn-outline-secondary:hover {
    background: #6c757d !important;
}

.header__szoveg {
    font-size: 30px;
    font-size: 1.5vw;
    text-align: center;
    font-weight: 700;
    color:#8e979f;
    cursor: pointer;
}
.header__szoveg:hover {
    color:#333;
}


.header__kosargomb__follow {
    position: fixed !important;
    left: calc( 100% - 355px ) !important;
    width: 342px !important;
    z-index:41;
}

.adminlathatosag {
    opacity: 0.5;
    border:1px solid blue;
}

/*Új v2 vége*/


.carousel-indicators li{
    border:1px solid rgba(255,0,0,0.84);
    border-radius: 25px;
}



.container-fluid{
    margin-left: 1em;
    margin-right: 1em;
    margin-top:1em;
}

.vertical-center {
    min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)       */

    display: flex;
    align-items: center;
}
.carousel-control {
    width: 30px;
    height: 30px;
    top: -35px;

}
.left .carousel-control {
    right: 30px;
    left: inherit;
}
.carousel-control .glyphicon-chevron-left, 
.carousel-control .glyphicon-chevron-right {
    font-size: 12px;
    background-color: black;
    line-height: 30px;
    text-shadow: none;
    color: #333;
    border: 1px solid #ddd;
}
#navbarDropdown{
    color: #646464;
    font-weight: bold;
}
#navbarDropdown:hover{
    color: #222;
    font-weight: bold;
    text-decoration: underline;
}
/* adds some margin below the link sets  */
.navbar .dropdown-menu div[class*="col"] {
    margin-bottom:1rem;
}

.navbar .dropdown-menu {
    border:none;
}



.branch a {
    color:#000;
}

.branch a:last-child {
    color:red;
}
.branch a:first-child {
    color:#000 !important;
}

.dropdown-menu{
    list-style-type: none;
}


.termeklista__keptarto {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    border-left:1px solid #ddd;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
}
.termeklista__kep {
    position:  absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: white;
    width: 100%;
    vertical-align: central;

}

.termek__adatlap__kiskepek {
    text-align: center;
    margin-top: 3px;
}
.termek__adatlap__kiskep__tarto{
    list-style: none;
    display:inline;
    padding-left:3px;

    text-align: center;

}
.termek__adatlap__kiskep {
    height: 100px;
    border:1px solid #777;
    cursor: pointer;
}

.termek__adatlap__aktivkep {
    text-align: center;
    border:1px solid #ddd;
    width:100%;
}
.termeklista__fokep {
    width:100%;

}

.termek__adatlap__cikkszam {
    margin-top:-9px;
    color:#aaa;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    max-width: 50%;
    padding-left:5%;
}

.termek__adatlap__cim {
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    font-size: 1.8em;
}



.gomb__arnyek{
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.85);
}

.mozaik__tarto {
    width: 100%;
    height: 400px;
    border-spacing: 10px;

}
.mozaik__kep {
    min-width: 100%;
    height: auto;
}

table, th, td {
    border: 1px solid white;
    padding: 5px;
    overflow: hidden;
}
.mozaik__felszeles {
    width: 50%;
}
.mozaik__negyedszeles {
    width: 25%;
    height: 200px;
}

/*****************************Kereső***************************/
.talatilista {
    width:120%;
    background: rgba(255,255,255,0.92);
    border:1px solid #000;
    min-height: 100px;
    position: absolute;
    top: 2em;
    z-index: 42;
    display: none;
    left:-10%;
}

.talalatilista__bezaro {
    position: absolute;
    right: 0.2em;
    top: 0.2em;
    color: red;
    z-index: 42;
    cursor: pointer;
}
.talalatilista__kep {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    color: white;
    width: 100%;
    vertical-align: central;
}
.kereso__ablak__cimtarto {
    padding-top: 0.5em;
    padding-bottom: 1em;    
}
.kereso__ablak__talalattarto:hover {
    background: rgba(0,0,0,0.05);
 
}
.kereso__ablak__talalattarto {
       border-bottom: 1px solid #888;
    margin-bottom: 4.2px;
}

.fejlec__udvozloszoveg {

}
#toTop{
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    display: none;
}

.foolfali__kepek{
    width: calc(100% - 242px);
 
}

.fooldali__banner {
    width: 48%;
    float:left;
        margin-left:1%;
    margin-right: 1%;
}

.kepesmenu__item  img {
    width: 100%;
    height: 100%;
    object-fit:cover;
}


.fooldalibanner__termekar {
    color:#000;
    padding-left:4em;
    padding-right:4em;
    font-size: 1.1vw;
    text-align: center;
    background: rgba(255,255,255,0.84);

}

.fooldalibanner__termekkep {

height: 100%;
background-size: 80%;
background-repeat: no-repeat;
background-position: center bottom;

}
.fooldalibanner__termeknev{
    color:#000;
    padding-left:12px;
    font-size: 1.1vw;
    text-align: center;
    background: rgba(255,255,255,0.84);
    margin-bottom: 0px;
    z-index: 2;
    


}

.fooldalibanner__akciodatuma {
    color:#000;
    padding-left:12px;
    margin-top:0em;
    margin-bottom: 0px;
    font-size: 0.9vw;
    text-align: center;
    background: rgba(255,255,255,0.84);
    
    
}

.fooldalibanner__elfogyott{
    -ms-transform: rotate(-45deg); /* IE 9 */
  transform: rotate(-45deg);

    background: red;
    position: absolute;
    left: -115px;
    top: 65px;
    width: 400px;
    text-align: center;
    z-index: 999;
    padding-top: 8px;
    padding-bottom: 8px;
    color: white;
    font-weight: 700;
}


.blog {
    width:33%;
    float:left;
    border-left:1px solid #ddd;
    border-right:1px solid #ddd;
    padding-left: 15px;
    padding-right: 15px;
}
.blog .cim {
    text-align: center;
    font-size: 1.3em;
    font-weight: 700;

}

@keyframes newscroll {
    0%   {margin-left: 0%;}
    49%  {margin-left: -100%;}
    51%  {margin-left: -100%;}
    100% {margin-left: 0%;}
}

.newscroll__tarto {
    width:100%;
    overflow: hidden;
    display: block;
}

.newscroll:hover
{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.newscroll {
    width:200%;
    animation-name: newscroll;
    animation-duration: 42s;
    animation-timing-function: linear;
    animation-iteration-count: 999;
}

.newscroll .termek__tarto {
    float:left;
    width:12.5% !important;
}

.blog__bejegyzes {
    width: 100%;
}

.blog img {
    width:100%;
    text-align: center;
}

.blog_bevezeto {
    text-align: justify;
}

.fooldal__kategoriak {
    
}
.fooldal__kategoriak li {
    list-style: none;
    padding-left: 1.3em;
    font-size: 1.4em;
}
.fooldal__kategoriak li:before {
  display: inline-block;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 0.6em;
    
    line-height: 1.4em;
    vertical-align: central;
  margin-left: -1.3em; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
}

.bs-placeholder, .dropdown-toggle {
    height:42px;
}

.ajandekutalvany-papir {
    -webkit-box-shadow: 5px 5px 15px 5px rgba(168,130,98,0.42);
    box-shadow: 5px 5px 15px 5px rgba(168,130,98,0.42);
    background-color:#fffcf7;
    min-height: 200px;
    padding:10px;
    background-image: url("/img/ajandekutalvany-papir.jpg");

}
.ajandekutalvany-papir-keret {
    border: 2px solid #8b0100;
    min-height: 190px;
    font-size: clamp(1.2rem, 6vw, 3rem);
    text-align: center;
    font-family: "Sail", system-ui;
    font-weight: 400;
    font-style: normal;
    line-height: 5em;
    max-width: 100%;
}

.hc-hatter {
    background-image: url("/img/hc-hatter.jpg");
    background-position-x: center;
    min-height: 190px;
    font-size: 3em;
    text-align: center;
    font-weight: 700;
    line-height: 6em;
}


@media screen and (min-width: 480px) {
    .foolfali__elso {
        grid-area: 1 / 1 / span 2 / span 2;
    }
    .foolfali__masodik {
        grid-area: 1 / 3 / span 1 / 3;
    }
    .foolfali__harmadik {
        grid-area: 2 / 3 / 2 / 3;
    }
    .foolfali__utolso {

        grid-area: 1 / 4 / span 2 / 4;
    }
}

.brand-strip {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    background: #ffffff;          /* opcionális */
    display: flex;
    flex-direction: column;
    gap: 4px;                     /* kis távolság a két sor között */
    margin-bottom: -22px;
}

/* Egy sor */
.brand-row {
    position: relative;
    width: 100%;
    height: 70px;                 /* állítsd a logók magasságához */
    overflow: hidden;
}

/* A mozgó „szalag” */
.brand-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
}

/* Logók */
.brand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;              /* távolság logók között */
    flex: 0 0 auto;
}

.brand-item img {
    display: block;
    height: 50px;                 /* egységes logómagasság */
    width: auto;
    object-fit: contain;
    filter: grayscale(0);         /* ha akarsz: alapban színes */
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
    opacity: 0.9;
}

/* ANIMÁCIÓK */
/* Felső sor – balra fut */
.row-top .brand-track {
    animation: scroll-left 120s linear infinite;
}

/* Alsó sor – jobbra fut */
.row-bottom .brand-track {
    animation: scroll-right 150s linear infinite;
}

/* Hover az egész sávra: álljon meg mindkét sor */
.brand-strip:hover .brand-track {
    animation-play-state: paused;
}

/* Keyframe-ek – a duplázott tartalom miatt elég -50% eltolás elérni */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Reszponzív finomhangolás mobilra */
@media (max-width: 768px) {


    .brand-row {
        height: 60px;
    }

    .brand-item {
        padding: 0 12px;
    }

    .brand-item img {
        height: 40px;
    }
}


/* breakpoint and up - mega dropdown styles */
@media screen and (min-width: 992px) {

    /* remove the padding from the navbar so the dropdown hover state is not broken */
    .navbar {
        padding-top:0px;
        padding-bottom:0px;    
        font-weight: bold;
    }



    /* remove the padding from the nav-item and add some margin to give some breathing room on hovers */
    .navbar .nav-item {
        padding:.5rem .5rem;
        margin:0 .25rem;
    }

    /* makes the dropdown full width  */
    .navbar .dropdown {position:static;}

    .navbar .dropdown-menu {

        width:100%;
        left:0;
        right:0;
        /*  height of nav-item  */
        top:45px;
    }

    /* shows the dropdown menu on hover */
    .navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
        display:block!important;
    }

    .navbar .dropdown-menu {
        border: 1px solid rgba(0,0,0,.15);
        background-color: #fff;
    }

}


#kosartartalom{
    position: absolute;
    top: 39px;
    width:200%;
    left:-100%;
    background: #fff;
    border:1px solid #aaa;
    z-index: 42;
    padding-bottom: 0.5em;
}
.kosar__popup__termekek {
    width: 100%;
        max-height: 65vh;
        overflow-y: auto;
    position: relative;

}

.kosar__popup__termeksor:hover {
    background: rgba(0,0,0,0.1);
}

.kosar__popup__keptarto{
    padding-right: 12px;
    padding-left: 12px;
    height: 100%;
}

.kosar__popup__keptarto img {
    max-height: 80px;
}

/*.kosar__teljes__keptarto {
    display:inline-block;
    height:5em;
}

.kosar__teljes__termeksor {
    height:5em;
}*/

.kosar__teljes__termeksor:hover {
    background: #f0f0f0;
}

.fokategoria > li > a{
    text-transform: uppercase;
    font-size: 1.1vw;
}

.fokategoria__link,.fokategoria__elem {
    padding-top:0px !important;
    padding-top:0px !important;
}

.fokategoria__gomb {
        border-radius: 0px !important;
}

.social__gomb__tarto {
    margin-top: .25rem;
}


.alkategoria {
    
display: none;
position: absolute;
background: white;
left:242px;
z-index: 242;
top:8px;
min-height: 640px;
overflow: hidden;
border: 2px solid #888;
border-right: 2px solid #888;
border-top: 2px solid #888;
}

.kategoria__oszlop {
    float:left;
    width: 25%;
    height:100%;
    min-height: 520px;
}
.kategoria__oszlop__keppel {
   background-size: auto 100%;
   background-repeat: no-repeat;
    
    height: 634px;
    min-width: 0px;
    max-width: 75%;
    float:left;
}

.kategoriatarto {
    width:242px;
}

.kategoriatarto__tarto__m {
    position: fixed;
    top:0px;
    margin-left:-258px;
    border-right: 8px solid red;
    z-index:15;
    height: 100%;
    background: rgba(255,255,255,1);
    padding-top:142px;
}

.borderanimated {
    transition: all 0.6s linear;
    animation-iteration-count: 4;
  -webkit-animation-name: borderszinezes; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  animation-name: borderszinezes;
  animation-duration: 1.42s;
  animation-iteration-count:2;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes borderszinezes {
     0% {
    border-color: red;
  }
  42% {
    border-color: yellow;
  }
  100% {
    border-color: red;
  }
 
}

/* Standard syntax */
@keyframes borderszinezes {
  0% {
    border-color: red;
  }
  42% {
    border-color: yellow;
  }
  100% {
    border-color: red;
  }
 
}



.kategoriatarto__tarto__kicsito {
    color:red;
    position: absolute;
    right: -36px;
    top:84%;
    -webkit-transition: 0.21s; /* Safari */
  transition: 0.21s;
height: 4em;
cursor: ew-resize;
z-index: 14;
    
}

.alkategoria__elem {
    margin-left: 20px;
    margin-bottom: 0.4em !important;
}

.alalkategoria__elem {
      margin-left: 42px;
    margin-bottom: 0.2em !important;
}

.adatlap__termekkep{

}

.alalkategoria{
    padding-left:10px;
    list-style: none;
}

.alkategoria__link {
    font-weight:700;
    color: black;

}
.alkategoria__link:hover{
    color: grey;
    text-decoration: none;
}

.alkategoria__elem {
    list-style: none;
    padding-right: 0px;

}
.alalkategoria__elem > a{
    font-weight: normal;
    color:#555;
}


.kategoria__kocka {

}

.kategoria__doboz {
    margin:4px;
}

.kategoriatorespont {
    break-inside: avoid-column;
}

.kategoriadoboz__nev {
    color:#555;
    text-align: center;    
}

#page-wrapper {
    background-color: #FFF;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}


.kepesmenu{
    text-align: center;
    padding-top: 15px;
    display: grid;
    grid-gap:8px;
     grid-template-columns: repeat(4, 1fr);
    /*Sorok magasságai*/
    grid-auto-rows: 19.5vmax;
    grid-auto-flow:dense;
    
}

.kepesmenu__item a {
        height: 100%;
    display: block;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position-x: center;
}

.kepesmenu__elso {
     grid-area: 1 / 1 / span 2 /  1;
}

.kepesmenu__masodik {
     grid-area: 1 / 2 / span 2 /  2;
}

.kepesmenu__harmadik {
    grid-area: 1 / 3 / span 2 /  3;
}
.kepesmenu__negyedik {
    grid-area: 1 / 4 / 1 / 4;
}
.kepesmenu__otodik {
    grid-area: 2 / 4 / 2 / 4;
}
.kepesmenu__hatodik {
    grid-area: 3 / 1 / 3 / span 2;
}
.kepesmenu__hetedik {
    grid-area: 3 / 3 / 3 / 3;
}
.kepesmenu__nyoladik {
    grid-area: 3 / 4 / 3 / 4;
}

.nyelvvaltastartalom {
    display: none;
    position: absolute;
    min-height: 3em;
    min-width: 52px;
    z-index: 43;
    background: #343a40;
    border:1px solid #888;
    text-align: center;
    color:#fff;
      left: 164px;
    top: 36px;
}

.nyelvvaltastartalom a,.nyelvvaltastartalom a:hover {
    color: #fff;
    
}

.tovabbimenuk a, .tovabbimenuk a:hover {
   width:100%;
    float:left; 
     color: #111;
     font-weight: 700;
}

.tovabbimenuk {
     display: none;
    position: absolute;
    min-height: 3em;
    min-width: 200px;
    z-index: 43;
    background: #fff;
    border:1px solid #888;
    text-align: center;
    color:#fff;
      left: 0px;
    top: 36px;
}

.mobil__menu__tarto {
    position: fixed;
    top: 0px;
   
    left: 0px;
    border-right: 8px solid red;
    z-index: 50;
    height: 200%;
    padding-top: 60px;
    width:0px;
  overflow: hidden;
    background: rgba(0,0,0,0.42);
    
}
.mobil__nav__elem {
    background: white;
    border:1px solid #888;
    border-right: 2px solid #333;
    padding: 2px 4px 2px 4px; 
}
.mobil__nav__elem::before {
    font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053 ";
}


.mobil__kategoriatarto {
    position: fixed;
    height:100%;
    width:100%;
    left:0px;
    z-index: 44;
    display: none;
    padding-left:17px;
    overflow-y: auto;
    height: 88%;
    
   
}

.mobil__menu__kinyito {
    height:2em;
        position: fixed;
    left: 7px;
    top:4.2px;
    z-index:51;
    
}
.mobil__kategoria {
    width:100%;
    display: none;
   
}
.mobil__kategoria__0 {
    display: block ;
}



/*}
.kepesmenu .row{
    margin-left: -10px;
    margin-right: -10px;
}
.kepesmenu [class*='col-'] {
    margin-bottom: 0;
    padding-right: 10px;
    padding-left: 10px;
}

.kepesmenu a {
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    height: 285px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: 50% 60%;
    overflow: hidden;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}*/

.kepesmenu a.tall {
    align-items: flex-end;
}

.kepesmenu a .label {
    display: block;
    font-size: 10px;
    padding-bottom: 30px;
    padding-top: 10%;
    width: 100%;
    /*    -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;*/
    border-radius: 0;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+60,0.65+100 */
background: -moz-linear-gradient(top,  rgba(0,0,0,0.90) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.90) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.90) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */

height:100%;
    transition: all .2s ease-in-out
}

.kepesmenu a .label span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2em;
    letter-spacing: .1em;
    display: inline-block;
    padding: 12px 14px;
    margin: auto 0;
    background: transparent;
    color: #fff;
    position: relative;
    top: -3%;
    /*    -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;*/
    transition: all .2s ease-in-out
}



.kepesmenu a:hover .label {
  background: -moz-linear-gradient(top,  rgba(0,0,0,0.90) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.90) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.90) 0%,rgba(0,0,0,0) 50%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
   -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.kepesmenu a:hover .label span {
    
    top: 0%;
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.nl-signup-wrapper {
    height:100%;
    overflow: hidden;
    background-color: #283235;
    color: #FFF;
    padding: 15px 10px 0 10px;
    text-align: center;
}

.nl-signup-wrapper .title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.nl-signup-wrapper .input-row {
    margin: 15px 0 15px 0;
}

.nl-signup-wrapper .privacy {
    padding-bottom: 5px;
}

.nl-signup-wrapper .privacy a,
.nl-signup-wrapper .privacy a:link,
.nl-signup-wrapper .privacy a:visited,
.nl-signup-wrapper .privacy a:active,
.nl-signup-wrapper .privacy a:hover {
    margin-bottom: 0;
    position: inherit;
    text-align: left;
    height: auto;
    display: inline;
    background-size: auto;
    overflow: auto;
    color: #FFFFFF;
    font-weight: bold;
}

.nl-signup-wrapper .privacy a:hover {
    color: #CCC;
}

.nl-signup-wrapper .input {
    width: 100%;
    padding: 8px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    border: 0 none;
    color: #000;
    /*    -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4) inset, 0 0 8px rgba(0, 0, 0, 0.6);
        -moz-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4) inset, 0 0 8px rgba(0, 0, 0, 0.6);
        -o-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4) inset, 0 0 8px rgba(0, 0, 0, 0.6);
        box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4) inset, 0 0 8px rgba(0, 0, 0, 0.6);*/
}

/*.nl-signup-wrapper .input:focus {
    -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6) inset, 0 0 8px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6) inset, 0 0 8px rgba(0, 0, 0, 0.6);
    -o-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6) inset, 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6) inset, 0 0 8px rgba(0, 0, 0, 0.6);
    outline: 0 none;
}*/

.nl-signup-wrapper .btn-signup {
    background-color: #999;
    color: #FFF;
    border: 0px none;
    padding: 10px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    font-weight: bold;
    text-transform: uppercase;
}

.nl-signup-wrapper .btn-signup:hover {
    color: #000;
}



.inputhiba {
    background: #f9d4d4;
    border:1px solid red;
}


.rendelesnezet {
    display: none;
}

.szin__doboz {
    width:calc( 33% - 1px)!important;
    height:20% !important;
    margin-bottom: 2px;
    margin-left: 2px;
    float:left;
}


.admin__raktardb {
    position: absolute;
    z-index: 41;
    background: rgba(0,0,255,0.32);
    padding:4px;
}

.ajanlotttermekek .cikkszam__tarto, .ajanlotttermekek .kockatermek__ar, .ajanlotttermekek .kosargomb__tarto  {
    display: none !important;
    
}


.ajanlotttermekek .termek__tarto {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.ajanlottszinek .cikkszam__tarto, .ajanlottszinek .kockatermek__ar, .ajanlottszinek .kosargomb__tarto  {
    display: none !important;
    
}


.ajanlottszinek .termek__tarto {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.decemberi__nitvatartas {
    width:100%;
    background: red;
    color:white;
    text-align: center;
}

.decemberi__nitvatartas a,.decemberi__nitvatartas a:hover, .decemberi__nitvatartas a:visited {
    color: white;
}

@media (max-width: 600px) {

}

@media (max-width: 768px) {
    .ajandekutalvany-papir-keret {
        line-height: 14em;
    }
    .newscroll {
    width: 442%;
    }

        #fooldali__banner2 {
    display: none;
}
    #fooldali__banner1 {
        width:100%
    }
    .kepesmenu{
        text-align: center;
        padding-top: 15px;
        display: block;
line-height: 10;

    }
    .kepesmenu__item a{
        background-position-y: top;
        background-size: 100% auto !important;

    }

    .lathatoTermektartodoboz   .raktarmegjeloles {
        display: none;
    }

    .header__kosargomb__follow {
        left:0px !important;
        width: 100% !important;
        margin-top:0px;
    }
    .kosargomb__tarto{
        background: rgba(255,255,255,0.42);
        position: absolute;
        bottom: 0px;
        width: 100%;
        /*display: block !important; */
        text-align: center;
        padding-top: 0.2em;
        margin-bottom: 1em;
    }
}


/*@media (min-width: 1200px){
    #top-bar .cell-1 {
        width: 180px;
        padding-top: 8px;
    }

    #top-bar .cell-2 {
        width: 950px;
        padding-top: 10px;
        font-size: 29px;
        line-height: 29px;
    }

    #top-bar .cell-3 {
        padding-top: 8px;
    }

    #search-bar .cell-1 {
        width: 175px;
    }

    #search-bar .cell-2 {
        width: 455px;
        padding: 30px 0 0; 
    }

    #search-bar .cell-3 {
        width: 285px;
        padding: 30px 0 0 5px; 
    }

    #search-bar .cell-4 {
        width: 255px;
        padding-top: 20px;
    }
    

}

@media (min-width: 992px) {
    #top-bar .cell-2 {
        width: 780px;
    }

    #search-bar .cell-1 {
        width: 150px;
    }

    #search-bar .cell-2 {
        width: 275px;
        padding: 15px 0 0; 
    }

    #search-bar .cell-3 {
        width: 285px;
        padding: 15px 0 0 5px; 
    }

    #search-bar .cell-4 {
        clear: none;
        width: 250px;
        padding-top: 5px;
    }

    #search-bar .cell-4-1 {
        float: left;
        width: 140px;
    }

    #search-bar .cell-4-2 {
        float: left;
        width: 100px;
    }

    #search-bar .cell-4-3 {
        clear: both;
        width: 100%;
    }
    #bnr-left {
        width: 525px;
    }

    #bnr-left img {
        height: 315px;
    }

    #bnr-center {
        width: 230px;
    }

        #bnr-right {
            width: 215px;
        }
    
        #bnr-right img {
            height: 315px;
        }

    .kepesmenu .row {
        margin-left: -5px;
        margin-right: -5px
    }
    .kepesmenu a {
        margin-bottom: 10px
    }
    .kepesmenu [class*='col-'] {
        margin-bottom: 0;
        padding-right: 5px;
        padding-left: 5px
    }
    .kepesmenu a .label span {
        font-size: 1em
    }
    .kepesmenu a.tall .label span {
        font-size: 1em
    }
    .kepesmenu a {
        height: 180px
    }
    .kepesmenu a.tall {
        height: 370px
    }


}
@media (min-width: 768px) {  Small 
    #top-bar .cell-1,
    #top-bar .cell-2,
    #top-bar .cell-3 {
        position: relative;
        float: left;
        min-height: 1px;
    }

    #top-bar .cell-1 {
        width: 150px;
        padding: 10px 0 0 5px;
    }

    #top-bar .cell-1 .nav {
        margin: 0;
    }

    #top-bar .cell-1 a {
    }

    #top-bar .cell-1 img {
        float: left;
        width: 20px;
        margin-right: 3px;
    }

    #top-bar .cell-2 {
                width: 560px;
        padding: 5px 0 0 0;
        text-align: center;
        font-size: 28px;
        line-height: 28px;
        font-weight: bold;
    }

    #top-bar .cell-3 {
        width: 40px;
        text-align: right;
        padding: 5px 5px 0 0;
    }

    #search-bar .cell-1 {
        width: 130px;
        padding: 0 5px;
    }

    #search-bar .cell-2 {
        width: 340px;
        padding: 17px 0 0; 
    }

    #search-bar .cell-3 {
        width: 270px;
        padding: 17px 0 0 5px; 
    }

    #search-bar .cell-4 {
        width: 255px;
        padding-top: 5px;
        clear: both;
    }

    #search-bar .szinfo-wrapper {
        float: left;
    }
    #bnr-left {
        width: 405px;
        padding-left: 15px;
        padding-right: 0;
    }

    #bnr-left img {
        height: 240px;
    } 

    #bnr-center {
        width: 180px;
    }

        #bnr-right {
            width: 165px;
        }
    
        #bnr-right img {
            height: 240px;
        }
}*/

/* - ----------------- Termék lista oldal    */
.kosargomb__tarto{
    background: rgba(255,255,255,0.42);
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: none;
    opacity: 1;
    text-align: center;
    padding-top: 0.2em;
    margin-bottom: 1em;
}

.kosargombanimacio {
    animation-iteration-count: 1;
    -webkit-animation: mymove 1.5s;  /* Safari 4.0 - 8.0 */
    -webkit-animation-iteration-count: 1; /* Safari 4.0 - 8.0 */
    animation: kosargomb 1.5s;
}

@-webkit-keyframes kosargomb {
    0%   {background-color:green;}

    75%  {background-color:yellow; }

    100% {background-color:green; }
}

@keyframes kosargomb {
    0%   {background-color:green;}

    75%  {background-color:yellow; }

    100% {background-color:green; }
}

/*----------------------Termék lista oldal vége*/



/*Megrendelés eleje*/
.penztar__allapotsor {
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(0,0,0,0.5);
}

.penztar__allapotsor col-sm {

}

.penztar__allapot__tarto{

}
.penztar__allapot__elem{
    width:100%;
    display: none;
    background: #aaa;
    min-height: 200px;
}

.penztar__allapot__elem__aktiv {
    display: block;
}

.penztar__fejlec {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #aaa; 
    padding-top:0.5em;
    font-size: 1.2em;
}

.penztar__kosar__termeksor {
    border-bottom: 1px solid #aaa;
    margin-bottom: 5px;
}
.penztar__leirasdoboz {
    margin:0.5em;
    background: rgba(0,0,0,0.05);
    padding:1.2em;
}

.penztar__hibalista{
    border:3px double red;
    color:red;
    font-weight: 700;
    text-align: center;
}



 .kockatermek__2__tarto {
     width:100%;
     padding:15px;
     -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     border-radius: 8px;
     -webkit-box-shadow: 0px 10px 15px -10px #000000;
     box-shadow: 0px 10px 15px -10px #000000;
     height: 600px;
     margin-bottom: 15px;
 }
.kockatermek__2__keptarto {

    width:100%;
}
.kockatermek__2__cim {
    font-size: clamp(1rem, 1.5vw, 3rem);
    font-weight: 100;
    line-height: 1.15;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

    min-height: calc(2 * 1.15em);
}
/*.kockatermek__2__cim{ font-size: 16px; }*/
/*@supports (font-size: clamp(1px, 2px, 3px)) {*/
/*    .product-card .product-title{ font-size: clamp(15px, 1.0vw + 12px, 20px); }*/
/*}*/
.kockatermek__2_alsotarto{
    padding-left:6px;
    padding-right: 6px;
}
.kockatermek__2__ketoszlop__tarto {
    width:100%;
    display: inline-flex;
}
.kockatermek__2__merettarto {
    min-width:50%;
    float:left;
}
.kockatermek__2__artarto {
    width:50%;
    text-align: right;
    font-size: 0.8em;
    font-weight: 100;
}

.ar__normal{
    font-size: 2.2em;

}

.kockatermek__2__artarto .ar__me {
    font-size: 1em;
}
.kockatermek__2__cikkszam {
    font-weight: 100;
    /*transform: rotate(90deg);*/
    font-size: 1em;
    position: absolute;
    /*bottom: 0px;*/
    color:darkgray;
    bottom:11px;
    right :30px;
    /*
    font-weight: 100;

    font-size: 1em;
    position: absolute;
    left: 18px;
    bottom: -2px;*/


}
#product-view .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media(max-width: 768px){
    #product-view .row{
        grid-template-columns: 1fr 1fr;
    }
}

.ajanlotttermekek {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* fél oldalon 2 oszlop */
    gap: 1rem;
}

.ajanlotttermekek  > [class*="col-"]{
    max-width: 45% !important;
    flex: 0 0 45% !important;
}


.quantity-selector{

    border-radius: .4rem;
    overflow: hidden;
}

.qty-btn{
    background: #ffffff;
    border: none;
    width: 36px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}

.qty-btn:hover{
    background: #e2e6ea;
}

.qty-input{
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number]{
    -moz-appearance: textfield;
}

.product-cta{
    width: 100%;
}

.product-cta .quantity-selector{
    flex: 0 0 auto;   /* marad a saját szélességén */
}

.product-cta .kosargomb{
    flex: 1 1 auto;   /* kitölti a maradék helyet */
    width: auto;
}

@keyframes cartBounce{
    0%{transform:scale(1);}
    50%{transform:scale(1.3);}
    100%{transform:scale(1);}
}

.cart-bounce{
    animation: cartBounce .4s ease;
}

.ar__tartalom{

}

/* Régi ár: kisebb + halvány + áthúzva */
.ar__regi__v3{
    color: #6c757d;
    font-size: 1.2em;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(108,117,125,.7);
}

/* Akciós ár: nagy + hangsúlyos */
.ar__akcios{
    display: inline-flex;
    align-items: baseline;
    gap: .15rem;

    font-weight: 800;
    color: #dc3545;
    line-height: 1;
}

/* Ft kicsit kisebb az akciósnál */
.ar__akcios .ar__me{
    font-size: .65em;
    font-weight: 700;
    opacity: .95;
}

/* Régi ár Ft is kisebb */
.ar__regi__v3 .ar__me{
    font-size: .85em;
}

/* Egység: / db */
.ar__tartalom > .ar__egyseg,
.ar__tartalom .ar__egyseg{
    color: #6c757d;
    font-size: .95em;
}

/* Ha nálad simán "/ db" szöveg van, ezt célozd: */
.ar__tartalom{
    /* a végén lévő "/ db" általában szövegnode, azt nem tudjuk CSS-sel külön.
       Ha tudod, tedd spanbe: <span class="ar__egyseg">/ db</span> */
}

.ar__egyseg{
    color:#6c757d;
    font-size:.95em;
    margin-left:.15rem;
}


.kockatermek__termekcim {
    color: black;
}
.kockatermek__kosar {
    width:100%;
       
}


.kockatermek__cim {
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    font-size: 1.1em;
    overflow: hidden;
    /*    text-overflow: ellipsis;
        white-space: nowrap;*/
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding-left:2%;
    margin-top: -1em;
    height:3em;
    position: relative;
    background: rgba(255,255,255,0.8);
}

.kockatermek__cikkszam { 
    margin-top:-17px;  
    color:#222;
    border-right: 1px solid #ddd;
    max-width: 75%;
    padding-left:4%;
    margin-bottom: 2px;
    font-size:90% !important;
    float:left;
}
.raktarmegjeloles {
    float:left;
    max-width: 25%;
    margin-bottom: 0px;
    
    margin-top:-17px;  
    text-align: center;
}

.raktarmegjeloles__raktaron {
    color:#318f0c;
    font-weight: 700;
}
.raktarmegjeloles__rendelheto {
    color:royalblue;
    font-weight: 700;
}

.raktarmegjeloles__nincsraktaron {
    color:#b91111;
    font-weight: 700;
}

.szett__cikkszam {
     margin-top:-10px;  
    color:#222;
    max-width: 85%;
    padding-left:4%;
    margin-bottom: 2px;
    font-size:90% !important;
}

.kockatermek__ar {
    font-weight: 700;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    max-width: 100%;
    padding-left:4%;
    margin-top:-3px;
}

.ar__tartalom {
}

.ar__horsecoin {
    background: #FFDF00;
}

.kockatermek__variacionev {
    font-weight: 700;
    background: rgba(0,0,0,0.2);
    margin-bottom: 0px;
    text-align: left;

}

.tulajdonsagtipusvalaszto {
    margin-left: 15px;
    margin-right: 15px;

}


.tulajdonsag__doboz {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #ffe4e0 no-repeat center top;
    border: rgba(0,0,0,0.15) 2px solid;
    text-align: center;
    margin-bottom: 8px;
}

.tulajdonsag__szoveg {
    background:  rgba(0,0,0,0.15);
    margin-top:  55px;
    margin-bottom: 0px;
    font-weight: 700;
    /*white-space: nowrap;*/
    overflow: hidden;
}

.ar__regi {
    text-decoration: line-through;

}

.ar__akcios {
    color:red;
    font-weight: 700;
}

.termek__tulajdonsag__nempostazhato{
    background-image: url("../../img/nemszallithato.png");
}
.termek__tulajdonsag__torekeny{
    background-image: url("../../img/torekeny.png");
}
.termek__tulajdonsag__szuperaras{
    background-image: url("../../img/szuperaras.png");
}
.termek__tulajdonsag__egyedulszallithato{
    background-image: url("../../img/egyedulszallithato.png");
}

.termek__tulajdonsag__1{
    background-image: url("../../img/sizeicon.png");
}
.termek__tulajdonsag__2{
    background-image: url("../../img/fazonicon.png");
}
.termek__tulajdonsag__3{
    background-image: url("../../img/szinicon.png");
}
.termek__tulajdonsag__4{
    background-image: url("../../img/nemicon.png");
}
.termek__tulajdonsag__5{
    background-image: url("../../img/anyagicon.png");
}


.nemvalasztott {
    shadow:inset 0 0 5px 0 rgba(255,0,0,1);
    box-shadow:inset 0 0 5px 0 rgba(255,0,0,1);
}

.close__gomb {
    color:#fff;
    background: red;

}

/* Create a custom checkbox */
.checkmark {
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
.kategoriakmegjelenites {
    display: none;
}

.termek__tarto {
     transition:  1s;
}

.csiknezet .termek__tarto {
    width: 100% !important;
    max-width: 100%;
    flex: auto;
    
}
.csiknezet .termeklista__keptarto {
    padding-top: 12em;
    padding-left: 10em;
}
.csiknezet .termeklista__kep {
    height:10em;
    width:auto;
    float:left;
}

.csiknezet .kosargomb__tarto {
    opacity: 1 !important;
    width:30%;
    float:left;
    display: block;
    position: absolute;
    top:3em;
    right:0em;
}


.csiknezet .kockatermek__cim{
    width: 30%;
    position: absolute;
    top: 2em;
    left: 14em;
    border: 0;
    font-weight: 700;
    background: rgba(0,0,0,0);
}

.csiknezet .cikkszam__tarto {
        position: absolute;
    top: 5em;
    left: 17em;
}

.csiknezet .kockatermek__cikkszam {
    border:0px;
}

.csiknezet .kockatermek__ar  {
    position: absolute;
    top: 1em;
    right: 3em;
    border: 0px;
}

@media screen and (max-width: 992px) {
    
    .foolfali__kepek {
        width: 100%;
    }
    
    .header__kozep {
        width: 50%;
    }
    .header__jobb{
        width: 50%;
    }
    .header__logo {
        display: none;
    }
    
    #kosartartalom {
       width: 100% ;
           left:0px;
    }
    
    .talatilista {
        width: 100%;
        left:0px;
    }
    
    .alkategoria {

        column-count: 1;
        width:100%;
        float:none;
    }
    .mobilrejtett{
        display: none;
    }

    .kategoriak {
        display: none;
        width: 100%;
    }

    .kategoriakmegjelenites {
        display: block;
        width:100%;
    }

    .fokategoria > li > a{
        font-size: 3vw;
    }    
    .fokategoria {
        width:100%;
    }

    .fokategoria__elem {
        width:100%;
    }
    .mobilhidden {
        display: none;
    }
     
    .form-check-label {
        width:80% !important;
    }

}

@media only screen and (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
/*        display: block;*/
    }
    
    
   

}
@media only screen and (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .header__kozep {
        width: 100%;
    }
    .header__jobb{
        width: 100%;
    }
    
    .termekadatlap__keptarto {
        order:1;
    }
    .termekadatlap__termekadatok {
        order:2;
    }
    
    .newscroll .termek__tarto .kockatermek__cikkszam, .newscroll .termek__tarto .kockatermek__cim, .newscroll  .ar__tartalom, .newscroll .termek__tarto .kosargomb__tarto  {
        display: none;
    }
   
    .newscroll .col-md-3 {
        padding-left:0px;
        padding-right: 0px;
    }

}


.rejtett-szoveg{
    font-size:0em;
}