:root {
    --nav-bg-color: #1f3f6f;
    --accent-color: #689F38;
}

* {
    font-family: Arial, Helvetica, sans-serif;
}

a:focus, a:visited {
    border: none;
    text-decoration: none;
    outline: none;
}

body {
    background-color: #e5e5e5;
    overflow-x: hidden;
}

.stop-scrolling {
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0px;
    overflow: hidden;
}

.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

@-webkit-keyframes shake {
    0%, 100% {-webkit-transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
    20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
    0%, 100% {-moz-transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
    20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
    0%, 100% {-o-transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
    20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
    0%, 100% {transform: translateX(0);}
    10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
    20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake;
}

.mobile-page-loading-bar{
    display: none;
    width: 0;
    position: relative;
    bottom: -6px;
    height: 3px;
    left: -6px;
    background-color: var(--nav-bg-color);
    filter: brightness(1.3);
    z-index: 99;
}

#installAppContainer {
    font-size: 12px;
    position: fixed;
    bottom: 20px;
    left: calc(50% - 100px);
    background-color: var(--nav-bg-color);
    opacity: 0.9;
    color: white;
    border-radius: 20px;
    z-index: 99;
}

#installApp {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0 9px 20px;
    font-size: 14px;
    background: none;
    border: none;
    outline: none;
}

#closeInstallApp {
    font-size: 10px;
    padding: 13px 26px 12px 4px;
    background: none;
    border: none;
    outline: none;
}

#search-backdrop {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

#searchInput {
    border-radius: 0;
}

.loading-search-input {
    background-color: #ffffff;
    background-image: url("/images/loading_search.gif");
    background-size: 25px 25px;
    background-position:right center;
    background-repeat: no-repeat;
}

#search-sugestions {
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    top: 34px;
    list-style: none;
    padding: 0;
    max-height: 500px;
    overflow-y: auto;
    min-width: 450px;
}

#search-sugestions li {
    padding: 8px 12px;
    outline: none;
    border-bottom: 1px solid #dedede;
}

#search-sugestions li.active {
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
    background-color: #f4f4f4;
}

#search-sugestions li a {
    color: inherit;
    display: inherit;
}

#search-sugestions li a:hover {
    text-decoration: none;
}

#acord-save-all:hover {
    filter: brightness(1.05);
}

.suggestions-image {
    display: inline-block;
    padding: 0 10px 0 0;
    float: left;
    width: 60px;
    text-align: center;
}

.suggestions-image img {
    max-width: 50px;
    max-height: 50px;
}

.suggestions-title {
    display: inline-block;
    width: calc(100% - 60px);
    font-size: 12px;
}

#logo {
    width: 116px;
    filter: brightness(1.2);
    margin-top: 2px;
}

.modal-content {
    border-radius: 0;
}

.btn {
    border-radius: 0 !important;
}

.btn-primary,
.btn-primary:visited,
.btn-primary:focus {
    background-color: var(--accent-color);
    border: none;
}

.btn-primary:hover{
    background-color: var(--accent-color);
    filter: brightness(1.05);
    border: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                           not supported by any browser */
}

.navbar-default {
    background: var(--nav-bg-color) url("/images/bg_optim.png");
    background-blend-mode: hard-light;
    border: none;
}

.navbar-default .navbar-nav > li > a {
    color: #ffffff;
    padding: 10px;
}

.btn-danger {
    color: #fff;
    background-color: #F44336;
}

.btn-success {
    background-color: var(--accent-color);
}

.btn-success:hover {
    background-color: var(--accent-color);
    filter: brightness(1.05);
}

.btn-success,
.btn-danger {
    border: none;
}

.shadowCenter {
    margin: auto;
}

.shadow {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    height: 1px;
    width: 1px;
    background: transparent;
}

.navbar-default li:hover .shadow {
    background: #ffffff;
    width: 100%;
}

a.accountContainer:hover,
a.accountContainer:focus,
a.accountContainer:visited{
    color: #ffffff;
}

.accountContainer .shadow {
    margin: 40px auto 0;
}

.accountContainer:hover .shadow {
    background: #fff;
    width: 100%;
}

.sidebar-nav a.active .shadow,
.sidebar-nav a:hover .shadow {
    background: var(--accent-color);
    width: 100%;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
    color: #fff;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    color: #fff;
}

.container-fluid {
    padding: 6px;
    margin: 0;
}

.brandTop {
    margin-top: 1px;
    width: 220px;
    text-align: center;
    float: left;
}

.motto {
    position: absolute;
    bottom: -12px;
    right: 60px;
    font-size: 75%!important;
    font-style: italic;
    color: inherit;
}

.headerContainer {
    width: calc(100% - 224px);
    float: right;
    padding-top: 8px;
}

