/*===========================================================
 Custom Font CSS
============================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
@import url("fancybox.css");

/*===========================================================
 Common CSS
============================================================*/

body {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #000;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    /* overflow-y: hidden; */
}


#topdropdownMobile {
    z-index: 99999;
}

ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid #fff;
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

#npreOverlay {
    background: var(--preloaderBg);
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.roww {
    --gutter-x: 20px;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row {
    --gutter-x: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 10px;
}

.px {
    padding-left: 10px;
    padding-right: 10px;
}

.mx {
    margin-left: 10px;
    margin-right: 10px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.mx-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.py {
    padding-top: 10px;
    padding-bottom: 10px;
}

.my {
    margin-top: 10px;
    margin-bottom: 10px;
}

.gap {
    gap: 20px;
}

.gap-x {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.gap-y {
    row-gap: 20px;
}

.me-auto {
    margin-right: auto;
}

.mob {
    display: none;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: #6c6c6c;
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: #fff;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/

.header-area {
    padding: 15px 0;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu ul li {
    list-style: none;
    display: inline-block;
}

.menu ul li a {
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 10px;
}

.menu ul li a:hover {
    color: #d25419;
}

.header-top-area {
    padding: 20px 0px !important;
    background: #fff;
}

.header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header-top .logo {
    /* margin-top: -10px; */
    width: 218px;
}

.logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-form {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 780px;
    width: 100%;
    position: relative;
}

.top-bar a {
    border-radius: 13px;
    background-color: #ffac0d;
    display: inline-block;
    text-decoration: none;
    line-height: 28px;
    padding: 0 12px;
    margin-left: 15px;
    color: #000;
    font-size: 10px;
    text-align: center;
}

.top-bar {
    background-color: #620000;
    text-align: center;
    padding: 7px 0;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    min-height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-bar span {
    display: block;
    text-align: center;
}

.header-form input {
    width: 100%;
    height: 46px;
    border: solid 1px rgba(33, 50, 82, 0.36);
    background-color: #fff;
    font-size: 15px;
    line-height: 1.3;
    color: #333;
    padding: 0 20px;
    padding-right: 70px;
    border-radius: 15px;
    border: solid 1px rgba(164, 164, 164, 0.4);
    background-color: #fff;
}

.header-form button img {
    width: 20px;
}

.header-form button {
    padding-right: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-form ::-webkit-input-placeholder {
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: 0.24px;
    text-align: left;
    color: rgba(36, 36, 36, 0.7);
    font-family: "Poppins", sans-serif;
}

.header-form ::-moz-placeholder {
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: 0.24px;
    text-align: left;
    color: rgba(36, 36, 36, 0.7);
    font-family: "Poppins", sans-serif;
}

.header-form :-ms-input-placeholder {
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: 0.24px;
    text-align: left;
    color: rgba(36, 36, 36, 0.7);
    font-family: "Poppins", sans-serif;
}

.header-form :-moz-placeholder {
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: 0.24px;
    text-align: left;
    color: rgba(36, 36, 36, 0.7);
    font-family: "Poppins", sans-serif;
}

.header-right .dropdown-menu {
    min-width: 135px;
}

.header-right a {
    font-size: 15px;
    line-height: 1.3;
    color: #252525;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-left.header-right {
    position: relative;
}

/* 
.nav-left.header-right.active::before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 1;
    background: #fff;
} */

.header-right .dropdown-toggle::after {
    border: 0;
    display: none;
}

.contul-meu a {
    padding-right: 17px;
    position: relative;
}

.contul-meu-img {
    width: 44px;
    height: 44px;
    padding: 13px 14px 12px;
    border-radius: 22px;
    background-color: #f5f5f5;
    margin-right: 6px;
}

.header-right span {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.5;
    letter-spacing: 0.24px;
    color: #242424;
    display: inline-block;
}

.nav-left.header-right {
    background-color: #e30613;
}

.header-form form {
    position: relative;
}

.ml-20 {
    margin-left: 20px;
}

.cart-btn {
    position: relative;
    padding-right: 17px;
}

.arr-down {
    right: 0;
    position: absolute;
}

.arr-down img {
    width: 12px;
}

.cart-btn .cart-img {
    display: inline-block;
    position: relative;
    width: 44px;
    height: 44px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
}

.cart-btn p {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 18px;
    letter-spacing: 0.48px;
    color: #fff;
    background: #e81529;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    right: 0;
    top: 4px;

}

.navbar {
    background-color: #f0f2f5;
    padding: 0;
}

.contact {}

.contact img {
    margin-right: 6px;
}

.contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.14;
    letter-spacing: 0.28px;
    color: #525253;
    text-decoration: none;
}

.nav-left .showcat {
    padding: 6px 0;
}

.nav-left {
    background: #fff;
    padding: 0 15px;
    border-top-right-radius: 5px;
}

.navbar-collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.produse-arrow {
    width: 12px;
}

.nav-left a span {
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
    display: block;
    margin-left: 12px;
    margin-right: 80px;
}

.nav-left a span.tag {
    border-radius: 10px;
    text-align: center;
    line-height: 16px;
    background: #ffc311;
    font-size: 11px;
    display: inline-block;
    height: 16px;
    width: 32px;
    color: #1b1b1b;
    font-weight: 400;
    margin-right: 0;
    margin-left: 5px;
}

.nav-link {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.14;
    letter-spacing: 0.28px;
    color: #272727;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    padding: 0 17px;

}

/* Modificare 05.05.23 */
.nav-link .down {
    width: 12px;
    margin-left: 5px;
    display: inline-block;
    margin-bottom: -2px;
}

.nav-item:first-child .nav-link {
    padding-left: 0;
}

.navbar .dropdown>a::after {
    display: none;
}


.nav-item {
    list-style: none;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 60px;
}

.navbar-nav .dropdown-menu {
    padding: 15px;
}

.navbar-nav .dropdown-menu li {
    list-style: none;
}

.navbar-nav .dropdown-menu a {
    padding: 7px;
    display: block;
    text-decoration: none;
}

.navbar-nav .dropdown-menu {
    background: #fff;
    padding: 0;
    padding-bottom: 10px !important;
}

.dropdown-item {
    color: #213252 !important;
}

.nav-link:hover {
    color: #ffb300 !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #fff;
    color: #e30613 !important;
}

.header-right .dropdown-menu {
    background: #fff;
    padding: 15px;
}

.dropdown-menu {
    display: none;
    position: absolute;
}

.dropdown-menu li a {
    display: block;
    padding: 5px 0;
}

.dropdown-menu li {
    list-style: none;
}

.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shopping-basket {
    width: 20px;
}

.user-i {
    width: 16px;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-icon-d {
    width: 20px;
}

.chat {
    width: 24px;
}

/*===========================================================
 Category Menu
===========================================================*/
.burger-bar {
    width: 16px;
}

.category-menu ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.category-menu>nav>ul {

    -webkit-box-shadow: 0px 3px 6px 0 rgb(37 21 23 / 21%);

    box-shadow: 0px 3px 6px 0 rgb(37 21 23 / 21%);
}

.hidden {
    display: none;
}

.clear {
    clear: both;
}

.position-relative {
    position: relative;
}

.category-menu-wrap {
    position: relative;
}

.category-menu {
    /* overflow: hidden; */
    width: 217px;
    position: absolute;
    top: 100%;
    left: -15px;
    z-index: 99;
    background-color: #fff;
    padding-bottom: 0;
    margin-top: 0;
    display: none;
}

.category-menu nav>ul>li {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
}

.category-menu nav>ul>li>a {
    padding: 10px 18px;
    /* display: block; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1.82px;
    background: #fff;
}

.category-menu nav>ul>li>a img {
    margin-right: 15px;
}

.category-menu nav>ul>li>a span {
    float: right;
    font-size: 14px;
    position: relative;
    top: 1px;
}

.category-menu nav>ul>li .category-menu-dropdown {
    position: absolute;
    left: 100%;
    width: 1185px;
    background-color: #fff;
    padding: 17px 60px 0 60px;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    z-index: 99;
    -webkit-box-shadow: 0px 3px 6px 0 rgba(37, 21, 23, 0.21);
    box-shadow: 0px 3px 6px 0 rgba(37, 21, 23, 0.21);
    height: auto;
    max-height: calc(100vh - 220px);
}

.category-menu nav>ul>li .category-menu-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single-category-menu {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding-bottom: 20px;
}

.single-category-menu-inner {
    overflow: hidden;
    clear: both;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu {
    min-width: 130px;
    width: 100%;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu.ct-menu-mrg-bottom {
    margin-bottom: 74px;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu.ct-menu-mrg-left {
    padding-left: 38px;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu.category-menu-border {
    position: relative;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.75;
    color: #1b1b1b;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu ul li:last-child {
    padding: 0 0 0px;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu ul li a {
    font-size: 14px;
    line-height: 1.75;
    color: #1b1b1b;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu ul li a:hover {
    color: #e30613;
}

.category-menu nav>ul>li .category-menu-dropdown .single-category-menu>a img {
    width: 100%;
}

.single-category-menu-inner {
    margin-bottom: 24px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none {
    display: none;
    padding: 15px 0 0 60px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li {
    padding: 0 0 6px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li:last-child {
    padding: 0 0 0px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li>a {
    display: block;
    padding: 0 40px 0 0;
    font-size: 11px;
    letter-spacing: 1.82px;
    text-transform: uppercase;
    font-weight: 600;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li>a span {
    top: 4px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li>a i {
    float: right;
    font-size: 12px;
    top: 7px;
    position: relative;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li ul {
    padding: 10px 0 0;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li ul li {
    padding-bottom: 3px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li ul li:last-child {
    padding-bottom: 0px;
}

.category-menu nav>ul>li>.cr-menu-desktop-none>li ul li a {
    padding: 0 0px 0 20px;
    font-size: 12px;
}

.category-menu nav>ul>li:hover .category-menu-dropdown {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    visibility: visible;
}

.fixed-scroll {
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    position: relative;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
}

.category-menu nav>ul>li .category-menu-dropdown {
    position: fixed;
    left: unset;
    top: 130px;
    margin-left: 217px;
    overflow-y: scroll;
}


.category-menu nav>ul>li>a {
    font-size: 14px;
    line-height: 1.2em;
    letter-spacing: -0.96px;
}

.category-menu nav>ul>li.active>a,
.category-menu nav>ul>li>a:hover {
    -webkit-box-shadow: 0px 3px 6px 0 rgba(37, 21, 23, 0.21);
    box-shadow: 0px 3px 6px 0 rgba(37, 21, 23, 0.21);
    background: #ffc311;
    position: relative;
    z-index: 999;
}

.category-menu nav>ul>li {
    position: relative;
}

.category-menu nav>ul>li.active::before,
.category-menu nav>ul>li:hover::before {
    position: absolute;
    right: 6px;
    top: 12px;
    width: 15px;
    height: 15px;
    content: "";
    background-image: url("../img/arrows/chevron-down.svg");
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background-size: contain;
    z-index: 9999;
}

#menu {
    top: 120px;
    width: 100%;
    height: auto;
    min-height: auto;
}

.mm-panels {
    height: auto;
    min-height: auto;
}

/*===========================================================
 
===========================================================*/
.banner-area {
    /* padding-top: 190px; */
    /* margin-top: 20px; */
}

.title h2,
.title h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    margin-top: 46px;

}

.form-area {
    margin-top: 12px;
}

.form-area .title h2,
.form-area .title h3 {
    margin-top: 0;
}

.title h2 span,
.title h3 span {
    font-weight: 700;
}

.form-area form {
    padding: 25px 20px;
    border-radius: 5px;
    background-color: #009cb4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.single-select {
    width: 225px;
}

.single-select select {
    padding: 0 18px;
    border-radius: 5px;
    cursor: pointer;
    border: 0;
    line-height: 46px;
    background: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
    color: #999;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("../img/arrows/chevron-down.svg") no-repeat 94% center;
    background-size: 15px;
}

.single-select select option {
    padding: 10px 0;
}

.select-btn {}

.select-btn button {
    cursor: pointer;
    width: 138px;
    line-height: 46px;
    border-radius: 5px;
    background-color: #ffc311;
}

.banner-2-area {
    padding-top: 45px;
    padding-bottom: 55px;
}

.banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.single-banner img {
    width: 100%;
}

.card-area {
    padding-bottom: 45px;
    margin-top: 53px;
}

.card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card-left {
    max-width: 682px;
    width: 100%;
    border-radius: 10px;
    background-color: #ffc311;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.card-right {
    max-width: calc(100% - 682px);
    width: 100%;
    padding: 40px 0;
    padding-left: 35px;
    padding-right: 15px;

}

.card-left-text {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.card-left-text h3 {
    font-size: 29px;
    font-weight: bold;
    line-height: 1.1;
    color: #000;
}

.card-left-text a img {
    width: 20px;
}

.card-left-text a {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    display: block;
    margin-top: 10px;
    text-decoration: none;

}

.card-left-img {
    margin-top: 10px;
    margin-bottom: 20px;
}

.card-right p {
    font-size: 14px;
    font-weight: 100;
    line-height: 1.43;
    color: #000;
    text-align: justify;
}


/*===========================================================
Product
===========================================================*/
/* .product-slider {
    margin: 0 -12px;
} */

/* Modificare 16.05.2023 */
.single-product {  
    text-align: center;
    max-width: 160px;
    padding: 0 12px;
    display: inline-block;
    min-width: 158px;
    /* padding: 0 12px; */
}

.product-slider {
    max-height: 185px;
    overflow-y: hidden;
  }
.product-slider.slick-slider {
    overflow-y: visible !important;
}

/* Modificare 16.05.2023 */
.slick-track {
    min-width:100%;
}
/* .slick-list {
    margin-left: -12px;
    margin-right: -12px;
} */
.slick-slide {
    padding-left: 10px;
    padding-right: 10px;
}

.bricolaje-slider {
    margin: 0 -12px;
}

/* Modificare 10.05.2023 */
.product-img {
    width: auto;
    max-height: 80px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    text-align: center;
}

.product-img img {
    width: 100%;
    max-height: 80px;
}


/* Modificare 11.05.2023 */
.product-inner {
    padding: 30px 7px;
    padding-bottom: 70px;
    border-radius: 10px;
    background-color: #f0f2f5;
    text-align: center;
    position: relative;

}

.product-text {
    text-align: center; 
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

.product-text p {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    margin-top: 20px;
}

.slide-arrow:hover {
    background-color: #ffc311;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    margin-top: -70px;
    border-radius: 50%;

}

.prev-arrow:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 10px;
    background-image: url(../img/arrows/slider-left.png);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-size: contain;
}

.prev-arrow {
    width: 54px;
    height: 54px;
    background-color: #fff;
    background-size: 20px 10px;
    right: 75px;
    background-repeat: no-repeat;
    z-index: 5;
    top: 0;
    cursor: pointer;
}

.bg-white .next-arrow,
.bg-white .prev-arrow {
    background-color: #f0f2f5;
}

.next-arrow::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 10px;
    background-image: url(../img/arrows/slider-right.png);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-size: contain;
}

.next-arrow {
    right: 10px;
    width: 54px;
    height: 54px;
    background-color: #fff;
    background-repeat: no-repeat;
    z-index: 5;
    top: 0;
    background-size: 100%;
    cursor: pointer;
}

img.active {
    display: none;
}

.single-product .product-inner:hover,
.single-product.slick-current.slick-active .product-inner {
    background-color: #e30613;

}
.single-product .product-images img{
    max-height:600px;
    object-fit: cover;
}

.single-product .product-inner:hover .product-text p,
.single-product.slick-current.slick-active .product-inner .product-text p {
    color: #fff;

}

.single-tab.active .in-active,
.single-product .product-inner:hover .in-active,
.single-product.slick-current.slick-active .product-inner .in-active {
    display: none;

}

.single-tab.active .active,
.single-product .product-inner:hover .active,
.single-product.slick-current.slick-active .product-inner .active {
    display: block;

}

.pt-left.slick-disabled,
.pt-right.slick-disabled {
    opacity: 0;
    visibility: hidden;
}

.product-tabs-slider-area {
    position: relative;
}

.pt-left,
.pt-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pt-left {
    left: 0;
}

.pt-right {
    right: 0;
}

/* Modificare 10.05.2023 */
/*===========================================================
Tabs 
===========================================================*/

.tab-content.active {
    display: block;
}

.tab-content {
    display: none;
}

.tabs-content .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.tabs-content .table tr th {
    background-color: #F6F6F6;
    border: 2px solid #fff;
}

.tabs-content .table>tbody>tr:first-child>td {
    border-top: 0px solid #ddd;
}

.tabs-content .table>tbody>tr>td {
    padding:8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

/* Modificare 10.05.2023 */

/*===========================================================
Logos 
===========================================================*/


.logos-area {
    padding: 41px 0;
}

.logos-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* justify-content: space-between; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single-logos {
    width: 93px;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #f0f2f5;
    text-align: center;
    position: relative;
    height: 92px;
    float: left;
    margin-right: 1px;
}

.single-logos p {
    font-size: 10px;
    font-weight: 100;
    line-height: 1.75;
    color: #000;
    position: absolute;
    bottom: 13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.logo-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 43px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.single-tab.active .tab-inner p {
    color: #fff;
}

.single-tab.active .tab-inner {
    background-color: #e30613;
}

/*===========================================================
 Slider
===========================================================*/

.bricolaje-area {
    background-color: #f0f2f5;
    padding-bottom: 40px;
    /* overflow: hidden; */
}

/* 
.bricolaje-slider {
    margin: 0 -12px;
} */

.single-bricolaje {
    padding: 0 12px;
}

.bricolaje-inner {
    padding: 15px 12px 15px 12px;
    border-radius: 10px;
    background-color: #fff;
}

.bricolaje-img {
    position: relative;
    text-align: center;
    /* height: 230px; */
    padding-top: 30px;
    margin-bottom: 20px;
}

.bricolaje-img img {
    display: inline-block;
    max-width: 230px;
    max-height:180px;
    width: auto;
    height: auto;
    object-fit: cover;
}

.bricolaje-img {
    overflow: hidden;
}

.bricolaje-per {
    position: absolute;
    top: 0;
    left: 0;
}

.bricolaje-per span {
    width: 44px;
    background-color: #009cb4;
    font-size: 11px;
    font-weight: normal;
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 5px 0;
}

.bricolaje-text {}

.bricolaje-text a,
.bricolaje-text a:hover {
    text-decoration: none;
}

.bricolaje-text a,
.bricolaje-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.more-text {
    display: none;
}

.vezi-mai-multe a {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    text-decoration: none;
    display: block;
    padding-right: 25px;
}

.vezi-mai-multe img {
    width: 20px;
    margin-right: 7px;
}

.vezi-mai-multe {
    text-align: right;
}

.add-cart {
    cursor: pointer;
}

.add-cart img {
    width: 21px;
}

.star {
    margin: 13px 0;
}

.star img {
    width: 13px;
    display: inline-block;
}

.bricolaje-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bricolaje-bottom-text del {
    font-size: 12px;
    font-weight: 300;
    color: #666;
}

.bricolaje-bottom-text h4 {
    font-size: 16px;
    font-weight: bold;
    color: #be1522;
}

.add-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #be1522;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.piese-area {
    overflow: hidden;
    padding-bottom: 80px;
    background-color: #f0f2f5;
}

.piese-img {
    text-align: center;
    /* height: 160px; */
}

.piese-img img {
    display: inline-block;
    max-height: 120px;
    object-fit: cover;
}
/* Modificare 29.05.2023 */
.single-piese {
    width: 33%;
    padding: 0 10px;
    position: relative;
    max-height:350px;
    height:350px;
    float:left;
    overflow:hidden;
}
/* Modificare 29.05.2023 */

.piese-slider {
    /* margin: 0 -13px; */
}

.single-piese-inner {
    border-radius: 10px;
    background-color: #fff;
    padding-bottom: 30px;
    padding-top: 25px;
}

.piese-text {
    padding-left: 60px;
}

.piese-text a {
    font-size: 14px;
    font-weight: 200;
    color: black;
    text-decoration: none;
    bottom: 23px;
}

.piese-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

/* Modificare 17.05.2023*/
.piese-text p.red  {
    font-size: 12px;
    color: #be1522;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
}


.sub-product-inner {
    height:100%;
}

.sub-product-inner div {
    align-self: start;
}
.sub-product-inner .bricolaje-bottom, .sub-product-inner .sub-pro-btn {
    align-self: end;
}

/* Modificare 18.05.2023*/

.sub-product-model {
    font-size: 14px;
    margin-bottom:10px;
}

.sub-product-text {
    font-weight:600;
}

.sub-product-detail {
    max-height:160px;
    height:120px;
    overflow: hidden;
    overflow-y: auto;
    margin-bottom:10px;
}
/* Modificare 17.05.2023*/

.slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.main-img-slider .slick-slide {
    position: relative;
    overflow: hidden;
  }

/* Modificare 18.05.2023*/

.product-images  {
    opacity: 0;
    position: relative;
}

.zoom-container {
    display: flex !important;
    align-items: center; /* align vertically */
    justify-content: center; /* align horizontally */
    position: relative !important;
    width: 100% !important;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    max-height:450px !important;
}


.zoom-image {
    transform: translate(0%, 0%) scale(1);
    margin: 0px auto !important;
    max-width: 100%;
    max-height: 100%;
    height:auto;
    width: auto;
    object-fit: cover;
    display: block;
    position: relative;
    transition: transform 0.3s ease;
}
  
  /* Modificare 18.05.2023*/

.single-piese-inner {
    height: 100%;
}
p.red {

}
.piese-text ul li {
    list-style: none;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    position: relative;
    margin: 12px 0;
}

.piese-text ul li img {
    position: absolute;
    left: -26px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.single-piese-inner {
    height: 100%;
}

/*===========================================================
 Feature Area
===========================================================*/

.feature-area {
    padding-top: 52px;
    padding-bottom: 40px;
}

.feature-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.feature-icon {
    width: 54px;
    padding: 13px;
    border-radius: 16px;
    background-color: #f0f2f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.feature-text {
    padding-left: 14px;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.79;
    color: #555;
}

.feature-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.79;
    color: #555;
}

.single-feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*===========================================================
 Intretinere Area
===========================================================*/

.intretinere-area {
    padding-bottom: 60px;
    background-color: #f0f2f5;
}

.intretinere-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* .intretinere-left::before{
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: rgba(8, 8, 8,1);
    z-index: 1;
} */
.intretinere-left {
    position: relative;
    max-width: 258px;
    width: 100%;
    background: rgba(8, 8, 8, 1);
    border-radius: 5px;
}

.intretinere-right {
    max-width: calc(100% - 270px);
    width: 100%;
}

.intretinere-img {
    position: relative;
}

.intretinere-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.intretinere-right .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.intretinere-img {
    position: relative;
    width: 258px;
    border-radius: 5px;
}


/* Modificare 10.05.2023 */
.intretinere-inner .bricolaje-img {
    height: 200px;
    max-height:200px;
    width:auto;
    object-fit: cover;
}

/* Modificare 10.05.2023 */
.intretinere-left a {
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    left: 0;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    width: 100%;
    text-align: center;
}

.intretinere-right .title {
    margin-top: 25px;
    margin-bottom: 25px;
}

.intretinere-right h3 {
    padding-left: 10px;
    margin: 0;

}

.intretinere-slider .slide-arrow {
    top: -13px;
}

.slide-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.slide-left img,
.slide-right img {
    width: 20px;
}

.slide-left,
.slide-right {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: #f0f2f5 !important;
    border-radius: 50%;
}

.slide-right:hover,
.slide-left:hover {
    background-color: #ffc311;
}

/*===========================================================
 Tab
===========================================================*/

.tab-area {
    background-color: #f0f2f5;
}

.logos-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.single-tab {
    max-width: 273px;
    width: 100%;
    list-style: none;
    border-radius: 20px 20px 0 0;
    padding: 0 6px;
}

.tab-inner {
    display: block;
    text-align: center;
    border: solid 1px #e6eaf3;
    background-color: #fff;
    padding: 14px 10px;
    border-bottom: 0;
    text-decoration: none;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.tab-icon {
    width: 52px;
    margin: 0 auto;
}

.tab-text p {
    font-size: 16px;
    font-weight: 500;
    color: #83858a;
    margin-top: 10px;
}

/*===========================================================
 Footer
===========================================================*/
.footer-area {
    background-color: #be1522;
    /* background-color: #e30713; */
    padding-top: 40px;
}

.footer-bttm-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-bttm {
    padding: 40px 10px;
}

.footer-bttm h3 {
    font-weight: bold;
    line-height: 1.07;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.single-footer {
    width: 20%;
}

.single-footer a {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.29;
    color: #fff;
    display: block;
    text-decoration: none;

}

.copy-right {
    text-align: center;
    padding-bottom: 20px;
}

.copy-right p,
.copy-right a {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.43;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;

}

.copy-right div img {
    margin: 0 3px;
}

.footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-bttm .magazine {
    display: none;
}

.social-icon {
    width: 20%;
}

.contact {
    /* width: 20%; */
}

.width-50 {
    width: 40%;
}

.contact h3 {
    font-size: 14px;
    font-style: normal;
    line-height: 1.07;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact img {
    width: 24px;
}

.contact p a {
    display: inline-block;
}

.contact-prog {
    /* padding-left: 38px; */
}

.contact p a,
.contact p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    color: #fff;
}

.contact a {
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.14;
    letter-spacing: 0.28px;
    color: #525253;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Poppins", sans-serif;
}

.contact address {
    font-size: 14px;
    font-style: normal;
    line-height: 1.07;
    font-weight: 400;
    color: #fff;
    margin: 10px 0;
}

.footer-menu {
    width: 20%;
}

.footer-menu h3 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.07;
    color: #fff;
    margin-bottom: 10px;
}

.footer-menu ul li {
    list-style: none;
}

.footer-menu ul li a {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.17;
    color: #fff;
    text-decoration: none;
    display: block;

}


.single-footer-top p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    color: #fff;
}

.social a:first-child {
    margin-left: 0;
}

.social a {
    display: inline-block;
    margin-left: 15px;
}

.social img {
    width: 32px;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .cere-oferta-login-area .login-left .contact-row {
        padding-bottom: 0;
    }

    /* #menu-produse */
    #menu-secondary .slide-menu__backlink.slide-menu__control {
        font-weight: 700;
    }

    #menu-secondary .slide-menu__backlink.slide-menu__control {
        display: none;
    }

    .menu-header .top-back-btn,
    .level1-container .slide-menu__backlink.slide-menu__control span {
        display: none;
    }

    .top-back-btn,
    .header-area {
        display: none;
    }

    .top-back-btn {
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .mobile-logo {
        width: 100px;
    }

    .navi-mobile>button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .footer-fixed-menu-area {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #f0f2f5;
        padding: 8px;
    }

    .footer-fixed {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .single-f-menu {
        text-align: center;
        display: block;
        text-decoration: none;
    }

    .single-f-menu span {
        display: block;
        font-size: 10px;
        font-weight: normal;
        font-stretch: normal;
        line-height: 1.33;
        letter-spacing: normal;
        color: #1b1b1b;
    }

    .footer-area {
        padding-bottom: 30px;
    }

    body {
        padding-bottom: 45px;
    }

    .go-top {
        bottom: 50px;
        right: 0;
    }

    .nav-link {
        padding-bottom: 4px;
        padding-top: 4px;
    }

    #menu-secondary {
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        left: 0;
        position: fixed;
        display: block;
    }

    .dropdown-menu li,
    #menu-secondary .nav-item {
        border-bottom: 0;
    }

    #menu-secondary.slide-menu .dropdown-menu a {
        padding-left: 15px;
    }

    #menu-secondary.slide-menu .dropdown-menu {
        position: relative;
        padding-left: 10px;
    }

    .dropdown-menu li,
    #menu-secondary .nav-item {
        border-bottom: 0;
        border-top: 1px solid #eee;
    }

    #menu-secondary.slide-menu.active .dropdown-menu {
        display: none;
        left: unset;
    }
    /*Modificari 05.05.23 */
    #menu-secondary .dropdown-toggle .angle-right {
        position: absolute;
        height: 15px;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    #menu-secondary.slide-menu.active .dropdown-menu.active {
        /* display: block; */
    }

    #menu-secondary.slide-menu.active {
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
        position: fixed;
        display: block;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        overflow-y: auto;
        z-index: 1000;

    }
}

