body{
    line-height:1.4;    
}

 /* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff; 
  border-left: 1px solid #000;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--culoare1); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--culoare1); 
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

#spinner {
    display: block;
    position: relative;
    left: 46%;
    top: 46%;
    width: 70px;
    height: 70px;
}

.preloader-orbit-loading {
    position: relative;
    left: calc(50% - 31px);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    perspective: 780px;
}

.preloader-orbit-loading .cssload-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.preloader-orbit-loading .cssload-inner.cssload-one {
    left: 0%;
    top: 0%;
    animation: cssload-rotate-one 1.15s linear infinite;
    -o-animation: cssload-rotate-one 1.15s linear infinite;
    -ms-animation: cssload-rotate-one 1.15s linear infinite;
    -webkit-animation: cssload-rotate-one 1.15s linear infinite;
    -moz-animation: cssload-rotate-one 1.15s linear infinite;
    border-bottom: 3px solid rgb(0,0,0);
}

.preloader-orbit-loading .cssload-inner.cssload-two {
    right: 0%;
    top: 0%;
    animation: cssload-rotate-two 1.15s linear infinite;
    -o-animation: cssload-rotate-two 1.15s linear infinite;
    -ms-animation: cssload-rotate-two 1.15s linear infinite;
    -webkit-animation: cssload-rotate-two 1.15s linear infinite;
    -moz-animation: cssload-rotate-two 1.15s linear infinite;
    border-right: 3px solid rgb(0,0,0);
}

.preloader-orbit-loading .cssload-inner.cssload-three {
    right: 0%;
    bottom: 0%;
    animation: cssload-rotate-three 1.15s linear infinite;
    -o-animation: cssload-rotate-three 1.15s linear infinite;
    -ms-animation: cssload-rotate-three 1.15s linear infinite;
    -webkit-animation: cssload-rotate-three 1.15s linear infinite;
    -moz-animation: cssload-rotate-three 1.15s linear infinite;
    border-top: 3px solid rgb(0,0,0);
}

@keyframes cssload-rotate-one {
	0% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-o-keyframes cssload-rotate-one {
	0% {
		-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-ms-keyframes cssload-rotate-one {
	0% {
		-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-webkit-keyframes cssload-rotate-one {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@-moz-keyframes cssload-rotate-one {
	0% {
		-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}

@keyframes cssload-rotate-two {
	0% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-o-keyframes cssload-rotate-two {
	0% {
		-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-ms-keyframes cssload-rotate-two {
	0% {
		-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-webkit-keyframes cssload-rotate-two {
	0% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@-moz-keyframes cssload-rotate-two {
	0% {
		-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}

@keyframes cssload-rotate-three {
	0% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-o-keyframes cssload-rotate-three {
	0% {
		-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-ms-keyframes cssload-rotate-three {
	0% {
		-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-webkit-keyframes cssload-rotate-three {
	0% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

@-moz-keyframes cssload-rotate-three {
	0% {
		-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
		-moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}

#content{
    min-height: 0px
}

button{
    outline:none!Important;    
}

a:hover {
    color: var(--culoare1);
    text-decoration: none;
}

.form-control{
    border-radius: 0px;
    box-shadow: none!Important;
    outline: none!Important;
    min-height: 50px;
    margin-bottom: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff #fff #bbb;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 14px;
    padding-left: 15px;
    color:#000;
    height: auto;
}

.form-control:focus{
    border-color: #fff #fff #bbb;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.form-group label{
    font-size: 16px;
}

.form-group .form-check label{
    font-size:14px;
    font-weight:500;
}

.heading {
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: Roboto;
    font-size: 44px;
    line-height: 52px;
    font-weight: 900;
    text-align:left;
}

h2.heading{
    font-size: 37px;
}

.heading::after{
    display:none;
}

.breadcrumb li,
.breadcrumb li a{
    font-size: 12px;
    color: var(--culoare2);
    letter-spacing: 0px;
}

#logo img {
    width:240px;
    min-width:240px;
    max-height:none;
}

header{
    color: #000;
    position: absolute;
    width: 100%;
    padding: 50px calc(5vw - 15px);
    background-color: #fff;
    z-index: 100;
}

header a{
    color:#000;
}

footer{
    width: 100%;
    height: auto;
    padding-right: calc(5vw - 15px);
    padding-left: calc(5vw - 15px);
    border-top: 1px none #dbdbdb;
    background-color: #fff;
    padding-top: 90px;
    padding-bottom: 90px;
    margin-top: 0;
    position: relative;
}

.btn{
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 1.4;
    padding: 15px 35px;
    background-color: #000;
    -webkit-transition: background-color 400ms ease, box-shadow 400ms ease, color 400ms ease;
    transition: background-color 400ms ease, box-shadow 400ms ease, color 400ms ease;
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    font-size: 18px;
    border-color: #000;
    border-radius: 0px!Important;
    text-transform: inherit;
    height: 50px;
    line-height: 1;
}

.btn-primary{
    background-color:var(--culoare1);
    border-color:var(--culoare1);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:hover:active,
.btn-primary:not(:disabled):not(.disabled):active, 
.btn-primary:not(:disabled):not(.disabled).active, 
.show > .btn-primary.dropdown-toggle{
    background-color: #fff;
    box-shadow: inset 0 0 0 3px var(--culoare1)!Important;
    border-color:var(--culoare1)!Important;
    color:var(--culoare1);
}

.btn-dark{
    background: var(--culoare2);
    border-color: var(--culoare2);
}

#cart-contents-list .btn-sm{
    padding: 0.25rem 0.5rem;
    font-size: 0.65625rem;
    line-height: 1.5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    margin-left: auto;
}

#cart-contents-list .btn-sm i{
    font-size:12px;
}

#cart .dropdown-toggle i{
    color:#000;
    font-size: 20px;
}

#header-opt i{
    font-size: 20px;
}

#header-opt i.fa-caret-down{
    font-size: 14px;
}

#header-opt .list-inline-item{
    margin-left:15px;
}

#header-opt .list-inline-item{
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.menu-container {
    background: #fff;
    margin-bottom: 0;
}

#menu{
    min-height:0px;
}

#main-menu{
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    padding-top: 4vh;
    padding-bottom: 2vh;
}

#menu .navbar-nav > li > a {
    position: relative;
    background-color: transparent;
    margin-right: 10px;
    margin-left: 10px;
    padding: 0px 0px 5px;
    box-shadow: none;
    -webkit-transition: color 200ms ease, box-shadow 200ms ease;
    transition: color 200ms ease, box-shadow 200ms ease;
    font-family: Montserrat, sans-serif;
    color: grey;
    font-size: 12px;
    font-weight: 400;
    text-transform:initial;
    line-height: 20px;
}

#menu .navbar-nav > li > a:hover {
    box-shadow: inset 0 -3px 0 0 #36a3cc;
    color: #000;
    background: #fff;
}

#menu .dropdown-menu{
    padding:12px 0;
}

#menu .dropdown-menu .dropdown-menu{
    padding-top:6px;
}

#menu .nav-item.dropdown .dropdown-menu{
    width: auto;
    max-width:100%;
    margin: auto;
    float: none;
    right: auto;
    left: auto;
    border-radius: 0px;
    background: var(--culoare2);
}

#menu .dropdown-inner a{
    color:#fff;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 3.5px;
}

#menu .dropdown-inner ul li a:hover{
    background:transparent;
}

#main-menu .nav-item{
    position: unset;
    display: inline-block;
}

.w-24-percent{
    width: 24%;
}

.w-49-percent{
    width: 49%;
}

#menu .nav-item.dropdown .full-width-nav-item{
    display:block;
    width: auto;
}

#menu .nav-item.dropdown .nav-item.dropdown .dropdown-menu{
    position:relative;
    display:block;
}

#menu .nav-item.dropdown .nav-item.dropdown .dropdown-menu li a{
    text-transform: inherit;
    font-family: 'Montserrat', sans-serif;
    color: var(--culoare1);
    letter-spacing: 1px;
    line-height: 1.4;
    font-size: 13px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    margin-bottom: 4px;
}

#menu .nav-item.dropdown .dropdown-menu.w-100 .full-width-nav-item{
    width:24%;
    display:inline-block;
}

#menu .nav-item.dropdown .nav-item.dropdown .dropdown-menu li a:hover{
    color:var(--culoare1);
}

#close-menu{
    display:none!Important;
}

.caret-responsive{
    display:none;
}

.dropdown-menu{
    border-radius:0px;
}

.border-none{
    border:none;
}

#cookie.alert-warning {
    color: #fff;
    background-color: #000;
    border-color: #000;
}
#cookie .alert-link.agree {
    color: var(--culoare1);
    font-weight: normal;
}
a#button-cookie {
    color: #fff;
    background-color: var(--culoare1);
    border-color: var(--culoare1);
}
a#button-cookie.btn-warning {
    color: #fff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-image: var(--culoare1);
    background-repeat: repeat-x;
    border-color: var(--culoare1);
}

.logo-footer{
    margin-bottom:30px;
}

.sociale-footer{
    padding: 20px 0;
    margin:0;
    list-style:none;
}

.sociale-footer li{
    display:inline-block; 
}

.sociale-footer li a{
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    padding-bottom: 5px;
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1);
    -webkit-transition: box-shadow 200ms ease, color 200ms ease;
    transition: box-shadow 200ms ease, color 200ms ease;
    color: grey;
    font-weight: 400;
    display: inline-block;
}

.sociale-footer li a:hover{
    box-shadow: inset 0 -2px 0 0 #000;
    color: #000;
}

.desc-footer{
    margin-bottom: 20px;
    color: #b8b8b8;
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
}

#main-content-container{
    position: relative;
    padding-top: 180px;
    width: 100vw;
    height: auto;
    float: none;
    max-width: 100%;
    min-height:70vh;
}

.form-login-container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cont-toggle-menu{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

#toggle-menu{
    color: #999999;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition:all .3s ease;
    -moz-transition:all .3s ease;
    transition:all .3s ease;
}

#toggle-menu,
#toggle-menu i{
    cursor: pointer;
    font-size: 24px;
    text-transform:uppercase;
}

#toggle-menu:hover{
    color: #737373;
}

#cont-menu-general{
    background-color: #f3f3f3;
    height: 100%;
    overflow: hidden;
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    z-index: 1112;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
#cont-menu-general.open{
    right:0;
}

#menu-overlay{
    display:none;
    content:'';
    position:fixed;
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1111;
    top:0;
    left:0;
}

body.active-menu #menu-overlay{
    display:block;
}

#cont-menu-general .menu-container{
    background-color: #f3f3f3;
}

#cont-menu-general #menu{
    padding:0;
}

#cont-menu-general #close-menu{
    left: 0;
    margin: 15px;
    position: absolute;
    top: 0;
    display: block!Important;
    width: auto!Important;
    line-height: 1;
    color: #999999;
    cursor:pointer;
}

#cont-menu-general #close-menu i{
    font-size:24px;
}

#cont-menu-general #close-menu:hover{
    color: #737373;
}

#cont-menu-general #main-menu{
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 50px 70px 50px 40px!Important;
}

#cont-menu-general #main-menu .nav-item{
    width:100%;
}

#logo-menu{
   margin:15px 0;
}

#logo-menu img{
    width:100%;
}

#cont-menu-general #menu .navbar-nav > li > a{
    margin-right: 0px;
    margin-left: 0px;
    padding:0;
    margin-bottom:6px;
    box-shadow:none!Important;
    background-color: #f3f3f3!Important;
}

.modal-header .close{
    font-size: 36px;
    padding: 15px;
}




