/* Critical CSS Global */
/* --- ROOT VARS --- */
:root {
  --main-bg: #fff;
  --main-color: #292929;
  --accent: #648025;
  --nav-bg: #e7e7e7;
  --radius: 6px;
  --box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  --focus-outline: 2px solid #29491c;
  --transition: 0.17s;
  --font-size: 16px;
  --base-font-size: 16px;
  --scale-ratio: 1.166;
  --body-font-family: 'Source Sans Pro', 'Inter', Arial, sans-serif;
  --heading-font-family: 'Source Sans Pro', 'Inter', 'Georgia', serif;
  --heading-weight: 600;
  --body-weight: 400;
  --max-content-width: 1200px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --main-bg: #181818;
    --main-color: #f0f0f0;
    --nav-bg: #222;
    --accent: #b6e673;
    --box-shadow: 0 2px 8px rgba(30, 50, 30, 0.13);
  }
}

/* --- RESET --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
  font-size: var(--font-size);
  font-family: var(--body-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--main-bg);
  color: var(--main-color);
  font-family: var(--body-font-family);
  font-weight: var(--body-weight);
  margin: 0; padding: 0; min-height: 100vh;
  line-height: 1.45;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}
/* prevent synthetic bold */
html, body, #page, .site-wrapper { font-weight: 400 !important; }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--heading-font-family);
  color: #0f1724;
  margin: 0 0 0.5em 0; font-weight: var(--heading-weight);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.33rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em 0; font-size: 1em; color: var(--main-color);}