/*===========================================================
 Responsive
============================================================*/
@media (max-width: 1399px) {

    .container {
        max-width: 1230px;
    }

    .single-select {
        width: 17%;
    }

    .category-menu nav>ul>li .category-menu-dropdown {
        width: 995px;
    }

    .header-form {
        max-width: 670px;
    }

}

@media (max-width: 1340px) {
    .header-form {
        max-width: 600px;
    }
}

@media (max-width: 1320px) {
    .intretinere-slider .slide-arrow {
        top: -3px;
    }

    .card-left {
        max-width: 600px;
    }

    .card-right {
        max-width: calc(100% - 600px);

    }

    .piese-text {
        padding-left: 35px;
    }
}



@media (max-width: 1260px) {
    .container {
        max-width: 960px;
    }

    .header-form {
        max-width: 400px;
    }

    .category-menu nav>ul>li .category-menu-dropdown {
        width: 725px;
    }
}

@media (max-width: 1260px) {
    .header-form {
        max-width: 400px;
    }

    .single-select {
        width: 16%;
    }

    .card-left {
        max-width: 50%;
    }

    .card-right {
        max-width: 50%;
    }

    .card-left-text h3 {
        font-size: 23px;
    }

    .card-right {
        max-width: 50%;
        width: 100%;
        padding: 30px 0;
        padding-left: 25px;
        padding-right: 15px;
    }

    .logos-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .single-bricolaje {
        /* padding: 0 6px; */
    }

    .intretinere-right h3 {
        padding-left: 10px;
        margin-top: 12px;
        margin-bottom: 30px;
    }

    /* .single-piese {
        padding: 0 7px;
    } */

    /* .piese-slider {
        margin: 0 -7px;
    } */

    .container {
        max-width: 960px;
    }

    .logo-icon {
        height: 30px;
    }

    .single-logos img {
        width: 30px;
    }

    .single-logos {
        width: 70px;
        height: 70px;
    }

    .gap {
        gap: 8px;
    }

    .single-category-menu {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
}


@media (max-width: 1199px) {
    .single-category-menu {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media (max-width: 991px) {

    .tab-text p {
        font-size: 15px;
    }

    .container {
        max-width: 750px;
    }

    .fixed-scroll {
        display: none;
    }

    .header-top-area {
        display: none;
    }


    .card-left {
        max-width: 100%;
        height: auto;
        padding: 35px 0;
        margin-bottom: 30px;
    }

    .card-right {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .card-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .single-select {
        width: 32.5%;
        margin-bottom: 10px;
    }

    .select-btn {
        width: 32.5%;
    }

    .select-btn button {
        width: 100%;
    }

    .form-area form {
        /* padding-bottom: 15px; */
        /* padding-top: 15px; */
        padding: 15px;
        /* border-radius: 10px; */
    }

    /* .single-product {
        padding: 0 7px;
    } */

    /* .product-slider {
        margin: 0 -7px;
    } */

    .footer-menu {
        width: 50%;
    }

    .single-tab {
        max-width: 32%;
    }

    .single-feature {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 40%;
        margin-bottom: 10px;
    }

    .single-footer {
        width: 50%;
        margin-top: 15px;
    }

    .contact {
        width: 50%;
        margin-bottom: 15px;
    }

    .width-50 {
        width: 50%;
    }

    .title h2,
    .title h3 {
        margin-top: 25px;
        /* margin-bottom: 30px; */
        margin-bottom: 25px;
    }
}

@media (min-width: 992px) {
    .footer-area-mob {
        display: none;
    }
}

@media (max-width: 991px) {

    .footer-area.footer-area-desk {
        padding: 0;
    }

    body {
        padding-top:0px !important;
    }

    .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contact {
        margin-bottom: 0;
    }

    .footer-menu {
        margin: 20px 0;
    }

    .footer-menu-open span {
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        display: inline-block;
    }

    .footer-menu-open.active span {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .footer-menu-open {
        font-size: 20px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #fff;
        margin-top: 55px;
        margin-bottom: 40px;
        cursor: pointer;
    }

    .contact.contact-desk,
    .footer-area-desk,
    .contact-desk {
        display: none;
    }

    .width-50 {
        width: 100%;
    }

    .contact-prog {
        padding-left: 0;
    }

    .header-form input {
        padding-left: 10px;
    }

    .header-form input {
        height: 38px;
    }

    .cart-btn p {
        right: 0;
        top: -7px;
    }

    .cart-btn .cart-img {
        background: transparent;
        height: auto;
    }

    .slide-menu {
        position: fixed;
        width: 320px;
        max-width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        display: none;
        overflow: hidden;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        overflow-y: auto;
        z-index: 1000
    }

    .slide-menu,
    .slide-menu .slide-menu__slider {
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        -o-transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        will-change: transform
    }

    .slide-menu .slide-menu__slider {
        width: 100%;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    .slide-menu ul {
        position: relative;
        width: 100%;
        margin: 0;
        padding-left: 0;
        list-style: none
    }

    .slide-menu ul ul {
        position: absolute;
        top: 0;
        left: 100%;
        display: none
    }

    .slide-menu ul a {
        display: block
    }

    .slide-menu a {
        cursor: pointer
    }

    .header-form {
        max-width: 100%;
    }

    .masina {
        border-radius: 5px;
        background-color: #ffac0d;
        cursor: pointer;
    }

    .masina-img img {
        /* width: 40px; */
        width: 26px;
    }

    .produse-img,
    .masina-img {
        /* height: 40px; */
        /* height: 30px; */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .masina,
    .produse {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: calc(50% - 4px);

    }

    .produse span {
        color: #fff;
    }

    .produse {
        /* padding: 17px 60px; */
        padding: 8px 60px;
        border-radius: 5px;
        background-color: #e30613;
    }

    .produse-masina-area span img {
        position: absolute;
        width: 12px;
        right: 0;
        top: 2px;
    }

    .produse-masina-area span {
        /* padding: 0 17px; */
        padding-right: 17px;
        position: relative;
        display: inline-block;
    }

    .produse-masina span {
        font-size: 13px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1;
        letter-spacing: 0.48px;
    }

    .produse-masina {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .top-bar {
        padding: 0 15px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 12px;
        line-height: 1.1;
        width: 100%;
    }

    .produse-masina-area {
        margin-bottom: 0px;
    }

    .top-bar span {
        width: 100%;
        /* width: calc(100% - 110px); */
    }

    .header-form input {
        border-radius: 5px;
        border: solid 1px rgba(164, 164, 164, 0.4);
        background-color: #fff;
    }

    .header-form {
        margin: 10px 0 20px 0;
        max-width: 100%;
    }

    .banner-area {
        padding-top: 20px !important;
    }

    .select-btn,
    .single-select {
        width: 100%;
    }

    .form-area form {
        background: #000;
    }

    .form-text.title {
        display: none;
    }

    .open-nav {
        width: 23px;
    }

    .navi-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .cart-btn {
        padding-right: 0;
    }

    .navi-mobile-area {
        margin-top: 10px;
    }

    .form-area.desktop-form {
        display: none;
    }

    .form-area.mobile-form {
        /* opacity: 1; */
        /* visibility: visible; */
        display: none;
        margin-bottom: 10px;
    }

    .produse button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; */
        cursor: pointer;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .produse,
    .open-nav {
        cursor: pointer;
    }

    .top-bar-area {
        background-color: #620000;
        text-align: center;
        /* padding: 14px 0; */
    }

    .top-bar {
        /* min-height: auto; */
        position: relative;

    }

    .top-bar a {
        display: inline-block;
        width: 90px;
    }

    .header-form {
        padding: 0;
    }

    #menu-secondary .slide-menu__decorator {
        position: absolute;
        top: 2px;
        right: 5px;
    }


    #menu-secondary {
        background: #fff;
    }

    .slide-menu__decorator img {
        width: 12px;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    #menu-produse .slide-menu__decorator {
        position: absolute;
        top: 10px;
        right: 5px;
    }

    .nav-link {
        position: relative;
    }

    .navbar-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .slide-menu__backlink img {
        width: 18px;
        margin-right: 5px;
    }

    .nav-item:first-child .nav-link {
        padding-left: 15px;
    }

    .first-level ul a {
        position: relative;
    }

    .back-btn,
    .slide-menu__control img {
        /* width: 17px; */
        /* width: 25px; */
        width: 21px;
    }

    .produse-masina .produse-img {
        padding-right: 3px;
        display: block;
        height: auto;
    }

    .masina-img {
        padding-right: 3px;
    }

    .produse-masina .produse button {
        /* display: flex;
        align-items: center;
        justify-content: center; */
    }

    .masina span {
        margin-top: 2px;
    }

    .produse-img,
    .produse-img img {
        width: 25px !important;
    }

    .logo img {
        width: 150px;
    }

    .menu-header {
        background-color: #f0f2f5;
        padding: 14px 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .slide-menu {
        width: 100%;
    }

    .slide-menu__backlink.slide-menu__control {
        font-weight: 700;
        font-size: 16px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 0.83;
        letter-spacing: normal;
        color: #1b1b1b;
    }

    #menu-produse {
        background-color: #f0f2f5;
    }

    .nav-img img {
        width: 20px;
    }

    .level1-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .level1-container>li {
        width: 25%;
    }

    .level1-container ul li ul a[data-action="back"] {
        display: block;
    }

    .level1-container ul li ul a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .level1-container ul li ul li {
        display: block;
    }

    .single-nav+.slide-menu__decorator {
        display: none;
    }

    .btn-close img {
        width: 15px;
    }

    .controls {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #f0f2f5;
        height: 58px;
        padding: 0 15px;
    }

    .controls .slide-menu__control {
        border: 0;
        background: none;
    }

    .slide-menu {
        width: 100%;
        max-width: 100%;
    }

    .single-nav {
        width: 80px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .single-nav img {
        width: 48px;
        height: 48px;
    }

    .single-nav.active span {
        font-weight: 700;
        min-height: 35px;
        display: inline-block;
    }

    .slide-menu__slider a {
        text-decoration: none;
    }

    .single-nav span {
        font-size: 12px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.25;
        letter-spacing: normal;
        color: #1b1b1b;
        display: inline-block;
        margin-top: 10px;
    }

    .single-nav .active {
        display: none;
    }

    .single-nav.in-active .active {
        display: none;
    }

    .sni {
        width: 70px;
        margin-left: auto;
        margin-right: auto;
        padding: 13px 11px;
        border-radius: 20px;
        background-color: #ffac0d;
        height: 74px;
    }

    .lvl1 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .navi-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .navi-img img {
        width: 35px !important;
    }

    .navi-img {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 54px;
        height: 54px;
        border-radius: 20px;
        background-color: #e30916;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navi-img img {
        width: 100%;
    }

    .hide {
        opacity: 0;
        visibility: hidden;
    }

    .single-nav.active .sni,
    .single-nav .sni:hover {
        background-color: #e30916;
    }

    .single-nav .sni:hover img.in-active,
    .single-nav.active .sni img.in-active {
        display: none;
    }

    .single-nav .sni:hover img.active,
    .single-nav.active .sni img.active {
        display: block;
    }

    .first-level ul a {
        border-bottom: 1px solid rgba(0, 0, 0, .2);
        padding: 9px;
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.25;
        letter-spacing: normal;
        color: #1b1b1b;
    }

    .nav-img {
        position: absolute;
        right: 15px;
        top: 82px;
        border-radius: 20px;
        background-color: #e30916;
        width: 50px;
        height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 10;
    }

    .level1-container {
        background-color: #f0f2f5;

    }

    .slide-menu__submenu--active .slide-menu__backlink.slide-menu__control {
        padding-bottom: 30px;
    }

    .slide-menu__submenu--active {
        background: #fff;

    }

    #menu-produse.slide-menu ul ul {
        padding-top: 30px;
    }

    .nav-img.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .nav-img {
        display: none;
    }

    .first-level>a {
        position: relative;
        z-index: 222;
    }

    .slide-menu .slide-menu__slider {
        position: relative;
        z-index: 300;
    }

    .slide-menu__submenu--active {
        z-index: 1;
    }

    .header-form form {
        position: relative;
    }

    .menu-header button,
    .menu-header .logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .level1-container {
        padding-top: 20px;
    }

    .slide-menu__slider {
        /* margin-top: 20px; */
    }

    #menu-secondary .slide-menu__slider .nav-link {
        padding: 5px 10px;

    }

    #menu-secondary .slide-menu__slider {
        margin-top: 0;
        padding: 0;
    }

    #menu-secondary .slide-menu__decorator {
        position: absolute;
        top: 0;
        right: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .slide-menu__backlink.slide-menu__control {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .slide-menu__backlink.slide-menu__control span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #menu-produse .slide-menu__backlink.slide-menu__control {
        /* padding-top: 0; */
        /* margin-top: 0; */
    }

    #menu-secondary .slide-menu__slider .nav-link,
    .navbar-nav .dropdown-menu a {
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        font-style: normal;
        line-height: 26px;
        letter-spacing: normal;
        color: #1b1b1b;
    }

    .btn.slide-menu__control {
        cursor: pointer;
    }

    .intretinere-right h3,
    .title h2,
    .title h3 {
        line-height: 1.25;
    }

    .footer-fixed-menu-area .cart-btn p {
        right: 3px;
        top: -4px;
    }

    .slide-menu__backlink.slide-menu__control {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .f-menu-img {
        height: 25px;
        margin-bottom: 7px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .produse-masina-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 15px;
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .produse-masina-left div {
        color: #fff;
    }

    .produse-masina-left div img,
    .produse-masina-right div img {
        width: 13px;
        margin-left: 2px;

    }

    .produse-masina-left div,
    .produse-masina-right div {
        position: relative;
        font-size: 13px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: 0.48px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-top: 2px;
    }

    .produse-masina-left {
        border-radius: 5px;
        background-color: #e30613;
        cursor: pointer;
    }

    .produse-masina-right {
        border-radius: 5px;
        background-color: #ffac0d;
        cursor: pointer;
    }

    .produse-masina-left,
    .produse-masina-right {
        /* height: 45px; */
        height: 66px;
        padding-left: 5px;
        padding-right: 5px;
        width: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .produse-masina-left>img,
    .produse-masina-right>img {
        margin-right: 6px;
        width: 25px;
    }
}


@media (min-width: 768px) {

    .intretinere-arrow .slide-left,
    .intretinere-arrow .slide-right {
        background: #fff !important;
    }
}

@media (max-width: 767px) {
    body, html {
        overflow-x: hidden;
    }
    
    /* Modificare 17.05.2023 */
    .sub-product-detail {
        height:auto;
    }

    .electrice-title {
        margin-left:15px;
    }

    /* Modificare 17.05.2023 */

        /*Modificari 18.05.23 */
        .single-sub-product {
            padding: 0 0px !important;
        }

    /*Modificari 18.05.23 */
    .sub-product-area {
        margin:0px !important;
    }

    /* Modificare 10.05.2023 */
        
    .bricolaje-slider {
        margin: 0px;
    }

    .zoom-container {
        display:none;
    }

    /* Modificare 10.05.2023 */

    /* Modificare 15.05.2023 */
    .thumb-nav {
        display:none;
    }

    .thumb-nav-area {
        position: absolute !important;
        top: 50%;
        width: 100%;
    }
    .product-images {        
        position: relative;
    }
    /* Modificare 15.05.2023 */

    .tab-text p {
        margin-top: 0;
    }

    .tab-icon img {
        width: auto;
        height: 36px;
    }

    .tab-icon {
        height: 36px;
    }

    .intretinere-area .title,
    .intretinere-area .intretinere-arrow {
        display: none;
    }

    .title h2,
    .title h3 {
        font-weight: 500;
    }

    .intretinere-left {
        background: transparent;
        position: unset;
    }

    .intretinere-left a img {
        margin-right: 10px;
    }

    .intretinere-left a {
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        width: 130px;
        bottom: 20px;
        left: 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
        z-index: 100;
    }

    .intretinere-img {
        width: 0;
    }

    .intretinere-img a {
        padding-left: 23px;
    }

    .intretinere-img .mob {
        width: 17px;
        left: 0;
        top: 4px;
        position: absolute;
        display: inline-block;
    }

    .vezi-mai-multe {
        display: none;
    }

    .banner-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .single-banner {
        width: 100%;
    }


    .feature-area {
        padding-top: 25px;
        padding-bottom: 0;
    }

    .piese-area {
        padding-bottom: 25px;
        padding-top: 0;
    }

    .banner-2-area {
        padding-bottom: 0;
        padding-top: 25px;
    }

    .piese-text ul li img {
        width: 15px;
    }

    .container {
        max-width: 480px;
    }

    .single-feature {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 50%;
        margin-bottom: 10px;
    }

    .desk {
        display: none;
    }

    .mob {
        display: block;
    }

    .banner img {
        width: 100%;
    }

    .title h2,
    .title h3 {
        font-size: 20px;
    }

    .product-title span {
        display: block;
    }

    .slide-arrow {
        margin-top: -73px;
    }


    .feature-text {
        padding-left: 10px;
        max-width: 105px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .single-piese-inner {
        border: 1px solid #ccc;
    }

    .intretinere-area,
    .piese-area {
        background: #fff;
    }

    .single-piese {
        padding: 0 10px;
    }

    .prev-arrow,
    .next-arrow {
        background: #f0f2f5 !important;
    }

    .logos-tab {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .single-tab {

        max-width: 100%;
        margin-bottom: 15px;
    }

    .single-tab .tab-inner {
        border-radius: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tab-icon {
        margin-left: 0;
        margin-right: 20px;
    }

    .tab-area {
        padding-top: 25px;
    }

    .logos-area {
        background-color: #f0f2f5;
    }

    .logos-area {
        padding-top: 10px;
    }

    .bricolaje-area,
    .single-logos {
        background: #fff;
    }

    .intretinere-inner {
        position: relative;
    }

    .intretinere-img:before {
        display: none;
    }

    .intretinere-img {
        position: unset;
    }

    .intretinere-img a {
        left: 10px;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        width: 100px;
        bottom: 0;
    }

    .intretinere-right {
        max-width: 100%;
    }

    .bricolaje-area {
        padding-bottom: 1px;
    }

    .slide-arrow img {
        width: 17px;
    }

    .slide-arrow {
        width: 44px;
        height: 44px;
    }

    .next-arrow {
        right: 0;
    }

    .prev-arrow {
        right: 55px;
    }

    .bricolaje-inner {
        border: 1px solid #ccc;
    }

    .roww {
        margin-left: -5px;
        margin-right: -5px;
    }

    .intretinere-area .roww {
        margin-left: 0;
        margin-right: 0;
    }

    .intretinere-slider {
        max-width: 210px;
    }

    .intretinere-area .single-bricolaje {
        padding: 0;
        margin-top: 15px;
    }

    .intretinere-right .title {
        width: 100%;
    }

    .intretinere-right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .intretinere-area {
        margin-top: 0;
    }

    .intretinere-right .roww {
        padding-right: calc(var(--gutter-x) * 0.5);
        padding-left: calc(var(--gutter-x) * 0.5);
        width: 480px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .intretinere-right .title {
        position: absolute;
        top: 0;
        left: 0;
    }

    .intretinere-img {
        display: none;
    }

    .intretinere-inner,
    .intretinere-area .container,
    .intretinere-area .row {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .intretinere-right {
        position: relative;
        padding: 24px 10px 24px 0;
        background-image: url("../img/mob/intretinere-img.jpg");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .card-left-text a img {
        width: 15px;
    }


    .card-left-text h3 {
        font-size: 17px;
        max-width: 220px;
        margin: 0 auto;
    }

    .card-left-img img {
        width: 225px;
    }

    .card-left-img {
        margin-bottom: 10px;
    }

    .card-left {
        padding: 25px 15px;
        margin-bottom: 10px;
    }

    .card-area {
        margin-top: 20px;
    }

    :not(.bricolaje-area) .bricolaje-img {
        height: auto;
        padding-bottom: 10px;
        text-align: center;
    }


    .bricolaje-img img {
        width: 100%;
        max-width: 250px;
    }

    .intretinere-area .bricolaje-img img {
        height: auto;
        max-width: 100%;
        width: auto;
        max-height: 250px;
    }

    .footer-bttm-inner,
    .footer-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* .piese-slider,
    .bricolaje-slider,
    .product-slider {
        margin: 0;
    } */

    .next-arrow {
        right: 15px;
    }

    .prev-arrow {
        right: 70px;
    }

    .single-footer a {
        margin-bottom: 10px;
    }

    .single-tab {
        max-width: 100%;
    }

    .tab-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 10px;
        padding: 14px 0;
    }

    .tab-icon {
        width: 40px;
        margin: 0;
        margin-right: 20px;
    }

    .single-piese,
    .slick-slide {
        padding-left: 5px;
        padding-right: 5px;
    }

    .roww {
        margin-left: -5px;
        margin-right: -5px;
    }

    .single-tab {
        padding-left: 0;
        padding-right: 0;
    }

    .feature-text {
        max-width: 115px;
        padding-left: 6px;
    }

    .feature-text p,
    .feature-text h4 {
        font-size: 14px;
        line-height: 1.18;
    }

    .piese-text span {
        font-weight: 700;
        font-size: 14px;
    }
    /*modificare 29.05.2023 */
    .bricolaje-text a,
    .bricolaje-text p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
    /*modificare 29.05.2023 */

    .star img {
        width: 16px;
    }

    .contact h3,
    .footer-menu ul li a,
    .copy-right p,
    .copy-right a,
    .single-footer a,
    .contact p a,
    .contact p,
    .bricolaje-text a,
    .bricolaje-text p,
    .card-left-text span {
        font-size: 15px;
    }

    .bricolaje-bottom-text h4 {
        font-size: 18px;
    }

    .bricolaje-bottom-text del {
        /* font-size: 12px; */
        font-size: 17px;
    }

    .bricolaje-inner,
    .single-bricolaje {
        height: 100%;
    }

    .bricolaje-area .bricolaje-inner,
    .bricolaje-area .single-bricolaje {
        height: auto;
    }

    .star {
        margin: 5px 0;
    }


    .intretinere-area .single-bricolaje {
        margin-top: 0;
    }

    .slide-arrow {
        display: none;
    }


    .intretinere-arrow-left,
    .intretinere-arrow-right {

        width: 44px;
        height: 44px;

    }

    .intretinere-title-mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .next-arrow {
        right: 8px;
    }

    .prev-arrow {
        right: 63px;
    }
/* Modificare 16.05.2023 */
    .bricolaje-img {
        margin-bottom: 0;
        max-height:167px;
        width:auto;
        object-fit: cover;
        margin:0 auto;
        text-align: center;
    }

/* Modificare 16.05.2023 */
    .card-right p {
        font-size: 15px;
    }

    .bricolaje-img img {
        margin-left: -12px;
        margin-right: -12px;
    }

    .footer-area {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .card-area {
        padding-bottom: 25px;
    }

    .intretinere-area {
        padding-bottom: 0px;
    }

    .card-area {
        margin-top: 25px;
    }

    .copy-right {
        padding-bottom: 15px;
    }

    .footer-bttm {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .single-footer {
        margin-top: 0;
    }

    .contact.contact-prog+.footer-menu {
        padding-top: 0;
    }

    .contact.contact-prog {
        margin-top: 25px !important;
    }

    .footer-menu {
        margin: 0;
        padding-top: 25px;
    }

    .logos-area {
        padding-bottom: 25px;
    }

    .footer-bttm .magazine+.footer-bttm-inner {
        display: none;
    }

    .footer-bttm .magazine::after {
        position: absolute;
        content: "";
        background-image: url("../img/arrows/chevron-down-white.svg");
        /* background-size: auto; */
        width: 20px;
        height: 14px;
        background-repeat: no-repeat;
        right: 10px;
    }

    .footer-bttm .magazine {
        cursor: pointer;
        display: block;
        position: relative;
    }

    .single-footer {
        width: 100%;
    }

    .bricolaje-area {
        margin-top: -7px;
    }

    .single-feature {
        margin-bottom: 0;
    }

    .feature-inner {
        gap: 10px 0;
    }
}

@media (min-width: 992px) {
    .mobile-form {
        display: none;
    }

    .footer-fixed-menu-area,
    .slide-menu,
    .responsive-navigation {
        display: none !important;
    }
}

/* ========================== Updated 4th April 2023 ======================== */
.masina-selectata-area {
    margin-top: 30px;
}

.masina-selectata {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
    background-color: #ffc200;
    padding-right: 10px;
}

.masina-selectata-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 223px;
    height: 47px;
    padding-left: 17px;
    border-radius: 10px 0 0 10px;
    background-color: #0c1c1f;
}

.masina-selectata-left p {
    margin-left: 20px;
    font-size: 14px;
    font-weight: bold;
    line-height: 2.14;
    letter-spacing: 0.28px;
    color: #fff;
}

.masina-selectata-mlde {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: calc(100% - 450px);
    width: 100%;
}

.masina-selectata-mlde h5 {
    font-size: 14px;
    line-height: 1.29;
    letter-spacing: 0.28px;
    color: #0c1c1f;
    font-weight: 700;
}

.masina-selectata-mlde h6 {
    font-size: 14px;
    line-height: 1.29;
    font-weight: 400;
    letter-spacing: 0.28px;
    color: #0c1c1f;
}

.masina-selectata-right {}

.masina-selectata-right button {
    display: inline-block;
}

.masina-selectata-right button,
.masina-selectata-right a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.28px;
    color: #fff;
    width: 157px;
    line-height: 34px;
    border-radius: 10px;
    background-color: #0c1c1f;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.contact-row {
    /* padding: 34px 21px 29px 24px; */
    padding: 30px;
    border-radius: 10px;
    background-color: #f0f2f5;
}

.single-form label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.contact-row input {
    height: 43px;
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #fff;
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #000;

}



.contact-row .row {
    margin-bottom: 20px;
}

.contact-row .row:last-child {
    margin-bottom: 0;
}

.cere-oferta-login-area .sub-pro-btn button:before,
.cere-oferta-login-area .sub-pro-btn a:before {
    width: 42px;
}

.cere-oferta-login-area .contact-row {
    background: none;
    padding: 0;
}

.cere-oferta-login-area .sub-pro-btn img {
    width: 11px;
}

.cere-oferta-login-area .sub-pro-btn span {
    font-weight: 700;
}

.cere-oferta-area h1 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 30px 0;
    line-height: 1;
}

.cere-oferta-area h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin: 30px 0;
    line-height: 1;
}

.text-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
}

.text-area textarea {
    width: 100%;
    border-radius: 10px;
    border: solid 1px #c6ced9 !important;
    height: 105px;
    padding: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;

}

.select select {
    width: 100%;
    height: 43px;
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #fff;
    font-size: 14px;
    color: #000;
    padding: 0 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url(../img/arrows/chevron-down.svg) no-repeat 97% center;
    background-size: 14px;
    cursor: pointer;

}

button.btn-full-yellow {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    line-height: 60px;
    border-radius: 10px;
    background-color: #fec300;
    width: 100%;
    cursor: pointer;
    margin-top: 30px;
}

.magazine-right button.btn-full-yellow {
    margin-top: 10px;
}

.radio-area {}

.adbanner-area {
    margin-top: 30px;
}

.adbanner-inner {
    border-radius: 10px;
    padding: 0 30px 0 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    background-image: url(../img/banners/banner-middle-offerta.png);
    background-repeat: no-repeat;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 150px;
    background-position: center center;
    overflow: hidden;
}

.adbanner-inner {
    position: relative;
}

.adbanner-left-icon {
    position: absolute;
    bottom: 0;
    left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.adbanner-left-text {
    padding-top: 16px;
}

.adbanner-left-text p {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    padding-left: 35px;
}

.adbanner-left-text p span {
    color: #ffc200;
}

.adbanner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vezi-bttn a {
    font-size: 16px;
    font-weight: bold;
    color: #010101;
    text-decoration: none;
    display: inline-block;
    width: 138px;
    line-height: 52px;
    border-radius: 10px;
    background-color: #ffc200;
    text-align: center;
}

.adbanner-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.adbanner-right-text {
    margin-right: 90px;
}

.adbanner-right-text h2 {
    font-size: 42px;
    color: #fff;
    line-height: 1;
}

.adbanner-right-text p {
    font-size: 20px;
    font-weight: bold;
    color: #ffc200;
}

.single-logos {
    margin-bottom: 20px;
}

.created-slider .slick-slide div:last-child .single-logos {
    margin-bottom: 0;
}

.created-slider-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}


.created-slider {
    margin: 0 -10px;
}

.created-left,
.created-right {
    background: #fff !important;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: #f0f2f5 !important;
    border-radius: 50%;
}

.slick-arrow img {
    width: 20px;
}

.alege-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px 0;
}

.alege-title h1 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.breadcrumb {
    /* margin-top: 30px; */
    margin-top: 25px;
}

.breadcrumb li {
    display: inline-block;
    list-style: none;
}

.breadcrumb .current {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
}

.breadcrumb a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
}

/*===============+Updated 26 april 2023===========*/

.gray {
    background-color: #f0f2f5;
}

.specificatii p{
    padding:10px 10px;
    margin-top:10px !important;
}
.specificatii-title {
    font-weight: bold;
    margin-top: 15px !important;
}

.review-top star {
    margin-bottom:0px;
}
.review {
    border-top:2px solid #a7adb9;
    margin-top:20px;
}

.review-name, .review-title {
    font-weight: bold;
}

.verified, .link-cont {
    color: #ffc311;
}

.nota-produs {
    margin-bottom:0px !important
}
.user-cont {
    border: 1px solid #333333;
    border-radius: 50%;
    width: 25px !important;
    margin: 0px 5px -7px 5px;
}

.review-form {
    padding-top:0px;
}
.review-top {
    text-align: center;
}

.review-top .star img{
    width:22px;
}

.nota-review {
    font-size: 24px;
    font-weight: bold;
}

.review-form {
    background-color:#fff;
}

.review-button {
    display: block;
    font-size: 16px !important;
    font-weight: 600  !important;
    width: auto;
    padding: 0 50px;
    line-height: 43px;
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #ffc200;
    text-align: center;
    display: inline-block;
    margin-top: 16px;
    margin-left:auto;
    margin-right:auto;
}

/*===============+Radio===========*/

.single-check p {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.single-check p:last-child {
    margin-bottom: 0;
}

.radio-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 10px;
    background-color: #f0f2f5;
    padding: 30px;
}

.radio-wrap .select {
    width: 40%;
}

.radio-wrap .select select {
    background: #fff url(../img/arrows/chevron-down.svg) no-repeat 98% center;
    background-size: 15px;
    cursor: pointer;
}

.radio-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    width: 40%;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #000;
    border-radius: 100%;
    background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.feature-area.not-home {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 1260px) {
    .masina-selectata {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .masina-selectata-mlde {
        max-width: 100%;
        margin-top: 10px;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .masina-selectata-right button,
    .masina-selectata-right a {
        width: 223px;
        line-height: 47px;
    }

    .masina-selectata-right {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .masina-selectata-left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .masina-selectata-mlde div:last-child {
        margin-bottom: 0;
    }

    .masina-selectata-mlde div {
        margin-bottom: 10px;
    }

    .masina-selectata {
        padding: 10px;
    }

    .masina-selectata-left {
        border-radius: 10px;
    }

    .viteze-automata .col {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 33%;
        flex: 1 0 33%;
        margin-bottom: 20px;
    }

    .viteze-automata .col:nth-child(4),
    .viteze-automata .col:nth-child(5),
    .viteze-automata .col:nth-child(6) {
        margin-bottom: 0;
    }

}

@media (max-width: 991px) {
    .magazine-right button.btn-full-yellow {
        margin-top: 5px;
    }

    .show-lg {
        display: none;
    }

    .masina-selectata-left {
        display: none;
    }

    .masina-selectata-mlde {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .masina-selectata-right {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .masina-selectata-right {
        width: 100%;
    }

    .masina-selectata-mlde div {
        width: 33.33%;
    }

    .masina-selectata-right button,
    .masina-selectata-right a {
        width: 100%;
    }

    .radio-area {
        width: 55%;
    }

    .adbanner-left-text p {
        padding-left: 0;
    }

    .adbanner-inner {
        position: relative;
        padding-left: 120px;

    }

    .adbanner-inner::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(1, 1, 1, .5);
        z-index: 1;
        content: "";
        border-radius: 10px;
    }

    .adbanner-left-icon {
        z-index: 10;
    }

    .adbanner-left-icon {
        left: 15px;
    }

    .adbanner-left {
        padding-left: 80px;
    }

    .adbanner-left,
    .adbanner-banner,
    .adbanner-right {
        position: relative;
        z-index: 10;
    }

    .adbanner-right {
        /* flex-direction: column; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .adbanner-right-text {
        margin-right: 0;
    }

    .adbanner-inner {
        padding: 25px 15px;
    }

    .adbanner-right-text {
        padding-right: 15px;
    }

    .radio-area .single-check>p {
        margin-top: 0;
    }

    .radio-area .single-check {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {

    ul .content {
        margin-top: 25px;
    }

    .electrice-title h1 {
        margin-bottom: 25px;
    }

    .single-sub-product {
        margin-bottom: 30px;
    }

    .masina-selectata {
        padding: 15px;
    }

    .masina-selectata-left,
    .masina-selectata-right {
        width: 100%;
    }

    .masina-selectata-mlde div {
        width: 50%;
    }

    .masina-selectata-right button,
    .masina-selectata-right a {
        width: 100%;
    }

    .masina-selectata-mlde {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .masina-selectata-right {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .masina-selectata-left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .contact-row .col {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
        flex: 1 0 100%;
    }

    .contact-row .row {
        margin-bottom: 0;
    }

    .contact-row .col {
        margin-bottom: 15px;
    }

    .contact-row {
        padding: 25px 15px;
    }

    .contact-row {
        padding-bottom: 10px;
    }

    .viteze-automata .col:nth-child(4),
    .viteze-automata .col:nth-child(5),
    .viteze-automata .col:nth-child(6) {
        margin-bottom: 15px;
    }

    .radio-area .single-check {
        margin-bottom: 25px;
    }

    .radio-wrap .select,
    .radio-area {
        width: 100%;
    }

    .radio-wrap {
        padding: 25px 15px;
    }

    .cere-oferta-area h2 {
        margin: 25px 0;
    }

    .adbanner-area,
    button.btn-full-yellow {
        margin-top: 25px;
    }

    .feature-area.not-home {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .cere-oferta-area h2,
    .cere-oferta-area h3 {
        font-size: 20px;
        /* font-weight: 500; */
    }

    .adbanner-left {
        margin-bottom: 15px;
    }

    .adbanner-left,
    .adbanner-right {
        padding: 0;
        text-align: center;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .adbanner-right-text {
        margin-bottom: 15px;
    }

    .adbanner-inner {
        height: auto;
        background-color: #010101;
        border-radius: 10px;
    }

    .adbanner-left-text {
        padding-top: 0;
    }

    .adbanner-left-icon {
        left: unset;
        right: 0;
    }

    .brand-slider-area .single-logos {
        background-color: #f0f2f5;
    }

    .created-slider {
        margin: 0;
    }

    .single-logos {
        margin-bottom: 10px;
    }

    .alege-title h1 {
        font-size: 24px;
    }

    .created-left,
    .created-right {
        width: 44px;
        height: 44px;
    }

    .alege-title {
        margin: 25px 0;
    }

    .breadcrumb {
        margin-top: 25px;
    }

    .masina-selectata-area {
        margin-top: 25px;
    }

    .vezi-bttn a {
        line-height: 48px;
    }
}

@media (max-width: 449px) {

    .radio-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .single-check {
        margin-bottom: 15px;
    }
}

.pdt-0 {
    padding-top: 0;
}

.contact-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-left {
    max-width: calc(100% - 914px);
    width: 100%;
}

.contact-right {
    max-width: 914px;
    width: 100%;
    margin-top: 35px;
}

.contact-left h1 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    line-height: 1;
}

.suport-clienti {
    margin-top: 30px;
}

.suport-clienti h5 {
    font-size: 18px;
    line-height: 0.83;
    color: #000;
    margin-bottom: 30px;
}

.suport-clienti p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #000;
}

.suport-clienti a {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    text-decoration: none;
}

.email p {
    display: inline-block;
    margin-top: 15px;
}

.contact-left-top p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #000;
    margin: 10px 0;
}

.contact-left-top h6 {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}

.single-form p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-top: 20px;
}

.cere-oferta-area .single-form p {
    text-align: left;
}

.contact-bttm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-right: 60px;
}

.contact-bttm div {
    max-width: 360px;
    width: 100%;
}

.contact-bttm h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-bttm p {
    font-size: 14px;
    color: #000;
}

.contact-wrapper button.btn-full-yellow {
    margin-top: 0;
}

.antispam {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.antispam input {
    width: 288px;
}

.antispam p {
    margin-top: 0;
    margin-right: 17px;
}

/*=======================subcategorii-produse============*/

.electrice-area {
    padding-top: 30px;
}

.electrice-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* Modificare 10.05.2023 */

.electrice-inner .content {
    overflow: hidden;
}

/* width */
.magazine-address-lists::-webkit-scrollbar,
.electrice-inner .content::-webkit-scrollbar {
    width: 3px;
    border-radius: 3px;
}

/* Track */
.magazine-address-lists::-webkit-scrollbar-track,
.electrice-inner .content::-webkit-scrollbar-track {
    background: #f5f5f5;
}

/* Handle */
.magazine-address-lists::-webkit-scrollbar-thumb,
.electrice-inner .content::-webkit-scrollbar-thumb {
    background: #dce0e7;
}

/* Handle on hover */
.magazine-address-lists::-webkit-scrollbar-thumb:hover,
.electrice-inner .content::-webkit-scrollbar-thumb:hover {
    background: rgb(255, 194, 0);
}

.electrice-left {
    max-width: 260px;
    width: 100%;
}

.electrice-right {
    max-width: calc(100% - 260px);
    width: 100%;
    padding-left: 22px;
}

.electrice-left ul li {
    list-style: none;
    border-bottom: 1px solid #dce0e7;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
/* Modificare 16.05.2023 */
.electrice-left ul li a {
    font-size: 16px;
    line-height: 16px;
    font-weight: 200;
    text-align: left;
    color: #353535;
    display: inline-block;
    text-decoration: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* Modificare 16.05.2023 */
.electrice-left ul li a.active {
    color: #e30613;
}

.electrice-left ul li a span:last-child {
    font-weight: 400;
    color: #272727;
}

.electrice-title h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    margin-bottom: 30px;
}

    /*Modificari 19.05.23 */
.sub-product-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -13px;
    width:100%;
}

.single-sub-product {
    width: 25%;
    padding: 0 13px;
    margin-bottom: 30px;
}

.sub-product-inner {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    padding: 15px 15px;
    position: relative;
}

.discount {
    position: absolute;
    top: 15px;
    left: 10px;
    z-index: 9999;
}

.recomandat {
    position: absolute;
    font-size: 13.5px;
    top: 15px;
    right: 10px;
    z-index: 9999;
    padding:0px 5px;
    line-height: 24px;
    background-color:#ffc200;
}
.rec-lista {    
    top: 25px;
    right:auto;
    left:0px;
}
.discount span {
    font-size: 13.5px;
    text-align: center;
    width: 50px;
    color: #fff;
    line-height: 24px;
    background-color: #009cb4;
    display: inline-block;
}

/* Modificare 17.05.2023 */
.sub-product-img {
    margin-top: 8px;
    text-align: center;
    position: relative;
}
/* Modificare 17.05.2023 */

.sub-star {
    margin: 3px 0;
}

.sub-star img {
    width: 15px;
}

.info {
    text-align: center;
}

.info img {
    position: relative;
    top: 5px;
}

.info a {
    font-size: 9px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
}

.sub-product-text {
    margin-top: 12px;
}

/* Modificare 18.05.2023 */
.sub-product-text a {
    text-transform: none;
    text-decoration:none;
}

.bricolaje-bottom-text {
    margin-top:10px;
}
/* Modificare 18.05.2023 */

.sub-product-text p {
    font-size: 13.5px;
    color: #000;
}

/* Modificare 18.05.2023 */
.sub-product-detail p {
    font-size: 12px;
    line-height: 1.2em;
    letter-spacing: 0.24px;
    color: #272727;
    margin-bottom: 5px;
}
/* Modificare 18.05.2023 */

.sub-pro-btn {
    position: relative;
    margin-top: 18px;
}

.sub-pro-btn img {
    width: 22px;
    position: absolute;
    left: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sub-pro-btn button,
.sub-pro-btn a {
    display: inline-block;
    padding-left: 25px;
    width: 100%;
    line-height: 41px;
    border-radius: 10px;
    background-color: #ffc200;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: inline-block;
    text-align: center;
    position: relative;


}

.sub-pro-btn button:before,
.sub-pro-btn a:before {
    position: absolute;
    content: '';
    width: 55px;
    height: 100%;
    border-radius: 10px 0 0 10px;
    background-color: #be1522;
    left: 0;
    top: 0;
}

.categori-bttm-area {
    padding-top: 30px;
}

.categori-bttm-text {}

.categori-bttm-text h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.32px;
    margin-bottom: 15px;
}

.categori-bttm-text p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.29;
    letter-spacing: 0.28px;
    text-align: justify;
    color: #0c1c1f;
}

.sub-pagination-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 10px 12px 24px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #fff;
}

.sub-pagination a:first-child {
    color: rgba(3, 1, 4, 0.5);
}

.sub-pagination a {
    display: inline-block;
    text-decoration: none;
    font-size: 11px;
    font-weight: 300;
    color: #030104;
    line-height: 27px;
    padding: 0 9px;
    border: solid 1px #e2e2e2;
    background-color: #fff;
    margin-left: 3px;

}

.sub-pagination a.active,
.sub-pagination a:hover {
    background-color: #fec300;
}

.sub-pagination-area p {
    font-size: 12px;
    font-weight: 300;
    line-height: 0.83;
    color: #030104;
}

/*==============Accordion===============*/

.accordion {
    position: relative;
}

.toggle-link {
    display: block;
    text-decoration: none;
}

.toggle-link,
.toggle-acc {
    cursor: pointer;
    position: relative;
}

.toggle-link span,
.toggle-acc span {
    width: 12px;
    position: absolute;
    right: 30px;
    top: 2px;
    display: inline-block;
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
}

.toggle-link span img,
.toggle-acc span img {
    width: 100%;
}

.toggle-link img {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.rotate {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* IE 9 */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari and Chrome */
    -o-transform: rotate(180deg);
    /* Opera */
}

.links {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

.links a:hover {
    color: #666;
}

.links a {
    text-decoration: none;
    display: block;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    padding: 2px 0;
}

.accordion {
    list-style: none;
    padding: 0;
}

ul .content {
    padding-left: 0;
    overflow: hidden;
    display: none;
    margin-top: 30px;
}

.single-tab .active,
.single-tab.active .in-active {
    display: none;
}

ul .active {
    display: block;
}


ul li .toggle-link,
ul li .toggle-acc {
    width: 100%;
    display: block;

    -webkit-transition: background 0.3s ease;

    -o-transition: background 0.3s ease;

    transition: background 0.3s ease;
    font-size: 18px;
    font-weight: bold;
    line-height: 0.83;
    color: #000;
}

.accordion li {
    padding: 24px 35px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #dce0e7;
}

.accordion li:last-child {
    padding-bottom: 0;
}

ul li a.toggle:hover {
    background: rgba(0, 0, 0, 0.9);
}

.toggle-link img,
.toggle-acc img {
    margin-right: 7px;
}

.accordion li:last-child {

    border: 0 !important;
}

@media (max-width: 1399px) {
    .single-sub-product {
        width: 33.33%;
    }
}

@media (max-width: 1260px) {

    .single-sub-product {
        width: 50%;
    }

    .contact-right {
        max-width: calc(100% - 300px);
    }

    .contact-left {
        max-width: 300px;
    }

    .contact-bttm div {
        max-width: 47%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .categori-bttm-area {
        padding-top: 25px;
    }

    .links {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .contact-right {
        margin-top: 0;
    }

    .alege-title h1 {
        font-size: 24px;
    }

    .electrice-area {
        padding-top: 25px;
    }

    .single-sub-product {
        width: 50%;
    }

    .electrice-right {
        max-width: 100%;
        padding-left: 0;
        margin-top: 10px;
    }

    .electrice-left {
        max-width: 100%;
    }

    .contact-right {
        max-width: 100%;
    }

    .contact-left {
        max-width: 100%;
    }

    .contact-bttm {
        padding-right: 0;
    }

    .contact-bttm {
        margin-top: 25px;
    }

    .contact-wrapper {
        margin: 25px 0;
    }

    .electrice-title h1,
    .contact-left h1 {
        font-size: 24px;
    }

    .single-sub-product {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {

    .single-sub-product {
        width: 100%;
    }

    .contact-bttm div:last-child {
        margin-top: 25px;
    }

    .contact-bttm div {
        max-width: 100%;
    }

}

@media (max-width: 575px) {
    .links {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }

    .antispam p {
        margin-bottom: 5px;
    }

    .antispam {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}


#myInput:focus ~ #myDropdown{
	display: block;
}

    /*Modificari 05.05.23 */
#myDropdown:hover {
    display: block;
}
/* The container <div> - needed to position the dropdown content */
/* Dropdown Content (Hidden by Default) */

#myDropdown {
    display: none;
    position: absolute;
    font-weight: normal;
    min-width: 100%;
    border: 1px solid #ddd;
    z-index: 1;
	background-color:#F3F3F3;
}

#myDropdown a {
    color: black;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
#myDropdown a:hover {background-color: #f1f1f1}

.read-more img {
    max-height: 15px;
    display: inline-block;
    margin-top: 0px;
    margin-bottom: -3px;
  }
.read-more {
    position: relative;
    width: 100%;
    text-align: left;
}
/* Moddificare 25.05.2023 */
.read-more.right-arrow img {
    rotate: 270deg;
}
.mobile-account {
    padding:10px 0 10px 0;
}
.mobile-account img {
    margin-right:10px;
}
.magazine-right .form-inner {
    margin-top:20px;
}
.magazine-address a img{
    max-width:20px;
}
#menu-produse .slide-menu ul ul {
    overflow-y: scroll;
    display: block;
    height: 100vh;
}
.masina-selectata-right .schimba{
    width:73%;
    margin-right:2%;
}

.masina-selectata-right .menu_img {
    width:23%;
}
.masina-selectata-right .menu_img img {
    max-height: 30px;
    padding-top: px;
    padding: 5px;
    margin-bottom: -10px;
}
.mobile-banner {
    display:none;
}
.product-tab-inner .tabs-content {
    padding-left:5px;
}
.bottom-banner {
    display:block;
    background:none !important;
    padding:0px;
}
@media screen and (max-width:768px) {
    
    .desk-banner {
        display:none;
    }
    .mobile-banner {
        display:block;
    }
}

.desktop-banner {
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(47,47,47,1) 35%, rgba(57,57,57,1) 50%, rgba(48,48,48,1) 65%, rgba(0,0,0,1) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-transform: uppercase;
    height: 100px;
    font-family: 'Titillium Web', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top:20px;
}
.desktop-banner:after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    width: 435px;
    background: red;
    height: 170px;
    transform: rotate(7deg) translate(0px, -50%);
    z-index: 0;
}
.banner-countdown {
    margin-bottom: 30px;
}
.banner-left {
    display: flex;
    align-items: center;
}
.banner-left1 {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
    margin-left: -13px;
}
.banner-left1 img {
    z-index: 1;
    margin-top: 10px;
}
.banner-left1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 75%;
    height: 62%;
    background: #f9b233;
    transform: translate(0px, -50%);
    z-index: 0;
}
.banner-left3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-left1 h4 {
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
    color: #000;
    margin-top: 0px;
    margin-bottom: 0px;
}
.banner-left2 {
    margin-left: 20px;
    margin-right: 40px;
}
.banner-left3 h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px;
}
.banner-left3 h3 span {
    color: #f9b233;
}
.banner-left3 img {
    margin-top: 12px;
    margin-left: 40px;
}
.banner-right-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
}
.banner-right-text h4 {
    font-size: 21px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 25px;
}
.banner-right {
    position: relative;
    z-index: 1;
}

.wrap {
    text-align: center;
    position: relative;
}
.wrap:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    border-top: 1px solid black;
    background: black;
    width: 100%;
    transform: translateY(-50%);
}

.sw__hero__countdown__date_container {
    background-color: #fff;
    border-radius: 5px;
    height: 40px;
    width: 26px;
    vertical-align: middle;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}
.sw__hero__countdown__dates {
    font-size: 22px;
    letter-spacing: 0;
    display: inline-block;
    color: #000;
    margin-bottom: 0;
    padding: 0px 7px;
}

.sw__hero__date {
    margin: 30px 0px 0px;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    color: #d8d8d8;
    letter-spacing: 0.8px;    
    text-align: center;
    line-height: 20px;
    font-family: 'Futura pt';
    vertical-align: middle;
}

.sw__hero__countdown__date_label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    text-transform: lowercase;
    margin-bottom: 0px;
    margin-top: 5px;
}
.sw__hero__countdown__wrapper {
    margin-left: 10px;
    position: relative;
}
.sw__hero__countdown__wrapper:after {
    content: ":";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translate(0px, -50%);
    color: red;
    font-size: 30px;
    margin-top: -14px;
    color: #fff;
}
.sw__hero__countdown__wrapper:last-child:after{
    display: none;
}
.sw__hero__countdown {
    margin-top: 20px;
}
.mobile-active{
    display: none;
}
.desktop-active{
    display: block;
}
.banner-right {
    position: relative;
    z-index: 1;
    min-width: 470px;
    padding-left: 23px;
}
.banner-left {
    display: flex;
    align-items: center;
    width: 100%;
}
.show320screen {
    display: none !important;
}
@media (max-width: 1399.98px) {
    .banner-left2 img,.banner-left3 img {
        width: 70px;
    }
    .banner-left1 h4 {
        font-size: 18px;
    }
    .banner-left1:before {
        top: 50%;
        width: 80%;
    }
    .banner-right-text h4 {
        font-size: 18px;
    }
    .banner-left {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: normal;
    }
    .banner-left3 h3 {
        font-size: 18px;
    }
    .desktop-banner:after {
        content: "";
        position: absolute;
        right: 30px;
        top: 50%;
        width: 420px;
        background: red;
        height: 170px;
        transform: rotate(7deg) translate(0px, -50%);
        z-index: 0;
    }
    .banner-right {
        position: relative;
        z-index: 1;
        min-width: 450px;
        padding-left: 23px;
    }
}

@media (max-width: 1199.98px) {
    .banner-left3 h3 {
        font-size: 16px;
    }
    .banner-left2 img {
        width: 60px;
    }
    .banner-left2 {
        margin-left: 15px;
        margin-right: 20px;
    }
    .banner-left3 img {
        width: 110px;
    }
    .desktop-banner:after {
        content: "";
        position: absolute;
        right: 28px;
        top: 50%;
        width: 400px;
    }
    .desktop-banner-one .banner-left1 img {
        z-index: 1;
        margin-top: 10px;
        width: 80px;
    }
    .banner-left1 h4 {
        font-size: 15px;
        padding-left: 10px;
    }
    .banner-right {
        position: relative;
        z-index: 1;
        min-width: 450px;
        padding-left: 25px;
    }
    .banner-left2 img {
        width: 45px;
    }
    .banner-left3 h3 {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    h3.mobile-active {
        text-align: center;
    }
    .banner-right-text {
        display: block;
        align-items: center;
        justify-content: space-between;
        padding-right: 15px;
    }
    .banner-right-text h4 br {
        display: none;
    }
    .sw__hero__countdown {
        margin-top: 5px;
    }
    .banner-right-text h4 {
        font-size: 18px;
        margin-right: 0px;
        text-align: center;
        margin-bottom: 6px;
        margin-top: 7px;
    }
    .desktop-banner {
        background: rgb(57,57,57);
        background: linear-gradient(90deg, rgba(57,57,57,1) 0%, rgba(0,0,0,1) 100%);
        height: 117px;
    }
    .desktop-banner:after {
        content: "";
        position: absolute;
        right: 33px;
        top: 50%;
        width: 210px;
    }
    .banner-left2 img {
        width: 45px;
    }
    .banner-left3 img {
        width: 130px;
    }
    .banner-left3 h3 {
        font-size: 18px;
    }
    .sw__hero__countdown__wrapper {
        margin-left: 5px;
        margin-right: 5px;
        position: relative;
    }
    .banner-left1 img {
        display: none;
    }
    .banner-left1 h4 br {
        display: none;
    }
    .banner-left1 {
        position: absolute;
        background: #ffc230;
        transform: rotate(-90deg);
        left: -20px;
        padding-left: 0px;
        padding: 2px;
    }
    .banner-left1 h4 {
        font-size: 12px;
        padding: 0px 5px;
    }
    .banner-left1:before{
        display: none;
    }
    .banner-left2 {
        margin-left: 15px;
        margin-right: 20px;
        display: none;
    }
    .banner-left3 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row-reverse;
    }
    .mobile-active{
        display: block;
    }
    .desktop-active{
        display: none;
    }
    .banner-left3 img {
        width: 110px;
        margin-left: 35px;
    }
    .banner-left3 h3 {
        font-size: 20px;
        margin-left: 26px;
    }
    .banner-right {
        position: relative;
        z-index: 1;
        min-width: fit-content;
        padding-left: 0px;
    }
    .desktop-banner:after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        width: 215px;
    }
    .desktop-banner:after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        width: 285px;
    }

}

@media (max-width: 767.98px) {
    .banner-right-text h4 {
        font-size: 14px;
        margin-bottom: 6px;
        margin-top: 7px;
    }
    .sw__hero__countdown__dates {
        font-size: 16px;
        padding: 0px 5px;
    }
    .sw__hero__countdown__date_container {
        height: 30px;
        width: 19px;
    }
    .sw__hero__countdown__date_label {
        font-size: 10px;
    }
    .desktop-banner:after {
        width: 230px;
    }
    .banner-left3 h3 {
        font-size: 20px;
        margin-left: 25px;
    }  
    .banner-left3 img {
        width: 24%;
    }
    .banner-left3 h3 {
        font-size: 14px;
        margin-left: 10px;
    }
}

@media (max-width: 500px) {
    .desktop-banner:after {
        width: 100px;
    }
    /*modificare 29.05.2023 */
    .banner-left3 h3 {
        font-size: 15px;
        margin-left: 50px;
    }
    /*modificare 29.05.2023 */
    .banner-right-text h4 {
        font-size: 12px;
        margin-bottom: 6px;
        margin-top: 7px;
    }
    .banner-left3 img {
        width: 70px;
        margin-left: 5px;
    }
    .banner-left2 img {
        width: 25px;
    }
    .banner-left2 {
        margin-left: 5px;
        margin-right: 10px;
    }
    .sw__hero__countdown__dates {
        font-size: 14px;
        padding: 0px 3px;
    }
    .sw__hero__countdown__date_container {
        height: 24px;
        width: 15px;
    }
    .banner-right-text {
        display: block;
        align-items: center;
        justify-content: space-between;
        padding-right: 0px;
    }
    .desktop-banner:after {
        width: 230px;
        right: 0px;
    }
    .banner-left {
        display: flex;
        align-items: center;
        width: 67%;
        justify-content: center;
    }
    .banner-right {
        position: relative;
        z-index: 1;
        min-width: 210px;
    }
    .banner-left3 img {
        width: 70px;
        margin-left: 5px;
        display: none;
    }

}

@media (max-width: 400px) {
    .desktop-banner.desktop-banner-one {
        display: block;
        width: 100%;
    }
    .desktop-banner:after {
        width: 200px;
        right: 0px;
        clip-path: polygon(10% 50%, 100% 50%, 100% 100%, 0% 100%);
        transform: rotate(0deg) translate(0px, -50%);
        height: 100%;
    }
    .banner-left1 h4 {
        font-size: 12px;
        padding: 0px 5px;
        display: none;
    }
    .banner-left1 img {
        display: block;
    }
    .banner-left1 {
        position: inherit;
        left: inherit;
        transform: inherit;
        padding: inherit;
        margin: 0;
        background: transparent;
    }
    .banner-left {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-around;
    }
    .banner-left3 h3 {
        font-size: 15px;
        margin-left: 15px;
        line-height: 20px;
        margin-top: -4px;
        text-align: center;
    }
    .hide320screen {
        display: none !important;
    }
    .desktop-banner-one .banner-left1 img {
        z-index: 1;
        margin-top: 10px;
        width: 80px;
        margin-left: 5px;
    }
    .banner-right-text {
        display: flex;
        align-items: center;
        padding-left: 10px;
        justify-content: space-around;
    }
    .banner-right-text h4 br {
        display: block;
    }
    .show320screen {
        display: block !important;
    }
    .banner-right-text h4 {
        font-size: 12px;
        margin-bottom: 7px;
        margin-top: -6px;
        line-height: 15px;
    }

}

/* Moddificare 25.05.2023 */
/* ================ 3 ============= */
.filtre-area {
    /* padding-bottom: 15px; */
}

.filtre-title h2 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    margin-top: 30px;
}