.accountContainer {
    text-align: right;
    color: #ffffff;
    cursor: pointer;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.accountAvatar {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 20px;
    font-size: 18px;
    float: right;
    display: inline-block;
}
.fa-shopping-cart.accountAvatar {
    padding: 12px 10px 8px 8px;
    font-size: 16px;
}

.accountNameContainer {
    display: inline-block;
    padding-right: 10px;
    height: 40px;
    line-height: 40px;
    float: left;
    font-size: 12px;
    width: calc(100% - 36px);
}

.accountName {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

.cartSize {
    position: absolute;
    right: 4px;
    top: 4px;
    color: #ffffff;
    background-color: #ef2809;
    border-radius: 20px;
    padding: 2px 6px 1px 6px;
    font-size: 10px;
}

.menuTop:not(.badge) {
    margin-top: 2px;
    overflow: hidden;
    max-height: 51px;
}

.sidebar-nav .badge {
    padding: 15px;
    margin: 0;
    font-size: 10px;
    font-weight: normal;
    background: transparent;
    color: inherit;
    position: absolute;
    right: 0;
}

.sidebar-nav li {
    text-indent: -8px;
    border-bottom: 1px solid #dedede;
}

.sidebar-nav li.non-category {
    line-height: 28px;
    border: none;
}

.sidebar-nav li a {
    font-weight: normal;
}

.sidebar-nav li a span {
    font-size: 16px;
    min-width: 30px;
    text-align: center;
    margin-right: 0px;
    margin-left: 20px;
}

.sidebar-nav li a.active {
    background-color: var(--accent-color);
    color: #fff;
}

.submenu {
    background-color: #f2f2f2;
}

.submenu-title {
    text-transform: uppercase;
}

.submenu-title.opened {
    background-color: #f2f2f2;
}

.submenu li {
    line-height: 32px;
}

.submenu li:last-of-type {
    border: none
}

.submenu li a {
    font-size: 12px;
}

.submenu li a span {
    margin-left: 32px;
    font-size: 14px;
}

.searchForm {
    padding: 10px;
}

.searchForm .form-control,
.searchForm .btn {
    /*border-radius: 18px;*/
}

.login-button {
    border: none;
    border-radius: 0;
    max-width: 150px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.accountButtonRed {
    padding: 10px 0 0 0;
}

.accountButton {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    height: 54px;
    border-radius: 27px;
    display: table;
    width: 10%;
}

.accountButton a, .accountButton a:hover {
    color: #fff;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
    font-size: 18px;
}

.accountButton:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.accountButtonLeft {
    display: none;
}


/* Slick.js Target Deal custom */
.slick-prev:before, .slick-next:before {
    color: var(--accent-color)!important;
}
.slick-prev, .slick-next {
    top:auto!important;
    bottom: 0px;
    z-index: 1!important;
}
.slick-prev {
    left: 4px!important;
}
.slick-next {
    right: 4px!important;
}
.slick-track,
.slick-list {
    -webkit-perspective: 2000px!important;
    -webkit-backface-visibility: hidden!important;
}
/* Slick.js Target Deal custom */


.miniCardWrapper {
    display: block;
    text-decoration: none;
    padding: 0;
    position: relative;
    background-color: #fff;
    border: #333;
    float: left;
    margin: .25%;
    width: 12%;
    color: #666666;
}
.miniCardTitle {
    font-size: 11px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 2px 6px;
}

.miniImageHolder {
    margin: 5px;
    position: relative;
    overflow: hidden;
    height: 130px;
    white-space: nowrap;
    text-align: center;
}

.miniImageHolder img {
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    height: 100%;
    vertical-align: middle;
    max-width: 100%;
    display: inline!important;
}

.miniCardWrapper:hover .miniImageHolder > img {
    transform: scale(1.03);
}

.miniCardWrapper:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    color: #666666;
}

.miniFooter{
    border-top: 1px solid #dddddd;
    padding: 8px 0 0 0!important;
}

.product-slider{
    margin: 0px 6px 0 6px;
}

.targetCardWrapper {
    display: block;
    text-decoration: none;
    padding: 0;
    position: relative;
    background-color: #fff;
    border: #333333;
    float: left;
    margin: 0.5%;
    width: 24%;
}

.targetCardWrapperDouble {
    width: 49%;
}

.miniCardWrapper:hover,
.miniCardWrapper:focus,
.miniCardWrapper:visited,
.targetCardWrapper:hover,
.targetCardWrapper:focus,
.targetCardWrapper:visited {
    text-decoration: none;
}

.searchedIdCard {
    outline: 2px solid var(--accent-color);
}

.bookingCard {
    width: auto !important;
    padding: 5px 5px 0 5px;
    position: relative;
    float: none;
    display: inline-block;
    background-color: transparent;
}

.bookingSearchContainer {
    padding: 16px !important;
    min-height: 1px !important;
    width: calc(100% - 20px) !important;;
    max-height: 220px;
    overflow: hidden;
}

.targetCard {
    padding: 0;
}

.titleWrapper {
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.imageHolder {
    margin: 5px;
    position: relative;
    overflow: hidden;
    height: 260px;
    white-space: nowrap;
    text-align: center;
}

.imageHolder img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 100%;
    vertical-align: middle;
    max-width: 100%;
}

.targetCardWrapper:hover .imageHolder > img {
    transform: scale(1.05);
}

.title {
    color: #666;
    font-size: 14px;
    line-height: 20px;
    padding: 0 12px;
}

.ordered {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    line-height: 10px;
    bottom: 145px;
    left: 8px;
}

.footer {
    border-top: 1px solid #ccc;
    display: table;
    width: 100%;
}

.footerElement {
    display: table-cell;
    line-height: 26px;
    padding: 12px 20px;
    vertical-align: middle;
    width: 1%;
}

.blank {
    width: 100%;
    font-weight: normal;
    color: #888;
    font-size: 12px;
    line-height: 15px;
    padding: 0 0 0 12px;
}

.sellBy {
    font-size: 12px;
    color: #666;
    margin-left: 14px;
}

.sellBy .brand {
    text-transform: uppercase;
    font-size: 13px;
    color: var(--accent-color);
}

.oldPrice {
    color: #999999;
    font-size: 18px;
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
    font-style: italic;
    font-weight: normal;
}

.currency {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
}

.newPrice {
    color: var(--accent-color);
    font-size: 28px;
    white-space: nowrap;
    text-align: center;
}

.oldPrice .currency {
    margin-left: 0px;
}

#containerNotificari {
    display: none;
}

.activeaza-notificari{
    background-color: #fff;
    color:  var(--accent-color);
    border: solid 1px var(--accent-color);
    border-radius: 6px!important;
}

.sellerLogo {
    position: relative;
    border: 1px solid #dedede;
    border-radius: 80px;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;

    -webkit-transform:rotate(-5deg);
    -moz-transform:rotate(-5deg);
    -ms-transform:rotate(-5deg);
    -o-transform:rotate(-5deg);
    transform:rotate(-5deg);
}

.detaliiContainer {
    padding: 0 6px 0 0;
}

.detalii {
    position: relative;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    font-size: 22px;
    background-color: var(--nav-bg-color);
    color: #fff;
    padding: 10px 11px;
    line-height: 20px;
}

.detalii:hover {
    background-color: var(--accent-color);
}

.bold {
    font-weight: bold;
}

#menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 38px;
    color: white;
    margin-left: 12px;
    position: relative;
    padding: 0;
    line-height: 30px;
    margin-top: 7px;
}

