/*
    Created by: István Besenyei 
                MENTAVILL KFT.
                2016.12
*/
/*** HEADER ***/

/* Century Gothic */
@font-face {
  font-family: 'Century Gothic';
  src: local('Century Gothic'), local('Century Gothic'), url(/fonts/GOTHIC.ttf) format('ttf');
  /*unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;*/
}
/* Century Gothic */
@font-face {
  font-family: 'Century Gothic Bold';
  src: local('Century Gothic'), local('Century Gothic'), url(/fonts/GOTHICB.ttf) format('ttf');
  /*unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;*/
}
/* Century Gothic */
@font-face {
  font-family: 'ConcertOne-Regular';
  src: local('ConcertOne-Regular'), url(/fonts/ConcertOne-Regular.woff2) format('woff2');
  /*unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;*/
}
/* Century Gothic */
@font-face {
  font-family: 'FredokaOne-Regular';
  src: local('FredokaOne-Regular'), url(/fonts/FredokaOne-Regular.woff2) format('woff2');
  /*unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;*/
}
/* Didact Gothic*/
@font-face {
  font-family: 'DidactGothic-Regular';
  src: local('DidactGothic-Regular'), url(/fonts/DidactGothic-Regular.woff2) format('woff2');
  /*unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;*/
}
* {
    margin: 0;
    padding: 0;    
}
header, div.card h5 {
    font-family: DidactGothic-Regular;
}
i.fas {
    font-size: 1.25em;
    color: #000;
}
.material-icons {
    width: 1em;
}
html, body, #pageContainer {
/*    height: 100%;*/
    font-family: Arial; 
}
body {
}
img {
    max-width: 100%;
    height: auto;
}
#pageContainer {
/*    min-height:100%;
    height: auto;*/
    /*position: relative;*/
}

.center { text-align: center !important; }
.left { text-align: left !important; }
.right { text-align: right !important; }

.floatLeft { float: left !important; }
.floatRight { float: right !important; }
.floatNone { float: none !important; }
.special { color: red; }

.hidden { display: none !important; }

/* Colors */
.blue { color: #15589f; }
.blueBG { background-color: #15589f; }
.lightblue { color: #428bca; }
.lightblueBG { background-color: #428bca; }

/*** HEADER ***/
header {
    width: 100%;
    margin: 0 auto;
}
a.loginBTN {
    font-family: 'Roboto Condensed',sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    background: #f1f3f5;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    float: right;
    margin-top: 3.5%;
    padding: 0.54em;
    margin: 0 10px 0 10px;
    border: 1px solid #15589f;
}
a.loginBTN:hover {
    background: #f1f3f5;
}
a.logo {
    width: 450px;
    /*height: 31px;*/
    display: inline-block;
    margin: 14.5px auto;
}
header #logged {  
/*    margin-right: 1em;*/
    font-size: 0.85em;
}
/*header #logged > div {
    display: table-cell; 
    height: 60px; 
    vertical-align: middle; 
    padding-top: 2px;
}*/
header #logged > div > span {
    color: red; 
    font-size: 0.9em;
}

header #iconsContainer {
    float: right;
    max-width: 13em;
}
header #icons {
    height: 50px;
    float: right;
}
header #icons .material-icons {
    float: right;    
    font-size: 33px;
    margin: 15px 5px;
}
/*header #icons .material-icons.active {
    background: #eee;
}*/
header #icons img {
    width: 29px;
    margin: 17px 5px;
}

header a.login {
    margin: 15px auto;
    padding: 8px 15px;
    font-size: 12px;
    display: inline-block; 
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    float: right;
    text-decoration: none;
    text-transform: uppercase;
    background: #428bca;
    color: #FFF;
    border-color: #2b669a;
}
header a.login:hover {
    background: #2b669a;
}
header a.login.white {
    background: #FFF;
    color: #428bca;
    border: 1px solid;
    padding: 7px 15px;
    margin-left: 1em;
}




.responsive {
    display: none;
}
.notResponsive {
    display: initial;
}