.filtre-text {
    column-count: 4;
    column-gap: 10px;
    border-radius: 10px;
    background-color: #f0f2f5;
    padding: 20px;
}
  
  

.filtre-text div {    
  display: inline-block;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  break-inside: avoid;
}

/*Modificari 05.05.23 */
.filtre-text h5 {
    margin-top: 15px;
    font-weight: bold;

    font-size: 14px;
    text-align: left;
    color: #000;

}

.filtre-text a {
    margin: 6px 0;
}

.filtre-text a,
.filtre-text p {
    font-size: 14px;
    text-align: left;
    color: #000;
    text-decoration: none;
    display: block;
}

.piese-auto-text {}

.piese-auto-text h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.1;
    color: #000;
    margin-top: 25px;
    margin-bottom: 30px;
}

.piese-auto-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.piese-auto-form .form {
    max-width: calc(100% - 450px);
    width: 100%;
    position: relative;

}

.piese-auto-form .form button {
    padding-right: 17px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.piese-auto-form .form button img {
    width: 20px;
}

.piese-auto-form .form input {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: solid 1px rgba(164, 164, 164, 0.4);
    background-color: #fff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.28px;
    color: rgba(36, 36, 36, 0.7);
    padding: 0 17px;
}

.piese-auto-form .piese-auto-select {
    max-width: 420px;
    width: 100%;
}

.piese-auto-form .piese-auto-select .select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.piese-auto-form .piese-auto-select select {
    width: 260px;
}

.breadcrumb-alt .breadcrumb li {
    display: inline;
}

.breadcrumb-alt .breadcrumb a {
    font-weight: 300;
}

.breadcrumb-alt .current {
    font-weight: 500;
}

/*====================*/


.electrice-left ul li .toggle-acc {
    font-size: 16px;
    font-weight: bold;
    color: #353535;
}

.bucuresti-area .toggle-acc span img {
    width: 12px;
    margin: 0;
}

.bucuresti-area .toggle-acc span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.bucuresti-area .toggle-acc.active span img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.bucuresti-area .toggle-acc.active span {
    background-color: #f0f2f5;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.bucuresti-area .toggle-acc span {
    right: 0;
}

.electrice-left .content label {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: #000;
    cursor: pointer;
}

.electrice-left .accordion li {
    list-style: none;
    border-bottom: 1px solid #dce0e7;
    padding: 15px 0;
    margin-bottom: 0;
}

.electrice-left ul .content {
    margin-top: 15px;
}

/* Modificare 17.05.2023 */
.electrice-left .form-group {
    display: block;
    margin-bottom: 0px;
    position: relative;
}

/* Modificare 17.05.2023 */
.electrice-left .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

.electrice-left .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: solid 1px #e2e2e2;
    background-color: #fff;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 7px;
    top: -2px;
}


