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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
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;
}
br {
  content: '\A';
  display: contents;
  white-space: pre;
  flex-basis: 100%;
  width: 0px;
  height: 0px;
  overflow: hidden;
  display: inline-block;
}
/* END CSS RESET */

img {
 width: 90%;
 height: 90%;
 object-fit: cover; /*magic*/
}

.center {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
a {
	color: #0060C0;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.c{
    clear:both;
}
.c::after {
    content: "";
    display: table;
    clear: both;
}
.b {
  font-weight: bold;
}
.hide {
  display: none !important;
}

.formular {
  padding-left: 10px;
  padding-right: 10px;
}
.formular input, .formular select, .formular textarea {
  width: 100%;
  padding: 0.2em;
  padding-left: 0.4em;
  box-sizing: border-box;
  margin-bottom: 5px;
  font-size: 1.1em;
}
.formular label {
  font-weight: bold;
  margin-bottom: 3px;
  display: inline-block;
}

.saveEditCar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:"mma vtm"
  "pns pns";
}
.mma {
  grid-area: mma;
  padding-right: 1%;
}
.vtm {
  grid-area: vtm;
  padding-left: 1%;
}
.pns {
  grid-area: pns;
}






#content {
  display: grid;
  grid-template-columns: [coloana] 1fr;
  grid-template-rows: [meniuSus] auto [selectedCar] auto [navLink] auto [main] auto [footer] auto [meniuCont] auto;
  background: #f5f6f7;
  grid-template-areas: "meniuSus"
  "selectedCar"
  "navLink"
  "main"
  "footer"
  "meniuCont";
}
#selectedCar {
  grid-area: selectedCar;
  padding: 1em;
}

#navLink{
  grid-area: navLink;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  margin-top: -37px;
  width: calc(100% - 90px);
}
#navLink a {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9em;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 30%;
}

#meniuCont{
  grid-area: meniuCont;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: #ddd;
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 5em;
}
#meniuCont a {
  padding-left: 1em;
  padding-right: 1em;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#main{
  grid-area: main;

}
#footer{
  grid-area: footer;
  padding-bottom: 100px;
}
#meniuSus {
  grid-area: meniuSus;
  padding-top: 0.5em;
  padding-bottom: 0.3em;
	border-bottom: 1px solid #D0D0D0;
  background-color: #1d3457;
  border-top: solid 2px #de0e08;
  color: #f0eded;
}
.autosugest, #checkAutoSugest  {
  display: none;
}
.autosugest {
  position: absolute;
  background-color: #1d3457;
}
#checkAutoSugest:checked ~ .autosugest{
  display: block;
}
#meniuSus .center {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  grid-template-areas: "logoGrid searchGrid butoaneGrid";
}
#logoContainer {
  grid-area: logoGrid;
}
#logoContainer img {
    max-width: 105px;
}
#searchContainer {
  grid-area: searchGrid;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: left;
  text-align: left;
}
#carTopContainer {
  position: relative;
  grid-area: butoaneGrid;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: left;
  text-align: left;
  padding-right: 56px;
}
.cuSaveMasina {
  padding-left: 30px;
}
.saveCarImg {
  position: absolute;
  left: 0px;
  top: calc(50% - 15px);
  width: 26px;
  max-width: 26px;
  max-height: 26px;
}
.addCarImg {
  position: absolute;
  right: 0px;
  bottom: -33px;
  border: solid #1d3457 10px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background: #1d3457;
  width: 37px;
  height: 37px;
}
.addCarImg:hover {
  background: #2d5086;
  border-color: #2d5086;
}




.categorii {
  display: grid;
  grid-template-columns: 1fr;
}
.categorii a {
  color: #373535;
  padding-left: 1em;
  display: flex;
  align-items: center;
  height: 2.5em;
  border-bottom: solid 1px #ddd;
  text-decoration: none;
}
.marci {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.marci a {
  color: #373535;
  padding-left: 1em;
  display: flex;
  align-items: center;
  height: 2.5em;
  border-bottom: solid 1px #ddd;
  text-decoration: none;
}

.articoleGenerale {
  display: grid;
  grid-template-columns: 1fr;
  border-top: solid 3px #000;
}
.articoleGenerale a{
  color: #373535;
  padding-left: 1em;
  display: flex;
  align-items: center;
  height: 2.5em;
  border-bottom: solid 1px #ddd;
  text-decoration: none;
}


.modele {
  display: grid;
  grid-template-columns: 1fr;
}
.modele a {
  color: #373535;
  padding-left: 1em;
  display: flex;
  align-items: center;
  height: 2.5em;
  border-bottom: solid 1px #ddd;
  text-decoration: none;
}
.tipuri {

}
.tipuri a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
}



/*un singur articol*/
#articol {

}
#articolUp {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  margin-left: 10px;
  margin-right: 10px;
}
#articolImg {
  width: 80px;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
#articolImg img {
  max-width: 100%;
}
#articolUpCenter {
  padding-left: 10px;
}
#articolUpLike {
  text-align: right;
}
#articolUpLike i {
  float: right;
}
#articolUpLike .shareIcon {
  margin-top: 30px;
}
#articolCriterii {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 10px;
  background-color: #fff;
  line-height: 1.2em;
  color: #424040;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.critArticol {
  padding-left: 5px;
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 0.9em;
}
.valueCritArticol {
  text-align: right;
  padding-right: 5px;
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 0.9em;
}
.critArticolTitlu {
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px;
}
.par {
  background: #e6e6e6;;
}

#articolLinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px;
  background-color: #fff;
  line-height: 1.2em;
  color: #424040;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#articolLinks a {
  padding-left: 5px;
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 0.9em;
}
.articolLinksTitlu {
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px;
  border-bottom: solid 1px #e6e6e6;
}