/* -------- OFERTA ----------*/

.page {
    position: relative;
    background-color: #fff;
    min-height: 740px;
    margin: 12px 10px;
    width: calc(100% - 20px);
    float: left;
    padding-bottom: 30px;
}

.page.short {
    min-height: 360px;
}

.flexslider {
    width: 400px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.flexslider .slides {
    max-height: 300px;
    overflow: hidden;
}

.page h1 {
    color: #666;
    font-size: 24px;
    width: calc(100% - 400px);
    padding: 16px;
    border-bottom: 1px solid #dedede;
    margin: 0;
}

.page h2 {
    color: var(--nav-bg-color);
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid #dedede;
    margin: 0 0 10px 0;
    width: 100%;
}

.orderSection {
    width: calc(100% - 400px);
    padding: 0 16px;
    border-bottom: 1px solid #dedede;
    height: 245px;
    overflow: hidden;
}

.priceSection {
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
    padding: 4px 16px;
    border-right: 1px solid #dedede;
}

/* --- A --- */
.priceSection .oldPrice {
    font-size: 22px;
}

.priceSection .newPrice {
    font-size: 50px;
}

.priceSection .newPrice .currency {
    font-size: 18px;
    color: #666;
}

.orderSection .info {
    color: #666;
    font-weight: normal;
    font-size: 14px;
}

.orderSection .value {
    color: #555;
    font-size: 18px;
}

.orderButton {
    position: relative;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    margin: 14px auto;
    max-width: 200px;
    border-radius: 3px;
}

#ofertelePartenerului {
    display: block;
    color: var(--accent-color);
}

.super-pret {
    left: 0;
    position: absolute;
    bottom: 0px;
    width: 100px;
    line-height: 22px;
    font-size: 12px;
    color: #FFFFFF;
    background-color: rgb(239, 33, 0);
    z-index: 10;
}

.free-ship {
    left: 20px;
    position: absolute;
    top: 12px;
    width: 36px;
    height: 36px;
    margin-top: -3px;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 36px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
    text-align: center;
    line-height: 38px;
    font-size: 17px;
    color: var(--accent-color);
    z-index: 10;
}

.free-ship div{
    font-size: 10px;
    line-height: 10px;
    background-color: rgba(255, 255, 255, .8);
    margin: -10px;
    padding: 2px 5px;
    border-radius: 12px;
}