/* Modificare  30.05.2023 */
.electrice-left .form-group input:checked+a:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #555;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media (min-width: 768px) {    
    .electrice-left .form-group input:checked+a:after {
        top:3px;
    }
    .electrice-left .form-group label:before {
        top:-3px;
    }
   
}

/* Modificare  17.05.2023 */
.electrice-left .form-group input:checked label:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid #555;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.color-red {
    color: red;
}

#clearFilter {
    padding:10px;
    font-size:12px;
    display:inline-block;
    width:100%;
    color:#000;
    background-color:#f0f2f5;
    margin-bottom:10px;
}
#clearFilter a {
    color:#000;
    text-decoration:none;
}
/* Modificare  10.05.2023 */
.electrice-left .electrice-left .accordion li {
    padding: 15px 0;
    margin: 0;
}

.electrice-left .electrice-left .accordion .content {
    margin-top: 20px;
}


.electrice-left .toggle-link span,
.electrice-left .toggle-acc span {  
    right: 0px;
    font-size: 16px;
    font-weight: 200;
}

.electrice-left .new{
    max-height:200px;
    overflow-y:auto;
    overflow-x:hidden;
}

.electrice-left .filtre {
    display: block;
}

.electrice-left>ul>li {
    border-bottom: 0px solid #dce0e7;
}