@-webkit-keyframes flash {
    0% {
        background-color: red;
        opacity:1;
    }
    /*22% {
        background-color: Yellow;
    }
    77% {
        background-color: Red;
    }*/
    100% {
        background-color: #15589f;
    }
}
    
.flash {
    -webkit-animation-name: flash;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
} 


/* SIDEBAR */

.shopsCount {
    font-size: 3em;
    font-weight: bold;
    color: #cc0000;
    text-align: center;
}
.sideBarElem {
    /*text-align: center;*/
    margin-bottom: 1.5em;
    margin-right: 1em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #ccc;
}
.sideBarElem h3 {
    color: #15589f;
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    margin-bottom: 0.2em;
}
.sideBarElem a, .sideBarElem span {
    color: #cc0000;
    margin: 0.5em 0;
    font-size: 0.9em;
    text-decoration: none;
}

/* CART REMINDER */
#cartReminder {
    min-width: 300px;
}
#cartReminder h3, #cartReminder > div {
    margin-bottom: .5em;
}
/*#cartReminder a {
    width: 6em;
}*/



/*RÉGI CSOPORTOSítás*/
/*.leftMenu ul li ul {
    display: none; 
    float: left;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 3;
    min-width: 200px;
}*/
.categories ul li {
    /*display: block; 
    background: #428bca;
    float: none;
    color: #FFF;
    padding-left: 1em*/
    
    display: block;
    background: #ffffff !important;
    color: #428bca !important;
    border-radius: 5px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-color: #428bca;
    border: 1px solid #428bca;
    margin-bottom: .5em;
    float: none !important;
    text-align: center;
}
.categories ul li:hover {
    color: #000;
}
.categories ul li ul li {
    display: block;
}
.leftMenu .material-icons {
    font-size: 1.5em;    
}
/*.leftMenu li:has(i.material-icons) {
    padding: 0.6em !important;
}*/
/*.leftMenu a {
    color: #FFF;
    text-decoration: none;
    padding: 0.64em;
    text-transform: uppercase;
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: bold;
    border-right: 1px solid #5687B9;
    display: block;
}*/
.leftMenu select {
    color: #FFF!important;
    text-decoration: none;
    padding: 0.65em;
    text-transform: uppercase;
    font-family: 'Roboto Condensed',sans-serif;
    font-weight: bold;
    display: block;
    font-size: 17px;
    background: transparent;
    border: none;
/*    border-right: 1px solid #5687B9;*/
}
.leftMenu select:hover{
    background: #0C437D;
    text-decoration: none !important;
}    
.leftMenu select option {
    background: #eee;
    color: #000;
}
/*.leftMenu a:first-child {
    border-top: 1px solid #73a1d2;
}*/
/*.leftMenu a:hover {
    background: #0C437D;    
    color: #FFF !important;
    text-decoration: none !important;
}
.leftMenu ul li ul li a:hover {
    background: #0C437D;
    color: #000;
}*/
/*.leftMenu .active {
    background: darkred;
}*/
.menuOpener, .responsiveCartButton {
    display: none;
}

.leftMenu li:has(ul):hover ul {
    display: block;
}

/*footer {
    padding-bottom: 15px; 
     display: block; 
     height: 50px; 
     position: absolute; 
     margin-top: -65px; 
    clear: both;
    background: #dcdcdc;
    font-size: 0.9em;
}*/
/*footer .brands div {
    width: 33%;
    display: inline-block;
    margin: 1em 0;
    text-align: center;
}*/
footer .brands img {
    height: 70px;
}
.stayDown {
    position: fixed;
    bottom: 0;
    width: 100%;
}

/*.links {
    display: inline-block;
    text-align: center;
    padding: 1em 0;
}*/
/*.links a {
    text-transform: uppercase;
    text-decoration: none;
    color: #555;
    margin-right: 1em;
    white-space: nowrap;
}
.links a:hover {
    color: #428bca;
}*/
#copyright {
    /*display: inline-block;
    float: right;*/
    text-align: center;
    padding: 1em 0;
}
footer .logos {
    text-align: center;
}
footer .logos img {
    height: 35px;
    margin: 1em;
}
.footerMenu {
    display: none;
}