#articolPdfs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px;
  background-color: #fff;
  line-height: 1.2em;
  color: #424040;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#articolPdfs a {
  padding-left: 5px;
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 0.9em;
}
.articolPdfsTitlu {
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px;
  border-bottom: solid 1px #e6e6e6;
}

#articolCoduriEchivalente {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 10px;
  background-color: #fff;
  line-height: 1.2em;
  color: #424040;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
#articolCoduriEchivalente a {
  padding-left: 5px;
  padding-top: 1px;
  padding-bottom: 2px;
  font-size: 0.9em;
}
.articolCoduriEchivalenteTitlu {
  font-size: 1em;
  line-height: 1.4em;
  padding: 5px;
  border-bottom: solid 1px #e6e6e6;
}


.articole {
  display: grid;
  grid-template-columns: 1fr;
}
.articolRow {
  color: #373535;
  padding-left: 1em;
  display: grid;
  grid-template-columns: 80px 1fr;
  border-bottom: solid 1px #ddd;
  text-decoration: none;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  height: 130px;
}
.articolRow:active {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
  background: #fff;
}

.articolImagini {
  width: 80px;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.articolProducator img {
  max-width: 80px;
  max-height: 38px;
}
.articolImagine img {
  max-width: 80px;
  max-height: 88px;
}
.articolContent {
  padding-left: 1em;
  position: relative;
}



.articolCod {
  font-size: 0.8em;
  color: #464646;
}
.articolDenumire {

}
.articolStars {
  margin-top: 0.2em;
}
.articolDescriere {
  font-size: 0.9em;
  margin-top: 3px;
  margin-bottom: 5px;
}
.articolPret {
  position: absolute;
  left: 0.7em;
  bottom: 1em;
  font-size: 1.4em;
}
.articolCumpara {
  position: absolute;
  right: 1em;
  bottom: 0.2em;
  background: #4261d9;
  padding: 0.5em;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 1.7em;
}
.articolCumpara:hover {
  opacity: 0.8;
}



/*ICONURI*/
.menuIcon {
    transform: scale(var(--ggs,1))
}
.menuIcon,
.menuIcon::after,
.menuIcon::before {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: currentColor
}
.menuIcon::after,
.menuIcon::before {
    content: "";
    position: absolute;
    top: -6px
}
.menuIcon::after {
    top: 6px
}

.cumparaIcon {
    display: block;
    box-sizing: border-box;
    position: relative;
    transform: scale(var(--ggs,1));
    width: 20px;
    height: 21px;
    background:
        linear-gradient(
            to left,currentColor 12px,
            transparent 0)
            no-repeat -1px 6px/18px 2px,
        linear-gradient(
            to left,currentColor 12px,
            transparent 0)
            no-repeat 6px 14px/11px 2px,
        linear-gradient(
            to left,currentColor 12px,
            transparent 0)
            no-repeat 0 2px/4px 2px,
        radial-gradient(
            circle,currentColor 60%,
            transparent 40%)
            no-repeat 12px 17px/4px 4px,
        radial-gradient(
            circle,currentColor 60%,
            transparent 40%)
            no-repeat 6px 17px/4px 4px
}
.cumparaIcon::after,
.cumparaIcon::before {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 2px;
    height: 14px;
    background: currentColor;
    top: 2px;
    left: 4px;
    transform: skew(12deg)
}
.cumparaIcon::after {
    height: 10px;
    top: 6px;
    left: 16px;
    transform: skew(-12deg)
}

.starIcon {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .9em;
  margin-right: .9em;
  margin-bottom: 1.2em;
  border-right:  .3em solid transparent;
  border-bottom: .7em  solid #FC0;
  border-left:   .3em solid transparent;
  /* Controlls the size of the stars. */
  font-size: 0.5em;
}
.starIcon:before, .starIcon:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: .6em;
  left: -1em;
  border-right:  1em solid transparent;
  border-bottom: .7em  solid #FC0;
  border-left:   1em solid transparent;
  transform: rotate(-35deg);
}
.starIcon:after {
  transform: rotate(35deg);
}

.starIconGray {
  border-bottom: .7em  solid #acacac;
}
.starIconGray:before, .starIconGray:after {
  border-bottom: .7em  solid #acacac;
}

.bookmarkIcon,
.bookmarkIcon::after {
    display: block;
    box-sizing: border-box;
    border-top-right-radius: 3px
}
.bookmarkIcon {
    border: 2px solid;
    border-bottom: 0;
    border-top-left-radius: 3px;
    overflow: hidden;
    position: relative;
    transform: scale(var(--ggs,1));
    width: 14px;
    height: 16px
}
.bookmarkIcon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    top: 9px;
    left: -1px
}

.shareIcon {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 100px;
    box-shadow:
        10px -6px 0,
        10px 6px 0
}
.shareIcon::after,
.shareIcon::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    border-radius: 3px;
    width: 10px;
    height: 2px;
    background: currentColor;
    left: 2px
}
.shareIcon::before {
    top: 0;
    transform: rotate(-35deg)
}
.shareIcon::after {
    bottom: 0;
    transform: rotate(35deg)
}
.install {
  line-height: 1.5em;
}
.install h1 {
  font-size: 16px;
  padding: 10px;
  background: #93c8e8;
}
.install b {
  font-weight: bold;
}
.install .p {
  padding: 10px;
}

.loading{
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: none;
  background: #000;
  opacity: 0.5;
}

.loader{
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 60px);
  border: 16px solid #f3f3f3;
  border-top: 16px solid #000;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