.electrice-left .aplica {
    display:none;
}

.electrice-left .toggle-acc img{
    rotate:0deg;
}

.electrice-left .toggle-acc.active img{
    rotate:180deg;
}

/* Modificare  10.05.2023 */
/*================================product-auto===============*/

.product-auto-top-text {
    margin: 30px 0;
}

.product-auto-top-text .auto-select {
    margin-top: 30px;
}

.product-auto-top-text h1 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.product-auto-top-text p {
    font-size: 14px;
    line-height: 2.14;
    letter-spacing: 0.28px;
    color: #272727;
}

.sub-product-auto-area {}

.sub-product-auto-area .single-sub-product {
    width: 33.3333334%;
}

.product-auto-title {}

.product-auto-title h4 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}

.sub-product-auto {
    position: relative;
}

.sub-product-auto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sub-product-left {
    max-width: 204px;
    width: 100%;
    text-align: center;
}

.sub-product-left p {
    font-size: 14px;
    line-height: 1.13;
    letter-spacing: 0.28px;
    color: #272727;
}

.sub-product-auto .discount {
    position: absolute;
    top: 0;
    left: 0;
}

.sub-product-right {
    max-width: calc(100% - 204px);
    width: 100%;
}

.sub-pro-btn {
    width: 100%;
}