.content {
    width: 100%;
/*    float: right;*/
    margin-bottom: 1em;
}

.container {
    margin: 0 auto;
    padding: 0 0.5em;
}

#pageContent {
    width: 100%;
    min-height: 396px;
}

/*** OTHERS ***/
.link {
    text-decoration: none;
    cursor: pointer;
}
/*.btn {
    padding: .5em .7em;
    margin: .8em 0;
    border: 1px solid #15589f;
    color: #15589f;
    display: inline-table;
    font-size: 1em;    
}*/
.btnColor {
    background: #15589f;
    color: #FFF;
    border-color: #2b669a;
}
.btn:hover {
    background: lightblue !important;
    color: #15589f;
}
.bold {
    font-weight: bold;
}
.pointer {
    cursor: pointer;
}
.clear {
    clear: both;
}





#userInfo {
    text-align: right;
    float: right;
    margin: 15px 0 0 0;
    font-size: 0.9em;
    position: relative;
}
#userInfo .username {
    font-weight: bold;
    color: #15589f;
}

#userInfo .material-icons, #userInfo .info {
    display: inline-block;
    margin-right: 1em;
}
#userInfo .material-icons {
    border: 1px solid #FFF;
    padding: 0.1em;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

#userInfo .material-icons.active {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
}
#userInfo .material-icons:hover, #userInfo .material-icons.active {
    border-color: #ccc;
    cursor: pointer;
    background: #efefef;
    color: #15589f;
}
#userMenu {
    border: 1px solid #ccc;  
    border-top: none;
    position: absolute;
    right: -105px;
    margin-top: -1px;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    display: none;
}
#userMenu a {
    padding: 0.5em 1em;
    background: #eee;
    display: block;
    text-align: left;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
#userMenu a:not(:first-child) {
    border-top: 1px solid #ccc;
}
#userMenu a:hover {
    background: #ccc;
    color: #15589f;
}

/*** TABLES ***/
.table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin-top: 1em;
}
.table th {
    background: #ccc;
    font-weight: normal;
}
.table th, td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 5px;
    min-width: 13px;
}


/*** EDIT, MODIFY ***/
.edit, .delete {
    background: #428bca;
    color: #FFF;
    width: auto;
    display: block;
    float: right;
    /*font-size: 0.7em;*/
    font-size: 0.8em;
    padding: 0.4em;
    margin: 0.45em;
    border-radius: 4px;
    cursor: pointer;
}
.edit .material-icons, .delete .material-icons {
    font-size: 10px !important;
}
.edit:hover, .delete:hover {
    /*background: orange !important;    */
    background: #15589f !important;    
}
.edit {
    background: #428bca;
}
.delete {
    background: red;
}

#hiddenTemplate {
    display: none;
}

/*** POPUP ***/
.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0,0,0,0.75);
    display: none;
    z-index: 10;
}
.popupForm {
    max-width: 500px;
    text-align: center;
    margin: auto;
    margin-left: 0;
    padding: 1em;
    background: #FFF;
    box-shadow: 0 0 20px #FFF;
    /*border-radius: 10px;
    -webkit-border-radius: 10px;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   
}
.popupForm label {
    width: 35%;
    display: inline-table;
    text-align: right;
    margin: 5px 0;
    /* padding: 5px; */
    /* padding: 0.5em; */
    /* vertical-align: top;*/
}
.popupForm input[type="text"], .popupForm input[type="password"], 
.popupForm input[type="file"], .popupForm input[type="checkbox"], 
.popupForm select, .popupForm textarea {
    width: 50%;    
    display: inline-table;
    margin: 10px 0;
    /* padding: 5px; */
    /* padding: 0.5em 0;*/
    border: 1px solid #ccc;
}
.popupForm textarea {
    height: 10em;
}