small { font-size: .91em; color: #6b7280; }
strong, b { font-weight: 600; color: inherit; }
em { font-style: italic; }

/* --- LINK, BUTTON, FORM BASICS --- */
a {
  color: #0b63d6; text-decoration: none; outline-offset: 3px; transition: color 0.2s;
}
a:hover, a:focus { color: var(--accent); text-decoration: underline; }
.visually-hidden, .sr-only {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a.visually-hidden-focusable:active,
a.visually-hidden-focusable:focus {
  position: static !important; width: auto; height: auto; margin: 0;
  overflow: visible; clip: auto; white-space: inherit;
}
button, .btn, .button, input[type="submit"] {
  font-family: inherit; font-weight: 600; font-size: 0.97rem; line-height: 1;
  color: #fff; background-color: var(--accent); border: 0; border-radius: var(--radius);
  padding: 8px 14px; cursor: pointer;
  transition: background-color .13s, box-shadow .11s, color .15s;
  outline: none;
}
button:active, .btn:active, .button:active { background: #29491c; filter: brightness(0.95); transform: scale(0.98);}
button:focus { outline: var(--focus-outline); box-shadow: 0 0 0 2px #0b63d6; }
.btn-secondary, .button-secondary {
  background: var(--nav-bg); color: var(--main-color); border: 1px solid var(--accent);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--main-bg); color: var(--accent); outline: var(--focus-outline);
}
.btn[disabled], .button[disabled], input[disabled] {
  background: #e7e7e7;
  color: #999;
  cursor: default;
  opacity: 0.66;
}
input[type="text"], input[type="password"], textarea, select {
  font-family: inherit; font-size: 1rem;
  border-radius: 6px; border: 1px solid #e7e7e7;
  padding: 7px 10px; background: #fafafa;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent); background: #fff;
}
input[type="submit"]:hover,.submitButon:hover, button:hover{ color: #FF0000; }

/* --- NAV & HEADER --- */
header, .banner-container {
  width: 100%; max-width: 1200px; min-width: 180px; margin: auto;
  display: block; background: var(--main-bg);
  z-index: 10; border-radius: var(--radius); position: relative;
}
.banner-container {
  display:block; padding-top:10px; padding-bottom:14px;
}
.maxWidthBannerHome.banner-image, .banner-image {
  width: 100vw; max-width: 100vw; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--box-shadow);
  background: #e6e6e6; object-fit: cover; aspect-ratio: 2.25/1;
}
nav, .navbar, .topbar, .main-nav {
  width:100%; min-height:40px;
  background:var(--nav-bg); margin-bottom:7px;
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  display:flex; align-items:center; font-size:16px;
}
nav ul, .main-nav ul {
  margin:0; padding:0; list-style:none;
  display:flex; align-items:center; gap:8px;
  overflow-x:auto;
}
nav ul li, .main-nav ul li { display:inline-block; font-size:15px; }
nav ul li a, .main-nav ul li a {
  color:var(--main-color); text-decoration:none; padding:10px 4px;
  border-radius:var(--radius);
  transition:color var(--transition),background var(--transition);
  outline:none;
}
nav ul li a:hover, .main-nav ul li a:hover, nav ul li a:focus {
  color:var(--accent); background:rgba(100,128,37,0.07);
  outline:var(--focus-outline);
}
.logo, .logo img {
  height:34px; max-width: 131px;
  display:inline-block; vertical-align:middle; margin:0 5px 0 0;
}

/* --- GLOBAL UTILITY CLASSES --- */
.hide { display: none!important; }
.center, .tc { text-align: center!important; }
.tr{text-align:right;}
.fr{ float: right;}
.fl{ float: left;}
.c{clear:both;}
.mb5{margin-bottom:5px;}
.mt20{margin-top:20px;}
.pt0{padding-top:0!important;}
.nw{white-space:nowrap;}
.pointer, .cp, .cursor{cursor:pointer;}
.bold, .b{font-weight:600;}
.red, .redB{color: #d20000; font-weight: bold;}
.green, .greenB{background-color: #318826; font-weight: bold;}
.blueB{font-weight: bold; color:blue;}
.cBlack{color:black;}
.ml20{margin-left:20px;}

/* --- SPECIFIC SECTIONS (Admin etc, non-duplicate, not deleted) --- */
.saveClasa{
    display:block; margin-top:20px;
    text-align:center; border:1px solid #000; padding:10px;
}
.la100{width:99%;}
.la100 .selectize-input{width:98%;}
.optzeci{width:80%!important;}
.butonSubmit{width:220px!important;text-align:center!important;}
.small{width:100px;height:100px;object-fit:contain;}
.nroferta {font-size: 18px;color: #e10000;}
.centru{text-align:center;}
.centrumesaj{text-align:center;padding:10px;}
.obsMic{font-size:10px;text-align:left;display:block;width:95%;margin:2px auto;margin-bottom:-3px;}

/* --- MENU STYLES (non-destructive, admin, classic) --- */
.meniu {margin:0; padding:0;}
.meniu ul {display:none;}
.meniu li ul {
	margin:0; padding:0; margin-left:-18px; margin-top:8px; border-top:1px solid #1a1a1a;
}
.meniu li ul li{padding-left:33px; opacity:0.7;}
.meniu li{
	list-style:none; margin:0px; padding-left:18px; padding-top:8px; padding-bottom:6px;
	border-bottom:1px solid #1a1a1a; border-top:1px solid #4d4d4d;
}
.meniu li:hover {box-shadow:inset 0 0 15px 3px #222;}
.meniu li a{color:#FFF; display:block; text-decoration:none;}
.meniu .activ {color:#FF0000; font-weight:bold; opacity:1;}

/* --- SOCIAL ICONS / FOOTER --- */
.ctnsocialsSus img {width:30px;}
.ctnsocialsSus{ float:left; height:43px;}
.ctnsocialsSus a{ display:inline-block; transition:all 0.3s;}
.ctnsocialsSus .facebookSus{ margin-right:7px;}
.ctnsocialsSus a:hover { opacity:0.7; }

/* --- BUTTON FAST (UX) --- */
.btn-fast, .button-fast {
  background: #11b11a;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
  padding: 11px 32px;
  box-shadow: 0 2px 13px #138c0e11;
  font-size: 1.02em;
}
.btn-fast:hover { background: #098a0e; color: #e6ffea; }

.stergeElement {position: absolute; right:0; top: -17px;}
.stergeElement input[type="submit"] {
  border: 0; background: none; padding:0; margin:0; font-weight:bold;
}

/* --- ANIMATE CSS UTILS (no keyframes, just classes) --- */
.animated {animation-duration:1s;animation-fill-mode:both;}
.animated.infinite {animation-iteration-count: infinite;}
.animated.hinge {animation-duration:2s;}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {animation-duration:.75s;}

/* --- Chat, modal etc (leave these as-is for admin/comms) --- */
.chatWindow{ position:fixed; right:30px; bottom:29px; width:300px; border:#6cde21 dotted 1px; padding:3px 3px 16px 3px; z-index:9999; background:#fff; display:none;}
.chatTitle { min-width:100px; height:21px; background:#70d12e; color:#fff; font-size:14px; text-align:center; padding-top:3px; position:relative; }
.chatTitleGri { min-width:100px; height:17px; background:#e6e6e6; color:#4f4f4f; font-size:12px; text-align:center; padding-top:1px; position:relative; margin-bottom:3px;}
.chatMe { background-color:#4080ff; color:#fff; float:right; }
.chatB {font-weight: bold;}
/* (Add more chat/chatInputText styles if needed, but do not delete!) */

/* --- Other responsive tweaks, keep for compatibility with homepage/layouts --- */
/* see mobile-fixes.css, responsive.css etc.; already consolidated elsewhere */

/* --- End critical-global.css --- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
b {
	font-weight: bold;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input{
	outline: none;
}
/* END CSS RESET */
body, html{
	font-family: 'Source Sans Pro', sans-serif;
}
body{
	position: relative;
	min-height: 60vw;
}

@font-face {
    font-display: swap;
}
a{
	text-decoration: none;
}
strong {
	font-weight: bold;
}

em {
	font-style: italic;
}
.newStaticContainer p {
	display: block;
	margin-block-start: 10px;
	margin-block-end: 10px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	line-height: 1.3;
}
.newStaticContainer h2 {
	display: block;
	font-size: 22px;
	margin-block-start: 10px;
	margin-block-end: 10px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}
.newStaticContainer h1 {
	display: block;
	font-size: 28px;
	margin-block-start: 10px;
	margin-block-end: 10px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}
.newStaticContainer li {
	padding-left: 30px;
	position: relative;
	padding-bottom: 5px;
	padding-top: 5px;
	line-height: 20px;
}

.newStaticContainer li:before {
	font-family: "FontAwesome";
	content: "\f111";
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 7px;
	position: absolute;
	left: 10px;
	top: 10px;
	color: #000a14;
	font-weight: bold;
}
.flip{
	transform: rotate(-180deg);
}
.filtreExtra{
	display: block;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e2e2;
}
.filtruCauta{
    height: 35px;
    box-sizing: border-box;
    border: 1px solid rgb(132, 132, 132);
    padding: 10px;
    width: 230px;
    margin-right: 10px;
}
.filtruStoc{
    margin-right: 10px;
}
.filtruSubmit{
	background-color: rgb(41, 41, 41);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 11px 15px 9px;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    border: none;
    cursor: pointer;
}
.filtruSubmit:hover{
	background-color: rgb(62, 62, 62);
}
.boxFlashDeals{
    position: relative;
    text-align: center;
    padding: 30px;
    padding-bottom: 20px;
}
.boxFlashDeals img{
	max-width: calc(100% - 60px) !important;
	height: unset !important;
	max-height: 300px !important;
}
.c{
	clear:both;
}
.c:after{
    content: "";
    display: table;
    clear: both;
}
.container{
	width:98%;
	max-width: 1280px;
	margin:auto;
}
#headerup{
	background-color:#f6f6f6;
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index:99999;
}
.headerleft{
	float:left;
}
.headerleft p{
	display:inline-block;
}
.headerleft a{
	color:#4e4e4e;
	padding: 15px 0px 12px;
	display: inline-block;
	margin-right:15px;
	position: relative;
}
.backgroundCat > li a{
	cursor: pointer;
}
.headerleft p:first-child a:first-child::before{
	content:url('../images/whapp.png');
	display: inline-block;
	transform: scale(.4);
	position: absolute;
	left: -12px;
	top: -2px;
}
.headerleft p:first-child a:first-child{
	padding-left: 25px;
}
.headerleft p:first-child a::before{
	content:"\f095\00a0";
	font-family:"FontAwesome";
	color:#c62828;
}
.headerleft p:nth-child(2) a::before{
	content:"\f0e0\00a0";
	font-family:"FontAwesome";
	color:#c62828;
}
.headerright{
	float:right;
}
.meniuContCos{
	background-color:#c62828;
	color:#fff;
	padding:15px 30px 12px;
	display: inline-block;
}
.cereOferta{
	background-color:#686868;
	color:#fff;
	padding:15px 30px 12px;
	display: inline-block;
}
.meniuContCos:hover, .cereOferta:hover{
	background-color: #292929;
}
#logo{
	width:300px;
	text-align: center;
	float:left;
	height:110px;
}
#logo a{
	display:block;
}
#logo img {
	width: 100%;
	display: block;
	height: 110px;
	object-fit: contain;
	object-position: left;
}
#header2{
	display:none;
}

#meniu{
	float:right;
	width: -moz-calc(96% - 722px);
	width: -webkit-calc(96% - 722px);
	width: calc(96% - 722px);
	text-align:right;
}
#meniuContHover{
	background-color:#fff;
	-moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
	border: 1px solid #eeeeee;
	padding: 20px;
	box-sizing: border-box;
	width: 300px;
	right:0;
	border-top: 3px solid #c62828;
	border-bottom: 3px solid #c62828;
}
#meniuContHover::before{
    right: 22%;
    margin-left: -105px;
    bottom: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAnIGhlaWdodD0nMTAwJz4KICA8cG9seWxpbmUgcG9pbnRzPScwLDEwMCA1MCw1MCAxMDAsMTAwJwogICAgICAgICAgICBmaWxsPScjZmZmJyBzdHJva2U9J3JnYmEoMCwgMCwgMCwgMC4wNSknCiAgICAgICAgICAgIHN0cm9rZS13aWR0aD0nMScgc3Ryb2tlLWxpbmVqb2luPSdtaXRlcicgLz4KPC9zdmc+);
    position: absolute;
    content: " ";
    pointer-events: none;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.center{
	text-align: center;
}
.formularautentificare h1{
	font-size:17px;
	font-weight:600;
	color:#292929;
	margin-bottom: 15px;
}
.lbl{
	font-size:13px;
	color:#4e4e4e;
	text-align: left;
}
.i input{
	border: 1px solid #848484;
	width: 100%;
	padding: 8px 8px 5px;
	box-sizing: border-box;
}
.lbl{
	margin-top:8px;
}
.autentificareSubmit{
	margin-top: 12px;
	border: none;
	background: #c62828;
	padding: 8px 0px 7px;
	width: 180px;
	cursor:pointer;
	border-radius:5px;
	color:#fff;
	font-size:14px;
}
.formularautentificare{
	text-align:center;
}
.linkuri{
	margin-top: 8px;
}
.linkuri a{
	color:#3a3a3a;
	margin:0px 3px;
}
.linkuri a:hover{
	color:#c62828;
}
#cautare{
	float:left;
	margin-left:30px;
	width:440px;
	height:110px;
}
#cautare div div > form {
	position: relative;
	margin-top: 10px;
}
#cautare div div>a {
	color: #4e4e4e;
	font-size: 14px;
	display: inline-block;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-right: 20px;
}
#cautare a:hover {
	color: #c62828;
}
#cuvant:hover + button, #cuvant:focus + button, #cautare button:hover {
	color:#c62828;
}
#cautare input {
	border: 1px solid #848484;
	padding: 10px 10px 8px;
	height: 40px;
	padding-right: 45px;
	box-sizing: border-box;
	width: 100%;
}
#cautare button {
	position: absolute;
	top: 0px;
	right: 0px;
	border: none;
	background: none;
	border-left: 1px solid #848484;
	color: #4e4e4e;
	cursor: pointer;
	z-index: 9999;
	height: 40px;
	padding: 0px;
	width: 40px;
}
#cautare button i{
	font-size: 16px;
}
#datenoidefacturare{
	display: none;
}
.titluAlegeMarca{
	margin-top: 10px;
    display: block;
    float: left;
}
.veziToateMarcile{
	float: right;
    padding: 10px;
    background-color: #fff;
    color: #c62828;
    margin-right: 15px;
    cursor: pointer;
}
.veziToateMarcile:hover {
	opacity: 0.7;
}
.filtruGeneral {
	padding: 6px;
	border: 0px;
	margin-left: 29px;
	padding-left: 8px;
	padding-bottom: 4px;
	width: 200px;
	box-sizing: border-box;
	    margin-top: 7px;
}
.newStaticContainer {
	display: block;
	width: 100%;
	line-height: 1.2;
	padding: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	box-sizing: border-box;
}
.mxHeight{
	max-height: 220px;

}
.staticContainer{
	display: block;
	width: 100%;
	text-overflow: ellipsis;
	overflow: hidden;
}
.staticContainer img{
	max-width: 100%;
	max-height: 100%;
}
.toggleIstoric {
	display: none;
	background-color: #fff;
	padding: 10px;
	margin-top: -20px;
	width: 100%;
	box-sizing: border-box;
}
.staticContainer h1{
	color:#3a3a3a;
	font-size:18px;
	font-weight:600;
	margin-top:20px;
}
.right iframe{
	margin-top:20px;
	max-width: 100%;
}
.ctnsocials iframe{
	margin-top:0px;
}
.articolMareAfisareSus{
	margin-top:10px;
	position: relative;
}
.divcentru {
    display: table;
    height: 100%;
    width: 100%;
}
.divrow {
    display: table-cell;
    vertical-align: middle;
}
#meniuAction{
	height:110px;
	position: relative;
}
#cossusqty {
    position: absolute;
    background-color: #c62828;
    width: 20px;
    top: -10px;
    padding: 1px;
    text-align: center;
    border-radius: 3px;
    right: 3px;
    border: 1px solid #fff;
    font-size: 12px !important;
    font: normal normal normal 14px/1 FontAwesome;
        font-size: 14px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color:#fff;
}
#cossusqty::before {
    content: "\f0d7";
    position: absolute;
    top: 10px;
    font-size: 12px;
    color: #f6f6f6;
}
#meniuCosHover{
    top: 66% !important;
    right: 0;
    width: 300px;
    box-sizing: border-box;
    padding: 20px;
    -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.1);
    background: #fff;
    text-align: left;
    border: 1px solid #eeeeee;
    border-top: 3px solid #c62828;
	border-bottom: 3px solid #c62828;
}
#meniuCosHover::before {
    right: 28%;
    margin-left: -105px;
    bottom: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMDAnIGhlaWdodD0nMTAwJz4KICA8cG9seWxpbmUgcG9pbnRzPScwLDEwMCA1MCw1MCAxMDAsMTAwJwogICAgICAgICAgICBmaWxsPScjZmZmJyBzdHJva2U9J3JnYmEoMCwgMCwgMCwgMC4wNSknCiAgICAgICAgICAgIHN0cm9rZS13aWR0aD0nMScgc3Ryb2tlLWxpbmVqb2luPSdtaXRlcicgLz4KPC9zdmc+);
    position: absolute;
    content: " ";
    pointer-events: none;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.cosHoverTitle{
    display: block;
    text-align: center;
}
.ctnMeniuCos{
	float:right;
	height:100%;
	width:208px;
}
.ctnCereOferta{
	float:left;
	height:100%;
	width: 50%;
}
.ctnCereOferta a i{
	display:inline-block;
	height:30px;
	position: absolute;
	color: #fff;
	left: 25px;
	top: -1px;
	font-size: 22px;
}
.ctnCereOferta a::before{
	background:#ababab;
	content: " ";
	position: absolute;
	display: block;
	width: 45px;
	height: 50px;
	left: 0;
	bottom: 0;
	z-index: 0;
	border-right: 0px;
	transform-origin: bottom left;
	-ms-transform: skew(30deg, 0deg);
	-webkit-transform: skew(30deg, 0deg);
	transform: skew(-30deg, 0deg);
	transition: all .5s;
}
.cereOfertaSus{
	position: relative;
	display:inline-block;
	width:225px;
	transition: all .5s;
}
.cereOfertaSus:hover::before{
	background: #c62828;
}
.cereOfertaSus:hover span{
	background:#292929;
	color:#fff;
}
.cereOfertaSus span{
	display:inline-block;
	margin-left:40px;
	padding: 10px 45px 10px 50px;
	box-sizing: border-box;
	background: #f6f6f6;
	color: #292929;
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	transition: all .5s;
}
.meniuCos{
	display:inline-block;
	position: relative;
	width:100%;
}
.ctnMeniuCos a::before {
    background: #c62828;
    content: " ";
    position: absolute;
    display: block;
    width: 45px;
    height: 50px;
    left: 0;
    bottom: 0;
    z-index: 0;
    border-right: 0px;
    transform-origin: bottom left;
    -ms-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    transform: skew(-30deg, 0deg);
}
.ctnMeniuCos a i {
    display: inline-block;
    height: 30px;
    position: absolute;
    color: #fff;
    left: 25px;
    top: -1px;
    font-size: 22px;
}
.meniuCos > span {
    display: inline-block;
    margin-left: 40px;
    padding: 10px 45px 10px 50px;
    box-sizing: border-box;
    background: #292929;
    color: #fff;
    width: 168px;
	text-align: center;
}
.notvisible{
	display:none;
}
#meniuSus{
	background-color: #292929;
	margin-top: 152px;
}
#header{
	position: fixed;
	top: 43px;
	left: 0;
	background-color: #fff;
	width: 100%;
	z-index:9999;
	transition: all .1s;
}
.bx-wrapper .bx-controls-direction a{
	z-index:999;
}
.show900{
	display:none !important;
}
.bxsd{
	-webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.19);
	-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.19);
	box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.19);
}
.meniuSusLeft li{
	display:inline-block;
	margin-right:30px;
}
.promoli{
    padding-left: 30px;
    background-color: #c62828;
    position: relative;
    border-top-left-radius: 30px;
}
.promoParteneri{
	background-color: #c62828 !important;
	position: relative;
	border-top-left-radius: 30px;
}
.maxWidthBannerHome{
	max-width: -webkit-fill-available;
}
.meniuSusLeft .promoParteneri a::after {
	background-color: #c62828 !important;
}
.meniuSusLeft .promoParteneri a::before {
	background-color: #c62828 !important;
}
.marginMeniuSusLeft li{
	margin-right: 25px !important;
}
.marginMeniuSusLeft li a{
		padding: 15px 16px 13px !important;
}
.contactTabelParteneri{
	width: 125px !important;
}
.paddingPromoliTabel{
	padding-left: 26px;
}
.promoli::before{
    content: "\f295";
    font-family: "FontAwesome";
    position: absolute;
    color: #515151;
    background-color: #fff;
    padding: 10px 17px 10px 15px;
    top: 0;
    left: 0;
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
}
.meniuSusLeft .promoli a{
	position: relative;
}
.meniuSusLeft .promoli a::after{
	content:"";
	position: absolute;
	background-color: #c62828;
	transform-origin: bottom left;
	-ms-transform: skew(30deg, 0deg);
	-webkit-transform: skew(30deg, 0deg);
	transform: skew(-30deg, 0deg);
	display: block;
	width: 26px;
	height: 44px;
	top: 0;
	right: 0;
}
.meniuSusLeft li:not(.promoli){
	background: #565656;
}
.meniuSusLeft li a{
	position: relative;
}
.meniuSusLeft li:not(.promoli) a::before{
	content:"";
	background-color: #565656;
	position: absolute;
	transform-origin: bottom left;
	-ms-transform: skew(30deg, 0deg);
	-webkit-transform: skew(30deg, 0deg);
	transform: skew(-30deg, 0deg);
	display: block;
	width: 26px;
	height: 44px;
	top: 0;
	left: -25px;
}
.meniuSusLeft li:not(.promoli) a::after{
	content:"";
	background-color: #565656;
	position: absolute;
	transform-origin: bottom left;
	-ms-transform: skew(30deg, 0deg);
	-webkit-transform: skew(30deg, 0deg);
	transform: skew(-30deg, 0deg);
	display: block;
	width: 26px;
	height: 44px;
	top: 0;
	right: 0;
}
.meniuSusLeft{
	float:left;
}
.contactSusRight{
	float:right;
	width:155px;
	box-sizing: border-box;
	background-color: #3e3e3e;
}
.meniuSusLeft li a{
	color:#fff;
	padding:15px 17px 13px;
	display:inline-block;
}
.meniuSusLeft li a span:hover{
	opacity:0.7;
}
.iconContact{
	position: relative;
	width: 42px;
	height: 44px;
	float:left;
}
.request-call__line {
    overflow: hidden;
    width: 20px;
    height: 33px;
    position: absolute;
    left: 19px;
    top: -10px;
}
.request-call__line-small, .request-call__line-big {
    opacity: 0.6;
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-animation: 2s request-call-small infinite;
    -o-animation: 2s request-call-small infinite;
    animation: 2s request-call-small infinite;
        animation-fill-mode: none;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
.request-call__line-big {
    display: block;
    width: 35px;
    height: 35px;
    position: relative;
    left: -18px;
    top: 15px;
    border: 2px solid;
    border-radius: 50%;
}
.request-call__line-small {
    display: block;
    position: absolute;
    width: 20px;
    left: -10px;
    top: 22px;
    height: 20px;
    border: 2px solid;
    border-radius: 50%;
}
.request-call__ico {
    width: 32px;
    height: 32px;
    position: absolute;
    left: 0;
    bottom: 4px;
    opacity: 0.5;
    -webkit-animation: 2s request-call-ico infinite;
    -o-animation: 2s request-call-ico infinite;
    animation: 2s request-call-ico infinite;
        animation-fill-mode: none;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}
svg:not(:root) {
    overflow: hidden;
}
@keyframes request-call-ico  {
	5% {
		opacity: 1;
	}
}
@keyframes request-call-small  {
	5% {
		opacity: 0.8;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes request-call-big  {
	5% {
		-webkit-transform: scale(0.7);
		-ms-transform: scale(0.7);
		transform: scale(0.7);
	}
	10% {
		opacity: 1;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}
.contactSusRight a{
	color:#fff;
	display:block;
	padding: 0px 15px;
}
.contactSusRight a:hover{
	opacity:0.7;
}
.txtContact{
	float:right;
	width:-moz-calc(100% - 42px);
	width:-webkit-calc(100% - 42px);
	width:calc(100% - 42px);
	text-align: center;
	padding: 15px 0px 13px;
}
#mesaj{
	display:none;
}
#editfrom{
	display: none;
}
#footer{
	background-color: #3e3e3e;
	padding:75px 0px 50px;
}
#barafooter {
	background-color: #292929;
	color: #fff;
	font-size: 13px;
	padding: 5px 0px 3px;
}
#barafooterleft {
	float: left;
	padding-top: 5px;
}
#barafooterleft a{
	color:#fff;
	font-weight:600;
}
#barafooterright {
	float: right;
	text-align: right;
	display: flex;
	align-items: center;
	gap: 5px;
}
#barafooterright a {
	color: #fff;
	opacity: 0.7;
	padding-bottom: 2px;
}
#barafooterright a:hover{
	opacity:1;
}
.footerelement{
	width:22%;
	float:left;
}
.footerlast{
	width:34%;
}
.logofooter img{
	width: 300px;
	height: 110px;
}
.logofooter{
	text-align:right;
	margin-top: -30px;
}
.footerelement h3{
	color:#fff;
	font-weight:600;
	font-size:21px;
	margin-bottom:25px;
}
.footerelement a{
	font-size:16px;
	display:block;
	color: #cecece;
	margin-top:13px;
}
.footerelement a:hover{
	color:#c62828;
}
.footerelement a::before{
	content: "\2022\00a0\00a0\00a0";
}
.contactfooter{
	text-align: right;
}
.contactfooter p{
	margin-top:13px;
	font-size:18px;
	color:#fff;
}
#meniu2{
	display:none;
}
#main{
	margin:20px 0px;
}
.left{
	width:256px;
	float:left;
}
.right{
	float:right;
	width:-moz-calc(98% - 256px);
	width:-webkit-calc(98% - 256px);
	width:calc(98% - 256px);
}
.bx-wrapper{
	margin-bottom:0px;
	box-shadow:none;
	border:none;
}
.bx-viewport{
	height:400px !important;
}
.bx-wrapper .bx-pager{
	bottom:5px;
	right:0;
	padding-right:20px;
	text-align: right;
	color:#3e3e3e;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus {
    background: #292929;
}
.cattoggle{
	text-align: center;
	background: #c62828;
	color: #fff;
	padding: 13px 0px 11px;
	font-size: 17px;
}
.cattoggle i{
	font-size:14px;
	cursor:pointer;
}
#meniuGeneral a{
	box-sizing: border-box;
}
.backgroundCat > li > a .fa{
	display:none;
}
.backgroundCat > li a .fa-angle-double-right{
	display:inline-block !important;
}
.backgroundCat > li > a {
    color: #292929;
}
.topbig{
	left:100% !important;
}
#meniuGeneral a::before{
	content:"\f054";
	font-family:"FontAwesome";
	font-weight:bold;
	font-size:8px;
	position: absolute;
	left: 14px;
	top: 6px;
}
.backgroundCat > li{
	background-color: #f6f6f6;
	border:none !important;
	padding: 3px;
	transition: all .3s;
}
.backgroundCat > li:hover {
    border: none;
    background: #292929;
}
.backgroundCat > li:hover > a{
	color:#fff !important;
}
.firstpageboxTitle{
	background-color:#c62828;
	color:#fff;
	padding:15px 15px 13px;
	box-sizing: border-box;
	margin-top:20px;
	font-size:18px;
}
.firstpageboxTitle .editFast {
	position: absolute;
	right: 10px;
	top: 5px;
}
.titleWithSearch {
	padding:11px 15px 9px;
}
.firstpageboxTitle a{
	color:#fff;
}
.marcaFirstHolder{
	float:left;
	width:16.1%;
	height:50px;
	margin:0px 5px 5px 0px;
	background:#fff;
	cursor:pointer;
	border-bottom:3px solid #dbdbdb;
	transition: all .3s;
}
.marcaFirstHolder:hover{
	border-color:#c62828;
}
.marcaFirstImg{
	height:100%;
	width:60px;
	float:left;
	text-align: center;
}
.marcaFirstImg img{
	max-width:80%;
	max-height:38px;
}
.marcaFirstText{
	float:left;
	width:-moz-calc(100% - 60px);
	width:-webkit-calc(100% - 60px);
	width:calc(100% - 60px);
	height:100%;
	color: #4e4e4e;
}
.firstautoHolder{
	display: none;
	background-color:#eee;
	box-sizing: border-box;
	padding: 10px 5px 5px 10px;
	-webkit-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.19);
	-moz-box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.19);
	box-shadow: inset 0px 0px 5px 1px rgba(0,0,0,0.19);
}
.articol{
	width: 23.5%;
	margin-right:2%;
	float:left;
	padding:14px;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.19);
	-moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.19);
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.19);
	margin-top: 2%;
	position: relative;
}
.articol:nth-child(4n){
	margin-right:0px;
}
.articolImg a{
	text-align:center;
	display:block;
}
.articolImg{
	height:150px;
	transition: all .3s;
}
.articolImg img{
	height:150px;
	width:100%;
	max-width:200px;
	object-fit: contain;
	object-position: center;
}