.like-btn {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 36px;
    height: 36px;
    margin-top: -3px;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 36px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .25);
    text-align: center;
    line-height: 38px;
    font-size: 17px;
    color: #444444;
    z-index: 10;
}
.like-btn .fal{
    display: inline;
}
.like-btn.liked .fal{
    display: none;
}
.like-btn .fas{
    display: none;
}
.like-btn.liked .fas{
    display: inline;
}

#wishList {
    margin: 6px auto 0;
    display: block;
    outline: none;
    background-color: #ffffff;
}

.wishedItem {
    display: none;
    position: absolute;
    z-index: 1;
    color: #F44336;
    font-size: 28px;
    left: 7px;
    bottom: 7px;
    padding: 8px 10px 3px 6px;
    line-height: 29px;
    background-color: #ffffff;
}

#wishList span.glyphicon:not(.active) {
    color: #999;
}

#wishList span.active {
    color: #F44336;
}

.watermark{
    opacity: 0.3;
    background: url(/images/watermark.png) no-repeat center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.super-pret-oferta {
    margin: 0 auto;
    width: 138px;
    line-height: 22px;
    font-size: 12px;
    color: #FFFFFF;
    background-color: rgb(239, 33, 0);
}

.orderButton:hover,
.orderButton:focus,
.orderButton:visited {
    text-decoration: none;
    outline: none;
    border: none;
    color: #ffffff;
}

.orderButton:hover {
    filter: brightness(1.05);
}

.orderButtons {
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
    padding: 20px 16px;
    text-align: center;
}

.descriere,
.conditii {
    color: rgb(102, 102, 102);
    float: left;
    font-size: 14px;
}

.descriere {
    float: left;
    width: calc(100% - 408px);
    margin-top: 80px;
    padding: 0 16px 0 32px;
}

.badge {
    font-weight: normal;
    padding: 3px 12px;
    margin: 4px 0;
}

a .badge {
    background-color: var(--nav-bg-color);
}

a .badge:hover {
    background-color: var(--accent-color);
}

.conditii {
    float: right;
    width: 408px;
    padding: 0 32px 0 0;
    margin-top: 80px;
}

a.add-more-products{
    font-size: 11px;
    margin-top: 4px;
    color: var(--accent-color);
    background-color: #FFF;
    border: 1px solid var(--accent-color);
}

a.add-more-products:hover,
a.add-more-products:visited,
a.add-more-products:focus{
    color: var(--accent-color);
    background-color: #FFF;
    border: 1px solid var(--accent-color);
}

/* --- A --- */

/* --- B --- */
.orderSection {
    margin-top: 6px;
    border-bottom: none;
    height: 300px;
}

.priceSection {
    border-right: none;
}

.descriere,
.conditii {
    margin-top: 0;
}

.priceSection .top-half {
    width: 48%;
    display: inline-block;
    text-align: center;
    color: #666;
    font-weight: normal;
    font-size: 14px;
}

.priceSection .top-half .glyphicon{
    font-size: 28px;
    margin-top: 8px;
    float: right;
    color: #555555;
}

.priceSection .top-half-text {
    color: #555;
    font-size: 18px;
}

.orderSection table {
    width: 98%;
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.textColumn {
    padding: 2px 4px 2px 0;
    width: 30%;
}

.timerCell {
    text-align: center;
    font-size: 8px;
}

.timerCellValue {
    text-align: center;
    color: var(--nav-bg-color);
    font-size: 18px;
}

.orderButtonsCenter {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* --- B --- */

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    width: 90%;
    margin: auto;
    text-align: center;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comerciant {
    color: rgb(102, 102, 102);
    width: 100%;
    font-size: 14px;
    float: left;
    padding: 0 18px;
}

.comerciant .flexslider {
    width: 200px;
    position: relative;
    float: left
}

.comerciant img {
    max-width: 200px;
}

.descriereComerciant {
    /*float: right;
    width: calc(100% - 210px);*/
    font-size: 12px;
}

.disclaimer {
    float: left;
    margin: 18px;
    padding: 10px;
    font-size: 80%;
    color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid #dedede;
}

.container-collapsed {
    max-height: 250px;
    overflow: hidden;
}
.see-more{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,1) 60%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.see-more button {
    height: 30px;
    margin-top: 50px;
    background: none;
    border: none;
    color: #005eb8;
    width: 100%;
    font-size: 90%;
}

.promotiiSimilare {
    position: relative;
    float: left;
    min-height: 50px;
    background: #ffffff;
    margin: 12px 10px;
    width: calc(100% - 20px);
}

.promotiiSimilare h3 {
    /*color: var(--nav-bg-color);*/
    font-size: 20px;
    width: 100%;
    line-height: 50px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.floatingBar {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.1);
    bottom: 0;
    right: 0;
    left: 250px;
    position: fixed;
    z-index: 100;
    background-color: #fff;
    padding: 0;
    text-align: center;
}

.floatingBar.show {
    opacity: 1;
    transform: scale(1);
}

.floatingBar td {
    padding: 0 10px;
}

.floatingBar .orderButton {
    margin: 0;
}

#map-canvas {
    width: 100%;
    height: 300px;
    position: relative;
    float: left;
    margin-top: 20px;
}

#tabelSuboferte {
    width: 100%;
}

#tabelSuboferte tr {
    border-bottom: 1px solid #e5e5e5;
}