/* INFO */
.alert-box {
    color:#555;
    border-radius:10px;
    font-family:Tahoma,Geneva,Arial,sans-serif;font-size:11px;
    padding:10px 36px;
    margin: 0 0 10px 0;
    text-align: left;
}
.alert-box span {
    font-weight:bold;
    text-transform:uppercase;
}
.success {
    background:#e9ffd9 url('../images/icons/success.png') no-repeat 10px 50%;
    border:1px solid #a6ca8a;
    background-size: 1em;
}
.error {
    background:#ffecec url('../images/icons/error.png') no-repeat 10px 50%;
    border:1px solid #f5aca6;
    background-size: 1em;
}
.warning {
    background:#fff8c4 url('../images/icons/warning.png') no-repeat 10px 50%;
    border:1px solid #f2c779;
    background-size: 1em;
}
.notice {
    background:#e3f7fc url('../images/icons/notice.png') no-repeat 10px 50%;
    border:1px solid #8ed9f6;
    background-size: 1em;
}


/* Added Product */
#addProduct {
    position: fixed;
    width: 50%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 10;
    transform: translate(50%, 0%);
    display: none;
}
#addProductContainer {
    /*display: table-cell;
    vertical-align: middle;*/
}
#addProductContent {
    background: #FFF;
    padding: .5em 1em;  
   /* width: auto;
    max-width: 800px;*/
    margin: auto;
    box-shadow: 0 0 10px #033c79;
}
.apAdded {
    float: left;
    width: 20%;
    font-size: 0.8em;
    margin-top: 1em;
}
.apAdded img {
    width: 25px;
    float: left;
    margin: -5px 5px 0 0;
}
.apProduct {
    display: inline-table;
    width: 80%;
    font-size: 0.9em;
}
.apImage {
   /* display: inline-table;*/
    float: left;
}
.apImage img {
    max-width: 45px;
    max-height: 45px;
}
.apName {
    font-weight: bold;
    font-size: 0.8em;
    padding: 0.5em 0 0.2em 20px;
    display: table;
}
.apPrice, .apQty, .apTotalPrice {
    display: inline-table;
    padding: 0.2em 0 0.2em 20px;
}
.apPrice span, .apQty span, .apTotalPrice span {
    color: #15589f;
}
.apButtons {
    display: none;
    /*width: 30%;*/
}
.apClose {
    display: none;
    /*width: 100%;  */  
}
/*
.apClose:hover {
    text-shadow: 0 0 2px #000000;
}
.apClose .btnClose {
    float: right;
}
.apClose .btnClose .material-icons {
    float: left;
    margin-top: -4px;
}*/

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: -1;
    width: 4em;
    height: 4em;
    text-align: center;
    line-height: 30px;
    background: #d0d0d0;
    color: #444;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    display: table;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}
#back-to-top:hover {
    background: #999;
    color: #FFF;
}
#back-to-top.show {
    opacity: 0.7;
    z-index: 9999;
}
#back-to-top .material-icons {
    display: table-cell;
    vertical-align: middle;
    margin-top: -10px;
}

/* QUANTITY BOX*/
/*.qty, .qtyTotal {
  position: relative;
}*/

.qtyInRelative {
/*    position: relative;
    width: 100%;
    display: flex;*/
}
/*.products.tile .qtyInRelative {
    width: 73px;
}*/
.toCartQty, #hasCartQty {
/*    width: 5em;
    padding: 0.4em 1.3em 0.4em 0.5em;*/
}
/*.products.tile .toCartQty, */.products.tile #hasCartQty {
    width: 4.5em;
}
div.qtyMovement {
/*    position: relative;
    top: 0;
    right: 20px;
    margin-right: -20px;
    border-left: 1px solid #ccc;*/
    display: grid;
    position: relative;
    right: 28px;
    z-index: 2;
}
.qtyType {
    display: flex;
    align-items: center;
    /* padding: 0.375rem 0.75rem 0.375rem 0.75rem; */
    /* white-space: nowrap; */
    margin-left: -20px;
    margin-right: 10px;
}

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