.articolTitle, .articolTitle a{
	cursor:pointer;
	color:#292929;
	font-weight:600;
	font-size:20px;
	text-align: center;
	height:40px;
	overflow: hidden;
	transition: all .5s;
	text-transform: capitalize;
}
.articolDescriere {
	height: 74px;
	overflow: hidden;
	text-align: center;
}
.articolTitle:hover, .articolTitle:hover a{
	color:#c62828;
}
.articolStars{
	display:none;
}
.articolProducator img {
	height: 35px;
	width: 100%;
	object-fit: contain;
	object-position: center;
}
.show600{
	display:none;
}
.articolProducator{
	text-align: center;
	height:40px;
}
.variantastoc{
	margin-bottom: 10px;
}
.articol .imgstoc {
	margin-left: calc(50% - 15px);
	margin-top: 4px;
	margin-bottom: 4px;
	float: none !important;
	width: 25px;
}
.imgstoc {
    width: 25px;
    float: left;
}
.articol .titluStoc{
	display: none !important;
}
.titluStoc{
border: 1px solid #E6DEDE;
    border-radius: 5px;
    padding: 7px;
    background-color: #fff;
    margin-left: 10px;
    float: left;
    width: calc(100% - 55px);
    font-size: 14px;
}
.titluComanda{
	text-transform: capitalize;
}
.articoljustPret{
	color:#c62828;
	font-size:18px;
	height: 75px;
	text-align: center;
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 6px;
	margin:auto;
	width: 80%;
}
.articoljustPret span{
	font-size:26px;
	font-weight:bold;
}
.articolPret {
    background: #f4f4f4;
    border: 1px solid #E2E2E2;
    padding: 6px;
    box-sizing: border-box;
    height: 170px;
    margin-top: 10px;
}
.textStoc{
	font-size: 14px;
}
.articolCumpara{
	width:80%;
	margin:auto;
}
.cumparaarticole{
	color: #fff;
	padding: 11px 15px 9px;
	text-align: center;
	border-radius: 5px;
	background-color: #c62828;
	cursor:pointer;
	padding-left: 40px;
	transition: all .3s;
}
.alertastoc{
	background-color: #292929;
	color: #fff;
	padding: 11px 15px 9px;
	text-align: center;
	border-radius: 5px;
	transition: all .3s;
}
.cumparaarticole:hover{
	background: #d36464;
}
.alertastoc:hover{
	background-color: #3e3e3e;
}
.cumparaholderbuton{
	position: relative;
}
.qtyctrl{
	position: absolute;
	width: 45px;
	top: 5px;
	left: 5px;
}
.qtyctrl input{
	width: 100%;
	border: none;
	box-sizing: border-box;
	padding: 7px 10px 4px;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	border-right: 2px solid #a8a8a8;
}
.qtyinput {
    float: left;
}
.qtyplus {
    float: left;
    margin-left: -16px;
    margin-top: 0px;
    cursor: pointer;
    background-image: url(../images/sus.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    width: 10px;
    height: 11px;
}
.qtyminus {
    float: left;
    margin-left: -16px;
    margin-top: 18px;
    cursor: pointer;
    background-image: url(../images/jos.png);
    background-position: center top;
    background-repeat: no-repeat;
    width: 10px;
    height: 11px;
}
.cumparaarticole i{
	font-size:14px;
}
.minicat .coloanamarci {
    float: left;
    display: block;
    width: -moz-calc(25% - 6px);
    width: -webkit-calc(25% - 6px);
    width: calc(25% - 6px);
    height: 100%;
    margin-right: 6px;
}
.coloanamarci a {
    width: 80% !important;
    display: block !important;
    padding: 6px !important;
    height: 55px;
    margin:auto;
    margin-bottom: 5px;
	background-color: #fff;
	border-bottom:3px solid #dbdbdb;
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(163,163,163,1);
	-moz-box-shadow: inset 0px 0px 3px 0px rgba(163,163,163,1);
	box-shadow: inset 0px 0px 3px 0px rgba(163,163,163,1);
	transition: all .3s;
}
.coloanamarci a:hover{
	border-color:#c62828;
}
.coloanamarci .marciAutoImg{
	display: block;
	width: 50px;
	float: left;
	height: 42px;
	text-align: center;
	background: #fff;
}
.coloanamarci .imgAutoProd{
	max-width: 95%;
	max-height: 36px;
}
.coloanagrupe a::before{
	content:none !important;
}
.coloanamarci .marciAutoText{
	display: block;
	float: right;
	height: 100%;
	width: -moz-calc(100% - 60px);
	width: -webkit-calc(100% - 60px);
	width: calc(100% - 60px);
	color: #292929;
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}
.coloanamarci a::before{
	content:none !important;
}
.coloanagrupe{
	display: block;
	height:100%;
}
.coloanagrupe a{
	display:block !important;
	padding:6px !important;
	font-size: 17px;
}
.iconGrupa{
	font-size: 20px;
	color: #c62828;
}
.textGrupa{
	display: inline-block;
	height: 17px;
	margin-left: 6px;
	color: #292929;
}
.grupa{
	margin-bottom:8px;
}
.minicattext {
	width:100%;
	box-sizing: border-box;
}
.marciautosus{
	height:70% !important;
}
.cosHoverTitle{
	color:#292929;
	font-size:18px;
	font-weight:600;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
}
.linkbuton{
	display: block;
	font-weight: normal;
	font-size: 16px;
	background-color: #c62828;
	width: 140px;
	margin: auto;
	margin-top: 10px;
	border-radius: 5px;
}
.linkbuton:hover{
	background-color: #3e3e3e;
}
.linkbuton a{
	color: #fff;
	display: block;
	padding: 8px 0px 6px;
}



/*AUTOSUGEST*/
.ui-autocomplete {
    max-width: 500px;
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
    }
.ui-autocomplete .ui-menu-item:nth-child(even){
    background-color: #e9eaef;
}
.ui-menu .ui-menu-item{
    list-style-image: none !important;
    border-bottom: 1px solid #bbbbbb;
    padding:0px;
}

.ui-menu-item:hover, .ui-menu-item-wrapper:hover {
	background-color: initial !important;
}


.titluSugest {
    font-size: 16px;
    padding: 10px !important;
    padding-bottom: 7px !important;
    background-color: #686868;
    color: #fff;
}
.masinaSugest {
    border-bottom: solid 1px #777;
    margin-bottom: 3px;
}
.masinaSugest:hover {
    background-color: #ebebeb;
}
.masinaSugest .textsugest {
    padding-top: 6px;
}
.masinaSugest .textsugest .cpT, .masinaSugest .textsugest .kwT {
    width: 67px;
}
.searchcuvinte {
    display: inline-block;
    margin: 5px;
    padding: 6px;
    padding-bottom: 5px;
    background-color: #ebebeb;
    color: #565656;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
}
.searchcuvinte:hover {
    color: #407ec9;
}
.textsugest b{
    line-height: 1.3;
    font-weight:normal;
}

.motor{
    color: #0c154c;
	font-weight: 600;
	font-size: 14px;
}
.cp, .cw, .carburant {
    color: #a71c21;
    font-weight: 600;
    font-size: 14px;
}
.searchsugest {
    width: 100%;
    min-height: 40px;
}


.searchsugest:hover{
    background-color: #f5e6e6 !important;
    color: #A52A2A  !important;
    cursor: pointer;
}

.imaginesugest {
    float: left;
    width: 45px;
    height: 40px;
}
.imagineflex {
    display: flex;
    align-items: center;
    justify-content: center;
}
.imaginesugest img {
    max-width: 45px;
    max-height: 40px;
}
.textsugest {
    float: right;
    width: calc(100% - 45px);
    width: -webkit-calc(100% - 45px);
    width: -moz-calc(100% - 45px);
}
.textsugest .modeleT, .textsugest .rightT, .textsugest .leftT {
    line-height: initial;
    width: 100%;
}
.textsugest .rightT {
    text-align: right;
}
.denumiresugest {
    display:block;
    color: #393939;
    font-size: 15px;
    height: inherit;
}
.descrieresugest {
    display:block;
    font-size: 12px;
    color: #fff;
    height: 0px;
    overflow: hidden;
}
.pretsugest {
    text-align: right;
    color: #f5e6e6;
}
.codsugest {
    font-size: 12px;
    float: left;
    padding-top: 5px;
    font-weight: bold;
}
.ui-menu {
    z-index: 99999999999 !important;
        max-height: 489px;
    overflow-y: auto;
}
.veziTot .denumiresugest{
    text-align: center;
    color: #d48e1b;
    text-decoration: underline;
}
.veziTot .imaginesugest{
    height: 17px;
}
.veziTot{
    min-height: 17px;
}
.veziTot .imaginesugest img {
    max-height: 17px;
}
.ui-state-active{
    background: none !important;
    background-color: #f5e6e6 !important;
}
.ui-state-active .searchsugest{
    opacity:1 !important;
}
.ui-state-active .searchsugest{
    color: #A52A2A  !important;
}
/*END AUTOSUGEST*/


.cosHoverAll{
	height: 100px;
	display: block;
	border-bottom: 2px solid #eee;
}
.cosHoverImg{
	display:block;
	float:left;
	width:60px;
	height:100%;
}
.cosHoverImg img {
	width: 100%;
	height: 100px;
	object-fit: contain;
	object-position: left;
}
.cosHoverDenumire{
    float: right;
    display: block;
    width: -moz-calc(100% - 70px);
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
    color: #292929;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top:20px;
    cursor: pointer;
}
.cosHoverTotal{
	float: right;
	display: block;
	width: -moz-calc(100% - 70px);
	width: -webkit-calc(100% - 70px);
	width: calc(100% - 70px);
}
#meniuCosHover a::before{
	content:none !important;
	background: none !important;
}
#meniuCosHover a i{
	position:relative;
	color:#c62828;
	height:auto;
	left:auto;
	top:auto;
	font-size:13px;
}
.cosHoverSterge{
	font-size:13px;
	color:#c62828;
	display: block;
	margin-top: 5px;
}
.italic{
	font-style: italic;
	font-size:13px;
	color:#4e4e4e;
}
.pretCosHover{
	font-size:18px;
	color:#c62828;
	font-weight:600;
}
.totaluri{
	margin-top:10px;
	display: block;
	text-align: right;
	font-weight:600;
	color:#292929;
	font-size:18px;
}
.disp{
	display:block;
	text-align: right;
	font-style: italic;
	color:#4e4e4e;
	font-size:15px;
	font-weight:normal;
}
.nav_link{
	margin-bottom:20px;
}
.nav_link a{
	color:#4e4e4e;
	text-transform: capitalize;
}
.nav_link .fa:not(.fa-home){
	font-size:10px;
	color:#c62828;
}
.nav_link .home{
	color:#292929;
}
.nav_link a:hover{
	color:#c62828;
}
.promoArticol{
	display: none;
}
#content .firstpageboxTitle{
	position: relative;
	margin-top:0px;
	padding: 12px 15px 10px;
	text-transform: capitalize;
}
#content .firstpageboxTitle .articoledit {
	padding: 10px;
	padding-top: 11px;
}
#content .firstpageboxTitle .blogedit {
	padding: 10px;
	padding-top: 12px;
}
.articolImagine{
	float:left;
	width:39%;
	text-align: center;
	box-sizing: border-box;
	padding:10px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	-moz-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	border-radius:3px;
	min-height: 210px;
}
.articolImagine a{
	display: block;
}
.articolImagine a img{
	width:95%;
	height: 350px;
	object-fit: contain;
	object-position: center;
}
.w59{
	width:59%;
	float:right;
}
.articolMareProducator{
	height:60px;
	overflow: hidden;
}
.articolMareCod span {
	font-weight: bold;
}
.imgProd, .linkProd{
	height:100%;
	width:50%;
	float:left;
	text-align: center;
	color:#4e4e4e;
}
.imgProd img {
	height: 50px;
	width: 95%;
	object-fit: contain;
	object-position: center;
}
.articolMareDreapta{
	background: #f4f4f4;
	border: 1px solid #E2E2E2;
	padding: 10px;
	box-sizing: border-box;
	margin-top: 10px;
	text-align: center;
}
.divCt{
	font-size:15px;
	color:#4e4e4e;
	font-style:italic;
}
.divCt p{
	color:#292929;
	font-weight:600;
	font-size:17px;
	display:inline-block;
	font-style:normal;
}
.divPret{
	position: relative;
	margin:10px 0px;
	color:#c62828;
	font-weight:600;
	font-size:26px;
	border-bottom:1px solid #dbdbdb;
	padding-bottom:10px;
}
.divPret span{
	font-size:22px;
}
.variantacumpara{
	width:200px;
	margin:auto;
}
.articleCriterii{
	margin-top:10px;
}
.notaCos{
	padding-left: 10px;
}
.articleCriterii h2{
	font-weight:600;
	color:#292929;
	margin-bottom:8px;
	font-size:18px;
	padding-left: 9px;
}
.artCrits p{
	color:#4e4e4e;
	font-size:15px;
	padding:10px;
}
.artCrits p:nth-child(2n+1){
	background-color: #f6f6f6;
}
.descriptionart{
	margin-bottom:20px;
}
.articolMareAfisareSus{
	margin-bottom:20px;
}
.descriptionart h2{
	font-size:17px;
	font-weight:600;
	color:#292929;
}
.descriptionart p{
	margin-top:5px;
	color:#4e4e4e;
	font-size:15px;
}
#raspundeGeneral{
	display: none;
}
.parereleft{
	float: left;
	width: 49%;
}
.parereright{
	float: right;
	width: 49%;
	padding-top: 20px;
}
.parereright textarea{
	border: 1px solid #848484;
    width: 100%;
    padding: 8px 8px 5px;
    box-sizing: border-box;
    height: 232px;
}
.pr6{
	text-align: center;
	margin-top:20px;
}
.pr6 input{
	color:#fff;
	border:none;
	background-color:#c62828;
	padding:10px 0px 8px;
	width:120px;
	cursor: pointer;
	transition: all .3s;
}
.pr6 input:hover{
	background: #3e3e3e;
}
#detaliiarticol > ul {
    background-color: #3e3e3e;
}
.tabss > ul li.active a {
    color: #4e4e4e;
}
.imaginesmallc{
	float:left;
	width:25%;
	box-sizing: border-box;
	height:50px;
	text-align: center;
}
.imaginesmallc img{
	max-height:45px !important;
	max-width:95% !important;
}
.onlyDescriereHolder{
	display:none;
}
.contentSusCat{
	color:#4e4e4e;
	margin-bottom: 15px;
	margin-top: 15px;
}
.ordonare{
	float:left;
}
.afisareHolder{
	float:right;
}
.paginare{
	float:right;
	margin-top:10px;
}
.paginare a {
    color: #0c323f;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    line-height: 25px;
    text-decoration: none;
    float: left;
    border: solid 1px #e2e2e2;
    padding: 2px 10px 1px;
    border-left: none;
}
.paginare a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid #e2e2e2;
}
.paginare a:nth-child(2):not(.nextpage) {
    border-right: none;
}
.paginare a:hover{
	background-color: #f4f4f4;
}
.paginare .previouspage, .paginare .nextpage {
    padding-bottom: 1px;
    color: #295678;
}
.paginare select {
    padding: 5px;
}
.paginare select {
    border: solid 1px #e2e2e2;
    padding: 6px 5px 4px;
    outline: 0;
}
.paginare select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    float: left;
    width: 45px;
    height: 30px;
    background-image: url(../images/sageata_albastra_jos.png);
    background-repeat: no-repeat;
    background-position: right center;
}
.paginare a.lastpage {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.previouspage i, .nextpage i {
    font-size: 11px;
}
#detaliiarticol{
	margin:10px 0px;
}
.ordonare select, .i select{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:1px solid #e2e2e2;
    padding:6px 6px 4px;
    box-sizing: border-box;
    width:140px;
    background-image: url(../images/sageata_albastra_jos.png);
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
}
.titleoferta{
	margin:15px 0px 10px;
	color: #292929;
}
.titleoferta i{
	margin-right:4px;
}
.afisareHolder span{
	color:#4e4e4e;
	font-size:15px;
	float:left;
	padding-top: 4px;
	margin-right: 8px;
}
.afisareHolder a{
	font-size:24px;
	float:left;
	margin-left: 6px;
	color:#3e3e3e;
}
.afisareHolder .active{
	color:#c62828;
}
.filtreleft{
	margin-top:20px;
}
.istorictitle{
    text-align: center;
    background: #c62828;
    color: #fff;
    padding: 13px 0px 11px;
    font-size: 17px;
	cursor: pointer;
}
.istorictitle i {
    font-size: 14px;
    cursor: pointer;
}
.filtreleft{
	-webkit-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	-moz-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
}
.ctn_flitre{
	box-sizing: border-box;
	padding:5px 0px 12px;
	text-align: center;
}
.ctn_flitre .SumoSelect{
	width: -moz-calc(25% - 3px);
	width: -webkit-calc(25% - 3px);
	width: calc(25% - 3px);
	margin-left:0px;
}
.paginareholder .istorictitle {
	margin-top: 8px;
	cursor: pointer;
}
.filtreleft .SumoSelect > .CaptionCont{
	border: 1px solid #dbdbdb;
	background: #e9e9e9;
}
.filtreleft .SumoSelect > .optWrapper{
	border: 1px solid #dbdbdb;
}
.SumoSelect > .CaptionCont > span.placeholder{
	color: #4e4e4e;
	font-weight:normal;
	font-size: 14px;
}
.filtreleft .SumoSelect:focus > .CaptionCont, .SumoSelect:hover > .CaptionCont, .SumoSelect.open > .CaptionCont {
    border-color: #dbdbdb;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(153, 153, 153, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(153, 153, 153, 0.6);
}
.filtreleft .SumoSelect:focus > .optWrapper, .SumoSelect:hover > .optWrapper, .SumoSelect.open > .optWrapper{
	border-color: #dbdbdb;
    -webkit-box-shadow: inset 0 0px 1px rgba(0,0,0,.075), 0 0 1px rgba(153, 153, 153, 0.6);
    box-shadow: inset 0 0px 1px rgba(0,0,0,.075), 0 0 1px rgba(153, 153, 153, 0.6);
}
.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i, .SumoSelect .select-all.selected > span i, .SumoSelect .select-all.partial > span i{
	background-color: #727272;
}
.ctnistoric{
	margin-top:20px;
}
.ctnistoric {
    -webkit-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
    -moz-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
    box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
}
.istoricMasini {
    box-sizing: border-box;
    padding: 5px;
}
.imgIstoric{
	display: block;
	float:left;
	width:60px;
	text-align: center;
	height:50px;
}
.imgIstoric img{
	max-height:40px;
	max-width:95%;
}
.textIstoric{
	display:block;
	float:right;
	width:calc(100% - 70px);
	height:50px;
	overflow: hidden;
}
.textIstoric{
	color:#4e4e4e;
}
.istoricMasini li{
	padding-bottom:8px;
	padding-top:6px;
	border-bottom:1px solid #eee;
	transition: all .3s;
}
.istoricMasini li:hover{
	background-color:#f6f6f6;
}
.istoricMasini li:last-child{
	border:none;
}
.articolelista .articol{
	width:100%;
	margin-right:0px;
}
.articolelista .articolImg {
    height: 180px;
    float: left;
    width: 200px;
}
.articolImg:hover{
	opacity:0.7;
}
.articolelista .articolctn{
	float:left;
	width: -moz-calc(65% - 200px);
    width: -webkit-calc(65% - 200px);
    width: calc(65% - 200px);
}
.articolelista .articolCrit {
	height: 90px;
	overflow: hidden;
}
.articoleholder:not(.articolelista) .articolCrit{
	overflow: hidden;
	height: 18px;
	line-height: 17px;
	text-align: center;
	margin-top: 6px;
}
.articolelista .articolPret{
	float:right;
	width:33%;
	height:160px;
}
.articolelista .articolTitle, .articolelista .articolProducator{
	text-align:left;
}