.sub-product-auto-area .bricolaje-bottom-text del {
    font-size: 17px;
}

.sub-product-auto-area .bricolaje-bottom-text h4 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
}

.sub-product-auto-area .sub-product-detail p {
    font-size: 14px;
}

.sub-pagination-area {
    width: 100%;
}

.auto-select span {
    font-size: 14px;
    color: #000;
}

.auto-select select {
    font-size: 14px;
    font-weight: bold;
    color: #353535;
    border: 0;
    width: 185px;
    height: 41px;
    border-radius: 10px;
    padding: 0 12px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-left: 18px;
    background: #f0f2f5 url(../img/arrows/chevron-down.svg) no-repeat 94% center;
    background-size: 15px;
}

.producator-slider-area.mt0 {
    margin-top: 0;
}

.thumb-nav-area {
    position: relative;
}

.thumb-left {
    left: 0;
}

.thumb-right {
    right: 0;
}

.thumb-left img,
.thumb-right img {
    width: 13px;
}

.thumb-left,
.thumb-right {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

/*  */
/*=========================download-facturi===========*/


.download-facturi-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 27px;
}

.download-facturi-left {
    max-width: calc(100% - 528px);
    width: 100%;
    padding-right: 55px;
}

.download-facturi-left h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.1;
    color: #000;
    margin-bottom: 30px;
}

.download-facturi-left p {
    font-size: 14px;
    color: #0c1c1f;
    margin-top: 15px;
}

.download-facturi-right {
    max-width: 528px;
    width: 100%;
}

.download-facturi-right label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.download-facturi-right .sub-pro-btn button {
    padding: 0;
}

.download-facturi-right .sub-pro-btn button:before {
    position: unset;
}

/*=========================INfo===========*/

.info-area {
    margin-top: 30px;
}

.info-text h1 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    padding-bottom: 5px;
    line-height: 1;
}

.cumparaturi-title h1 {
    margin-bottom: 30px;
}

.info-text p {
    font-size: 14px;
    color: #0c1c1f;
    margin-top: 15px;
}

/*=============================Magazine===============*/
.magazine-area {
    margin-bottom: 23px;
}

.bucuresti-title-area {
    margin-top: 30px;
    margin-bottom: 30px;
}

.magazine-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.magazine-left {
    max-width: 355px;
    width: 100%;
}

.magazine-right {
    max-width: calc(100% - 355px);
    width: 100%;
    padding-left: 40px;
}

.mag-search {
    padding: 0 30px;
    position: relative;
}

.map-icon {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mag-search input {
    font-size: 16px;
    font-weight: normal;
    line-height: 40px;
    color: #000;
    border: 0;
    border-bottom: 2px solid #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
}

.mag-search button {
    position: absolute;
    right: 0;
    width: 23px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

}

.mag-search ::-webkit-input-placeholder {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.mag-search :-ms-input-placeholder {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.mag-search ::-moz-placeholder {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.mag-search ::-ms-input-placeholder {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.mag-search ::placeholder {
    font-size: 16px;
    font-weight: normal;
    color: #000;
}

.magazine-address-lists {
    max-height: 380px;
    overflow-y: scroll;
    padding-right: 10px;
}

.magazine-address {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    padding: 17px 24px;
    margin-top: 30px;
}

.magazine-address p {
    font-size: 14px;
    font-weight: normal;
    color: #000;
}

.magazine-address address {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    position: relative;
    font-style: normal;
    margin: 8px 0;
}



.magazine-address address img {
    position: absolute;
    top: 2px;
}

.magazine-address a {
    font-size: 14px;
    font-weight: normal;
    color: #000;

}

.responsive-map {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.more-addr,
.less-addr {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.less-addr img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.more-addr img,
.less-addr img {
    margin-right: 5px;
    width: 15px;
}

.responsive-map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.sector>img {
    margin-top: 3px;
}

.sector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* align-items: center; */
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 8px 0;
}

.sector span {
    font-size: 16px;
    font-weight: normal;
    color: #000;
    margin-left: 7px;
}

.bucuresti-inner ul .content {
    margin-top: 17px;
}

#map-canvas {
    width: 100%;
    height: 539px;
}

.responsive-map {
    /* height: 100%; */
}

.magazine-details-inner .responsive-map {
    height: 410px;
    margin-bottom: 45px;
}

.magazine-details-inner .form-inner h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.61;
    color: #000;
    margin-bottom: 25px;
}

.magazine-details-inner .mag-search button {
    width: 12px;
}

.magazine-details-inner .magazine-address a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.magazine-address address,
.magazine-address a {
    position: relative;
    padding-left: 25px;
}

.magazine-address address img,
.magazine-address a img {
    position: absolute;
    left: 0;

}

.magazine-address-btm p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.21;
    color: #000;
    margin-top: 37px;
}

/*=============================Product===============*/

.product-auto-top-text h1 {
    margin-top: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-top: 0;
    line-height: 1;
}

.producator-slider-area {
    margin-top: 30px;
}

.producator-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.producator-left {
    max-width: calc(100% - 520px);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.producator-left-top {
    margin-bottom: 30px;
}

.producator-left-top p {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.producator-left-top span {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.producator-left-top span strong {
    margin-left: 8px;
}

.producator-left-top img {
    width: 17px;
}


.cod-product p,
.detalii-tehnice p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.71;
    color: #000;
}

.detalii-tehnice p strong {
    margin-bottom: 15px;
    margin-top: 10px;
    display: block;
}

.cod-product {}

.producator-right {
    max-width: 520px;
    width: 100%;
}

.producator-right-inner {
    max-width: 409px;
    width: 100%;
    padding: 25px 14px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #f0f2f5;
    margin-left: auto;
}

.producator-right-title {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.pret-intreg {}

.pret-intreg span {
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

.pret-intreg h2 {
    font-size: 46px;
    line-height: 0.95;
    color: #e30613;
}

.pret-intreg sup {
    font-size: 26px;
}

.card-text {
    text-align: center;
}

.card-text p {
    font-size: 12px;
    color: #000;
}

.cards {
    text-align: center;
    margin-top: 19px;
}

.producator-right-text {}

.producator-right-text p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 19px;
}

.producator-right-text span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.36;
    color: #000;
    margin-left: 9px;
}

#detail {
    max-width: 450px;
    width: 100%;
}

#detail .slick-slide img {
    margin: 0 auto;
    border: 1px solid transparent;
}

#detail .thumb-nav.slick-initialized img {
    padding: 12px 4px;

}

/* Modificare 11.05.2023 */
#detail .thumb-nav.slick-initialized img {
    border-radius: 20px;
    border: solid 1px #e2e2e2;
    width: 80px;
    height: 80px; 
    object-fit: contain;
}
/* Modificare 11.05.2023 */

.thumb-nav.slick-initialized.slick-slider {
    padding: 0 50px;

}

.thumb-nav.slick-initialized .slick-slide {
    padding: 0;
    /*width: 80px !important;*/
    cursor: pointer;

}

.main-img-slider.slick-initialized a {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    margin-bottom: 87px;
    padding: 0;
}

#detail .thumb-nav.slick-initialized .slick-prev:before {
    content: '';
    background-image: url(../img/arrows/slider-left.png);
    width: 20px;
    height: 20px;

}