#tabelSuboferte tr:hover {
    background-color: #F1F8E9;
}

#tabelSuboferte tr td:first-of-type {
    padding-left: 15px;
}

#tabelSuboferte tr td:last-of-type {
    text-align: right;
}

#tabelSuboferte .orderButton {
    padding: 5px 24px;
    font-size: 14px;
    margin: 12px;
    display: inline-block;
}

@media only screen and (max-width: 630px) {
    .orderButtons {
        padding: 10px 16px;
    }

    .priceSection .info {
        font-size: 12px;
        font-weight: normal;
    }

    .orderButton {
        margin: 10px auto;
    }
}

/* -------- OFERTA ----------*/

/* -------- ACCOUNT ----------*/

.facebook-btn {
    border-color: #2d5073;
    background-color: #4a6ea9;
    background-image: url(/images/facebook-icon.png);
    background-size: 35px 35px;
    background-position: left center;
    background-repeat: no-repeat;
    color: #ffffff !important;
    padding: 12px;
    max-width: 350px;
    display: block;
    text-align: center;
    margin: 16px 0;
    border-radius: 3px;
    font-size: 14px;
}

.account {
    padding: 10px 50px;
}

.page.short .account {
    max-width: 450px;
}

.account h1 {
    width: 350px;
}

.account input:not([type="checkbox"]),
.account select {
    background-color: #fff;
    border: 1px solid #b2b2b2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    color: #999;
    font-size: 12px;
    padding: 7px;
    width: 350px;
    height: 33px;
    line-height: 18px;
}

.account .case {
    position: relative;
    float: left;
    width: 350px;
    margin: 0 15px 0 0;
}

.account input[type="submit"] {
    background-color: var(--accent-color);
    color: #fff;
    font-size: 16px;
}

.account input[type="submit"]:hover {
    filter: brightness(1.05);
}

.account label {
    display: block;
    font-weight: normal;
    padding: 10px 0 0 20px;
    font-size: 14px;
    color: #666666;
}

.account .bottomLinks {
    margin-top: 20px;
    width: 350px;
    padding: 10px;
    border-top: 1px solid #dedede;
    height: 50px;
}

.account .bottomLinks a {
    display: block;
    width: 50%;
    position: relative;
    float: left;
    text-align: center;
    font-size: 15px;
}

.account a {
    color: var(--accent-color);
}

.account a:hover {
    text-decoration: none;
}

.account small {
    width: 350px;
    display: block;
    margin-top: 20px;
}

.account .message,
.account .error,
#formularComanda .error {
    font-size: 12px;
    padding: 0;
}
#formularComanda .error {
    font-size: 14px;
}

.account .error,
#formularComanda .error {
    color: #D50000;
}

.account .message {
    color: #388E3C;
}

.account .tab-pane {
    border: 1px solid rgb(221, 221, 221);
    border-top: none;
    padding: 15px;
    color: rgb(102, 102, 102);
    float: left;
    width: 100%;
    margin-bottom: 24px;
}

.nav > li > a:focus,
.nav > li > a:hover {
    text-decoration: none;
    background-color: #fafafa;
}

.comanda {
    border: 1px solid #dedede;
    margin: 10px 0;
    background-color: #f8f8f8;
    width: 100%;
    padding: 10px 10px 0 10px;
    min-height: 100px;
}

.comanda small {
    margin: 0;
    display: inline;
    font-size: 12px;
}

.dataComanda small {
    width: 70px;
    text-align: right;
    display: inline-block;
}

.dataComanda,
.oferta,
.cantitate,
.status,
.total {
    padding: 0 8px;
    display: inline-block;
    vertical-align: middle;
}

.status,
.total {
    float: right;
}

.oferta {
    max-width: 45%;
}

.cantitate {
    min-width: 50px;
    font-size: 30px;
    text-align: right;
}

.cantitate small {
    vertical-align: middle;
    padding: 6px;
}

.total {
    min-width: 10%;
    text-align: right;
    font-style: italic;
    font-size: 18px;
}

.status {
    min-width: 10%;
    text-align: right;
    margin-top: 6px;
}

.status.ok {
    color: var(--accent-color);
}

.status.not-ok {
    color: #D50000;
}

.voucher {
    color: #FFFFFF !important;
    background-color: #2196f3;
    padding: 8px 20px;
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    border: none;
}