.qty, .qtyTotal
{
  -moz-appearance: textfield;
}

.qty {
 /* width: 45px;
  height: 42px;
  line-height: 1.65;
  float: left;
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  border: 1px solid #eee;*/
}

.qty:focus {
    outline: 0;
}

/*.quantity-nav {
    float: right;
    position: relative;
    height: 26px;
    height: 2em;
    width: 0 !important;
    display: block;
    top: 1px;
    left: -4.5em;
    right: 2.4em;
}*/
/*.products.tile .quantity-nav {
    height: 2.0m;
    right: 2.9em;    
}*/
.products.row .qty.qtyWithTotal + .quantity-nav {
    right: 6.1em;
}
@-moz-document url-prefix() {
    .quantity-nav {       
        right: 2.4em;
    }   
    .products.row .qty.qtyWithTotal + .quantity-nav {
        right: 5em;
    }
}

/*.quantity-button {
    position: relative !important;
    cursor: pointer;
    border-left: 1px solid #ccc;
    width: 20px !important;
    text-align: center !important;
    color: #333;
    font-size: 13px;
    font-family: "Trebuchet MS", Helvetica, sans-serif !important;
    line-height: 1.2;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}*/

/*.quantity-button.quantity-up {
    position: absolute !important;
    height: 50%;
    top: 0;
    border-bottom: 1px solid #ccc;
}

.quantity-button.quantity-down {
    position: absolute !important;
    bottom: -1px;
    height: 50%;
}
.quantity-button:hover {
    background: #428bca;
    color: #FFF;
}*/




/* ORDER BY PARTNER */
#orderByPartner {
    border: 1px solid #606062;
    padding: 1.5em;
    width: 80%;
}
#orderByPartner h2 {
    text-align: left;
    margin-bottom: 1em;
    color: #606062;
}
#orderByPartner .btn {
    margin: 1.0em 0 1em;
}
.popup #orderByPartner.popupForm label {
    text-align: left;
    display: block;
    padding-left: 0;
}
#orderByPartner.popupForm input[type="text"], #orderByPartner.popupForm input[type="password"] {
    width: 100%;
    display: block;
}
#orderByPartner.popupForm input[type="text"]:focus, #orderByPartner.popupForm input[type="password"]:focus {
    -webkit-box-shadow: 0px 0px 10px 5px rgba(66,139,202,0.5);
    -moz-box-shadow: 0px 0px 10px 5px rgba(66,139,202,0.5);
    box-shadow: 0px 0px 10px 5px rgba(66,139,202,0.5);
}

#partners {
    position: absolute;
    width: calc(100% - 3em);
    margin-top: -.6em;
    z-index: 1;
}
#partners div {
    background: #eee;
    padding: .5em 0;
}
#partners div:hover {
    background: #15589f;
    color: #FFF;
}

#sendButtonOrderByPartner.disabled {
    opacity: 0.5;
}
#sendButtonOrderByPartner.disabled:hover {
    background: #15589f;
    color: #FFF;
}


/*** SETTINGS POPUP ***/
#settingsPopup {
    background: #eee;
    position: relative;
    /*max-width: 10em;*/
    z-index: 4;
    clear: right;
    float: right;
    margin-bottom: -15em;
    visibility: hidden;
    
    -webkit-box-shadow: 0px 6px 8px -5px rgb(138, 138, 138);
    -moz-box-shadow: 0px 6px 8px -5px rgb(138, 138, 138);
    box-shadow: 0px 6px 8px -5px rgb(138, 138, 138);
}
#settingsPopup.active {
    visibility: visible;
}
#settingsPopup > div {
    padding: .5em .8em .5em 1.8em;
    font-size: .9em;
    display: block;
}
#settingsPopup > div.link:hover {
    background: #428bca;
    color: #FFF;
}
#settingsPopup div .material-icons {
    display: block !important;
    float: left;
    margin: 0 .3em 0 -.5em;
    width: 1em;
}
#settingsPopup div .images {
    display: block !important;
    float: left;
    margin: 0 .3em 0 -.7em;
}
#settingsPopup div div {
    display: table-cell;
    vertical-align: middle;
}
#settingsPopupCustomerName {
    border-bottom: 1px solid #ccc; 
    font-size: 0.8em; 
    padding-left: 0; 
    padding-right: 0;
}