.formularfull h2{
	position: relative;
	width: 100%;
	margin: 20px 0px 40px;
}
.formularfull{
	box-sizing: border-box;
	padding:10px 12px 12px;
	position: relative;
	color:#4e4e4e;
}
.formularfull h2 span {
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	padding: 0px 10px;
	color: #4e4e4e;
	font-weight: 600;
	font-size: 17px;
}
.titluCenter{
	text-align: center;
	font-size:22px;
	font-weight:600;
	color:#292929;
}
.itextarea textarea{
	border:1px solid #848484;
	padding:8px 8px 5px;
	box-sizing: border-box;
	width:100%;
	height:130px;
}
.anfab{
	width:130px;
	float:left;
}
.seriecar{
	float:right;
	width:-webkit-calc(98% - 130px);
	width:-moz-calc(98% - 130px);
	width:calc(98% - 130px);
}
.mchk{
	float:left;
	width:20%;
	color:#4e4e4e;
}
.ctnbife{
	color:#3a3a3a;
	font-size:15px;
}
.ctnbife a{
	color:#c62828;
}
.ctnbife a:hover{
	color:#3189b6;
}
.submbtn input{
	border:none;
	background-color: #c62828;
	color:#fff;
	border-radius:5px;
	padding:8px 0px 6px;
	width:100%;
	text-align:center;
	cursor: pointer;
}
.submbtn input:hover{
	background-color: #292929;
}
.submbtn{
	width:140px;
	margin:auto;
}
.cosimg{
	float:left;
	width:160px;
	height:140px;
	overflow: hidden;
	text-align:center;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	-moz-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	border-radius: 3px;
	transition: all .3s;
}
.cosimg:hover{
	opacity:0.7;
}
.cosimg a{
	display: block;
}
.cosimg img{
	max-width:95%;
	max-height:135px;
}
.objectFitImgCos img{
	object-fit: contain;
}
.cosCol2{
	float:left;
	width:-moz-calc(60% - 160px);
	width:-webkit-calc(60% - 160px);
	width:calc(60% - 170px);
	box-sizing: border-box;
	padding-left:20px;
}
.cosdenumire{
	color:#292929;
	font-size:18px;
	cursor:pointer;
	margin-bottom:10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all .3s;
}
.cosdenumire:hover{
	color:#c62828;
}
.caracteristicicos{
	margin-bottom:6px;
	height:80px;
	overflow: hidden;
}
.caracteristicicos p{
	color:#4e4e4e;
	font-size:14px;
	background-color:#f6f6f6;
	padding:6px;
	box-sizing: border-box;
	display: block;
}
.caracteristicicos p:nth-child(2n){
	background-color:#fff;
}
.caracteristicicos p:last-child{
	border-bottom:2px solid #f6f6f6;
}
.flexCosNota{
	display: flex;
	flex-direction: column;
	gap: 0px;
	border-bottom: 2px solid #f6f6f6;
	padding-bottom: 20px;
}
.cosProd{
	float:left;
	height:25px;
}
.cosProd img {
	height: 35px;
	width: 100%;
	object-fit: contain;
	object-position: left;
}
.cosqty{
	float:right;
}
.cosCe{
	font-style: italic;
	font-size:14px;
	color:#4e4e4e;
}
.cosqty input{
    border: 1px solid #dbdbdb;
    box-sizing: border-box;
    padding: 5px 0px 3px;
    width: 40px;
    text-align: center;
}
.cosCol3{
	width:40%;
	float:right;
	position: relative;
}
.cospret, .costotal{
	height:140px;
	text-align: center;
	float:left;
	width:50%;
	color:#4e4e4e;
	font-style:italic;
	font-size:14px;
}
.cospret span{
	color:#c62828;
	font-style: normal;
	font-size:22px;
	font-weight:600;
}
.aranjareBoxuriCos{
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}
.costotal span{
	color:#292929;
	font-style: normal;
	font-size:22px;
	font-weight:600;
}
.cossterge{
	text-align: center;
	position: absolute;
	bottom: 5px;
	right: 0px;
}
.cossterge a{
	color:#c62828;
	font-size:14px;
}
.cossterge a:hover{
	opacity:0.7;
}
.notaCosArticol{
	margin-top: 10px;
		background-color: #f6f6f6;
	padding: 20px;
	text-align: right;
	border-bottom: 1px solid #dbdbdb;
	border-top: none;
}
.BkNotaCos {
	color: #c62828;
	font-weight: bold;
	font-size: 16px;
}
.redIconCos{
	color: #c62828;;
	filter: invert(23%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(89%) contrast(97%);
}
.marginCosPagina{
	border: 1px solid #dbdbdb;
	border-top: none;
	margin-top: 0px;
}
.artcos{
	margin-top:20px;
}
.totaluricos .disp{
	font-size: 18px;
	margin-bottom: 5px;
}
.totaluricos{
	margin-top: 0px;
	padding:12px 10px;
	box-sizing: border-box;
	background-color:#fbfbfb;
	font-size: 22px;
}
#formularcomanda{
	margin-top:15px;
}
.selectincos{
	margin-bottom:10px;
}
.v {
    margin-top: 8px;
    font-size: 13px;
    color: #4e4e4e;
    text-align: left;
}
#scfacturare{
	display:none;
}
#curidicare{
	display: none;
}
#adresanew{
	display: none;
}
#rosc, #tva_incasaresc{
	border: 1px solid #eee;
	padding: 6px 6px 4px;
	box-sizing: border-box;
	width: 60px;
	display: inline-block;
}
#rsc{
	width: -moz-calc(100% - 64px);
	width: -webkit-calc(100% - 64px);
	width: calc(100% - 64px);
	display: inline-block;
}
.selectincos b{
	font-weight:600;
	padding-left: 5px;
}
.modelholder li{
    width: 49%;
    padding-left: 1%;
    padding-right: 1%;
    box-sizing: border-box;
    float:left;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    line-height: 27px;
    background-color:#fff;
    margin-right:0.5%;
    margin-left: 0.5%;
    cursor: pointer;
}
.modelholder ul li:nth-child(4n+1), .modelholder ul li:nth-child(4n+2), .tipholder ul li:nth-child(2n+1){
	background-color: #f6f6f6;
}
.modelholder ul li:nth-child(2n){
	margin-right:0px;
}
.titluLi{
	background-color: #c62828 !important;
	padding: 12px 11px 9px !important;
}
.titluLi a{
	color:#fff;
	cursor:default;
}
.modelNr {
    width: 26px;
    text-align: center;
    display: block;
    float: left;
}
.modelname {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 65%;
    display: block;
    white-space: nowrap;
    float: left;
    min-height: 17px;
}
.modelholder .flright {
    float: right;
    width: 120px;
}
.modelholder .delaan {
    float: left;
    width: -moz-calc(100% - 65px);
    width: -webkit-calc(100% - 65px);
    width: calc(100% - 65px);
}
.modelholder .laan {
    float: right;
    width: 65px;
    text-align: right;
}
.modelholder li:not(.titluLi) .modelNr{
	font-size:13px;
	color:#c62828;
}
.modelholder li:not(.titluLi) .modelname{
	color:#292929;
	font-weight:600;
	font-size:15px;
}
.modelholder .laan::before{
	content:"-";
	margin-right: 5px;
}
.new500{
	display: none;
}
.modelholder .laan span{
	width:55px;
	display:inline-block;
}
.modelholder li:not(.titluLi) .delaan{
	font-size:15px;
	color:#303030;
}
.modelholder li:not(.titluLi) .laan{
	font-size:15px;
	color:#303030;
	font-weight:600;
}
.modelholder ul li:not(.titluLi):nth-child(n){
	border-bottom:2px solid #f6f6f6;
}
.tipholder li{
	padding-left: 1%;
    padding-right: 1%;
    box-sizing: border-box;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0px;
    line-height: 20px;
    background-color:#fff;
    float:left;
    width:100%;
}
.tipholder .flleft {
    float: left;
    width: -moz-calc(100% - 352px);
    width: -webkit-calc(100% - 352px);
    width: calc(100% - 352px);
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    min-height: 17px;
}
.tipNr {
    width: 26px;
    text-align: center;
    display: inline-block;
}
.tipholder .flright {
    float: right;
    width: 352px;
    text-align: right;
}
.cwtip {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;
    width: 40px;
	box-sizing: border-box;
	text-overflow: ellipsis;
    white-space: nowrap;
}
.cptip {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;
    width: 40px;
	box-sizing: border-box;
	text-overflow: ellipsis;
    white-space: nowrap;
}
.carburanttip {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;
    width: 70px;
	box-sizing: border-box;
	text-overflow: ellipsis;
    white-space: nowrap;
}
.caroserietip {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 80px;
	box-sizing: border-box;
}
.tipholder .delaan {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 45px;
	box-sizing: border-box;
}
.tipholder .laan {
    display: inline-block;
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 60px;
	box-sizing: border-box;
	font-weight:600;
}
.tipholder li:not(.titluLi) .tipNr {
    font-size: 13px;
    color: #c62828;
}
.tipholder li:not(.titluLi) .flleft {
    color: #292929;
    font-weight: 600;
    font-size: 15px;
}
.tipholder li:not(.titluLi) .flright{
	font-size: 15px;
	color: #303030;
}
.cauitaInMasina{
	background-color:#f6f6f6;
	padding:20px;
	text-align: center;
	border:1px solid #dbdbdb;
}
.cauitaInMasina h5{
	margin-bottom:10px;
	color:#4e4e4e;
}
.cauitaInMasina input{
	border:1px solid #dbdbdb;
	padding:6px 6px 4px;
	vertical-align: middle;
}
.cauitaInMasina button,.cauitaInMasina input[type="submit"]{
	background-color:#c62828;
	color:#fff;
	border:none;
	padding: 7px 10px 5px;
	border-radius:5px;
	vertical-align: middle;
	cursor: pointer;
	transition: all .3s;
}
.cauitaInMasina button:hover, .cauitaInMasina input[type="submit"]:hover{
	background-color: #3e3e3e;
}
.catsAuto{
	float:left;
	width:49%;
	margin-right:2%;
	margin-bottom:2%;
	box-sizing: border-box;
	padding: 10px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	-moz-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	border-radius: 3px;
	transition: all .10s;
	cursor: pointer;
}
.catsAuto:hover img{
	-ms-transform: scale(1.3); /* IE 9 */
    -webkit-transform: scale(1.3); /* Safari 3-8 */
    transform: scale(1.3);
}
.catsAuto:hover .titluAutocat{
	color:#c62828;
}
.catsAuto:nth-child(2n){
	margin-right:0px;
}
.imgAutocat{
    float: left;
    width: 240px;
    height: 200px;
    overflow: hidden;
}
.imgAutocat a{
	display: block;
	text-align: center;
}
.imgAutocat img{
	max-width:98%;
	max-height:190px;
	transition: all .5s;
}
.textAutocat{
	float:right;
	width:-moz-calc(100% - 250px);
	width:-webkit-calc(100% - 250px);
	width:calc(100% - 250px);
	height:200px;
}
.titluAutocat{
	margin-bottom:20px;
	color:#292929;
	font-weight:600;
	font-size:18px;
	transition: all .5s;
}
.descAutocat{
	color:#4e4e4e;
	font-size:14px;
}
.ctnCatsAuto{
	margin-top:20px;
}
.staticContainer p{
	margin-top:8px;
	color:#292929;
}
#cookies {
    position: fixed;
    background:#f0f0f0;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding:20px 0px;
    text-align: center;
    border-top: 3px solid #c62828;
    color:#4e4e4e;
}
#cookies a{
	color: #000000;
	font-weight: bold;
}
#cookies .acceptcook{
	display:inline-block;
	background-color:#292929;
	color:#fff;
	padding:5px 10px 5px;
	border-radius:5px;
	margin-left:10px;
}
#mesajClose, #editfromClose{
    text-align: right;
    padding: 6px;
    color: #fff;
    background: #c62828;
    cursor:pointer;
}
#mesajText, #editfromContent{
    padding: 20px;
    color: #292929;
    font-weight: 600;
    text-align: center;
}
.adaugarecosdown{
	text-align: center;
	margin-top:10px;
}
.adaugarecosdown .linkbuton{
	display: inline-block;
	width: 220px;
	text-align: center;
	margin-left: 5px;
}
.complete{
	margin-top:15px;
}
.i{
	text-align: left;
}
.complete .submbtn{
	width: 170px;
	display: inline-block;
}
#mesaj, #editfrom {
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
    -moz-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
    box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
    z-index: 99999;
}
#mesaj{
	z-index: 999999;
}
#editfrom{
	min-width: 450px;
	max-width:95%;
}
.titlumeniucont{
	font-size: 17px;
	font-weight: 600;
	color: #292929;
	margin-bottom: 15px;
	text-align: center;
}
.meniucont a{
	display:block;
	color: #292929;
	line-height:30px;
	font-weight: 600;
}
.meniucont a:hover{
	color:#c62828;
	background-color:#f6f6f6;
}
.meniucont a i{
	display:inline-block;
	color: #c62828;
	width: 25px;
	text-align: center;
	font-size: 17px;
}
.logout{
	border-top:2px solid #dbdbdb;
}
#left .titlumeniucont{
	background-color:#c62828;
	color:#fff;
	font-weight:normal;
	padding: 13px 0px 11px;
	font-size: 17px;
	margin-bottom:0px;
}
#left .ctnMeniuContH{
	-webkit-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	-moz-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	box-sizing: border-box;
	margin-bottom:20px;
}
#left .meniucont{
	padding:10px;
}
.foradmin{
	border-top:2px solid #dbdbdb;
}
.formularcentru{
	width:65%;
	margin:auto;
	margin-top:35px;
}
.linie{
	display: block;
	background: #f0f0f0;
	height:2px;
	width:100%;
}
.h2{
	position: relative;
	margin-bottom: 15px;
}
.h2 span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	padding: 0px 10px;
	color: #4e4e4e;
	font-weight: 600;
	font-size:18px;
}
.formular .submbtn{
	margin-top:20px;
}
.formular .dreapta{
	display: block;
	text-align: right;
	font-size: 15px;
	color: #c62828;
}
.adresarow{
	margin-top:10px;
	color:#4e4e4e;
}
.formular i{
	color:#c62828;
	display:inline-block;
	width:25px;
	text-align:center;
	margin-right:3px;
}
.editalbastru {
	font-size:15px;
	color:#295678;
	font-weight: 600;
}
.editalbastru:hover{
	color:#3686c2;
}
.cauitaInMasina .SumoSelect{
	margin:0px;
	vertical-align: middle;
}
.cauitaInMasina .SelectBox{
	padding: 3px 8px;
}
.cauitaInMasina .SumoSelect label{
	font-size: 14px;
}
.tabelLaur {
    width: 100%;
    border-collapse: unset;
}
.tabelLaur thead tr th {
    background-color: #3e3e3e !important;
    cursor: default;
    padding: 8px;
    font-size:15px;
    font-weight: 600;
    color: #fff;
}
.tabelLaur tbody tr td {
    padding:7px 5px;
    color:#4e4e4e;
}
.tabelLaur tbody tr:nth-child(2n) td {
    background-color: #f6f6f6;
}
.tabelLaur tbody tr td:first-child{
	color:#c62828;
}
.tabelLaur tbody tr td a{
	color:#c62828;
}
.box{
	margin-top:25px;
	color:#292929;
}
.articoledit{
	position: absolute;
	top: 0;
	left: 0;
	background: #135e96;
	color: #fff;
	padding: 5px;
	z-index: 1;
}
.blogedit{
	position: absolute;
	top: 0;
	right: 0;
	background: #135e96;
	color: #fff;
	padding: 5px;
	z-index: 1;
}
.articoledit a, .blogedit a{
	color:#fff;
}
.articolCod{
	text-align:center;
	color:#4e4e4e;
}
.articolelista .articolCod{
    float: right;
    color: #4e4e4e;
    line-height: 45px;
}
.articolCod span {
	font-weight: bold;
}
.articolelista .articolProducator{
	float:left;
}
.firstpageboxTitle .articoledit{
	left:auto;
	right:0;
}
.adaugaFavorite{
	margin-top:5px;
	cursor: pointer;
}
.verdefav{
	color:#c62828;
}
.mt10{
	margin-top:10px !important;
}
.mt20{
	margin-top:20px !important;
}
.mb20{
	margin-bottom:20px;
}
.mb50{
	margin-bottom:50px;
}
.formularnews .lbl{
	width: 195px;
	display: inline-block;
}
.formularnews .i{
	display: inline-block;
	width:-moz-calc(100% - 200px);
	width:-webkit-calc(100% - 200px);
	width:calc(100% - 200px);
}
.formularnews .i input{
	width:auto;
}
.formularnews .i select{
	width:300px;
	border:1px solid #848484;
	box-sizing: border-box;
	padding:6px 6px 4px;
}
.autoparcare {
    margin-bottom: 10px;
    border-bottom: solid 1px #dcdee5;
    padding-bottom: 10px;
    position: relative;
}
.imaginiparcare {
    float: left;
    text-align: center;
    width: 20%;
    color: #4e4e4e;
}
.nrauto {
    max-width: 100% !important;
}
.texteparcare {
    float: right;
    width: 79%;
    text-align: center;
}
.expirare {
    display: inline-block;
	width: 32.66%;
	margin-right: 1%;
	margin-bottom: 1%;
	padding: 1%;
	float: left;
	font-weight: 600;
	color: #292929;
	box-sizing: border-box;
	background-color: #eaeaea;
}
.editcere {
    float: right;
    width:32.66%;
}
.texteparcare .expirare:nth-child(3n) {
    margin-right: 0%;
}
.exce {
    width: 60%;
    display: inline-block;
    text-align: left;
}
.exval {
    width: 37%;
    display: inline-block;
    text-align: right;
}
.editcere .buton{
	background-color:#c62828;
	color:#fff;
	display: inline-block;
	vertical-align: middle;
	padding: 9px 9px 7px;
	border-radius:3px;
}
.hhlessmargin{
	position: relative;
}
.hh2{
	position: absolute;
	right: 0;
	top:0;
	right: 10px;
	top: 13px;
}
.hh2 a{
	color:#fff;
	font-weight:600;
}
.marcaholder .SumoSelect{
	width:100%;
	margin-left:0px;
}
.qedit {
    position: absolute;
    right: 2px;
    top: 2px;
    color: #a71c21 !important;
    cursor: pointer;
    z-index:9999;
}
.modelholder li:not(.titluLi):hover, .tipholder li:not(.titluLi):hover{
	background-color:#ababab !important;
}
.textIstoric:hover{
	color:#c62828;
}
.stergeFiltre{
	text-align: center;
	margin-top:5px;
}
.stergeFiltre a{
	font-size:14px;
	color:#c62828;
}
.stergeFiltre a:hover{
	color:#292929;
}
.bannersleft img {
	width: 100%;
	display: block;
	transition: all .5s;
	object-fit: cover;
	object-position: center;
	height: auto;
}
.leftbanners{
	margin-top:5px;
}
.bannersleft .catLeftLink{
	display: block;
	position: relative;
}
.bannersleft{
	margin-bottom:5px;
	overflow: hidden;
	height: 115px;
}
.textbannsleft{
	position: absolute;
	top:12px;
	left:20px;
	color:#fff;
}
.titlubannleft {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 12px;
    padding: 5px;
    background-color: rgba(41, 41, 41, 0.7);
}
.iconbannleft{
	background:#c62828;
	font-size: 13px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	text-align: center;
}
.bannersleft:hover img{
	-ms-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.beneficiiholder{
	width:32.66%;
	box-sizing: border-box;
	float:left;
	margin-right:1%;
	margin-bottom:10px;
}
.beneficiiholder:nth-child(3n){
	margin-right:0px;
}

.beneficiiholder:hover .beneficiiimg{
	transition: all .3s;
	filter: brightness(1.08);

}
.beneficiiholder:hover .beneficiitext{
	color:#c62828;

}
.beneficiiimg img {
	width: 95%;
	height: 203px;
	object-fit: contain;
	object-position: center;
}
.beneficiiimg{
	text-align: center;
}
.barabeneficii{
	margin-top:20px;
	margin-bottom: 20px;
}
.beneficiitext{
	width: 80%;
	margin: auto;
	text-align: center;
	margin-top:10px;
	color:#292929;
	font-size:20px;
	font-weight:600;
}
.meniuCatAuto{
	background-size:100% !important;
	background-repeat:no-repeat !important;
	background-position: bottom center !important;
}
.meniuCatBckg{
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #eaeaec 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #ffffff 0%,#eaeaec 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #ffffff 0%,#eaeaec 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eaeaec',GradientType=0 );
}
.meniuCatBckg .grupesus{
	background-size:100% !important;
	background-repeat:no-repeat !important;
	background-position: right bottom !important;
}
#editautotext{
	display:none;
}
.mchi{
	width: 19.5%;
	float: left;
	margin-right: 0.62%;
	color:#4e4e4e;
	font-size:14px;
}
.mchi:nth-child(5){
	margin-right:0px;
}
.mchi input, .mchi select{
	width:100%;
	box-sizing: border-box;
	padding:6px 6px 4px;
	border:1px solid #848484;
	margin-top:3px;
}
.mchi select{
	padding: 5px 6px 3px;
}
.editmasina{
	text-align: left;
	font-weight:normal;
}
.editmasina h2{
	margin:15px 0px;
	font-weight:600;
	color:#292929;
	border-top: 1px solid #eac4c4;
	padding-top: 4px;
}
.editmasina .firsth1{
	margin-top:0px;
}
.firsth1 a{
	color:#c62828;
	font-size:15px;
}
.firsth1 a:hover{
	color:#292929;
}
.editmasina textarea{
	border:1px solid #848484;
	width:100%;
	height:130px;
	padding:6px 6px 4px;
	box-sizing: border-box;
}
.mchd{
	float:left;
	width:100px;
	margin-right:0.5%;
	font-size:14px;
	color:#4e4e4e;
}
.mchd input{
	width:100%;
	box-sizing: border-box;
	padding:6px 6px 4px;
	border:1px solid #848484;
	margin-top:3px;
	text-align: center;
}
.trimitebuton{
	margin-top:20px;
	text-align: center;
}
.trimitebuton .submbtn{
	display:inline-block;
}
.content_box_del{
	color:#4e4e4e;
}
.content_box_del p{
	margin-top:5px;
}
.schimbaCategoria{
	margin-top:20px;
	-webkit-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	-moz-box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
	box-shadow: 0px 4px 5px 1px rgba(189,189,189,0.68);
}
.schimbaCategoria h2{
	text-align: center;
	background: #c62828;
	color: #fff;
	padding: 13px 0px 11px;
	font-size: 17px;
}
.ctncategorie{
	box-sizing: border-box;
	padding: 5px;
}
.ctncategorie select{
	width:100%;
	box-sizing: border-box;
	padding:6px 6px 4px;
	border:1px solid #848484;
	background-image: url(../images/sageata_albastra_jos.png);
	background-repeat: no-repeat;
	background-position: right center;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.adaugaFavorite:hover{
	color:#c62828;
}
.evid3{
	background-image:url(../images/evid3.png);
	background-repeat: no-repeat;
	background-size:100% auto;
	background-position: bottom center;
}
.evid4{
	background-image:url(../images/evid4.png);
	background-repeat: no-repeat;
	background-size:100% auto;
	background-position:center 25%;
}
.blogimagineholder {
	width:40%;
	float:left;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	-moz-box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	box-shadow: 3px 3px 5px 0px rgba(158,158,158,0.5);
	border-radius: 3px;
	padding:10px;
	box-sizing: border-box;
	cursor: pointer;
	transition: all .3s;
}
.blogimagineholder:hover{
	opacity:0.7;
}
.blogimagineholder img{
	width:100%;
}
.blogtextholder{
	width:58%;
	float:right;
	padding:10px 0px;
}
.titleblogholder:hover{
	color:#c62828;
}
.blogholder{
	position: relative;
	padding:10px;
	box-sizing: border-box;
}
.titleblogholder{
	color:#292929;
	font-weight:600;
	font-size:19px;
	cursor: pointer;
	margin-bottom:15px;
	transition: all .3s;
}
.blogtextmic{
	color:#4e4e4e;
	height: 140px;
	overflow: hidden;
	margin-bottom: 6px;
}
.blogtextmic p{
	margin-top:5px;
}
.ctndtsee{
	padding:15px;
	box-sizing: border-box;
	border:1px solid #dbdbdb;
	background-color:#f6f6f6;
}
.datablogholder{
	float:left;
	color: #3e3e3e;
	padding-top: 8px;
}
.blogcitestemore{
	float:right;
	cursor: pointer;
	background-color: #4e4e4e;
	border-radius: 3px;
	padding: 8px 12px 7px;
	color: #fff;
	transition: all .3s;
}
.blogcitestemore:hover{
	background-color: #c62828;
}
.relativetxt{
	position: relative;
}
.blogvizulizari{
    position: absolute;
    top: -15px;
    right: 5px;
    color: #292929;
    font-size: 16px;
    background-color: #fff;
}
.blogcontinut{
	position: relative;
	color:#292929;
	margin-bottom:20px;
	margin-top:20px;
}
.blogcontinut p{
	margin-top:6px;
}
.blogcontinut img{
	max-width:100%;
}
.blogcontinut strong, .blogcontinut h1{
	font-size:17px;
	color:#2a2a2a;
	font-weight:600;
	margin:10px 0px;
}
.blogant{
	float:left;
	width:49%;
	cursor:pointer;
	color:#292929;
	transition: all .3s;
}
.blognext{
	float:right;
	width:49%;
	cursor: pointer;
	text-align: right;
	color:#292929;
	transition: all .3s;
}
.blogant:hover, .blognext:hover{
	color:#c62828;
}
.ctnantnext{
	border:1px solid #dbdbdb;
	background-color:#f6f6f6;
	padding:10px;
	box-sizing: border-box;
}
.blogciteste{
	margin-top:15px;
}
.blogcitestetitle{
	color:#4e4e4e;
	font-size:15px;
}
.blogcitestearticole{
	margin-top:10px;
}
.citestesiblog{
	margin-bottom:5px;
	color:#2a2a2a;
	transition: all .3s;
	cursor: pointer;
}
.citestesiblog:hover{
	opacity:0.7;
}
.blogtags{
	margin-top:10px;
	font-size:15px;
	color:#4e4e4e;
}
.formularcontnou{
	width:70%;
	margin:auto;
}
.boxNewAccount{
	text-align: center;
	color:#292929;
}
.boxNewAccount a{
	color:#c62828;
	transition: all .3s;
}
.boxNewAccount a:hover {
    color: #3189b6;
}
.formularcontnou .submbtn{
	width:240px;
}
.formularmare{
	text-align: left;
}
.formularc{
	text-align: center;
	width:70%;
	margin:auto;
	margin-top:15px;
}
.autentificareSubmit:hover{
	background-color: #292929;
}
.pt20 .submbtn{
	display: inline-block;
	margin-top:20px;
}
.seriesasiu {
	width:-moz-calc(100% - 45px) !important;
	width:-webkit-calc(100% - 45px) !important;
	width:calc(100% - 45px) !important;
}
.meniuToggleBar{
	display:none;
}
.articoljustPret .oldprice{
	font-size:14px;
	font-weight:normal;
	text-decoration: line-through;
}
.pretvechi{
	font-size:14px;
}
.pretvechi .oldprice{
	font-size:15px;
	text-decoration: line-through;
}
.opinieRaspune{
	text-align: right;
}
.opinieRaspune a{
	color:#c62828;
	font-size: 15px;
	transition: all .3s;
}
.opinieRaspune a:hover{
	color:#292929;
}
.opinieNume{
	color:#4e4e4e;
	margin-bottom:6px;
}
.opinieNume b{
	color:#292929;
	font-weight:600;
}
.opinieImg{
	float:left;
	color: #636363;
	font-size: 30px;
}
.opinieText{
	float:right;
	width:-moz-calc(99% - 30px);
	width:-webkit-calc(99% - 30px);
	width:calc(99% - 30px);
	padding-top:4px;
	color:#3a3a3a;
}
.opinieContainer{
	padding:10px;
	box-sizing: border-box;
	background-color: #f6f6f6;
	border-radius:5px;
	margin-bottom:6px;
}
.replyTo{
	width:98%;
	margin-left:2%;
}
.replyTo .opinieImg{
	color:#b4b4b4;
}
.footerUp{
	width:100%;
	height:488px;
}
.footerDown{
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
}
.ui-widget{
	z-index:9999;
}
.ui-menu {
    max-height: 489px;
    overflow-y: auto;
	box-sizing: border-box;
}
.descrieresugest, .pretsugest{
	display:none;
}


.imaginesugest{
	float: left;
	width: 45px;
	height:50px;
	text-align: center;
}
.imaginesugest img{
	max-width:80%;
	max-height:45px;
}
.textsugest{
	float:right;
	width:-moz-calc(99% - 45px);
	width:-webkit-calc(99% - 45px);
	width:calc(99% - 45px);
}
.denumiresugest{
	height:50px;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	background: none;
	color: #c62828;
}
.centru{
	text-align: center;
}
#raspundeGeneral{
	color:#c62828;
}
#editautotext input{
	width:-moz-calc(100% - 208px);
	width:-webkit-calc(100% - 208px);
	width:calc(100% - 208px);
	border:1px solid #848484;
	box-sizing: border-box;
	padding:5px 5px 3px;
}
.qedit::before{
	content:none !important;
}
.anunturiSus{
	margin-bottom:20px;
	text-align: center;
	position: relative;
	padding:13px 10px;
	box-sizing: border-box;
}
.tickercontainer{
	width:100%;
	border:none;
	background: #08742f;
	box-sizing: border-box;
	height:auto;
	padding: 5px 0px;
}
ul.newsticker li{
	background:none;
}
.anunturiText{
	margin-bottom:20px;
}
.tickercontainer .mask{
	width:100%;
	top:1px;
}
#ticker01 .qedit{
	display:none !important;
}
#webticker-stop-continue{
	font-family:'Source Sans Pro', sans-serif !important;
	font-size: 16px !important;
	color:#fff !important;
	font-weight:normal !important;
}
#par{
	color:#fff;
	font-size:18px;
	position: absolute;
	top:4px;
}
.newsctn{
	width:49%;
	float:left;
	margin-right:2%;
	box-sizing: border-box;
	padding:10px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.3);
	margin-bottom:2%;
	position: relative;
}
.newsctn:nth-child(2n){
	margin-right:0px;
}
.imgNews a{
	display:block;
	text-align: center;
}
.imgNews img{
	max-width:98%;
}
.imgNews{
	width:30%;
	float:left;
}
.txtNews{
	width:69%;
	float:right;
	height:140px;
	padding-left:1%;
	border-left:2px solid #eee;
	box-sizing: border-box;
}
.subiectNews a{
	display: block;
	color:#292929;
	font-weight:600;
	font-size:17px;
	transition: all .3s;
}
.subiectNews a:hover{
	color:#c62828;
}
.subiectNews{
	margin-bottom:32px;
	height:35px;
	overflow: hidden;
}
.dataNews{
	color:#4e4e4e;
	text-align: right;
}
.seeNews{
	margin-top:15px;
	text-align: right;
}
.culoareVeziButonPartener{
	color: #fff !important;
}
.margintabelparteneri{
	margin-bottom: 100px;
}
.alignCentruParteneri{
	text-align: center !important;
}
.seeNews a{
	display:inline-block;
	color:#fff;
	background: #c62828;
	font-size:15px;
	padding: 5px 20px 5px;
	border-radius: 5px;
	transition: all .3s;
}
.seeNews a:hover{
	background-color: #292929;
}
.newctn a{
	color:#c62828;
}
.newctn p{
	margin-bottom:5px;
}
.bannerLeftS img{
	width:100%;
	display:block;
}
.bannerLeftS{
	margin-top:15px;
	box-sizing: border-box;
	border:1px solid #eee;
}
.leftfooter{
	width:30%;
	float:left;
	padding-top:18px;
}
.rightfooter{
	float:right;
}
.leftfooter img{
	max-width:95%;
}
.certified{
	float:left;
	text-align: left;
}
.imgcertif{
	display: inline-block;
}
.certifright{
	margin-left:20px;
}
.certified img{
	height:50px;
}
.newctn{
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #dbdbdb;
}
.newsletterfooter p{
	margin-bottom:5px;
	font-size:13px;
}
.inputnewsFooter input[type="text"]{
	background: #959495;
	border:none;
	padding: 5px 6px 4px;
	box-sizing: border-box;
	margin-top:5px;
	width:49.5%;
}
.inputnewsFooter input[type="text"]:active, .inputnewsFooter input[type="text"]:focus{
	background-color: #fff
}
.inputnewsFooter input[type="submit"]{
	border:none;
	background-color: #c62828;
	color:#fff;
	padding: 5px 6px 4px;
	cursor: pointer;
	transition: all .3s;
	box-sizing: border-box;
}
.inputnewsFooter input[type="submit"]:hover{
	opacity:0.7;
}
.ctnsocials{
	padding:20px;
	box-sizing: border-box;
	margin-top:5px;
	text-align: center;
}
.txtdezabonare{
	text-align: left;
}
.fixedLinks{
	position: fixed;
	bottom:10%;
	right: 32px !important;
	z-index:999999;
	background: rgba(0, 0, 0, 0) linear-gradient(95deg, rgb(51, 51, 51) 20%, rgb(221, 24, 24) 80%) repeat scroll 0% 0%;
	-webkit-transform: rotate(-90deg) translate(100%) !important;
	transform: rotate(-90deg) translate(100%) !important;
	-webkit-transform-origin: 100% 8px !important;
	transform-origin: 100% 8px !important;
	transition: opacity .2s ease-in,background-color .2s ease-in,right .2s ease-in;
	min-width: 76px;
	width: auto;
	border-top-left-radius: 8px !important;
	border-top-right-radius: 34px !important;
	-moz-box-shadow: 0 12px 14px 8px rgba(0,0,0,.17);
	-webkit-box-shadow: 0 12px 14px 8px rgba(0,0,0,.17);
	box-shadow: 0 12px 14px 8px rgba(0,0,0,.17);
	-webkit-filter: blur(0);
	filter: blur(0);
	vertical-align: baseline;
	padding: 0px 12px;
}
.linkscontained a{
    display: inline-block;
    padding: 13px 10px 11px;
    color:#fff;
}
.linkscontained a:hover{
	opacity:0.7;
}
.ctnnews{
	margin-top:15px;
}
.istoricCautari{
	padding:6px;
	box-sizing: border-box;
}
.istoricCautari li a{
	display:block;
	padding:10px 5px;
	box-sizing: border-box;
	color:#292929;
	padding-left: 20px;
}
.istoricCautari li{
	position: relative;
	border-bottom: 1px solid #eee;
}
.istoricCautari li:last-child{
	border:none;
}
.istoricCautari li::before{
	content:"\f0da";
	font-family:"FontAwesome";
	position: absolute;
	top: 13px;
	left:5px;
	font-size: 13px;
	color:#292929;
	padding-left: 4px;
}
.istoricCautari li a:hover{
	color:#c62828;
	background-color: #f6f6f6;
}
.imgBlogctn{
	float:left;
	margin:0px 15px 5px 0px;
}
.imgBlogctn img{
	max-width:450px;
}
.modeleholder .SumoSelect .opt label:first-child, .modeleholder .SumoSelect .CaptionCont span label:first-child {
    float: left;
    max-width: 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.modeleholder .SumoSelect .opt label:nth-child(2n), .modeleholder .SumoSelect .CaptionCont span label:nth-child(2n) {
    float: right;
}
.SumoSelect > .optWrapper > .options li label {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.tipuriholder .SumoSelect .opt label:first-child, .tipuriholder .SumoSelect .CaptionCont span label:first-child {
    float: left;
    max-width: 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.tipuriholder .SumoSelect .opt label:nth-child(2n), .tipuriholder .SumoSelect .CaptionCont span label:nth-child(2n) {
    float: right;
}
.SumoSelect label {
    line-height: 20px;
}
#articoleFirst .articol{
	margin:2px 0px;
	border: 1px solid #eee;
	box-shadow: none !important
}
#articoleFirst .bx-viewport{
	height:500px !important;
	padding-top: 10px;
}
.prodsCatLeft{
	display:none;
}
.catsLeft{
	cursor: pointer;
}
.prodsCatLeft{
	margin-bottom:12px;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 3px 5px 0px rgba(217,217,217,1);
	-moz-box-shadow: 0px 3px 5px 0px rgba(217,217,217,1);
	box-shadow: 0px 3px 5px 0px rgb(217, 217, 217);
}
.prodsCatLeft a{
	display: block;
	padding:8px;
	box-sizing: border-box;
	color:#292929;
	background-color:#f6f6f6;
	transition: all .3s;
}
.prodsCatLeft a:nth-child(2n) {
    background-color: #eaeaea;
}
.prodsCatLeft a:hover{
	background-color: #292929;
	color:#fff;
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@-webkit-keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }

}
 .shake {
            -webkit-animation-name: shake;
            animation-name: shake;
            animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
			  transform: translate3d(0, 0, 0);
			  backface-visibility: hidden;
			  perspective: 1000px;
   }