.voucher:hover {
    color: var(--accent-color);
}

.op {
    width: 100%;
    float: none;
}

.detaliiPlata {
    text-align: left;
    width: 100%;
    color: #666;
    background-color: #fafafa;
    padding: 4px 10px;
    border: 1px solid #dedede;
    border-radius: 4px;
    font-size: 12px;
}

.detaliiPlata .voucher {
    display: inline-block;
}

/* -------- ACCOUNT ----------*/

/* -------- COMANDA ----------*/

.orderPage h1 {
    width: 100%;
}

.orderPage table {
    width: 100%;
    font-size: 13px;
    color: #666;
}

.orderPage table td {
    padding: 4px;
}

.orderPage table td img {
    min-width: 70px;
    max-width: 120px;
    width: 100%;
}

.orderPage table tr:first-of-type {
    border-bottom: 1px solid #dedede;
}

.orderPage table tr:last-of-type td,
.orderPage table tr:first-of-type td:first-of-type {
    text-align: right;
}

.orderPage table tr:first-of-type td:last-of-type {
    text-align: center;
}

.orderPage table tr:last-of-type {
    border-top: 1px solid #dedede;
}

.orderPage table select {
    background-color: #fff;
    border: 1px solid #b2b2b2;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    color: #999;
    font-size: 12px;
    padding: 7px;
    height: 50px;
}

.orderPage a {
    color: var(--accent-color);
}

.orderPage a:hover {
    text-decoration: none;
}

.orderPage h4 {
    font-size: 18px;
    padding: 0;
    margin: 0;
    font-weight: bold;
}

.checkout {
    margin-bottom: 20px;
}

#cantitateComanda {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid var(--accent-color);
    outline: none;
    text-align: center;
}

/* -------- COMANDA ----------*/

@media only screen and (max-width: 1450px) {
    .targetCardWrapper .title {
        font-size: 14px;
        line-height: 16px;
    }

    .oferta {
        max-width: 30%;
    }
}

@media only screen and (max-width: 1320px) {

    .product-slider{
        margin: 0px 3px 0 3px;
    }

    .slick-prev, .slick-next {
        bottom: 0px;
    }

    .miniCardWrapper {
        margin: 0.5%;
        width: 24%;
    }

    .targetCardWrapper {
        margin: 0.87%;
        width: 48.26%;
    }

    .targetCardWrapperDouble {
        width: 98.26%;
    }

}

@media only screen and (max-width: 1220px) {
    #menu-toggle {
        display: block;
    }

    .menuTop {
        width: 40%;
    }

    .product-slider{
        margin: 0px 7px 0 7px;
    }

    .miniCardWrapper {
        margin: 0.33%;
        width: 16%;
    }

    .targetCardWrapper {
        margin: 0.65%;
        width: 32.033%;
    }

    .targetCardWrapperDouble {
        width: 65.36%
    }

    .floatingBar {
        left: 0;
    }
}

@media only screen and (max-width: 960px) {
    .orderSection table {
        font-size: 12px;
    }

    .orderSection .info {
        font-size: 12px;
    }

    .orderSection .value {
        font-size: 16px;
    }

    .orderButton {
        margin: 10px auto;
    }

    .floating-discount-text {
        display: none;
    }

    .menuTop {
        display: none;
    }

    .searchForm {
        width: 40%;
    }

    .accountButton {
        width: 16%;
    }

    .product-slider{
        margin: 0px 3px 0 3px;
    }

    .slick-prev, .slick-next {
        bottom: -4px;
    }

    .miniCardWrapper {
        margin: 0.5%;
        width: 24%;
    }

    .targetCardWrapper {
        margin: 0.87%;
        width: 48.26%;
    }

    .targetCardWrapperDouble {
        width: 98.26%;
    }

    .priceSection {
        padding: 16px 0;
    }

    .status {
        float: none;
    }
}

.topMenuSmall {
    display: none;
    position: absolute;
    right: 50px;
    color: #fff;
    font-size: 25px;
    padding: 3px;
    top: 15px;
    z-index: 1;
}

.topMenuSmall a,
.topMenuSmall a:hover,
.topMenuSmall a:focus {
    color: #ffffff !important;
    text-decoration: none;
    padding: 8px;
    display: inline-block;
    position: relative;
    top: -8px;
}

.wishListCounter {
    color: #ffffff;
    text-decoration: none;
    padding-left: 0px;
    font-size: 10px;
    display: block;
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    text-align: center;
}

.topMenuSmall a.active {
    background-color: rgba(255,255,255,0.1);
}

.topMenuSmall .nume-cont {
    font-size: 12px;
}