/*** mydump ***/
.myDump {
    background: #f7f6f6 !important;
    padding: 0 1em;
    width: 500px;
    position: absolute !important;
    margin: 1em;
    border: 5px double #15589f !important;
    max-height: 700px;
    overflow-y: auto;
}
.closeMyDump {
    right: 0;
    top: 0;
    position: absolute;
    padding: 5px;
    font-weight: bold;
    background: #eee;
}
.myDumpContent {
    word-break: break-all;
}

/*** PRELOADER ***/
#preloader {
    width: 100%;
    height: 100%;
    display: table;
    position: fixed;
    background: #FFF;
    opacity: 0.7;
    z-index: 10;
}
#preloader div {    
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}


/* QTY COLLECTOR */
.qtyCollector {    
    background: #428bca;
    color: #FFF;
    padding: .3em 0;
    display: none;
    position: absolute;
    margin-top: -5.3em;
    width: 110px!important;
    font-size: 0.9em;
    margin-left: 0;
    z-index: 2;
    width: fit-content;
}
.qtyCollector:after { 
    content: "";
    display: block;
    margin-bottom: -15px;    
    width: 0;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #428bca transparent;
    
    margin-left: calc(28% - 15px);
}

.qtyCollector > .qtyCollectorType:first-child {
    border-top: 1px solid #FFF;
}
.qtyCollectorType {
    padding: .5em;
    margin: 0 .3em;
    border: 1px solid #FFF;
    border-top: none;
    display: block;
}
.qtyCollectorType:hover {
    background: #FFF;
    color: #428bca;
}
.qtyCollectorTypeName {
    width: 60%;
    display: inline-block;
}
.qtyCollectorTypeValue {
    width: 40%;
    display: inline-block;
    float: right;
}
.closeQtyCollector {
    padding: 0 .3em 0;
}

/* Discount Upload in progress*/
#warningDiscountUploadInProgress {
    display: none; 
    clear:both; 
    padding: .5em; 
    padding-left: 2.5em; 
    font-size: .9em;
    margin-bottom: .5em;
}

/* Favourites */
#menuFavouriteLists {
    background: #FFF;
    z-index: 3;
    margin-top: 2px;
    
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
/*#menuFavouriteLists.active {
    width: auto;
    padding: 1em 1.5em 0 1em;
}*/
#menuFavouriteLists li:hover, #menuFavouriteLists li.active {
    color: #FFF !important;
    background: #428bca;
}
/*.rotate {
  animation: rotation 6s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}*/
.tooltipMod {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted #15589f;*/
}
.tooltipTextMod {
    display: none;
    width: 120px;
    background-color: rgba(21, 88, 159, 0.6);
    color: #fff;
    text-align: center;
    border-radius: 20px;
    margin-right: 15px;
    padding: 5px 0;
    font-size: 0.85em;

/* Position the tooltip */
    position: absolute;
/*    z-index: 1;
    right: 90px;
    top: 17.5px;*/
}
@media (min-width: 600px) and (max-width: 991px) {
    .tooltipTextMod {
        top: 8.5px;
    }
}
@media (max-width: 599px) {
    .tooltipTextMod {
        top: 2.5px;
    }
}
.visibility {
    position: absolute;
    display: inline-block;
}
/*@media (max-width: 991px) {
    .visibility {
        display: none;
    }
}*/


.orderSuccess {
    background: #eee;
    padding: 10px 15px;
}
.orderSuccessImg {
    width: 40px;
    float: left;
    margin-right: 10px;
}