/* Modificare 10.05.2023 */
/*tab*/
.produs-adaugat {
    padding:10px 15px;
    margin-top:15px;
    background-color:#fec300;
    text-align: center;
    text-transform: uppercase;
    border:0px solid #000;
    border-radius:5px;
}

.video-fluid {
    width:100%;
    height:100%;
}

.product-tab-area {
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Modificare 10.05.2023 */
.tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.tabs .active-tab {
    border-bottom: none;
    position: relative;
    color: black;
    background-color: #01aebf;
    color: #fff;
}

.tabs .active-tab:after {
    width: 100%;
    height: 2px;
    position: absolute;
    content: "";
    bottom: -0.1em;
    left: 0;
    background: white;
}

.tabs li {
    display: inline-block;
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 3.57;
    letter-spacing: normal;
    color: #0c1c1f;
    margin-right: 20px;
}

.tabs .active-tab:first-child {
    border-radius: 10px 0 0 10px;
}

.product-tab-inner .tabs-content {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 5px;
}

.product-tab-inner .tabs-content p {
    margin-top: 25px;
}

.product-tab-inner .tabs-content button {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-top: 40px;
}

.product-tab-inner .tabs-content button img {
    width: 14px;
}

.product-tab-inner .tabs-content button span {
    margin-left: 10px;
}

.tabs-content li {
    display: none;
}

.moreless-button img {
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.tabs-content li.active .moreless-button img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.product-tabs {
    border-radius: 10px;
    background-color: #ffc311;
}

/*=======================================cos-cumparaturi===============*/

.cumparaturi-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cumparaturi-left {
    max-width: calc(100% - 350px);
    width: 100%;
}

.date-tab .custom-radio label span {
    font-weight: 700;
}

.thumb-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cumparaturi-right {
    max-width: 350px;
    width: 100%;
    padding-left: 35px;
    position: relative;
}

.single-cumparaturi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 17px 40px 14px 19px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    margin-bottom: 30px;
}

.cumparaturi-area span {
    cursor: pointer;
}

.number {
    width: 114px;
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

}

.minus,
.plus {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    font-size: 15.5px;
    font-weight: bold;
    color: #000;
    line-height: 45px;
    padding: 0 13px;

}

.cumparaturi-area input {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 300;
    color: #000;
}

.cumparaturi-text {}

.cumparaturi-text p {
    font-size: 16px;
    font-weight: 300;
    color: #000;
    max-width: 482px;
    width: 100%;
}

.pret-unitar {
    text-align: center;
}

.pret-unitar p {
    font-size: 14px;
    font-weight: 300;
    color: #000;
}

.pret-unitar p strong {
    font-size: 16px;
}

.cumparaturi-info {
    padding: 8px 34px;
    border-radius: 10px;
    /* border: solid 1px #c6ced9; */
    background-color: #f0f2f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cumparaturi-info-text {
    padding-left: 60px;
}

.cumparaturi-info-text p {
    font-size: 14px;
    line-height: 0.71;
    color: #171717;
    margin: 0;
    padding: 9px 0;
}

.comanda-ta {
    max-width: 315px;
    width: 100%;
    margin-left: auto;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #f0f2f5;
    padding: 20px 25px;
}

.comanda-ta {
    position: sticky;
    top: 188px;
    z-index: 995;
}

.comanda-ta h4 {
    margin-bottom: 15px;
}

.comanda-ta div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5px;

}

.comanda-ta div p {
    margin-top: 0;
}

.total {
    margin-top: 20px;
    padding-bottom: 10px;
}

.total h3 {
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
}

.total h3:last-child {
    font-size: 25px;
    font-weight: bold;
    color: #e30613;
    line-height: 1;
}

.comanda-ta a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
}

/* Login */

.login-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.login-area .sub-pro-btn button {
    line-height: 43px;
}

.login-left,
.login-right {
    width: 47%;
}

.mrb-20 {
    /* margin-bottom: 25px; */
    margin-bottom: 20px;
}

.mrt-20 {
    margin-top: 20px;
}

.mrrt-30 {
    margin-top: 30px;
}

.button-with-arrow button:before {
    width: 40px !important;
}

.button-with-arrow img {
    width: 11px;
}





/* Modificare 08.05.23 */
@media screen and (min-width:1367px) {    
    .producator-left-text {
        max-width:calc(100% - 470px);
    }
}

@media (max-width: 1399px) {
    .producator-right {
        max-width: 420px;
    }

    .producator-left {
        max-width: calc(100% - 420px);
    }

}

@media (max-width: 1399px) and (min-width: 1261px) {
    .sub-product-left {
        max-width: 160px;
    }

    .sub-product-right {
        max-width: calc(100% - 160px);
        width: 100%;
    }
}

@media (max-width: 1260px) {
    .producator-left-text {
        margin-top: 30px;
    }

    .sub-product-auto-area .single-sub-product {
        width: 50%;
    }

    .download-facturi-right {
        max-width: 330px;
    }

    .download-facturi-left {
        max-width: calc(100% - 330px);
        padding-right: 25px;
    }

    .cumparaturi-product {
        width: 80px;
    }

    .cumparaturi-text {
        width: calc(100% - 80px);
    }

    .single-cumparaturi {
        position: relative;
        padding-left: 90px;
    }

    .cumparaturi-product {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    /* Modificare 17.05.2023 */
    .delete-bttn {
        position: absolute;
        right: 5px;
        top: 5px;
        cursor: pointer;
    }

    .cumparaturi-text p {
        margin-top: 0;
    }

    .cumparaturi-info-text p {
        line-height: 1.5;
    }

    .single-cumparaturi {
        padding: 15px;
        padding-left: 90px;
        padding-right: 20px !important;
    }
    /* Modificare 29.05.2023 */
}

@media (min-width: 992px) {

    .pt-left,
    .pt-right {
        display: none;
    }
    /* Modificare 17.05.2023 */
    .sub-product-img img {
        max-width: 90% !important;
        max-height: 200px;
        height:200px;
        object-fit: contain;
        margin:0 auto;
        width: auto;
    }
    /* Modificare 17.05.2023 */
}

@media (max-width: 991px) {

    .product-tabs-slider-area .slick-list,
    .product-tabs-slider-area {
        border-radius: 10px;
    }

    .pt-left {
        left: -5px;
    }

    .pt-right {
        right: -5px;
    }

    .pt-left,
    .pt-right {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, .9);
        border-radius: 50%;
    }

    .tabs li {
        padding-left: 25px;
        padding-right: 25px;
    }

    .cumparaturi-right {
        position: sticky !important;
        bottom: 61px;
    }

    .cumparaturi-right {
        margin-top: 0;
    }

    .more-addr,
    .less-addr {
        margin-top: 25px;
    }

    .cumparaturi-title h1 {
        margin-bottom: 25px;
    }

    .single-form label.show-lg {
        display: none;
    }

    .login-left .sub-pro-btn.mrrt-30 {
        margin-top: 10px;
    }

    .bucuresti-title-area {
        margin: 25px 0;
    }

    .magazine-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .magazine-address,
    .magazine-right {
        margin-top: 25px;
    }

    .magazine-left,
    .magazine-right {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .detalii-comanda-area .cumparaturi-right {
        top: unset;
    }

    .single-cumparaturi {
        margin-bottom: 25px;
    }

    .cumparaturi-text {
        width: calc(100% - 30px);
    }

    .cumparaturi-text p {
        font-size: 14px;
    }

    .cumparaturi-info {
        padding: 15px;
    }

    .cumparaturi-info-text {
        padding-left: 25px;
    }

    .cumparaturi-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cumparaturi-left {
        max-width: 100%;
        width: 100%;
        margin-bottom: 25px;
    }

    .comanda-ta {
        width: 100%;
        max-width: 100%;
    }

    .cumparaturi-right {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
    }

    .download-facturi-inner {
        margin-bottom: 0;
    }

    .download-facturi-right {
        max-width: 100%;
        margin-top: 25px;

    }

    .download-facturi-left {
        max-width: 100%;
        padding-right: 0;
    }

    .sub-product-auto-area .single-sub-product {
        width: 100%;
    }

    .product-auto-top-text .auto-select {
        margin-top: 25px;
    }

    .mrrt-30 {
        margin-top: 25px;
    }

    .mrb-20 {
        margin-bottom: 25px;
    }

    .login-left .contact-row {
        padding-bottom: 25px;
    }

    .sub-pro-btn.mrt-20,
    .sub-pro-btn.mrb-20 {
        margin-top: 10px;
    }

    .product-auto-top-text h1 {
        font-size: 24px;
    }

    .product-auto-top-text {
        margin: 25px 0;
    }

    .breadcrumb {
        margin-top: 20px;
    }

    .producator-left-top {
        margin-bottom: 25px;
    }

    .producator-right-inner {
        margin-top: 25px;
    }

    .main-img-slider.slick-initialized a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .main-img-slider.slick-initialized a,
    #detail,
    .producator-left,
    .producator-right-inner,
    .producator-right {
        max-width: 100%;
    }

    .tabs .active-tab:after {
        display: none;
    }

    .product-tabs {
        text-align: center;
    }

    .product-tabs {
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .login-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .login-left,
    .login-right {
        width: 100%;
    }

    .info-text h1 {
        font-size: 24px;
    }

    .info-area {
        margin-top: 25px;
    }

    .piese-auto-form .piese-auto-select {
        margin-top: 25px;
    }

    .piese-auto-form .piese-auto-select,
    .piese-auto-form .form {
        max-width: 100%;
    }

    .filtre-title h2 {
        margin-top: 25px;
    }

    .piese-auto-text h1 {
        margin-bottom: 25px;
    }

    ul li .toggle-link,
    ul li .toggle-acc {
        font-size: 15px;
    }
}

@media (max-width: 767px) {      

    .filtre-text {
        display: flex;
        flex-wrap: wrap;
        padding-top: 0;
        padding-bottom: 0;
        max-height: 300px;
        overflow-y:scroll;
        overflow-x:hidden;
        column-count: 2;
    }
    
    .filtre-text div {
        flex: 0 0 50%;
        border-radius: 5px;
        padding: 0px 0px;
      }
      .filtre-text div:first-child {
        margin-top:10px;
      }
      
    /* Modificare 10.05.2023 */  
    .electrice-left .filtre {
        display: none;
    }

    .electrice-left .aplica {
        display:block;
        border: 1px solid #ccc;
        padding: 10px 0px;
        text-align: center;
        border-radius:10px;
    }
    
      .electrice-left .aplica span{
        top: 10px;
        right:5px;
    }
    /* Modificare 10.05.2023 */  
    
    .auto-select span {
        display: block;
    }

    .auto-select select:first-child {
        margin-left: 0;
    }

    .auto-select select {
        margin-top: 15px;
        margin-left: 10px;
    }
}

@media (max-width: 575px) {
    #map-canvas {
        height: 350px;
    }

      
      .filtre-text div {
        flex: 0 0 100%;
      }

    .auto-select select {
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
    }

    .piese-auto-form .piese-auto-select .select select {
        width: 100%;
    }

    .piese-auto-form .piese-auto-select .select label {
        margin-bottom: 5px;
    }

    .piese-auto-form .piese-auto-select .select {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .sub-product-left {
        max-width: 100%;
    }

    .sub-product-right {
        max-width: 100%;
        width: 100%;
    }

    .sub-product-left {
        margin-bottom: 10px;
    }

    .product-auto-title h4 {
        font-size: 14px;
    }
}

/* ================ Commanda Pages ============== */
.comanda-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
}

.comanda-top:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: #f0f2f5;
    z-index: -1;
}

.bold {
    font-weight: 700;
}

.comanda-top.comanda-step-1:after {
    position: absolute;
    content: '';
    width: 50%;
    height: 1px;
    background: #ffc200;
    right: 0;
    z-index: -1;
}

.comanda-top div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 12px;
    background: #fff;
}

.comanda-top div:first-child {
    padding-left: 0;
}

.comanda-top div:last-child span {
    padding-right: 0;
}

.comanda-top div span {
    font-size: 14px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.6);
    padding-left: 12px;
    padding-right: 15px;
    background: #fff;
}

.comanda-top div span strong {
    color: #000;
}

.comanda-top div {}

.comanda-finalizata-area {
    padding-bottom: 80px;
}

.comanda-finalizata {

    text-align: center;
    margin-top: 60px;
}

.comanda-finalizata img {}

.comanda-finalizata h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-top: 4px;
}

.comanda-finalizata p {
    font-size: 16px;
    font-weight: normal;
    line-height: 0.94;
    color: #363636;
    margin-bottom: 23px;
    margin-top: 5px;
}