@media only screen and (max-width: 767px) {
    .mobile-page-loading-bar{
        bottom: 0;
    }
    .orderSection {
        height: 295px;
    }

    .topMenuSmall {
        display: inline-block;
        top: 4px;
        right: 110px;
    }

    .brandTop a {
        float: right;
        padding: 4px 18px 0 0;
    }

    .headerContainer {
        width: 100%;
        float: none;
        padding: 0;
        position: absolute;
        top: 48px;
    }

    .searchContainer {
        padding: 0;
    }

    .searchContainer .form-control,
    .searchContainer .btn {
        border-radius: 0;
    }

    #menu-toggle {
        margin-top: 4px;
    }

    .navbar-default {
        background-image: none;
    }

    #logo {
        width: 86px;
        margin-top: 2px;
        filter: brightness(1.2);
    }

    #page-content-wrapper {
        top: 80px;
    }

    .sidebar-nav {
        top: 90px;
    }

    .container-fluid {
        padding: 2px 0 0 0;
    }

    .searchForm {
        width: 100%;
        padding: 0;
    }

    .searchForm .form-control,
    .searchForm .btn {
        border-radius: 0;
    }

    .brandTop {
        width: 100%;
    }

    .accountButton,
    .accountButtonRed {
        display: none;
    }

    .accountButtonLeft {
        display: block;
    }

    .flexslider {
        width: 100%;
        top: 0;
        right: 0;
        position: relative;
    }

    .page h1,
    .orderSection {
        width: 100%;
    }

    .descriere,
    .conditii {
        width: 100%;
        margin-top: 0;
        padding: 0 16px;
    }

    .descriereComerciant {
        float: left;
        width: 100%;
    }

    .cantitate {
        text-align: center;
    }

    .dataComanda {
        min-width: 100%;
    }

    .oferta {
        max-width: 70%;
    }

    .total {
        float: none;
    }

    .voucher {
        display: inline-block;
        margin-left: 10px;
    }

}

@media only screen and (max-width: 630px) {

    .product-slider{
        margin: 0px 3px 0 3px;
    }

    .slick-prev, .slick-next {
        bottom: -4px;
    }

    .miniCardWrapper {
        margin: 0.5%;
        width: 24%;
    }

    .targetCardWrapper {
        margin: 0.87%;
        width: 48.26%;
    }

    .targetCardWrapperDouble {
        width: 98.26%;
    }

    .targetCardWrapper .imageHolder {
        height: 160px;
    }

    .miniCardWrapper .miniImageHolder {
        height: 80px;
    }

    .targetCardWrapper .ordered {
        bottom: 132px;
    }

    .targetCardWrapper .title {
        font-size: 12px;
        line-height: 16px;
    }

    .targetCardWrapper .oldPrice {
        font-size: 11px;
    }

    .miniCardWrapper .newPrice,
    .targetCardWrapper .newPrice {
        padding: 12px 12px;
        font-size: 18px;
    }

    .targetCardWrapper .brand,
    .blank{
        font-size: 11px;
    }


    .floating-ordered-text {
        display: none;
    }

    .account {
        padding: 10px;
    }

    .account h1,
    .account > small,
    .account .bottomLinks,
    .account input:not([type="checkbox"]),
    .account select,
    .account .case {
        width: 100%;
    }
}

@media only screen and (max-width: 350px) {

    .product-slider{
        margin: 0px 5px 0 5px;
    }

    .slick-prev, .slick-next {
        bottom: -4px;
    }

    .miniCardWrapper {
        margin: 0.87%;
        width: 48.26%;
    }

    .targetCardWrapper {
        margin: 2.38%;
        width: 95.24%;
    }

    .targetCardWrapperDouble {
        width: 95.24%;
    }

    .orderSection {
        height: 320px;
    }
}

@media only screen and (max-width: 360px) {
    .hidden-xxs {
        display: none;
    }

    #search-sugestions {
        min-width: 320px;
    }
}

/* Paper-shadow */
.paper-shadow {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: inherit;
    pointer-events: none;
}