.admincontain{
    min-width: 23px;
	position: fixed;
    bottom: calc(10% + 300px);
    right: 0px;
    height: 200px;
    background: #fff;
    z-index: 150;
    -webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
	-webkit-box-shadow:  0 0 1px 1px #292929;
	box-shadow:  0 0 1px 1px #292929;
}
.menuadmin{
	display: none;
	margin-left: 20px;
	padding:5px;

}
.menuadmin input[type="text"]{
	max-width: 50px;
	border: solid 1px #000;
	text-align: center;
	padding: 4px;
}
.adminhook{
	cursor: pointer;
	color:#fff;
	float: left;
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
	border-right: solid 1px #c70d1c;
	height: 100%;
  	text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    left: 0px;
    position: relative;
    white-space: nowrap;
    background-color: #c62828;
    writing-mode: vertical-lr;
    line-height: 22px;
}
.adminOpt{
	display: block;
}
.adminOpt > a {
    margin: 2px;
    margin-top: 5px;
   display: block;
   text-align: center;
   color:#a0a0a0;

}
.adminOpt > a:hover{
	color:#fff;
}
.adminOpt > a:hover i{
	color:#c62828;
}
.hide {
    display: none;
}
.btn-primary {
    text-decoration: none;
    color: #fff;
    background-color: #292929;
    border-color: #292929;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px !important;
    margin-top: 5px;
    transition: all .2s ease;
    cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper{
	box-sizing: border-box;
}
#modcautare {
	display: inline-block;
	padding-top: 2px;
	opacity: 0.4;
	font-size: 13px;
    line-height: 33px;
}
#cautaselect {

	    top:1px;
	    right: 40px;
	    margin-right: 3px;
    position: absolute;
    z-index: 1;
    height: 33px;
    line-height: 28px;
    width: auto;
    padding-left: 10px;
    background-image: url(../images/sageata_rosie_jos.png);
    background-repeat: no-repeat;
    background-position: right 18px;
    padding-right: 15px;
    margin-bottom: 1px;
    cursor: pointer;
    text-align: right;
    margin-top: 0px;
    margin-right: 0px;
    background-color: #fff;

}
#cavansat {
    display: none;
    position: absolute;
    border: solid 1px #d0d0d0;
  	right: 0;
    padding: 8px;
    padding-left: 7px;
    background-color: #fbfbfb;
    min-width: 143px;
    z-index: 9999;
    top:101%;
}
#cavansat a {
	color: #293848;
	padding:3px;
	text-decoration:none;
	line-height: 20px;
	display: block;
}
#cavansat a:hover {
	text-decoration:underline;
}
.floright{
	padding-top:8px;
}
.articol .articolctn{
	min-height: 140px;
}
.articol .articolCrit{
	height:34px;
	overflow: hidden;
}
.articolCrit p{
	color:#151515;
}
.articolCrit b{
	font-weight:600;
	color:#292929;
}
.textCap{
	text-transform: capitalize;
    width: 100%;
    height: 17px;
    overflow: hidden;
}
.producatorsugest{
	float: left;
	margin-right: 20px;
	font-size: 12px;
	padding-top: 5px;
}
.pretartsugest{
	float: left;
	width: 100%;
	font-size:14px;
	font-weight: bold;
	color: #c62828;
	padding-top: 2px;
}
.mesajOnPage{
	background-color: #f6f6f6;
    padding: 20px;
    text-align: center;
    border: 1px solid #dbdbdb;
}
.promotiiStanga{
	margin-top: 10px;
}
.promotiiStanga .articol{
	width: 100%;
	margin-right: 0px;
	margin-bottom: 10px
}
.ecot{
	color:#008000;
	font-size: 15px;
}
.sm{
	font-size: 13px;
}
.prr{
    text-align: center;
    font-size: 16px;
    color: #4e4e4e;
    margin-top:10px;
}
.lower{
	margin-top: 10px;
}
.imgbenef{
    float: left;
    width: 35px;
    text-align: center;
    height: 25px;
}
.imgbenef img{
	max-width:100%;
	height:20px;
}
.txtbenef{
	float:right;
	width:-moz-calc(100% - 45px);
	width:-webkit-calc(100% - 45px);
	width:calc(100% - 45px);
	height:25px;
	color: #4e4e4e;
	font-size: 14px;
}
.benefart{
	padding: 3px 0px;
	border-top: 1px solid #e2e2e2;
}
.benefCosArticol{
	margin-top: 10px;
	border-top: none;
	align-self: flex-end;
	display: flex;
	align-items: center;
}
.aranjareBoxuriCos .qedit{
	right: auto;
	left:0% !important;
}
.mesajTransportCos .qedit {
	right: auto;
	left: 0% !important;
}
.beneficiiarticol{
	border: 1px solid #e2e2e2;
	border-radius:5px;
}
.benefart:first-child{
	border:none;
}
.txtbenef a{
	color:#c62828;
	transition: all .3s;
}
.txtbenef a:hover{
	color:#686868;
}
.echivalarepretfancy input.error{
	border-color:red;
}
.ctnsocialsSus img {
	width: 25px;
	height: 25px;
	object-fit: contain;
	object-position: center;
}
.ctnsocialsSus{
	float:left;
	height:43px;
}
.ctnsocialsSus a{
	display: inline-block;
	transition: all .3s;
}
.ctnsocialsSus .facebookSus{
	margin-right:7px;
}
.ctnsocialsSus a:hover{
	opacity:0.7;
}
.preur{
	font-size: 16px;
	color: #292929;
}
.blackCl{
	color: #292929;
}
.error {
    border-color: #ff0000 !important;
}
label.error {
    color: #ff0000 !important;
    font-weight: bold;
}
.linketicheta{
    position: absolute;
    bottom: 0px;
    height: 100px;
}
.linketicheta:hover{
	height: 300px;
}
.etichetaanvelopa{
    max-width: 100%;
    max-height: 100%;
}
.slideText {
	height: 30px;
	overflow: hidden;
	position: relative;
	background-color: #08742f;
    margin-bottom: 20px;
}
.slideText p {
	padding-left: 10px;
	padding-right: 10px;
	background-color: #08742f;
	white-space: nowrap;
	font-size: 16px;
	color: #fff;
	position: absolute;
	z-index: 2;
	min-width: 100%;
	height: 100%;
	margin: 0;
	line-height: 30px;
	text-align: center;
	/* Starting position */
	-moz-transform:translateX(100%);
	-webkit-transform:translateX(100%);
	transform:translateX(100%);
	/* Apply animation to this element */
	-moz-animation: slideText 20s linear infinite;
	-webkit-animation: slideText 20s linear infinite;
	 animation: slideText 20s linear infinite;
}
.slideText .p2{
	z-index: 1;
	-moz-transform:translateX(0%);
	-webkit-transform:translateX(0%);
	transform:translateX(0%);
	/* Apply animation to this element */
	-moz-animation: slideText2 20s linear infinite;
	-webkit-animation: slideText2 20s linear infinite;
	 animation: slideText2 20s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes slideText {
 	0%   { -moz-transform: translateX(100%); }
 	100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes slideText {
 	0%   { -webkit-transform: translateX(100%); }
 	100% { -webkit-transform: translateX(-100%); }
}
@keyframes slideText {
 	0%   {
 		-moz-transform: translateX(100%); /* Firefox bug fix */
 		-webkit-transform: translateX(100%); /* Firefox bug fix */
 		transform: translateX(100%);
 	}
 	100% {
 		-moz-transform: translateX(-100%); /* Firefox bug fix */
 		-webkit-transform: translateX(-100%); /* Firefox bug fix */
 		transform: translateX(-100%);
 	}
}
/* Move it (define the animation) */
@-moz-keyframes slideText2 {
 	0%   { -moz-transform: translateX(0%); }
 	50%  { -moz-transform: translateX(-100%); }
 	51%  { -moz-transform: translateX(100%); }
 	100% { -moz-transform: translateX(0%); }
}
@-webkit-keyframes slideText2 {
	0%   { -webkit-transform: translateX(0%); }
 	50%  { -webkit-transform: translateX(-100%); }
 	51%  { -webkit-transform: translateX(100%); }
 	100% { -webkit-transform: translateX(0%); }
}
@keyframes slideText2 {
 	0%   {
 		-moz-transform: translateX(0%); /* Firefox bug fix */
 		-webkit-transform: translateX(0%); /* Firefox bug fix */
 		transform: translateX(0%);
 	}
 	50% {
 		-moz-transform: translateX(-100%); /* Firefox bug fix */
 		-webkit-transform: translateX(-100%); /* Firefox bug fix */
 		transform: translateX(-100%);
 	}
 	51% {
 		-moz-transform: translateX(100%); /* Firefox bug fix */
 		-webkit-transform: translateX(100%); /* Firefox bug fix */
 		transform: translateX(100%);
 	}
 	100% {
 		-moz-transform: translateX(0%); /* Firefox bug fix */
 		-webkit-transform: translateX(0%); /* Firefox bug fix */
 		transform: translateX(0%);
 	}
}
.mesajTransportCos{
	font-size:15px;
	color:#c62828;
}
.bifeOfertaArticol{
	text-align: left;
}
.newctn div:first-of-type{
	height:auto !important;
}
.stergeNews{
	cursor: pointer;
	position: absolute;
	left: 8px;
	top: 4px;
	color:#fff;
	font-weight: 600;
	background:	#3b5998;
	padding: 5px;
}
.tabelEchivalente {
  min-width: 500px;
}
.tabelEchivalente thead tr {
  background-color: #686868;
  color: #fff;
}
.tabelEchivalente th{
	font-weight: bold;
	text-align: left;
	padding: 5px;
}
.tabelEchivalente tbody tr:nth-child(2n+1){
	    background-color: #f6f6f6;
	}
.tabelEchivalente td{
	text-align: left;
	padding: 5px;
}
.ridicareEasyBox {
  border: 1px solid rgba(129, 129, 129, 0.2);
  display: flex;
  align-items: center;
  border-left: 0;
  border-right: 0;
	margin-top: 10px;
}
.ridicareEasyBox label {
  display: inline-block;
}
.ridicareEasyBox img {
  max-width: 120px;
  margin-left: 20px;
}
#containerLocker {
  display: none;
  padding-left: 5px;
}
.titluLocker {
  text-transform: uppercase;
  font-size: 13px;
  color: #292929;
  margin: 15px 0px;
}
.rowLocker {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.rowLocker .v {
  width: 100px;
  font-size: 13px;
  color: #231f20;
  margin-bottom: 3px;
  margin-top: 5px;
}
.rowLocker .i {
  margin-left: 25px;
}
.rowLocker select {
  width: 165px;
}
#idCautaLocker {
  display: none;
}
#listaLockere {
  padding: 10px 0px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.lockerDinLista {
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  padding: 5px;
  cursor: pointer;
}
.containerMicLocker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.lockerDinLista i {
  color: #23bcff;
  font-size: 15px;
  margin-right: 10px;
}
.adresaLocker {
  text-transform: uppercase;
  font-size: 13px;
  color: #231f20;
  margin: 15px 0px;
}
.dreaptaLocker {
  display: flex;
  justify-content: flex-end;
  font-size: 13px;
  color: #5c5c5c;
}
.dreaptaLocker .judetLocker {
  margin-left: 3px;
}
.progrLocker {
  display: none;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}
.programLocker {
  font-size: 13px;
  color: #5c5c5c;
}
.plataCardLocker {
  font-size: 15px;
  color: #231f20;
  display: block;
}
.greenLocker {
  color: #097c12 !important;
  margin-left: 3px;
  margin-right: 0 !important;
}
.lockerDinLista i {
  color: #97030a;
  font-size: 15px;
  margin-right: 10px;
}
.butonAlegeLocker, .butonSchimbaLocker {
  padding: 7px 15px;
  display: inline-block;
  margin: 5px 0px;
  font-size: 13px;
  background: #97030a;
  color: white;
  cursor: pointer;
}
.ctnInfoSameday{
	margin-top:10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color:#3e3e3e;
}
.ctnInfoSameday img{
	max-width:90px;
}
.sumarComanda {
	background: #f4f4f4;
	border: 1px solid #E2E2E2;
	padding: 10px 15px;
	box-sizing: border-box;
	margin-top: 20px;
}
.butonPlata {
	background: #c62828;
	color: #fff;
	padding: 8px 10px;
	border-radius: 5px;
	text-decoration: none;
	transition: all .3s;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: 150px;
}
.butonPlata:hover{
	background: #c62828;
	color: #fff;
	text-decoration: none;
	opacity: 0.7;
}
.butonPlata img{
	width: 20px;
	height: 20px;
}
.titluSumarComanda {
	font-size: 24px;
	margin-bottom: 15px;
}
.wrapButonPlata {
	display: flex;
}
.dateSumarComanda{
	line-height: 1.2;
}