.comanda-finalizata button {
    width: 296px;
    line-height: 56px;
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #fff;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/*==========================detalii-comanda ================*/
.tabs-1 {
    margin-bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tabs-1 li {
    line-height: 1.7;
    margin: 0;
    width: 50%;
    padding: 22px 22px;
    padding-bottom: 15px;
}

.tabs-1 .active-tab {
    border-radius: 0;
    background-color: #f0f2f5;
}

.tabs-1 label {
    margin-bottom: 0 !important;
}

.tabs-content-1 {
    padding: 10px 25px 10px 25px;
}

.tabs-content-1 li {
    list-style: none;
}

.tabs-content-1 .col {
    margin-bottom: 15px;
}

/* .tabs-content-1 .row:first-child {
    margin-bottom: 15px;
} */

.pd-0 {
    padding: 0 !important;
}

.tabs-1 .active-tab:after {
    position: unset;
}

.tabs-1 .active-tab:first-child {
    border-radius: 0 10px 0 0;
}

/*==========================detalii-comanda Art ================*/
.detalii-comanda-area {
    margin-top: 25px;
}

.detalii-comanda-area .cumparaturi-right {
    position: relative;
    /* top: 55px; */
    margin-top: 55px;
}

.mrb-22,
.date-select {
    /* margin-bottom: 25px; */
    margin-bottom: 30px;
}

.date-select-inner.pb-10 {
    padding-bottom: 10px;
}

.date-select-inner {
    padding: 25px;
    border-radius: 10px;
    background-color: #f0f2f5;
}

.date-select-inner .col {
    margin-bottom: 15px;
}

.date-select-inner label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.date-select-inner label:last-child {
    margin-bottom: 0;
}

.date-select-inner .select select {
    background: #fff url("../img/arrows/chevron-down.svg") no-repeat 98% center;
    background-size: 15px;
}

.date-select-inner button {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    width: auto;
    padding: 0 30px;
    line-height: 43px;
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #ffc200;
    text-align: center;
    display: inline-block;
    margin-top: 16px;
}

.detalii-comanda-area h2 {
    line-height: 1;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.date-select .row input {
    width: 100%;
    background: #fff;
    font-size: 16px;
    font-weight: 300;
    color: #000;
    height: 43px;
    border: 0;
    border: solid 1px #c6ced9;
    border-radius: 10px;
    text-align: left;
    padding: 0 15px;
}

.date-select textarea {
    border-radius: 10px;
    border: solid 1px #c6ced9;
    background-color: #fff;
    height: 110px;
    resize: none;
    width: 100%;
    padding: 10px 15px;
}

.date-select-textarea {
    margin-bottom: 10px;
}

.custom-radio label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.custom-radio label input[type="checkbox"],
.custom-radio label input[type="radio"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: 0;
}

.custom-radio label input[type="checkbox"]::before,
.custom-radio label input[type="radio"]::before {
    content: "";
    position: absolute;
    border-radius: 18px;
    left: 0;
    cursor: pointer;
    width: 19px;
    height: 19px;
    border: solid 1px #c6ced9;
    background-color: #fff;
    top: 3px;
}

/* .custom-radio label span { */
.custom-radio label input+span,
.custom-radio label span.span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 32px;
    margin-top: 2px;
}

.custom-radio label input[type="checkbox"]:checked::before,
.custom-radio label input[type="radio"]:checked::before {
    background: #fff;
}

.custom-radio label input[type="checkbox"]:checked::after,
.custom-radio label input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    background: #000;
    height: 15px;
    width: 15px;
    border-radius: 10px;
}

.date-selectt .d-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.date-selectt .date-select-inner .cardes {
    width: 150px;
}

.mrb-15 {
    margin-bottom: 15px;
}

/*=================================================*/
@media (max-width: 991px) {

    .detalii-comanda-area .cumparaturi-right {
        top: unset;
        margin-top: 0;
    }

    .mrb-22,
    .date-select {
        margin-bottom: 25px;
    }

    .comanda-top {
        margin-top: 0;
    }

    .navigation-space-area {
        padding-top: 0 !important;
    }

}

@media (max-width: 991px) {
    .comanda-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .comanda-top div:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .comanda-top div {
        padding-left: 0;
        /* padding-bottom: 25px; */
        margin-bottom: 25px;
        position: relative;
        z-index: 3;
        border-top: 3px solid #fff;
        border-bottom: 3px solid #fff;
    }

    .comanda-top.comanda-step-1:after {
        width: 1px;
        height: 50%;
        left: 25px;
        bottom: 0;
        right: unset;
        z-index: 1;
    }

    .comanda-top:before {
        width: 1px;
        height: 100%;
        z-index: 1;
        left: 25px;
    }

    .mb-sm {
        margin-bottom: 15px;
    }

    .date-tab .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .date-tab .row .col {
        width: 100%;

    }

    .date-select-inner button {
        padding-left: 25px;
        padding-right: 25px;
    }

    .date-select-inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (max-width: 767px) {
    .date-selectt .date-select-inner .cardes {
        margin-top: 15px;
    }

    .date-selectt .d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tabs-1 li {
        width: 100%;
    }

    .date-select-inner .row,
    .tabs-1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .date-select-inner button {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .date-select-inner button {
        width: 100%;
    }
}

/*==================================contul-meu===============*/
.contul-meu-area {
    margin-top: 30px;
}

.contul-meu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.contul-meu-left {
    max-width: 240px;
    width: 100%;
}

.contul-meu-right {
    max-width: calc(100% - 240px);
    width: 100%;
}

.contul-meu-left ul li {
    list-style: none;
    margin-bottom: 25px;
}

.contul-meu-left ul li:last-child {
    margin-bottom: 0;
}

.contul-meu-left ul li a {
    font-size: 16px;
    font-weight: normal;
    /* line-height: 2.63; */
    line-height: 1;
    color: #0c1c1f;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contul-meu-left ul li a img {
    width: 19px;
}

.contul-meu-left ul li a span {
    padding-left: 20px;
    display: inline-block;
}

.contul-meu-left ul li a span.active {
    color: #e30613;
    font-weight: 700;
}

.contul-meu-title h1 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}

.contul-meu-title a,
.meu-2-title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contul-meu-title h1 img {
    margin-right: 26px;
}

.contul-meu-title h2 {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slut-user {
    width: 507px;
    padding: 43px 43px 33px 30px;
    border-radius: 10px;
    background-color: #f0f2f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.slut-user-icon {
    width: 149px;
    height: 149px;
    background-color: #fff;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slut-user-text {}

.slut-user-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.slut-user-text a,
.slut-user-text p {
    font-size: 16px !important;
    font-weight: normal !important;
    color: #000;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

.slut-user-text button img {
    margin-right: 12px;
}

.meu-right-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.meu-right-inner button {
    line-height: 45px;
    padding: 0 31px 0 24px;
    border-radius: 10px;
    border: solid 1px #ffc200;
    background-color: #fff;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
}

.single-contul-meu {
    width: 289px;
    padding: 41px 63px 33px 66px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 17.5px 0.5px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    text-align: center;
}

.single-contul-meu h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
}

.contul-icon {
    width: 125px;
    height: 125px;
    background-color: #f0f2f5;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

/*==========================Contui-detail===================*/


.meu-2-title {}

.meu-2-title h2 span {
    width: 34px;
    height: 34px;
    background-color: #f0f2f5;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 25px;
}

.meu-2-alt-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 58px;
    line-height: 1;
}

.contul-meu-right p {
    /* margin-top: 45px; */
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-top: 30px;
}

/*==============================contul-meu-adrese-livrarei====================*/


.display-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.personal-comanda-din {
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.delete-btn {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.delete-btn h6 {
    margin-right: 20px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: #000;
}

.meu-2-title h2 {
    margin-bottom: 18px;
}

.meu-2-title p {
    margin-top: 0;
}

.data-fac-tab h5 {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.11;
    color: #000;
    margin-bottom: 20px;
    padding-top: 10px;
}

.data-fac-tab .row {
    margin-bottom: 15px;

}

/*==============================contul-meu-masinile====================*/
.romeo-content-area {
    width: 100%;
    display: none;
    margin-top: 10px;
}

.romeo-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.sterge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sterge h6 {
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #000;
    margin-right: 34px;
}

.sterge img {
    width: 12px;
}

.al-romeo {}

.al-romeo span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-left: 10px;
}

.romeo-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 35px;
    width: 90%;
    /*display: none;*/
}

.romeo-content h6 {
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
    color: #000;
}

.romeo-content h6 span {
    font-weight: 500;
}

/*==============================logo-motoriar-area====================*/

.logo-motoriar-area {}

.logo-motoriar-title h4 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.logo-motoriar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* justify-content: space-between; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

    /*modificare 29.05.2023 */
.logo-motoriar .single-logos {
    width: 190px;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #f0f2f5;
    text-align: center;
    position: relative;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cumparaturi-product img {
    width: 75px;
    height: auto;
    display: block;
    position: relative;
    object-fit: contain;
}

    /*modificare 29.05.2023 */
.logo-motoriar .single-logos {
    margin-bottom: 0;
}

.logo-motoriar .single-logos p {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.75;
    color: #000;
    position: unset;
    bottom: 13px;
    left: 0;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    width: 100%;
}

.logo-motoriar-title {
    margin-top: 30px;
}

.col-6 {
    width: 50%;
}

.romeo-top.active .sterge img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.sterge img {
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.contul-meu-inner button.btn-full-yellow {
    font-size: 18px;
}

.date-select:last-child {
    margin-bottom: 0;
}

/*==============================*/

.al-romeo-isto {
    position: relative;
}

.al-romeo-isto img {
    position: absolute;
    top: 7px;
    left: 0;
}

.al-romeo-isto span {
    /* position: absolute; */
    position: relative;
    padding-left: 20px;
    display: block;
}

.number-awb {
    padding: 20px 0;

}

.number-awb span {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: #000;

}

.number-awb span img {
    margin-right: 9px;
}

.pdl-28 {
    padding-left: 28px;
}

.bdb-1 {
    border-bottom: 1px solid rgba(52, 53, 53, .22);
}

.descarca-factura {
    padding-top: 30px;
    padding-bottom: 30px;
}

.descarca-factura div:first-child {
    margin-bottom: 30px;
}

.descarca-factura div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.descarca-factura div span {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.descarca-factura div span img {
    margin-right: 9px;
}

.descarca-factura div span:last-child {
    width: 142px;
}

.descarca-factura button {
    font-size: 14px;
    font-weight: normal;
    color: #000;
    width: 147px;
    line-height: 33px;
    border-radius: 10px;
    background-color: #fff;
    padding: 0;
    border: 0;
    margin: 0;
}

.descarca-factura:last-child {
    padding-bottom: 0;
}

@media (max-width: 1399px) {
    .romeo-content {
        padding: 0;
        width: 100%;
    }

    .slut-user-icon {
        width: 100px;
        height: 100px;
    }

    .slut-user-icon img {
        width: 40px;

    }

    .slut-user {
        padding: 25px;
        width: auto;
    }

    .slut-user-text {
        padding-left: 15px;
    }

    .single-contul-meu {
        text-align: center;
        width: 250px;
        padding: 25px;
    }

    .meu-right-inner button,
    .contul-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1260px) {
    .al-romeo-isto+.sterge {
        width: 130px;
    }

    .slut-user {
        width: 100%;
        margin-bottom: 25px;
    }
    /*modificare 29.05.2023 */
    .logo-motoriar .single-logos {
        width: calc(25% - 8.5px);
    }
    /*modificare 29.05.2023 */

    .slut-user-icon {
        width: 150px;
        height: 150px;
    }

    .contul-meu-right {
        max-width: 520px;
        width: 100%;
    }

    .contul-meu-right {
        max-width: calc(100% - 240px);
        width: 100%;
    }

    .single-contul-meu {
        width: calc(50% - 10px);
    }

}

    /*modificare 29.05.2023 */
@media (max-width: 1199px) {
    .logo-motoriar .single-logos {
        width: 179px;
    }

}

    /*modificare 29.05.2023 */
@media (max-width: 991px) {
    .contul-meu-right p {
        margin-top: 25px;
    }

    .al-romeo-isto+.sterge {
        /* width: 80px; */
        width: 100%;
    }

    .isto-form .sterge {
        text-align: center;
        padding-top: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .isto-form .romeo-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .al-romeo-isto {
        width: 100%;
    }

    .al-romeo-isto span {
        position: unset;
    }

    .descarca-factura {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .descarca-factura:last-child {
        padding-bottom: 0;
    }

    .descarca-factura div:first-child {
        margin-bottom: 25px;
    }

    .descarca-factura {
        padding-top: 25px;
    }

    .meu-2-alt-title {
        margin-top: 25px;
    }

    .magazine-details-inner .responsive-map {
        margin-bottom: 0;
    }

    .logo-motoriar-title {
        margin-top: 25px;
    }

    /*modificare 29.05.2023 */
    .logo-motoriar .single-logos {
        width: calc(25% - 8.5px);
    }
    /*modificare 29.05.2023 */

    .contul-meu-right {
        width: calc(100% - 210px);
    }

    .contul-meu-left {
        max-width: 210px;
    }

    .contul-meu-inner .single-form .col-6 {
        width: 100%;
    }

    .contul-meu-inner .single-form .col-6,
    .contul-meu-inner .single-form .col {
        margin-bottom: 20px;
    }

    .contul-meu-inner .single-form .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 0;
    }

    .meu-2-alt-title {
        padding-left: 0;
    }

    .contact-row {
        padding: 25px;
    }

    .contul-meu-inner .single-form .row:last-child .col-6:last-child,
    .contul-meu-inner .single-form .row:last-child .col:last-child {
        margin-bottom: 0;
    }



    button.btn-full-yellow {
        margin-top: 25px;
    }

    .contul-meu-right p {
        margin-top: 25px;
    }

    .contul-meu-title h1 {
        font-size: 24px;
    }

    .contul-meu-area {
        margin-top: 25px;
    }

    .single-contul-meu h3,
    .slut-user-text h2 {
        margin-bottom: 25px;
    }

    .slut-user {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .delete-btn {
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

}


/* Modificare 31.05.2023 */
@media screen and (max-width:768px){
    .comanda-top {  
        margin-top: 20px;
    }
}
/* Modificare 31.05.2023 */


@media (max-width: 767px) {

    .contact-row {
        padding: 25px 15px;
    }

    .contul-meu-right {
        max-width: 100%;
    }

    .contul-meu-title h1 {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .contul-meu-left {
        width: 100%;
        max-width: 100%;
    }

    .contul-meu-right {
        width: 100%;
    }

    .slut-user-icon {
        width: 110px;
        height: 110px;
    }

    .single-contul-meu {
        width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .slut-user-text {
        padding-left: 0;
        margin: 0 auto;
    }

    .single-contul-meu {
        width: 100%;
    }

    .single-contul-meu {
        margin-bottom: 25px;
    }

    .slut-user {
        width: 100%;
        margin-bottom: 25px;
        text-align: center;
    }

    .slut-user-icon {
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .slut-user-text h2 {
        margin-bottom: 25px;
    }

    .contul-meu-right p {
        margin-top: 25px;
    }

    .meu-right-inner button {
        margin-top: 25px;
    }
}

/*modificare 29.05.2023 */
@media (max-width: 449px) {
    .logo-motoriar .single-logos {
        width: calc(50% - 6px);
    }
}

/*

##topdropdownMobile {
    z-index: 2;
}

*/

/*modificare 29.05.2023 */


.single-logos a {

	text-decoration:none;
	font-size: 14px;
	font-weight: 100;
	color: #000;
}


#myInput:focus ~ #myDropdown{
	display: block;
}

/* The container <div> - needed to position the dropdown content */
/* Dropdown Content (Hidden by Default) */
#myDropdown {
    display: none;
    position: absolute;
    font-weight: normal;
    min-width: 100%;
    border: 1px solid #ddd;
    z-index: 1;
	background-color:#F3F3F3;
}

#myDropdown a {
    color: black;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}


/* Change color of dropdown links on hover */
#myDropdown a:hover {background-color: #f1f1f1}


.product-auto-title a {

    text-decoration:none;
}


.sub-product-img img {
    max-width:180px;
	max-height:180px;
}


.sub-product-text a {
   text-decoration:none;
}


.form-group a {

	text-decoration:none;
	padding: 0;
    margin-bottom: 0;
}



#topdropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    font-weight: 600;
    min-width: 100%;
    border: 1px solid #ddd;
    z-index: 1;
	top: 45px;
	max-height:450px;
	overflow-x:hidden;
	overflow-y:scroll;

}


#topdropdown p {
	margin:0px !important;
}
#topdropdown a {
    color: black;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}

#topdropdown a:hover {background-color: #ffc230}

#topdropdownMobile {
    display: none;
    position: absolute;
    background-color: #fff;
    font-weight: 600;
    min-width: 100%;
    border: 1px solid #ddd;
	top: 45px;
	max-height:250px;
	overflow-x:hidden;
	overflow-y:scroll;

}

#topdropdownMobile p {
	margin:0px !important;
}
#topdropdownMobile a {
    color: black;
    text-decoration: none;
    display: block;
    padding: 5px 16px;
}
#topdropdownMobile a:hover {background-color: #ffc230}