.paper-shadow-animated.paper-shadow {
    transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.paper-shadow-top-z-1 {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
}

.paper-shadow-bottom-z-1 {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

.paper-shadow-top-z-2 {
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.paper-shadow-bottom-z-2 {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}

.paper-shadow-top-z-3 {
    box-shadow: 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.paper-shadow-bottom-z-3 {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24);
}

.paper-shadow-top-z-4 {
    box-shadow: 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.paper-shadow-bottom-z-4 {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22);
}

.paper-shadow-top-z-5 {
    box-shadow: 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

.paper-shadow-bottom-z-5 {
    box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2);
}

.paper-shadow-animate-z-1-z-2.paper-shadow-top {
    -webkit-transition: none;
    -webkit-animation: animate-shadow-top-z-1-z-2 0.7s infinite alternate;
}

.paper-shadow-animate-z-1-z-2 .paper-shadow-bottom {
    -webkit-transition: none;
    -webkit-animation: animate-shadow-bottom-z-1-z-2 0.7s infinite alternate;
}

@-webkit-keyframes animate-shadow-top-z-1-z-2 {
    0% {
        box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    }
    100% {
        box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
}

@-webkit-keyframes animate-shadow-bottom-z-1-z-2 {
    0% {
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    }
    100% {
        box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    }
}

/* Paper-shadow*/

.theme-element {
    display: none;
}











.checkbox label{
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.checkbox label:after{
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr{
    position: relative;
    display: inline-block;
    border: 1px solid #558B2F;
    color: #558B2F;
    border-radius: .15em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .3em;
}

.checkbox input[type="checkbox"]:not(:checked)+.cr,
.checkbox input[type="radio"]:not(:checked)+.cr{
    border: 1px solid #dedede;
}

.checkbox .cr .cr-icon{
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}



.checkbox label input[type="checkbox"],
.checkbox label input[type="radio"]{
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.checkbox label input[type="radio"] + .cr > .cr-icon{
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.checkbox label input[type="radio"]:checked + .cr > .cr-icon{
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.checkbox label input[type="radio"]:disabled + .cr{
    opacity: .5;
}



.bell{
    position: relative;top: 12px;float: right;color: var(--accent-color);
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% { -webkit-transform: rotateZ(0); }
    1% { -webkit-transform: rotateZ(30deg); }
    3% { -webkit-transform: rotateZ(-28deg); }
    5% { -webkit-transform: rotateZ(34deg); }
    7% { -webkit-transform: rotateZ(-32deg); }
    9% { -webkit-transform: rotateZ(30deg); }
    11% { -webkit-transform: rotateZ(-28deg); }
    13% { -webkit-transform: rotateZ(26deg); }
    15% { -webkit-transform: rotateZ(-24deg); }
    17% { -webkit-transform: rotateZ(22deg); }
    19% { -webkit-transform: rotateZ(-20deg); }
    21% { -webkit-transform: rotateZ(18deg); }
    23% { -webkit-transform: rotateZ(-16deg); }
    25% { -webkit-transform: rotateZ(14deg); }
    27% { -webkit-transform: rotateZ(-12deg); }
    29% { -webkit-transform: rotateZ(10deg); }
    31% { -webkit-transform: rotateZ(-8deg); }
    33% { -webkit-transform: rotateZ(6deg); }
    35% { -webkit-transform: rotateZ(-4deg); }
    37% { -webkit-transform: rotateZ(2deg); }
    39% { -webkit-transform: rotateZ(-1deg); }
    41% { -webkit-transform: rotateZ(1deg); }

    43% { -webkit-transform: rotateZ(0); }
    100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
    0% { -moz-transform: rotate(0); }
    1% { -moz-transform: rotate(30deg); }
    3% { -moz-transform: rotate(-28deg); }
    5% { -moz-transform: rotate(34deg); }
    7% { -moz-transform: rotate(-32deg); }
    9% { -moz-transform: rotate(30deg); }
    11% { -moz-transform: rotate(-28deg); }
    13% { -moz-transform: rotate(26deg); }
    15% { -moz-transform: rotate(-24deg); }
    17% { -moz-transform: rotate(22deg); }
    19% { -moz-transform: rotate(-20deg); }
    21% { -moz-transform: rotate(18deg); }
    23% { -moz-transform: rotate(-16deg); }
    25% { -moz-transform: rotate(14deg); }
    27% { -moz-transform: rotate(-12deg); }
    29% { -moz-transform: rotate(10deg); }
    31% { -moz-transform: rotate(-8deg); }
    33% { -moz-transform: rotate(6deg); }
    35% { -moz-transform: rotate(-4deg); }
    37% { -moz-transform: rotate(2deg); }
    39% { -moz-transform: rotate(-1deg); }
    41% { -moz-transform: rotate(1deg); }

    43% { -moz-transform: rotate(0); }
    100% { -moz-transform: rotate(0); }
}

@keyframes ring {
    0% { transform: rotate(0); }
    1% { transform: rotate(30deg); }
    3% { transform: rotate(-28deg); }
    5% { transform: rotate(34deg); }
    7% { transform: rotate(-32deg); }
    9% { transform: rotate(30deg); }
    11% { transform: rotate(-28deg); }
    13% { transform: rotate(26deg); }
    15% { transform: rotate(-24deg); }
    17% { transform: rotate(22deg); }
    19% { transform: rotate(-20deg); }
    21% { transform: rotate(18deg); }
    23% { transform: rotate(-16deg); }
    25% { transform: rotate(14deg); }
    27% { transform: rotate(-12deg); }
    29% { transform: rotate(10deg); }
    31% { transform: rotate(-8deg); }
    33% { transform: rotate(6deg); }
    35% { transform: rotate(-4deg); }
    37% { transform: rotate(2deg); }
    39% { transform: rotate(-1deg); }
    41% { transform: rotate(1deg); }

    43% { transform: rotate(0); }
    100% { transform: rotate(0); }
}