/*ul li a:hover {
color: #6daee7!important;
}*/
/*h3 {
display: none;
}*/
h1 {
    color: #00b050;
    font-family: 'Roboto-BoldCondensed',Arial,sans-serif;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
h2 {
    font-family: 'Roboto-BoldCondensed',Arial,sans-serif;
}
div.col-md-6 h3 {
    display: block;
    color: var(--MVRed);
    font-family: 'Roboto-BoldCondensed',Arial,sans-serif;
    font-weight: bold;
    margin: auto;
    padding: auto;
    text-transform: none;
    font-size: 24px;
    min-height: 56px;
    text-align: center;
}
.tms {
/*    float: right;*/
    margin-left: 15px;
    height: 25px;
    width: 25px;
    vertical-align: middle;
}

/* Új landing*/

#new_footer {
/*    margin-left: 150px;*/
    font-family: Roboto, Arial, sans-serif;
    line-height: 2.5;
}
#new_footer a {
    color: #000!important;
    text-decoration: none;
    font-size: 13px;
}
#new_footer a:hover {
    color: var(--MVRed)!important; 
}
h2.menta_vill {
    color: var(--MVDarkBlue);
    text-transform: uppercase;
    font-weight: bold;
}

span.menta {
    font-family: 'FredokaOne-Regular';
    font-size: 70px;
    color: var(--MVDarkBlue);
    font-weight: 400;
}
span.vill {
    font-family: 'FredokaOne-Regular';
    font-size: 70px;
    color: var(--MVRed);
    font-weight: 400;
}
#carouselMentavillFade .products:hover {
    box-shadow: 0px 0px 5px rgba(0,0,0,0.7);
}
#carouselMentavillFade .title {
    color: #074085;
    height: 3.5em;
    overflow: hidden;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}
#carouselMentavillFade .manufacturer {
    width: 35%;
    display: inline-block;
    text-align: right;
    float: right;
    height: 25px;
}
#carouselMentavillFade .price {
    color: #ec1c23;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
}
#carouselMentavillFade .toCart > div input[type="number"]{
    max-width: 70px;
    width: 100%;
    padding: 0.5em 1.8em 0.4em 0.5em;
    right: 18px;
}
#carouselMentavillFade .toCart {
    visibility: hidden;
    display: inline-block;
    width: 100%;
}
#carouselMentavillFade .products.tile:hover .toCart {
    visibility: visible;
}
#navbarSupportedContent a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}
#search.form-control {
    border-radius: 1.25rem;
    background: #f1f3f5;
    border-color: #f1f3f5;
    color: #000!important;
}
#searchButton {
    position: absolute;
    left: 15px;
    z-index: 2;
    top: 10px;
    cursor: pointer;
}
.close-icon {
    border:1px solid transparent;
    background-color: transparent;
    display: inline-block;
    vertical-align: middle;
    outline: 0;
    cursor: pointer;
}
.close-icon:after {
    background-image: url(/images/svg/cancel.svg);
    background-size: 12px 22px;
    display: inline-block;
    width: 12px; 
    height: 22px;
    content:"";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0%, -50%);
    background-repeat: no-repeat;
}
.search-box:not(:valid) ~ .close-icon {
    display: none;
}
i.fa-xx {
    font-size: 1.5em;
    color: #000;
}
i.fa-xx:hover {
    color: var(--MVRed);
}
.lastAlign {
    -moz-text-align-last: justify; /* Code for Firefox */
    text-align-last: justify;
}
div.card div.card-img-top {
    height: 200px;
}
div.card div.card-img-top img.main {
    max-height: 200px;
/*    max-width: 200px;*/
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cookie {
    background: rgba(204,204,204,0.9);
    position: fixed;
    bottom: 0;
    z-index: 10000;
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}
.input-group > .form-control {
    min-width: 84px!important;
    width: 15%!important;
    max-width: 85px;
    height: unset;
}
.input-group.qtyInRelative {
    flex-wrap: nowrap!important;
}