@import '../resources/sanitize.css';

/* Regulile mele adăugate la sanitize.css */
html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative;
}

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
    /* For IE 6/7 (trigger hasLayout) */
}

input[type=search] {
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input:focus,
textarea:focus,
a:focus,
button:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Alte clase speciale */

/* subliniere text fără a tăia literele în partea de jos*/
.pretty-text-underline {
    display: inline;
    text-shadow: 1px 1px #f5f6f9, -1px 1px #f5f6f9, -1px -1px #f5f6f9, 1px -1px #f5f6f9;
    background-image: linear-gradient(90deg, currentColor 100%, transparent 100%);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 1px;
}

.pretty-text-underline::-moz-selection {
    background-color: rgba(0, 150, 255, 0.3);
    text-shadow: none;
}

.pretty-text-underline::selection {
    background-color: rgba(0, 150, 255, 0.3);
    text-shadow: none;
}

.strikethrough {
    position: relative;
}

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

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

/* switch toggle*/
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    transition: all 0.3s;
}

.switch::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background-color: white;
    top: 1px;
    left: 1px;
    transition: all 0.3s;
}

input[type='checkbox']:checked+.switch::after {
    transform: translateX(20px);
}

input[type='checkbox']:checked+.switch {
    background-color: #7983ff;
}

.offscreen {
    position: absolute;
    left: -9999px;
}

/* Truncate text dacă e mai lung de o linie. Valabil DOAR PENTRU O LINIE */
.truncate-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 200px;
}

/* Donut spinner */
@keyframes donut-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.donut {
    display: inline-block;
    border: 7px solid rgba(0, 0, 0, 0.1);
    border-left-color: #54BA48;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: donut-spin 1.2s linear infinite;
}



/* Regulile de bază IOAN */
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='password'],
select,
textarea {}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    text-align: center;
}

.svgicon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.error {
    display: none;
    text-align: center;
    color: #ff0000;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.info {
    display: none;
    color: #7D3279;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.infomes {
    display: none;
    color: #3D9833;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.infomes.error {
    color: #ff0000;
}

.loader {
    display: none;
    font-size: 3rem;
    line-height: 1;
    color: #ccc;
}

.splash {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../media/bg-black-60.png');
    z-index: 900;
}

.splash-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem;
    max-width: 95%;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
}

.splash-close {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 910;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    background: #ffffff;
    border: 0;
    padding: 0;
    margin: 0;
    color: #7D3279;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
}

.splash-close>.svgicon {
    height: 100%;
    max-width: 100%;
    width: 60%;
    display: inline-block;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ht {
    display: none !important;
}

.menu-item {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.menu-item li.menu-has-child {
    position: relative;
}

.menu-item a {
    text-decoration: none;
}

.menu-item a .svgicon {
    display: inline-block;
    margin-right: 0.5rem;
    height: 1.5rem;
    width: 1.5rem;
}

.menu-item .menu-has-icon a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.maintitle {
    text-align: center;
    margin: 0 0 2rem 0;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: normal;
    padding: 0;
    color: #000;
    text-transform: uppercase;
}

.maintitle .svgicon {
    margin-top: 0.5rem;
    width: 35px;
    height: 35px;
    color: #000;
}

.maintitle-extra {
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    color: #888;
}

.buton1 {
    background: #7D3279;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 0;
    cursor: pointer;
    display: block;
    text-align: center;
    width: 100%;
    border: 0;
    margin: 0 auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
}

.buton1>.svgicon {
    display: inline-block;
    margin-right: 0.5rem;
    color: #fff;
    height: 1.5rem;
    width: 1.5rem;
}

.buton2 {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: normal;
    text-decoration: none;
    background: none;
    padding: 0;
    border: 0;
    cursor: pointer;
    margin: 0;
}

.buton3 {
    background: #fff;
    color: #7D3279;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 1rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: auto;
    border: 2px solid #7D3279;
    margin: 0 auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
}

.buton3 strong {
    font-weight: 500;
    color: #AF2B04;
}

.buttons-area {
    margin-top: 2rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.buttons-area-2 {
    margin-top: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.buttons-area-2>a {
    display: inline-block;
    margin-left: 1rem;
}

.buttons-area-2>a:first-child {
    margin-left: 0;
}

.form1 fieldset {
    padding: 0;
    margin: 2rem 0 0 0;
    border: 0;
}

.form1 fieldset:first-child {
    margin-top: 0;
}

.form1 input[type='email'],
.form1 input[type='password'],
.form1 input[type='text'],
.form1 input[type='tel'],
.form1 select,
.form1 textarea {
    color: #000;
    background: #fff;
    border: 1px solid #7D3279;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    padding: 1rem 1.25rem;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: auto;
    max-width: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 100%;
}

.form1 textarea {
    resize: none;
    line-height: 1.4;
    height: 100px;
    padding-top: 1rem;
    width: 100%;
}

.form1 input[type='email'].js-mandatory-error,
.form1 input[type='password'].js-mandatory-error,
.form1 input[type='text'].js-mandatory-error,
.form1 input[type='tel'].js-mandatory-error,
.form1 select.js-mandatory-error,
.form1 textarea.js-mandatory-error {
    border-color: #ff0000;
}

.form1 input[type='email'].mxerr,
.form1 input[type='password'].mxerr,
.form1 input[type='text'].mxerr,
.form1 input[type='tel'].mxerr,
.form1 select.mxerr,
.form1 textarea.mxerr {
    border-color: #ff0000;
}

.form1 input[type='email']:focus,
.form1 input[type='password']:focus,
.form1 input[type='text']:focus,
.form1 input[type='tel']:focus,
.form1 select:focus,
.form1 textarea:focus {
    background: #fff;
    border-color: #bbff69;
}

.form1 input[type='email']:first-child,
.form1 input[type='password']:first-child,
.form1 input[type='text']:first-child,
.form1 input[type='tel']:first-child,
form1 select:first-child,
form1 textarea:first-child {
    margin-top: 0;
}

.form1 .error,
.form1 .info {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
}


.arrow {
    display: inline-block;
    border: solid plum;
    border-width: 0 0 1px 1px;
    width: 1rem;
    height: 1rem;
    background: none;
}

.arrow-up {
    transform: rotate(135deg)
}

.arrow-right {
    transform: rotate(225deg)
}

.arrow-down {
    transform: rotate(-45deg)
}

.arrow-left {
    transform: rotate(45deg)
}


/* BREADCRUMBS ----------------------------------------------------------------------------------- */
.breadcrumbs-wrapper {
    padding: 0;
    margin: 0 0 2rem 0;
    background: #fff;
    display: none;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* HEADER ----------------------------------------------------------------------------------- */
.lang_url {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
}

.lang_url ul {
    list-style: none;
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.lang_url ul>li {
    border-left: 1px solid #7D3279;
}

.lang_url ul>li:first-child {
    border-left: 0;
}

.lang_url ul>li>a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1;
    color: #818181;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 0;
    white-space: nowrap;
}

.lang_url ul>li.active>a {
    color: #DEDEDE;
}


.stickybar {
    background: #53a646;
    text-align: center;
}

.mainmenu {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.mainmenu li ul {
    display: none;
    position: absolute;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

.mainmenu li a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.mainmenu li {
    position: relative;
}

.mainmenu>li {
    margin-left: 0.5rem;
}

.mainmenu>li:first-child {
    margin-left: 0.5rem;
}

.mainmenu>li>a {
    padding: 0.75rem 0.75rem;
    background: #693013;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}



.mainmenu>li ul li {
    border-top: 1px solid #fff;
}

.mainmenu>li ul li:first-child {
    border-top: 0;
}

.mainmenu>li>ul {
    z-index: 200;
    padding-top: 5px;
}

.mainmenu>li>ul li a {
    white-space: nowrap;
    padding: 1rem;
    line-height: 1;
    text-align: left;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.mainmenu>li>ul>li>a {
    color: #fff;
    background: #af2b04;
}

.mainmenu>li>ul>li>ul {
    z-index: 201;
    top: 0;
    left: -99999em;
    min-width: 100%;
}

.mainmenu>li>ul>li>ul>li>a {
    color: #fff;
    background: #ff6a61;
}

.mobile-menu {
    position: fixed;
    z-index: 800;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%, 0%);
    -ms-transform: translate(100%, 0%);
    transform: translate(100%, 0%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    min-width: 100%;
    width: auto;
    height: 100%;
    background: #7D3279;
}

.mobile-menu.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.mobile-menu-content {
    padding: 4rem 2rem 2rem 2rem;
    overflow: auto;
    height: 100%;
}

.mobile-menu li {
    display: block;
    width: 100%;
}

.mobile-menu li a {
    display: block;
    width: 100%;
    color: #fff;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.mobile-menu li a .svgicon {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
}

.mobile-menu li.mm-homepage a {
    color: #fff;
}

.mobile-menu li.mm-separated {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #C48DD5;
}

.mobile-menu li.mm-normal a {
    font-weight: normal;
    text-transform: none;
    font-size: 1.1rem;
    line-height: 1;
}

.mobile-menu li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 1rem;
    text-transform: none;
    border-color: #C48DD5;
    font-size: 1.1rem;
    line-height: 1.3;
}

.mobile-menu li ul li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 2rem;
}

.mobile-menu li ul li ul li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 3rem;
}

.mobile-menu li ul li ul li ul li ul li a {
    color: #ffffff;
    padding: 0.5rem 0 0.5rem 4rem;
}

.mobile-menu li:first-child a {
    border-top: 0;
}

.mobile-menu-button-close {
    background: none;
    padding: 0;
    color: #fff;
    border: 0;
    cursor: pointer;
    line-height: 1;
    margin: 0;
    height: 2rem;
    width: 2rem;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
}

.mobile-menu-button-close .svgicon {
    height: 100%;
    width: 100%;
}

.mobile-menu-button {
    background: #fff;
    padding: 0;
    color: #989898;
    border: 0;
    cursor: pointer;
    line-height: 1;
    margin: 0 0 0 0.5rem;
    height: 3.2rem;
    width: 3.2rem;
    flex-shrink: 0;
    position: fixed;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 80;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.mobile-menu-button.fixed {
    background: #fff;
    color: #213953;
}

.mobile-menu-button .svgicon {
    height: 100%;
    width: 60%;
}

.mobile-menu li>ul {
    padding: 0 0 0 0;
    display: none;
    margin-bottom: 1rem;
}

.mobile-menu li.menu-has-child>a {
    padding-right: 2rem;
}


/* FOOTER ----------------------------------------------------------------------------------- */
.main-footer {
    margin-top: 3rem;
}

.footer-line {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-line:first-child {
    margin-top: 0;
}

.footer-line-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-coperta-line {
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.footermenu>li {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0.25rem;
    padding-left: 0.5rem;
    border-left: 1px solid #C48DD5;
}

.footermenu>li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footermenu>li>a {
    padding: 0.25rem;
    display: block;
    font-size: 0.8rem;
    line-height: 1;
    color: #fff;
}

.footermenu+.footermenu {
    margin-top: 1rem;
}

.fl-certificari-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.fl-certificari-wrapper>img {
    margin-left: 1rem;
    height: 60px;
    width: auto;
}

.fl-certificari-wrapper>img:first-child {
    margin-left: 0;
}

.cookies-disclaimer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: url('../media/bg-black-60.png');
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 101;
}

.cookies-disclaimer.invisible {
    -webkit-transform: translate(0%, 100%);
    -ms-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    bottom: 0;
}

.cookies-disclaimer-more {
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    color: #000;
    color: #fff;
    text-align: center;
    width: 100%;
}

.cookies-agree {
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    background: #7D3279;
    color: #fff;
    display: block;
    margin: 0.75rem 0 0 0;
    padding: 1rem;
    border: 0;
    width: 100%;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.cookies-agree.inactive {
    visibility: hidden;
}

.coperta {
    display: inline-block;
    text-align: center;
}

.coperta>a {
    text-decoration: none;
    position: relative;
    text-align: center;
    display: block;
}

.coperta .svgicon {
    width: 4.5rem;
    height: 4.5rem;
    display: inline-block;
}

.coperta-web-studio {
    color: #bccbd3;
    font-size: 80%;
    position: absolute;
    white-space: nowrap;
    top: 0.5rem;
    left: 50%;
    margin-left: 2rem;
}

.coperta-web-studio-engine {
    color: #bccbd3;
    font-size: 80%;
    margin: 0 0 0;
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
}


/* SEARCH BAR ----------------------------------------------------------------------------------- */
.searchbar {
    padding: 1.5rem 0;
    background: #2f2f30;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    -webkit-transform: translate(0%, -100%);
    -ms-transform: translate(0%, -100%);
    transform: translate(0%, -100%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.searchbar.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.searchbar .infomes {
    margin-top: 1rem;
}

.searchform-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    padding-left: 1rem;
}

.searchkey {
    flex-grow: 1;
    flex-shrink: 1;
    line-height: 3.2rem;
    padding: 0;
    border: 0;
    margin: 0;
    text-align: left;
    background: none;
    color: #000;
    font-size: 0.9rem;
    font-weight: normal;
    width: 200px;
}

.searchbutton {
    padding: 0;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    border: 0;
    color: #000;
    background: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    width: 3.2rem;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
}

.searchbutton>.svgicon {
    height: 100%;
    width: 1.5rem;
}

.search-form {
    position: relative;
}

.search-form .infomes {
    position: absolute;
    right: 0;
    top: -0.5rem;
    padding: 0.75rem;
    background: #ff0000;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    -webkit-transform: translate(0%, -100%);
    -ms-transform: translate(0%, -100%);
    transform: translate(0%, -100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}



/* STATIC PAGE ------------------------------------------------------------------------------------------ */
.cnt {
    display: block;
    max-width: 1300px;
    margin: 0 auto;
}

.cnt p {
    margin: 1rem 0 0 0;
    padding: 0;
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
}

.cnt p:first-child {
    margin-top: 0;
}

.cnt ul,
.cnt ol {
    margin: 1rem 0 0 1rem;
    padding: 0;
}

.cnt ul {
    list-style: disc;
}

.cnt ul li,
.cnt ol li {
    margin-top: 0.25rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
}

.cnt ul li:first-child,
.cnt ol li:first-child {
    margin-top: 0;
}

.cnt ul li p:first-child,
.cnt ol li p:first-child {
    margin-top: 0;
}

.cnt a {
    text-decoration: underline;
    color: #7D3279;
}

.cnt h2,
.cnt h3,
.cnt h4,
.cnt h5,
.cnt h6 {
    font-weight: normal;
    color: #000;
    text-align: left;
    margin: 1.5rem 0 0 0;
    padding: 0;
}

.cnt h2:first-child,
.cnt h3:first-child,
.cnt h4:first-child,
.cnt h5:first-child,
.cnt h5:first-child {
    margin-top: 0;
}

.cnt h2 {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #7D3279;
}

.cnt h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #7D3279;
}

.cnt h4,
.cnt h5,
.cnt h6 {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #7D3279;
}

.cnt b,
.cnt strong {
    font-weight: 500;
    color: #7D3279;
}


/* CONTACT ------------------------------------------------------------------------------------------ */
.contact-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.contact-line {
    margin: 2rem 0 0 0;
    flex-grow: 1;
}

.contact-line:first-child {
    margin-top: 0;
}

.contact-item {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #DEDEDE;
}

.contact-item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.contact-item p {
    text-align: center;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.contact-item p:first-child {
    margin-top: 0;
}

.contact-item a {
    text-decoration: none;
    color: #7D3279;
}

.contact-item strong,
.contact-item b {
    font-weight: 500;
    color: #49A4F2;
}

.contact-item h2,
.contact-item h3,
.contact-item h4,
.contact-item h5,
.contact-item h5 {
    text-align: center;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0 0 1.5rem 0;
    color: #7D3279;
    padding: 0;
}

.contact-item h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.contact-line:nth-child(2) {
    padding: 2rem 2rem;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #7D3279;
}

.map {
    width: 100%;
    height: 400px;
    background-color: #DEDEDE;
    margin-top: 3rem;
}


/* LOGIN, REGISTER, RECOVER PASS, ACCOUNT ----------------------------------------------------------------------------------- */
.form1-row-item.login_rememberme_wrapper {
    justify-content: center;
    margin-top: 2rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.login_rememberme_wrapper input[type="checkbox"] {
    width: auto;
    margin-left: 0.5rem;
}

.login_rememberme_wrapper label {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #999 !important;
    margin-top: 0;
    cursor: pointer;
}

.register-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: justify;
    color: #999;
    margin: 2rem 0 0 0;
    padding: 0;
}

.login-form,
.register-form,
.recover-form {
    max-width: 450px;
}


/* GALLERY ----------------------------------------------------------------------------------- */
.gallery-albums,
.gallery-images {
    list-style: none;
    display: block;
}

.gallery-albums li,
.gallery-images li {
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.gallery-albums li:first-child,
.gallery-images li:first-child {
    margin-top: 0;
}

.gallery-albums li a,
.gallery-images li a {
    display: block;
    text-decoration: none;
    width: 100%;
}

.gallery-albums-thumb {
    overflow: hidden;
}

.gallery-albums-thumb img {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
}

.gallery-images li a {
    overflow: hidden;
}

.gallery-images li a img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}


/* CART ------------------------------------------------------------------------------------------ */
.shortcart-wrapper {
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    height: 100%;
}

.shortcart {
    text-decoration: none;
    display: inline-block;
    background: #3363ae;
    height: 100%;
    padding: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shortcart-info {
    text-decoration: none;
    color: #fff;
    text-align: center;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.shortcart-number {
    background: #EDA129;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    position: absolute;
    z-index: 315;
    right: -0.25rem;
    top: 0;
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    display: none;
}

.shortcart-empty .shortcart-number {}

.shortcart-icon {
    margin-right: 0.75rem;
    padding-right: 0.75rem;
    border-right: 2px solid #fff;
}

.shortcart-icon>.svgicon {
    height: 2rem;
    width: 1.7rem;
}

.shortcart-price {
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    color: #fff;
    font-weight: normal;
}

.shortcart-empty .shortcart-price {
    font-size: 0.9rem;
    line-height: 1;
}

.shortcart-price-main {
    position: relative;
}

.shortcart-price-main>span {
    font-size: 70%;
    vertical-align: super;
}

.shortcart-price-tva {
    font-size: 70%;
    text-align: left;
    color: #99B1D7;
    margin-top: 0.25rem;
}

.ctable {
    width: 100%;
    max-width: 900px;
    border: 0;
    margin: 0 auto;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.ctable-row {
    width: 100%;
    margin: 0 0 0 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 1rem 0;
    background: #fff;
}

.ctable-row:nth-child(even) {
    /*background: #f9f9f9;*/
}

.ctable-cell {
    flex-grow: 1;
    flex-shrink: 1;
}

.cthumb {
    width: 30%;
    padding: 0 1rem 0 0;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
}

.cthumb>img {
    width: 100%;
    height: auto;
}

.cinfo {
    padding: 0;
    margin: 0;
}

.cptitle {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    color: #000;
    margin: 0 0 0.25rem 0;
    padding: 0;
    text-align: left;
}

.cpcode,
.cbcode {
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1;
    text-align: left;
    font-weight: normal;
    color: #989898;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: left;
}

.cdesc {
    margin: 0.25rem 0 0 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #989898;
    font-weight: normal;
    text-align: left;
}

.cdesc p {
    margin: 0;
    padding: 0;
}

.coptions,
.ctoppings,
.cremovable {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #54BA48;
    font-weight: normal;
    text-align: left;
}

.cart-del-wrapper {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    background: #ff0000;
    color: #fff;
    width: 2rem;
    height: 2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    text-decoration: none;
}

.ccant {
    padding: 0.75rem 0 0 0;
    margin: 1rem 0 0 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #EDF8EC;
}

.csubtotal {
    text-align: right;

    white-space: nowrap;
    color: #3D9833;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: normal;
}

.cart-footer {
    margin: 0 auto 0 auto;
    padding: 1.5rem 1rem 1.5rem 1rem;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #EDF8EC;
    z-index: 100;
}

.cart-footer .buttons-area {
    margin-top: 0;
}

.cart-subtotals {
    padding: 0 0;
    margin: 1rem auto 0 auto;
    max-width: 900px;
}

.cpriceline>p.ctotal {
    text-align: right;
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1;
    color: #3D9833;
}

.ctotal {
    text-align: right;
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1;
    color: #000;
}

.ctvatotal {
    text-align: right;
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #999;
}

.cerror td {
    background: #ff0000;
    color: #fff;
    border-top-width: 0;
}

.cart-order-line {
    position: absolute;
    z-index: 305;
    bottom: 0;
    left: 0;
    width: 100%;
    background: green;
    height: 4rem;
    line-height: 4rem;
    text-align: right;
    color: #fff;
    text-decoration: none;

}

.cart-order-line-error {
    background: #ffefef;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    color: #ff0000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.cart-order-total {
    display: inline-block;
    height: 100%;
    background: #999;
    padding: 0 1rem;
    margin-left: 1rem;
}

.atc-message .splash-box {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

.atc-confirm {}

.atc-confirm-icon {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 6rem;
    width: 6rem;
    background: #54BA48;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.atc-confirm-icon>.svgicon {
    height: 100%;
    max-width: 100%;
    width: 40%;
}

.atc-confirm p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    color: #000;
    font-size: 1rem;
    line-height: 1.4;
}

.atc-confirm-icon+p {
    margin-top: 0;
}

.atc-confirm-actions {
    margin-top: 1rem;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.atc-confirm-actions>a {
    margin-top: 0.5rem;
    text-decoration: none;
    padding: 1.5rem 1rem;
    border: 0;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    font-weight: 500;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #3363AE;
    text-transform: uppercase;
}

.atc-confirm-actions>a:first-child {
    margin-top: 0;
}

.atc-confirm-actions>a.atc-confirm-finalize {
    background: #54BA48;
}


.longcart {}

.cart-del {
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
}

.cart-del>.svgicon {
    height: 100%;
    width: 60%;
}

.longcart .loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
    color: #000;
    background: url('../media/bg-white-80.png');
}

.longcart .loader .loader-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 5rem;
    width: 5rem;
}

.longcart .loader .svgicon {
    height: 100%;
    width: 100%;
}

.cart-closebutton {
    /*-webkit-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);*/
    height: 4rem;
    width: 2rem;
    position: absolute;
    left: 0;
    bottom: 6rem;
    background: #fff;
    z-index: 305;
    border-radius: 0 2rem 2rem 0;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.cart-closebutton .svgicon {
    color: #ccc;
    height: 100%;
    width: 0.75rem;
    position: absolute;
    left: 0.3rem;
    top: 0;
}


/* PRODUCTS LISTING ------------------------------------------------------------------------------------------ */
.shop_pl_categ_desc {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #989898;
    margin: 1rem auto 0 auto;
    padding: 0;
    text-align: center;
    max-width: 80%;
}

.shop_pl_categ_desc p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.plist,
.clist,
.combolist {
    list-style: none;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.plist>li,
.clist>li,
.combolist li {
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
}

.plist>li:first-child,
.clist>li:first-child,
.combolist li:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.categ-card {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.categ-image {
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.combo-card {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.combo-image {
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.combo-image>a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.combo-image img {
    width: 100%;
    height: auto;
}

.combo-info {
    margin-top: auto;
}


.product-card {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.product-card.inactive {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    filter: alpha(opacity=30);
    -moz-opacity: 0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
}

.product-top {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}

.product-bottom {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: auto;
    width: 100%;
}

.product-bottom-wrapper {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
    margin-top: 0.5rem;
}

.product-image {
    width: 100%;
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
}

.product-image>a {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;

}

.product-image img {
    width: 100%;
    height: auto;
}

.product-info {
    flex-grow: 1;
    margin-top: 0.5rem;
}

.plist_title,
.clist_title,
.combolist_title {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0;
    color: #000;
    display: block;
    text-decoration: none;
}

.plist_desc,
.clist_desc,
.combolist_desc {
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    margin: 0.25rem 0 0 0;
    color: #989898;
    display: block;
    text-decoration: none;
}

.plist_desc p,
.clist_desc p,
.combolist_desc p {
    margin: 0;
    padding: 0;
}

.clist_count {
    margin: 0;
    text-align: right;
    color: #7D3279;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    z-index: 30;
    padding: 1rem;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.plist_categ {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}

.plist_price_wrapper,
.combolist_price_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 0 0 1rem;
}

.plist_price,
.combolist_price {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 1rem;
    color: #000;
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 10;
}

.plist_price>p {
    margin: 0;
    padding: 0;
    text-align: right;
}

.plist_price>span {
    color: #989898;
    font-size: 70%;
    display: block;
    text-align: right;
    font-weight: normal;
    margin-top: 0.25rem;
}

.plist_oldprice,
.combolist_oldprice {
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 500;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #EA0000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    top: 0.5rem;
    right: 4rem;
    z-index: 10;
    height: 2.5rem;
}

.plist_oldprice_icon {
    background: #EA0000;
    color: #fff;
    width: 2rem;
    height: 2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0.5rem 0 0;
    font-size: 0.9rem;
    font-weight: normal;
}

.plist_oldprice_icon>.svgicon {
    height: 100%;
    width: 60%;
}

.plist_buline_wrapper,
.combolist_buline_wrapper {
    position: absolute;
    left: 0.75rem;
    top: 0;
    z-index: 30;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    -moz-transform: rotate(-90deg) translateX(-100%);
    -webkit-transform: rotate(-90deg) translateX(-100%);
    -o-transform: rotate(-90deg) translateX(-100%);
    -ms-transform: rotate(-90deg) translateX(-100%);
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: 0% 0%;
}

.plist_bulina {
    background: #AF2B04;
    color: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0.25rem 0 0 0;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.plist_bulina:first-child {
    margin-top: 0;
}

.plist_bulina .svgicon {
    height: 100%;
    width: 50%;
}

.plist_bulina_nou {
    background: #7D3279;
    color: #fff;
}

.plist_bulina_promo {
    background: #FBCCCC;
    color: #EA0000;
    flex-direction: row;
    flex-wrap: nowrap;
}

.plist_detailsbut,
.combolist_detailsbut {
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0 0 0 0.25rem;
}

.plist_detailsbut:first-child,
.combolist_detailsbut:first-child {
    margin-left: 0;
}

.plist_detailsbut>a,
.combolist_detailsbut>a {
    padding: 0.75rem 0.5rem;
    background: #818181;
    border: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    margin: 0;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 50px;
}

.plist_detailsbut>a .svgicon,
.combolist_detailsbut>a .svgicon {
    height: 2rem;
    width: 2rem;
    margin-left: 0.5rem;
}

.plist_detailsbut>a.green,
.combolist_detailsbut>a.green {
    background: #7D3279;
}

.plist_stoc {
    position: absolute;
    left: 0.5rem;
    top: 3.5rem;
    z-index: 10;
    white-space: nowrap;
    padding: 0.75rem;
    background: #fff;
    color: #999;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1;
    font-weight: normal;
}

.plist_stoc_empty {
    color: #999;
}

.plist_stoc_redus {
    color: red;
    background: #FBCCCC;
}

.plist_atc_root {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.plist_cant_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.plist_cant_button {
    background: none;
    padding: 0;
    border: 1px solid #9B9280;
    color: #9B9280;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.plist_cant_button>.svgicon {
    height: 100%;
    width: 70%;
}

.plist_cant {
    font-size: 1rem;
    line-height: 1;
    padding: 0.5rem;
    border: 0;
    color: #9B9280;
    text-align: center;
    margin: 0 0.5rem;
    width: 2rem;
    height: 2rem;
}

.plist_atc_button {
    padding: 0.75rem 0.5rem;
    background: #54BA48;
    border: 0;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    width: 100%;
}

.plist_atc_button_icon {
    margin-right: 1rem;
    margin-left: 0.5rem;
    display: inline-block;
    position: relative;
}

.plist_atc_button_icon>.svgicon {
    height: 1.75rem;
    width: 1.75rem;
}

.plist_atc_button_icon>span {
    position: absolute;
    right: -1rem;
    top: 0;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    background: #10d910;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.plist_atc_button_icon>span>.svgicon {
    height: 100%;
    width: 70%;
}

/*.plist_atc {
    position: absolute;
    left:1rem;
    top:1rem;
    z-index:25;
    cursor: pointer;
    border: 0;
    padding:0;
    background:#E31E24;
    color:#fff;
    display: none;
    height:5rem;
    width: 5rem;
    line-height: 5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 0;
}
.plist_atc>.svgicon {
    height: 100%;
    width: 40%;
}
.plist_atc span {
    position: absolute;
    left:60%;
    bottom:0;
    -webkit-transform: translate(0%,50%);
    -ms-transform: translate(0%,50%);
    transform: translate(0%,50%);
    background:#fff;
    color:#E31E24;
    padding:0.7rem;
    font-size:1rem;
    line-height: 1;
    white-space: nowrap;
    display:none;
}*/
.plist>li .shop_pl_loader {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url('../media/bg-white-80.png');
    z-index: 50;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plist>li .shop_pl_loader .donut {
    width: 4rem;
    height: 4rem;
    border-width: 7px;
}

.plist_inactive {
    border: 0;
    padding: 0 1.5rem;
    background: #E0E0E0;
    color: #999;
    display: block;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.plist_inactive>span {}

.shop_pi_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.shop_pi_left {
    order: 0;
    position: relative;
}

.shop_pi_right {
    order: 1;
    margin-top: 1.5rem;
}

.shop_pi_images {}

.shop_pi_info {}

.shop_pi_title {
    margin: 0 0 0 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    color: #000;
}

.shop_pi_extrainfo {
    margin-top: 0.5rem;
}

.shop_pi_extrainfo_item {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1;
    margin: 0.5rem 0 0 0;
    padding: 0;
    color: #989898;
}

.shop_pi_extrainfo_item strong {
    color: #000;
    font-weight: normal;
    margin-left: 0.25rem;
}

.shop_pi_extrainfo_item:first-child {
    margin-top: 0;
}

.shop_pi_extrainfo_item a {
    color: #000;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
}

.shop_pi_extrainfo_item a img {
    border: 0;
    display: inline-block;
    max-height: 50px;
    max-width: 100%;
    width: auto;
    height: auto;
}

.shop_pi_desc {
    margin: 0.5rem 0 0 0;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #989898;
    text-align: center;
}

.shop_pi_desc>p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #989898;
}

.shop_pi_desc>p:first-child {
    margin-top: 0;
}

.shop_pi_second_desc_wrapper {
    margin-top: 1rem;
}

.shop_pi_second_desc {
    margin: 0 auto 0 auto;
    display: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop_pi_second_desc_wrapper.active .shop_pi_second_desc {
    display: block;
}

.shop_pi_second_desc>p {
    margin: 0.75rem 0 0 0;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #989898;
}

.shop_pi_second_desc>p:first-child {
    margin-top: 0;
}

.shop_pi_second_desc>p strong {
    font-weight: 500;
}

.shop_pi_second_desc_caption {
    margin: 0 0 0.5rem 0;
    background: #49A4F2;
    padding: 1.25rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    cursor: pointer;
}

.shop_pi_second_desc_caption>.svgicon {
    width: 0.75rem;
    height: 0.75rem;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.shop_pi_second_desc_wrapper.active .shop_pi_second_desc_caption>.svgicon {
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.shop_pi_ghidul_notice {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
    color: #999;
}

.shop_pi_price {
    text-align: center;
    color: #7D3279;
    font-size: 2rem;
    line-height: 1;
    white-space: nowrap;
    padding: 1.5rem 1rem;
    border: 2px solid #7D3279;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.shop_pi_images_list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pi_images_list>li {
    width: calc((100% - 1.5rem) / 4);
    margin-left: 0.5rem;
    margin-top: 0.5rem;
}

.shop_pi_images_list>li:first-child {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
}

.shop_pi_images_list>li:nth-child(4n+2) {
    margin-left: 0;
}

.shop_pi_images_list>li>a {
    display: block;
    text-decoration: none;
    width: 100%;
}

.shop_pi_images_list>li>a>img {
    display: block;
    width: 100%;
    height: auto;
}

.shop_pi_vars {
    margin-top: 2rem;
}

.shop_pi_cant_wrapper {
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
}

.shop_pi_cant_button {
    background: none;
    padding: 0;
    border: 2px solid #54BA48;
    color: #54BA48;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.shop_pi_cant_button:disabled {
    border-color: #CCEBCA;
    color: #CCEBCA;
}

.ccant .shop_pi_cant_button {
    width: 2.5rem;
    height: 2.5rem;
}

.shop_pi_cant_button>.svgicon {
    height: 100%;
    width: 40%;
}

.shop_pi_cant_minus>.svgicon {
    width: 30%;
}

.shop_pi_cant {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    padding: 0;
    border: 0;
    background: none;
    color: #989898;
    text-align: center;
    margin: 0 0.25rem;
    height: 3rem;
    width: 2.5rem;
}

.ccant .shop_pi_cant {
    color: #989898;
    font-size: 1rem;
    line-height: 1;
    width: 2rem;
}

.shop_pi_atc {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.shop_pi_atc_button {
    background: none;
    border: 0;
    margin: 0;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    background: #54BA48;
    color: #fff;
    display: block;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

.shop_pi_atc_button_icon {
    margin-right: 1.5rem;
    display: inline-block;
    position: relative;
}

.shop_pi_atc_button_icon>.svgicon {
    height: 2rem;
    width: 2rem;
}

.shop_pi_atc_button_icon>span {
    position: absolute;
    right: -1rem;
    top: 0;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    background: #80D5AF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.shop_pi_atc_button_icon>span>.svgicon {
    height: 100%;
    width: 70%;
}

.atc-error {
    text-align: center;
    background: #ff0000;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #fff;
    padding: 0.5rem;
    display: none;
    margin: 0.5rem 0 0 0;
}

.shop_pi_back_wrapper {
    margin-top: 3rem;
    text-align: center;
}

.shop_pi_back {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #999;
}

.shop_pi_vars_list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.shop_pi_vars_list.justone {
    /*display: none;*/
}

.shop_pi_vars_list>li {
    margin-left: 1rem;
}

.shop_pi_vars_list>li:first-child {
    margin-left: 0;
}

.shop_pi_vars_list>li>button {
    background: none;
    padding: 1rem 1.5rem;
    margin: 0;
    cursor: pointer;
    border: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    font-weight: normal;
    color: #000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #CCEBCA;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.shop_pi_vars_list>li>button.active {
    border-color: #54BA48;
    color: #54BA48;
}

/*.shop_pi_vars_list>li>button>span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #A2361A;
    margin-right: 0.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: none;
}

.shop_pi_vars_list>li:nth-child(2)>button>span {
    border-color: #E3A446;
    width: 18px;
    height: 18px;
}

.shop_pi_vars_list>li:nth-child(3)>button>span {
    border-color: #2A603E;
    width: 22px;
    height: 22px;
}

.shop_pi_vars_list>li>button.active>span {
    background: #A2361A;
    border-color: #A2361A;
}

.shop_pi_vars_list>li:nth-child(2)>button.active>span {
    background: #E3A446;
    border-color: #E3A446;
}

.shop_pi_vars_list>li:nth-child(3)>button.active>span {
    background: #2A603E;
    border-color: #2A603E;
}*/

.ghid-button-wrapper {
    margin-top: 1rem;
    text-align: center;
}

.ghid-button {
    text-decoration: none;
    color: coral;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.shop_pi_options {
    margin: 2rem auto 0 auto;
    width: 95%;
}

.shop_pi_options_row {
    margin-top: 1rem;
}

.shop_pi_options_row:first-child {
    margin-top: 0;
}

.shop_pi_options_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pi_options_item>label {
    display: block;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #9B9280;
    margin: 0 0 0.5rem 0;
}

.shop_pi_options_item_inside {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.add_product_option_but {}

.add_product_option_but .svgicon {
    display: none;
}

.add_product_option_but.active .svgicon {
    display: inline-block;
}

.shop_pi_total {
    text-align: right;
    color: #3D9833;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: 500;
    margin: 0;
}

.shop_pi_total>span {}

.shop_pi_total_tva {
    text-align: right;
    font-size: 70%;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    color: #989898;
    margin: 0.25rem 0 0 0;
}

.shop_pi_removable {
    margin-top: 1rem;
    text-align: left;
}

.shop_pi_toppings {
    margin-top: 1rem;
    text-align: center;
}

.shop_pi_toppings_row {}

.shop_pi_toppings_row_inside {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pi_toppings_title {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #693013;
    width: 90%;
}

.shop_pi_toppings_list {
    display: none;
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
    color: #693013;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.shop_pi_toppings_list span {
    font-weight: normal;
}

.shop_pi_extradesc {
    display: none;
    text-align: left;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #693013;
}

.shop_pi_toppings_selection {
    display: none;
    margin-top: 2rem;
}

.shop_pi_toppings_selection.active {
    display: block;
}

.shop_pi_toppings_selection .splash-box {
    width: 90%;
}

.shop_pi_toppings_selection_categ {
    margin-top: 1rem;
}

.shop_pi_toppings_selection_categ:first-child {
    margin-top: 0;
}

.shop_pi_toppings_selection_categ_title {
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    text-align: left;
    color: #000;
    font-weight: normal;
    display: none;
}

.shop_pi_toppings_items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pi_toppings_items>li {
    width: 100%;
    margin-top: 0;
    flex-grow: 0;
    flex-shrink: 0;
    border-top: 1px solid #fffbf4;
}

.shop_pi_toppings_items>li:first-child {
    margin-top: 0;
}

.tcard {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #693013;
    height: 100%;
    text-align: left;
    cursor: pointer;
    background: #fff;
}

.tcard-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.tcard-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 2rem;
}

.tcard-price {
    text-align: right;
    white-space: nowrap;
}

.tcard-thumb {
    margin-right: 0.5rem;
}

.tcard-thumb>img {
    max-height: 50px;
    width: auto;
}

.tcard-add {
    padding: 0.5rem;
    text-align: center;
    background: none;
    color: #693013;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #E3A446;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.tcard-remove {
    padding: 0.5rem;
    text-align: center;
    background: #ededed;
    color: #000;
    margin-left: 0.5rem;
}

.tcard-quantity {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    display: none;
    margin-left: 0.5rem;
}

.tcard-qbut {
    width: 2rem;
    height: 2rem;
    line-height: normal;
    text-align: center;
    cursor: pointer;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.tcard-qbut>.svgicon {
    height: 100%;
    width: 50%;
}

.tcard-qval {
    margin: 0 0.5rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    min-width: 1rem;
}

.shop_pi_toppings_items>li.active>.tcard {
    background: #829A0C;
    color: #fff;
}

.shop_pi_toppings_items>li.active .tcard-add {
    display: none;
}

.shop_pi_toppings_items>li.active .tcard-quantity {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.shop_pi_removable_items>li .tcard-add {
    display: none;
}

.shop_pi_removable_items>li.active .tcard-add {
    display: block;
}

.shop_pi_removable_items>li .tcard-remove {
    display: block;
}

.shop_pi_removable_items>li.active .tcard-remove {
    display: none;
}



.flex_sb {
    justify-content: space-between !important;
}


/* SHOP ORDER ------------------------------------------------------------------------------------------ */
.order-page-container {
    padding-top: 2rem;
}

.order-content {
    padding: 0;
    margin: 0 auto;
    text-align: left;
}

.order-section {
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid #ccc;
}

.order-section:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.order-review {}

.order-section:first-child {
    margin-top: 0;
    border-top: 0;
}


.order-section>fieldset {
    padding: 0;
    margin: 1rem 0 0 0;
    border: 0;
}

.order-section>fieldset:first-child {
    margin-top: 0;
}

.order-payment-bonuri-wrapper {
    display: none;
}

.od-branch-address {
    text-align: right;
    font-size: 1rem;
    line-height: 1.4;
    color: #999;
    font-weight: normal;
    margin-top: 0.5rem;
}

.cblabel {
    cursor: pointer;
}

.order_message_ok {
    text-align: center;
    margin: 0 auto 0 auto;
    max-width: 700px;
}

.order_message_ok>p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
}

.order_message_ok>p.order_message_main {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #67b255;
}

.order_message_ok>p.order_message_error {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: normal;
    color: #ff0000;
}

.order_message_ok>p.order_message_spaced {
    margin-top: 2rem;
}

.order_message_ok_icon {
    width: 5rem;
    height: 5rem;
    color: #54BA48;
    /*border: 2px solid #67b255;*/
    background: #EDF8EC;
    margin: 0 auto 1rem auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.order_message_ok_icon>.svgicon {
    width: 50%;
    height: 100%;
    color: #54BA48;
}

.order_message_ok_icon.bad {
    color: #fff;
    background: #ff0000;
}

.order_message_ok_icon.bad>.svgicon {
    color: #fff;
    width: 60%;
}

.confirm-error {
    color: #ff0000;
}

.cpriceline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0.5rem 0 0 0;
}

.cpriceline:first-child {
    margin-top: 0;
}

.cpriceline>p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #000;
}

.cpriceline>p.cpricelabel {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    color: #000;
}

.cpriceline>p.cpricelabel>strong {
    font-weight: 500;
    color: #3D9833;
}

.order-review-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #C8E3FB;
    padding-bottom: 1rem;
    border-bottom: 1px solid #C8E3FB;
}

.order-review-final {
    margin-top: 1.5rem;
    text-align: center;
}




.order-step {
    display: none;
    width: 100%;
    margin-top: 3rem;
}

.order-step:first-child {
    margin-top: 0;
}

.order-step.done,
.order-step.active {
    display: block;
}

.order-next-step,
.order-change-step {
    display: none;
}

.order-step.active .order-next-step {
    display: block;
}

.order-step.done:not(.active) .order-change-step {
    display: block;
}

.order-progress {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: none;
}

.order-progress li {
    text-align: left;
    float: left;
    color: #ccc;
    position: relative;
    margin-left: 2rem;
}

.order-progress li:first-child {
    margin-left: 0;
}

.order-progress li.done {
    color: #999;
}

.order-progress li.active {
    color: #000;
}

.order-progress li span {
    display: inline-block;
    margin-left: 0.5rem;
}

.order-progress li:not(.active) span {
    display: none;
    position: absolute;
    right: 0;
    bottom: -0.5rem;
    z-index: 20;
    background: #999;
    color: #fff;
    padding: 0.5rem;
    margin: 0;
    white-space: nowrap;
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
}

.order-progress li:not(.active):hover span {
    display: block;
}

.order-page .login-register-referrer {
    display: none;
}

.order-page .login-form h2,
.order-page .register-form h2 {
    display: none;
}

.order-byphone {
    margin-top: 2rem;
}

.order-as-guest-notice {
    margin: 0 0 1rem 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    padding: 0;
}

.order-as-guest-change {
    background: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0 0 0 0.2rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #85c2f6;
}

.order-review-group {
    text-align: right;
    border-top: 1px solid #ccc;
    margin-top: 1rem;
    padding-top: 1rem;
}

/*.order-review-group:first-child {
    border-top-width: 0;
    padding-top:0;
    margin-top:0;
}*/
.order-review-group p {
    text-align: left;
    margin: 0;
}

.order-review-change {
    margin-top: 0.5rem;
}

.order-step-form .js-mandatory-error {
    border-color: #ff0000;
}

.order-addresses-wrapper {
    margin-bottom: 0.75rem;
}

.order-addresses-wrapper>p {
    margin: 2rem 0 0 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    color: #000;
    text-align: left;
}

.order-existing-addresses {
    margin: 0.75rem 0 0 0;
    padding: 0;
    display: block;
    list-style: none;
}

.order-existing-addresses>li {
    display: block;
    width: 100%;
    margin: 5px 0 0 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
    background: #E9F5FF;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    position: relative;
    text-align: left;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.order-existing-addresses>li:first-child {
    margin-top: 0;
}

.order-existing-addresses>li>.svgicon {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    left: 1.5rem;
    top: 1.5rem;
    display: none;
}

.order-existing-addresses .active {
    padding-left: 4rem;
}

.order-existing-addresses .active>.svgicon {
    display: block;
}


.order-new-address {
    display: none;
}


.product-main-loader {
    border-left-color: #7983ff;
    width: 5rem;
    height: 5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.spin {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1500ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1500ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;

    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.select-branch-wrapper {
    width: 60%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.select-branch-group {
    flex-grow: 1;
}

.form1-row {
    margin-top: 0.5rem;
}

.form1-row:first-child {
    margin-top: 0;
}

.form1-row-inline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;

}

.form1-row-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-grow: 1;
    margin: 0.5rem 0 0 0;
}

.form1-row-item:first-child {
    margin-top: 0;
}

.form1-row-item.form1-row-item-fs {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.form1-row-item.form1-row-item-fs label {
    margin-bottom: 0;
    margin-right: 0.5rem;
}


.form1-row-item-element {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-grow: 1;
}

.form1-row-item>label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    text-align: center;
}

.form1-row-item>label.mandatory {
    color: #000;
}

.form1-row-item>label a {
    text-decoration: none;
    color: #7D3279;
}

.form1-row-column {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.form1-row-column>* {
    width: 100%;
    margin-top: 0.5rem !important;
}

.form1-row-column>*:first-child {
    margin-top: 0 !important;
}

.form1-row-inline>.form1-row-item:nth-child(odd) {
    margin-left: 0;
}

.anpc {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.anpc>a {
    margin: 0 0 0 1rem;
    text-decoration: none;
    display: inline-block;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: calc((100% - 1rem) / 2);
}

.anpc>a:first-child {
    margin-left: 0;
}

.anpc>a>img {
    display: block;
    height: auto;
    width: 100%;
}

.payment-logos+.anpc {
    margin-top: 0.5rem;
}

.payment-logos {
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-logos>li {
    margin-left: 1rem;
    display: inline-block;
    height: 4rem;
}

.payment-logos>li:first-child {
    margin-left: 0;
}

.payment-logos>li .svgicon {
    height: 100%;
}

.icon-mastercard {
    width: 3rem;
}

.icon-visa {
    width: 4rem;
}

.gotop {
    background: none;
    margin: 0;
    padding: 0;
    color: #6E91C6;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 54px;
    height: 54px;
    position: relative;
    cursor: pointer;
    border: 2px solid #6E91C6;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 1;
    font-weight: normal;
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 200;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(100%, 0%);
    -ms-transform: translate(100%, 0%);
    transform: translate(100%, 0%);
}

.gotop>.svgicon {
    height: 100%;
    width: 30%;
}

.gotop.active {
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    right: 0.5rem;
    background: url('../media/bg-white-60.png');
}

.menubar {
    position: sticky;
    top: -1px;
    z-index: 90;
    background: #EDEDED;
}

.menubar-wrapper-parent {
    position: relative;
    height: 70px;
}

.menubar-wrapper {
    background: #C48DD5;
    padding: 1rem;
    position: absolute;
    top: 1rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    left: 0;
    width: 100%;
}


.menubar-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
    margin-right: 0.5rem;
}

.menubar-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.menubar-item {
    margin-left: 0.5rem;
}

.menubar-item:first-child {
    margin-left: 0;
}

.menu-open-children {
    position: absolute;
    cursor: pointer;
    background: none;
    padding: 1.2;
    margin: 0;
    border: 0;
    right: 0;
    top: 0;
}

.menu-open-children::after {
    content: '▾';
    display: block;
    position: absolute;
    right: 0rem;
    top: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
}

.isopen>.menu-open-children::after {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mainmenu .menu-open-children {
    display: none;
}

.mainmenu-wrapper {
    padding: 1rem 0;
}

.topbar {
    padding: 1rem 0 1rem 0;
}

.topbar-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.topbar-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.topbar-right {
    display: none;
    padding-right: 4rem;
}

.topbar-right-group {
    margin-left: 1.5rem;
}

.topbar-right-group:first-child {
    margin-left: 0;
}

.search-trigger {
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: #49A4F2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    width: 3.2rem;
}

.search-trigger>.svgicon {
    width: 1.25rem;
    height: 1.5rem;
}

.topmenu {
    padding: 1rem 2rem;
    border: 2px solid #7D3279;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.topmenu>li {
    margin-left: 2rem;
}

.topmenu>li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.topmenu a {
    color: #000;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    white-space: nowrap;
    text-decoration: none;
    padding: 0.25rem 0.25rem;
    display: block;
}

.topmenu a .svgicon {
    color: #7D3279;
    width: 1.8rem;
    height: 1.8rem;
}

.topmenu .iconbut a {
    border: 1px solid #7D3279;
    padding: 0.75rem 1rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.secondmenu {
    padding: 0;
    border: 0;
}

.social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.social>li {
    margin-left: 0.75rem;
}

.social>li:first-child {
    margin-left: 0;
}

.social>li>a {
    text-decoration: none;
    display: block;
    width: 2.7rem;
    height: 2.7rem;
    line-height: 1;
    color: #fff;
    border: 1px solid #C48DD5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
}

.social>li>a>.svgicon {
    height: 100%;
    width: 50%;
}

.logo {
    text-decoration: none;
    display: inline-block;
}

.logo>.svgicon {
    height: 50px;
    width: 270px;
}

.shop-pl-title-line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 0;
}

.shop-pl-title {
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    color: #000;
}

.shop-pl-title strong {
    font-weight: 500;
    color: #7D3279;
}

.shop-pl-count {
    font-size: 1rem;
    line-height: 1;
    text-align: left;
    font-weight: normal;
    color: #000;
    white-space: nowrap;
    display: none;
}

.plist_vars {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.plist_vars_item {
    background: none;
    padding: 0;
    margin: 0 0 0 0.5rem;
    cursor: pointer;
    border: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: nowrap;
    font-weight: normal;
    color: #693013;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.plist_vars_item>span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #A2361A;
    margin-right: 0.25rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.plist_vars_item:first-child {
    margin-left: 0;

}

.plist_vars_item:nth-child(2)>span {
    border-color: #E3A446;
    width: 14px;
    height: 14px;
}

.plist_vars_item:nth-child(3)>span {
    border-color: #2A603E;
    width: 18px;
    height: 18px;
}

.plist_vars_item.active>span {
    background: #A2361A;
    border-color: #A2361A;
}

.plist_vars_item:nth-child(2).active>span {
    background: #E3A446;
    border-color: #E3A446;
}

.plist_vars_item:nth-child(3).active>span {
    background: #2A603E;
    border-color: #2A603E;
}

.shop_pi_config_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0 0 0;
}

.shop_pi_config_item:first-child {
    margin-top: 0;
}

.shop_pi_config_item label {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    color: #000;
    margin: 0 1rem 0 0;
}

.shop_pi_config_item select {
    min-width: 200px;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    color: #000;
}

.shop_pi_loader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.empty {
    padding: 2rem 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #999;
}

.shop_pi_notice_inactive {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
    color: #999;
    margin: 0;
    padding: 1rem;
    background: #ededed;
}

.featured-products {
    margin-top: 2rem;
}

.featured-products-content {
    background-image: linear-gradient(90deg, #ededed 100%, transparent 100%);
    background-size: 100% 165px;
    padding-top: 2rem;
}

.thirdtitle {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 300;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #818181;
    text-transform: uppercase;
}

.featured-products .thirdtitle {
    padding-top: 2rem;
    border-top: 2px solid #DEDEDE;
    margin: 0 auto 1rem auto;
}

.order-choices {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.order-choices-inline {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.order-choices>li {
    display: block;
    margin-top: 0.5rem;
    padding: 1rem 0.5rem;
    background: #fff;
    border: 2px solid #49A4F2;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    color: #49A4F2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.order-choices-inline>li {
    margin-left: 1rem;
    margin-top: 0;
}

.order-choices-inline>li:first-child {
    margin-left: 0;
}

.order-choices-icon>.svgicon {
    width: 2rem;
    height: 1rem;
    color: #49A4F2;
    margin-right: 0.5rem;
    display: none;
}

.order-choices-info-title {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #3363AE;
    text-align: center;
}

.order-choices-info-desc {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0.5rem 0 0 0;
    padding: 0;
    color: #989898;
    text-align: left;
}

.order-choices-info-desc strong {
    color: #EA0000;
    font-weight: normal;
}

.order-choices>li.active {
    cursor: pointer;
}

.order-choices>li.active .order-choices-info-title {
    color: #3363AE;
}

.order-choices>li.selected {
    border-color: #49A4F2;
    background: #49A4F2;
    color: #fff;
    border-width: 2px;
}

.order-choices>li.selected .order-choices-info-title {
    color: #fff;
}

.order-choices>li.selected .order-choices-icon>.svgicon {
    color: #fff;
}

.od-choices .order-choices>li {
    width: calc((100% - 1rem) / 2);
}

.order-content-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.order-content-right {
    margin-top: 1rem;
}

.finish-order-button {
    background: #54BA48;
    border-color: #54BA48;
    color: #fff;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
    padding: 1.5rem;
    width: 100%;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.ob-identity-wrapper {
    margin-bottom: 2rem;
}

.ob-identity-choices {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
}

.ob-identity-choices>li {
    margin-left: 0.5rem;
}

.ob-identity-choices>li:first-child {
    margin-left: 0;
}

.ob-identity-choices>li>button {
    padding: 1rem;
    border: 1px solid #ededed;
    background: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    color: #000;
    cursor: pointer;
}

.ob-identity-choices>li>button.active {
    border-color: red;
    color: red;
}

.ob-identity {
    display: none;
}

.ob-identity.active {
    display: block;
}

.address-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.address-header-item {
    flex-grow: 1;
    margin-top: 0.5rem;
}

.address-header-item:first-child {
    margin-top: 0;
}

.address-header-item>select {
    display: block;
    width: 100%;
    max-width: none !important;
}

.order-section-title {
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    color: #3363ae;
}


.od-item {
    display: none;
    margin-top: 1rem;
}

.od-item.active {
    display: block;
}

.order-delivery-tax-line {
    margin-top: 1rem;
    color: red;
}

.ob-choices {
    margin-bottom: 1rem;
}

.ob-address {
    display: none;
    margin-top: 1rem;
}

.ob-address.active {
    display: block;
}

.terms-wrapper {
    margin: 3rem 0 1rem 0;
    text-align: center;
}

.terms-wrapper>label {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    cursor: pointer;

}

.terms-wrapper>label>a {
    text-decoration: none;
    color: #49A4F2;
}

.terms-wrapper>input[type="checkbox"] {
    margin: 0 0.5rem 0 0;
    border: 1px solid #ccc;
    background: #fff;

}

.account-section {
    display: none;
}

.account-section:first-child {
    display: block;
}

.account-line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 auto;
}

.account-column {
    width: 100%;
}

.account-column .secondtitle {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0 0 1rem 0;
    padding: 0;
    color: #000;
}

.account_change_pass_form {
    margin-top: 3rem;
}

.account_form .buttons-area {
    margin-top: 1rem;
}

.account_form .buttons-area .buton1 {
    display: block;
    width: 100%;
}

.account_form input[type="text"],
.account_form input[type="password"] {
    width: 100%;
    display: block;
}

.add_address_container {
    display: none;
    margin-top: 2rem;
}

.no_address {
    font-size: 1rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    color: #999;
    padding: 0 0 1.5rem 0;
    border-left: 0;
    border-right: 0;
}

.adrlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.adrlist>li {
    display: block;
    width: 100%;
    margin: 0.5rem 0 0 0;
    padding: 1.5rem 2rem 1.5rem 2rem;
    background: #e9f5ff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    position: relative;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.adrlist>li:first-child {
    margin-top: 0;
}

.adractions {
    margin-top: 0.5rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 1rem;
}

.adractions>button {
    padding: 0.75rem;
    margin: 0 0 0 0.5rem;
    background: none;
    border: 2px solid #49A4F2;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    color: #3363AE;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.adractions>button:first-child {
    margin-left: 0;
}

.adractions>button>.svgicon {
    margin-right: 0.5rem;
    position: relative;
    height: 1rem;
    width: 1rem;
}

.adractions>button.adr_del {
    /*color: #ff0000;*/
}

.adrlist>li.fav {}

.adrlist>li.fav .adractions>button.adr_fav {
    color: #fff;
    background: #49A4F2;
}

.add_address {
    margin-top: 2rem;
}

.address-section {
    text-align: center;
    margin-top: 3rem;
}

.js-account-delivery-address-header,
.js-account-delivery-address-header select,
.js-account-billing-address-header,
.js-account-billing-address-header select {
    width: 100%;
}

.ao-table {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.ao-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.ao-cell {
    flex-grow: 0;
    flex-shrink: 0;
    background: #fff;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    color: #000;
    padding: 1rem 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    border-left: 1px solid #fff;
    width: 170px;
}

.ao-cell:first-child {
    margin-left: 0;
}

.ao-cell.fg1 {
    flex-grow: 1;
}

.ao-row:nth-child(odd) .ao-cell {
    background: #EDF8EC;
}

.ao-cell.aor {
    justify-content: flex-end;
}

.ao-cell.aol {
    justify-content: flex-start;
}

.ao-cell.aoc {
    justify-content: center;
    white-space: nowrap;
}

.ao-cell.aotitle {
    justify-content: flex-start;
    flex-grow: 1;
    flex-shrink: 1;
    width: auto;
    max-width: 50%;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ao-cell.aoprice {
    justify-content: center;
    white-space: nowrap;
}

.ao-more {
    display: inline-block;
    width: auto;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: nowrap;
}

.ao-repeta {
    display: inline-block;
    width: auto;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.1;
    white-space: nowrap;
}

.aodesc {
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: left;
    font-weight: normal;
    margin: 0.5rem 0 0 0;
    padding: 0;
    color: #989898;
}


.account-buttons {
    margin-bottom: 3rem;
    border-bottom: 1px solid #C8E3FB;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0;
}

.account-but {
    background: #fff;
    border: 1px solid #C8E3FB;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    margin: 0;
    padding: 1rem 2rem;
    text-transform: uppercase;
    position: relative;
    flex-grow: 0;
    top: 1px;
    margin-left: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    color: #3363AE;
}

.account-but:first-child {
    margin-left: 0;
}

.account-but.active {
    border-bottom-color: #fff;
    color: #49A4F2;
}

.orderinfo {
    padding-top: 1rem;
}

.orderinfo-wrapper {
    margin: 2rem auto 0 auto;
}

.orderinfo-info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.orderinfo-products {
    margin-top: 2rem;
}

.orderinfo-info-item {
    width: 100%;
    margin-top: 2rem;
}

.orderinfo-info-item:first-child {
    margin-top: 0;
}

.oi-table {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.oi-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-top: 1px solid #ccc;
}

.oi-cell {
    flex-grow: 0;
    background: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    color: #000;
    padding: 1rem 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.oi-cell:first-child {
    margin-left: 0;
}

.oi-row-combo .oi-cell:first-child {
    border-left: 3px solid red;
    padding-left: 0.5rem;
}

.oi-row-combo-caption {
    /*border-top:0;*/
}

.oi-row-combo-caption .oi-cell {
    color: red;
}

.oi-cell.fg1 {
    flex-grow: 1;
}

.oi-cell.aor {
    justify-content: flex-end;
}

.oi-cell.aol {
    justify-content: flex-start;
}

.oi-cell.aoc {
    justify-content: center;
}

.oi-ptitle {
    display: inline-block;
    margin-left: 0.5rem;
    text-decoration: none;
    color: #000;
}

.oi-pcode {
    display: inline-block;
    margin-left: 0.5rem;
}

.oi-poptions {
    display: inline-block;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid #ccc;
}

.oi-preturned {
    display: inline-block;
    margin-left: 0.5rem;
    color: #ff0000;
    padding-left: 0.5rem;
    border-left: 1px solid #ccc;
}

.oi-cell.oi-price {
    width: 200px;
    justify-content: flex-end;
    white-space: nowrap;
}

.oi-cell.oi-cell-check {
    width: 60px;
    justify-content: center;
}

.oi-cell.oi-cell-check>input[type="checkbox"] {
    display: none;
}

.oi-total .oi-cell {
    color: #3D9833;
    font-size: 1.3rem;
    line-height: 1;
}

.oi-row-extra {
    border-top: 0;
}

.oi-row-extra .oi-cell {
    padding-top: 0;
    padding-bottom: 1rem;
}

.orderinfo-info p.oi-status {
    background: #54BA48;
    color: #fff;
    padding: 0.75rem;
}

.orderinfo-info p.oi-shipped {
    margin-top: 1rem;
}

.oi-link {
    color: #49A4F2;
    text-decoration: none;
}

.oi-subtotal-produse {
    margin-bottom: 1rem;
}

.oi-return-but {
    display: inline-block;
    width: auto;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.1;
    background: none;
    color: #49A4F2;
    border-color: #49A4F2;
}

.orderinfo-info p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    color: #000;
}

.orderinfo-info p.oi-subtitle {
    text-transform: uppercase;
    font-size: 1.2rem;
    line-height: 1;
    color: #3363AE;
    margin-bottom: 0.5rem;
}

.oi-row-return {
    /*cursor: pointer;*/
}

.cb {
    width: 1rem;
    height: 1rem;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cb>.svgicon {
    height: 100%;
    width: 60%;
    display: none;
}

.cb.active>.svgicon {
    display: block;
}

.return {
    padding-top: 2rem;
}

.return-wrapper {
    margin-top: 2rem;
}

.return-form {
    max-width: 600px;
    margin: 0 auto;
}

.return-section {
    border-top: 1px solid #ccc;
    padding: 1rem 0;
}

.return-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.return-section>p {
    text-align: left;
    margin: 0 0 1rem 0;
    padding: 0;
    color: #FE3B9D;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
}

.return-products-item {
    text-align: left;
    padding: 1.5rem;
    background: #f9f9f9;
    margin: 0.5rem 0 0 0;
}

.return-products-item>span {
    display: inline-block;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid #ccc;
}

.return-info {
    display: none;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    margin-top: 2rem;
    color: #000;
}

.codplu {
    margin: 0.25rem 0 2rem 0;
    padding: 0;
    color: #ededed;
    display: none;
}

.order-after-message {
    display: none;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
}

.add_address_do {
    margin-top: 1rem;
}

.cprod-cant {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #000;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: #EDF8EC;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.cprod-cant>.svgicon {
    display: inline-block;
    margin-right: 0.1rem;
    width: 1rem;
    height: 1rem;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mandatory_sign {
    display: inline-block;
    position: relative;
    margin-left: 0.2rem;
    color: #ff0000;
    top: -0.2rem;
}

.snackbar {
    display: none;
    position: fixed;
    top: 1rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    background: url('../media/bg-black-80.png');
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    padding: 1.5rem 2rem;
    color: #fff;
    max-width: 400px;
    z-index: 700;
}

.snackbar.snackbar-error {
    background: #ff0000;
}

.cbl {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.cbl li {
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

.cbl li:first-child {
    margin-top: 0;
}

.cbl-card {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 100%;
    padding: 1rem;
    border: 2px solid transparent;
}

.cbl-card.active {
    border-color: #10d910;
}

.cbl-thumb {
    width: 100%;
    position: relative;
    margin-bottom: 1rem;
    cursor: pointer;
}

.cbl-thumb img {
    width: 100%;
    height: auto;
}

.cbl-title {
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0;
}

.cbl-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    margin: 0.5rem 0 0 0;
}

.cbl-desc p {
    margin: 0;
    padding: 0;
}

.cbl-options {
    margin-top: 1rem;
}

.cbl-options-item {
    margin-top: 0.5rem;
}

.cbl-options-item:first-child {
    margin-top: 0;
}

.cbl-cant-wrapper {
    margin-top: auto;
    padding-top: 1rem;
}

.cbl-cant {
    display: block;
    width: 100%;
}

.cbl-cant-text {
    width: 100%;
    display: none;
}

.active .cbl-cant-text {
    display: block;
}

.scg {
    padding-top: 2rem;
    border-top: 1px solid #ccc;
}

.scg:first-child {
    border-top: 0;
    padding-top: 0;
}

.sc-maintitle+.scg {
    border-top: 0;
    padding-top: 0;
}

.scg-title {
    margin: 0 0 0.75rem 0;
    padding: 1.5rem;
    background: #ededed;
    text-align: left;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.scg-title>h2 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    padding: 0;
    margin: 0;
}

.sc-total {
    text-align: right;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #ccc;
}

.sc-atc-wrapper {
    margin-top: 2rem;
}

.upsale {
    margin: 2rem auto 0 auto;
    width: 95%;
    ;
}

.upsale-item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
    font-weight: normal;
    color: #693013;
}

.upsale-item:first-child {
    margin-top: 0;
}

.upsale-item-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.upsale-item-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0.5rem;
}

.upsale-item-left>label {
    text-align: left;
}

.upsale-price {
    text-align: right;
    margin-right: 1rem;
    display: none;
}

.upsale-subtotal {
    text-align: right;
    margin-left: 1rem;
    min-width: 80px;
}

.od-pb {
    list-style: none;
    margin: 0;
    padding: 0;
}

.od-pbi {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid #F4C264;
}

.od-pbi:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.od-pbi-card {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.5rem 0;

}

.od-pbi-card-left {
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    cursor: pointer;
    flex-grow: 1;
}

.od-pbi-card-right {}

.od-pbi-title {
    text-align: left;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 500;
    margin: 0;
    padding: 0;
    color: #693013;
}

.od-pbi-adr {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    margin: 0.25rem 0 0 0;
    padding: 0;
    color: #9B9280;
}

.od-pbi-icon {
    color: #EDA129;
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.od-pbi-icon>.svgicon {
    height: 100%;
    width: 1rem;
    display: none;
}

.od-pbi.active .od-pbi-icon {
    background: #EDA129;
    border-color: #EDA129;
    color: #fff;
}

.od-pbi.active .od-pbi-icon>.svgicon {
    display: inline-block;
}

.gmaps-tag {
    padding: 0.5rem 0 0.5rem 0.5rem;
    border: 1px solid #E4E4E4;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    text-decoration: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    line-height: 1.1;
    text-align: center;
    font-weight: normal;
    color: #6C6C6C;
}

.gmaps-tag strong {
    font-weight: bold;
    display: block;
    margin: 0 0 0 0;
    padding: 0;
}

.gmaps-tag>img {
    height: 30px;
    width: auto;
    margin-left: 0.2rem;
}

.so-credit-line-wrapper {
    margin-top: 2rem;
}

.so-credit-line {
    cursor: pointer;
    padding: 1rem;
    background: #edf8ec;
    border: 0;
    align-items: center;
}

.so-credit-icon {
    color: #3D9833;
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
    text-align: center;
    background: none;
    border: 1px solid #3D9833;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.so-credit-icon>.svgicon {
    height: 100%;
    width: 1rem;
    display: none;
}

.so-credit-line.active .so-credit-icon {
    background: #3D9833;
    border-color: #3D9833;
    color: #fff;
}

.so-credit-line.active .so-credit-icon>.svgicon {
    display: inline-block;
}

.order-voucher-section {
    /*border-top: 1px solid #EFECE5;*/
}

.voucher_response {
    display: none;
    margin-top: 1rem;
    text-align: center;
    color: #3D9833;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    padding: 1rem;
    background: #EDF8EC;
}

.delete-voucher {
    display: none;
    margin-top: 0.5rem;
}

.validate-voucher {
    margin-top: 0;
    width: 35%;
}

.dfdline {
    text-align: center;
    margin: 1rem 0;
    padding: 1rem;
    background: #EDF8EC;
    display: none;
}

.dfdline p {
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #3D9833;
}


/*GAMBINOS*/
html,
body,
input,
select,
textarea {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
}

.fl-categs {
    background: #FFFAEC;
    padding: 1rem 0;
}

.fl-blue {
    background: #EDEDED;
    position: relative;
}

.fl-blue>.wrapper {
    position: relative;
    top: 1rem;
    margin-bottom: 2rem;
}

.fl-livrare {}

.fl-menus {
    background: #000;
    padding: 1.5rem 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.fl-livrare-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    color: #9B9280;
}

.fl-livrare-wrapper>strong {
    color: #693013;
    font-weight: 500;
    white-space: nowrap;
    display: none;
    margin-right: 1rem;
}

.fl-categs .footer-line-row {
    justify-content: center;
}

.fl-livrare .footer-line-row {
    justify-content: center;
}

.rubik-1 {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.phonebar {
    background: #EFECE4;
    padding: 1rem 0.5rem;
}

.phonebar-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.phonebar-right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 1rem;
}

.phonebar-left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.phonebar-left>strong {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    color: #693013;
    text-align: left;
}

.phones {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.phones>li {
    margin-left: 0.25rem;
    display: none;
}

.phonebar-right .phones li:nth-child(-n+2) {
    display: block;
}

.phones>li:first-child {
    margin-left: 0;
}

.phones-item {
    text-decoration: none;
    background: #FFFAEC;
    color: #AF2B04;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    text-align: center;
    display: block;
    padding: 1rem 0.75rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.footermenu-livrare {
    flex-direction: row;
    justify-content: center;
}

.footermenu-categs {
    flex-direction: row;
    justify-content: center;
}

.footermenu {
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
}

.tbb {
    padding: 0;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: #3B75C3;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    width: 3.2rem;
    display: block;
    position: relative;
}

.tbb>.svgicon {
    width: 1.5rem;
    height: 100%;
}

.tbb .live {
    display: block;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    width: 0.6rem;
    height: 0.6rem;
    background: #18E600;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.noproducts {
    padding: 2rem 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #999;
}

.product-page>.wrapper {
    width: 100%;
}

.optb {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.optb>li {
    margin: 0 0.25rem 0.5rem 0.25rem;
}

.optb>li>button {
    cursor: pointer;
    border: 1px solid #E3A446;
    background: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    color: #693013;
    margin: 0;
    padding: 1rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.optb>li>button.active {
    background: #EDA129;
    border-color: #EDA129;
    color: #fff;
}

.shop_pi_bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 205;
    background: #EFECE4;
    padding: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pi_toppings .buton3 {
    width: 95%;
}

.login-form label,
.recover-form label,
.register-form label {
    display: none;
}

.shop_atc_button_2 {
    margin: 2rem auto 0 auto;
    width: 95%;
}

.hp-intro {
    margin-top: 2rem;
}

.hp-title {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 500;
    color: #693013;
    margin: 0 auto 0 auto;
    padding: 0;
    text-align: center;
}

.hp-title strong {
    font-weight: 500;
    color: #C7302F;
}

.hp-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #9B9280;
    margin: 1rem auto 0 auto;
    padding: 0;
    text-align: center;
    width: 90%;
}

.hp-desc p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.hp-promos {
    padding: 1rem;
    background: #EDA129;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 2rem;
    position: relative;
}

.hp-promos-item {
    display: inline-block;
    text-decoration: none;
    /*width: calc((100% - 0.5rem) / 2);*/
    background: #FFFAEC;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 1rem;
    flex-grow: 1;
    flex-shrink: 1;
    border-left: 2px solid #EDA129;
}

.hp-promos-item:first-child {
    border-left: 0;
}

.hp-promos-item-title {
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 500;
    color: #EDA129;
}

.hp-promos-item-title>strong {
    font-weight: 500;
    color: #0B623B;
}

.hp-promos-item:nth-child(2) .hp-promos-item-title {
    color: #C7302F;
}

.hp-promos-item:nth-child(2) .hp-promos-item-title>strong {
    color: #556600;
}

.hp-promos-item-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #6E6E6E;
    margin: 0.25rem auto 0 auto;
    padding: 0;
    text-align: center;
}

.hp-promos-item-desc>span {
    font-weight: 500;
    color: #693013;
    display: block;
}

.hp-icon {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    left: 50%;
    top: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border: 3px solid #E3A446;
    text-align: center;
    color: #E3A446;
}

.hp-icon>.svgicon {
    height: 100%;
    width: 60%;
}

.hc {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #EFECE5;
}

.hc:first-child {
    padding-top: 0;
    border-top: 0;
}

.hc-title {
    margin-bottom: 1.5rem;
}

.hc-actions {
    margin-top: 3rem;
}

.hc-actions .buton3 {
    width: auto;
    display: inline-block;
}


.hc-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #9B9280;
    margin: 3rem auto 0 auto;
    padding: 0;
    text-align: center;
    max-width: 80%;
}

.hc-desc+.hc-actions {
    margin-top: 1rem;
}

.shop_pl_categ_desc+.plist,
.shop-pl-title-line+.plist,
.shop_pl_categ_desc+.clist,
.shop-pl-title-line+.clist {
    margin-top: 2rem;
}


.subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 500;
    color: #693013;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0;
}

.subtitle span {
    color: #AF2B04;
}

.order-login {
    padding: 1.5rem;
    background: #FFFAEC;
    margin-bottom: 1.5rem;
}

.order-review-final .error {
    margin-top: 2rem;
    margin-bottom: 0;
}

.error+.buttons-area {
    margin-top: 1rem;
}

.order-voucher-line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.form1 input.order-voucher-value {
    margin-right: 0.5rem;
}

.phonebar-icon {
    color: #EDA129;
    margin: 0;
    padding: 0;
    position: relative;
    display: none;
}

.phonebar-icon>.svgicon {
    height: 1.5rem;
    width: 1.5rem;
}

.order-review-cart .ctable-row {
    padding-left: 0;
    padding-right: 0;
}

.order-review-cart .upsale-cart-notice {
    width: auto;
}

.order-review-obs {
    margin-top: 2rem;
}

.cashback-line {
    border-top: 0;
    padding-top: 0;
    color: #67b255;
}

.cashback-line p {
    text-align: right;
    color: #67b255;
}

.upsale-cart-notice {
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 1.5rem;
    margin: 0.5rem auto 0 auto;
    background: #67b255;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 95%;
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.hfc {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hfc-item {
    text-decoration: none;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    position: relative;
    margin-top: 0.5rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.hfc-item:first-child {
    margin-top: 0;
}

.hfc-info {
    background: #0b623b;
    padding: 1rem;
    border-bottom: 5px solid #67b255;
    margin-top: auto;
    position: absolute;
    right: 0;
    bottom: 0.5rem;
    max-width: 80%;
    min-width: 50%;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.hfc-title {
    padding: 0;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
}

.hfc-desc {
    padding: 0;
    margin: 0.5rem 0 0 0;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #fff;
    font-weight: normal;
    text-align: left;
    display: none;
}

.hfc-desc p {
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff;
    font-weight: normal;
    text-align: left;
}

.hfc-img {
    height: 150px;
}

.hfc-img>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hp-1 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hp-1-left {
    width: 95%;
    margin: 0 auto;
}

.welcome {
    text-align: center;
    margin: 2rem 0 1rem 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.3;
    color: #67b255;
}

.footermenu-categs li ul {
    display: none;
}

.shop-pl-row1 {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop-pl-row1-left {
    flex-grow: 1;
}

.shop-pl-row1-right {
    flex-grow: 1;
    margin-top: 2rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.shop-pl-row2 {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;

}

.shop_pl_filtersline {
    text-align: left;
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pl_filters_wrapper {
    border-bottom: 1px solid #EFECE5;
    padding-bottom: 0.75rem;
    width: 100%;
}

.shop_pl_filters_text {
    margin-top: 1rem;
    display: none;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    color: #E33223;
}

.shop_pl_filters {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.shop_pl_filters>p {
    font-size: 1rem;
    text-align: center;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
    color: #9B9280;
    margin: 0;
}

.plist_tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.plist_tags>li {
    margin-left: 0.5rem;
}

.plist_tags>li:first-child {
    margin-left: 0;
}

.plist_tags>li button {
    border: 1.5px solid #E3A446;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    background: #fff;
    width: 3.2rem;
    height: 3.2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #E3A446;
}

.plist_tags>li button.active {
    background: #E3A446;
    color: #fff;
}

.plist_tags>li button>.svgicon {
    height: 100%;
    width: 50%;
}

.plist_tags>li button>.plist_tagname {
    position: absolute;
    background: #000;
    color: #fff;
    left: 50%;
    bottom: 0;
    padding: 0.5rem;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    z-index: 100;
    -webkit-transform: translate(0%, 50%);
    -ms-transform: translate(0%, 50%);
    transform: translate(0%, 50%);
    display: none;
}

.plist_tags>li.plist_tags_leaf button {
    color: #8BDB0A;
    border-color: #8BDB0A;
}

.plist_tags>li.plist_tags_leaf button span {
    background-color: #8BDB0A;
}

.plist_tags>li.plist_tags_leaf button.active {
    background: #8BDB0A;
    color: #fff;
}

.plist_tags>li.plist_tags_hot button {
    color: #C7302F;
    border-color: #C7302F;
}

.plist_tags>li.plist_tags_hot button span {
    background-color: #C7302F;
}

.plist_tags>li.plist_tags_hot button.active {
    background: #C7302F;
    color: #fff;
}

.form-title {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    color: #7D3279;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.form-disclaimer {
    font-size: 0.8rem;
    font-weight: normal;
    text-align: justify;
    line-height: 1.4;
    color: #989898;
    margin: 1rem 0 0 0;
}

label[for="contact_agree"] {
    cursor: pointer;
}

label[for="contact_firstname"],
label[for="contact_email"],
label[for="contact_phone"],
label[for="contact_message"],
label[for="contact_company"] {
    display: none;
}

.contact-form .buton1 {
    width: 100%;
}

.vand-form .buton1 {
    width: 100%;
}

label[for="vand_agree"] {
    cursor: pointer;
}

label[for="vand_firstname"],
label[for="vand_email"],
label[for="vand_phone"],
label[for="vand_message"],
label[for="vand_company"],
label[for="vand_tip"],
label[for="vand_marca"],
label[for="vand_model"],
label[for="vand_an"],
label[for="vand_km"] {
    display: none;
}

.contact-form .buton1 {
    width: 100%;
}

.extrapadding {
    padding-left: 0;
    padding-right: 0;
}

.menubar-login {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.menubar-login-submenu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
}

.menubar-login-submenu a {
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    margin-left: 1rem;
    border-left: 1px solid #fff;
    padding: 0.5rem 0.25rem 0.5rem 1rem;
}

.menubar-login-submenu a:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.main-content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.main-left {
    display: none;
}

.main-right {
    flex-grow: 1;
    flex-shrink: 1;
    padding-top: 1rem;
    text-align: center;
}


.shop-pl-banner {
    margin-bottom: 1rem;
}

.shop-pl-banner a {
    display: block;
    text-decoration: none;
    width: 100%;
}

.shop-pl-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.dditem {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.ddlabel {
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    color: #989898;
    text-align: center;
    margin: 0 1rem 0 0;
    padding: 0;
    display: none;
}

.ddclear {
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    color: #ff0000;
    text-align: center;
    margin: 0 0 0 1.5rem;
    padding: 0;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.ddclear>.svgicon {
    height: 1.25rem;
    width: 1.25rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.ddbox {}

.ddselected {
    cursor: pointer;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    color: #000;
    text-align: center;
    border: 2px solid #7D3279;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-width: 150px;
}

.ddselected>.svgicon {
    margin-left: 1rem;
    color: #7D3279;
    height: 0.75rem;
    width: 0.75rem;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dditem.active .ddselected>.svgicon {
    -moz-transform: rotate(0);
    -webkit-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.ddoptions-wrapper {
    display: none;
    position: absolute;
    z-index: 40;
    right: 0;
    bottom: 2px;
    -webkit-transform: translate(0%, 100%);
    -ms-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
}

.dditem.active .ddoptions-wrapper {
    display: block;
}

.dditem.dditemleft .ddoptions-wrapper {
    left: 0;
    right: auto;
}

.ddoptions {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: block;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: #fff;
    border: 2px solid #7D3279;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.ddoptions li {
    display: block;
    width: 100%;
    border-top: 2px solid #fff;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    color: #000;
    text-align: left;
    background: #ededed;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    min-width: 150px;
}

.ddoptions li:first-child {
    margin-top: 0;
    border-top: 0;
}

.ddoptions li.active {
    background: #7D3279;
    color: #fff;
}

.fl-brands {
    margin-bottom: 2rem;
}

.fl-brands-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.fl-brands-wrapper>a {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    color: #000;
    text-align: center;
    display: inline-block;
    margin: 0.5rem;
}

.fl-brands-wrapper>a>img {
    display: block;
    max-height: 25px;
    max-width: 100px;
    width: auto;
    height: auto;
    opacity: 0.8;
    filter: grayscale(100%);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.shop_pi_buttons_line {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0.5rem 0 0 0;
}

.shop_pi_button {
    display: inline-block;
    text-decoration: none;
    padding: 0 1rem;
    margin: 0 0 0 0.5rem;
    background: #EDEDED;
    color: #818181;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.1;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    flex-grow: 1;
}

.shop_pi_button:first-child {
    margin-left: 0;
}



.shop_pi_button_icon {
    height: 3.5rem;
    text-align: center;
    margin-left: 0.5rem;
}

.shop_pi_button.notext .shop_pi_button_icon {
    margin-left: 0;
}

.shop_pi_button_icon>.svgicon {
    width: 1.75rem;
    height: 100%;
    color: #818181;
}

.shop_pi_button.green {
    background: #7D3279;
    color: #fff;
}

.shop_pi_button.green .shop_pi_button_icon>.svgicon {
    color: #fff;
}

.shop_pi_atcline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 1rem;
    background: #EDF8EC;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
}

.shop_pi_atcline_content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    margin-bottom: 1rem;
}

.shop_pi_cant_um {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.shop_pi_um {
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    color: #989898;
    margin: 0 0 0 0.5rem;
}

.atfavsline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.atfavs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #E5F7F8;
    color: #00B3BA;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    text-decoration: none;
    padding: 1rem 1.5rem;
    margin: 0;
    border: 0;
    cursor: pointer;
    flex-grow: 1;
}

.atfavs>.svgicon {
    height: 1.5rem;
    width: 1.5rem;
    margin-left: 0.5rem;
}

.atfavs.active {
    background: #00B3BA;
    color: #E5F7F8;
}


.nofavs-notice {
    margin-top: 3rem;
}

.nofavs-notice p {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
    margin: 1rem 0 0 0;
    padding: 0;
    color: #000;
    vertical-align: middle;
}

.nofavs-notice p .svgicon {
    vertical-align: middle;
    height: 1.2rem;
    width: 1.2rem;
}

.nofavs-notice .buton1 {
    margin-top: 3rem;
}

.menubar-user-withdiscount {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    background: #54BA48;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: 500;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0 0.75rem 0 0;
}

.menubar-user-withdiscount>.tbb {
    margin-right: 0.75rem;
}

.cprice>i {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    color: #989898;
}

.csubtotal>i {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    color: #989898;
}

.ctotal>i {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    color: #989898;
}

.fourthtitle {
    margin: 2rem 0 0 0;
    padding: 0;
    position: relative;
}


.fourthtitle h4 {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    color: #000;
    margin: 0;
    padding: 1rem 1.5rem;
    position: absolute;
    top: 1px;
    left: 3rem;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    background: #fff;
    width: auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #C8E3FB;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.fourthtitle h4 .svgicon {
    height: 0.75rem;
    width: 0.75rem;
    margin-left: 1rem;
    color: #C8E3FB;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fourthlink {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    color: #7D3279;
    margin: 0;
    padding: 1rem 2rem;
    background: #fff;
    width: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #7D3279;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    display: inline-block;
}

.shop_pi_loader .donut {
    width: 2.5rem;
    height: 2.5rem;
}

.ctotalvat {
    border-top: 1px solid #C8E3FB;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    color: #3D9833;
}

.order-greutate-line {
    margin-top: 1.5rem;
    border-top: 1px solid #C8E3FB;
    padding-top: 1.5rem;
}

.closed_notice {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
    background: #ff0000;
    color: #fff;
    margin: 0;
    padding: 1rem;
}

.order-confirm-page {
    padding-top: 2rem;
}

.menubar-item-account,
.menubar-item-login,
.menubar-item-search {
    display: none;
}

.menubar-item-produse {
    flex-grow: 1;
}

.menubar-item-produse a {
    display: inline-block;
    padding: 0;
    padding: 1rem;
    margin: 0;
    background: none;
    cursor: pointer;
    border: 0;
    color: #fff;
    background: #00B3BA;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 3.2rem;
    width: auto;
    text-decoration: none;
    text-align: left;
    text-transform: uppercase;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;

    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
}

.menubar-item-produse a>.svgicon {
    margin-left: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}


.product-info a {}

.netopia {
    margin-bottom: 0.5rem;
    text-align: center;
}

.netopia>img {
    display: inline-block;
    height: 40px;
    width: auto;
}

.order-payment-tax {
    margin-top: 1.5rem;
}

.plist_taxaverde {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    z-index: 9;
    color: #53af32;
    background: #EDF8EC;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0.5rem;
}

.plist_taxaverde>.svgicon {
    width: 1.5rem;
    height: 1.5rem;
}

.plist_taxaverde>span {
    display: block;
    font-size: 0.8rem;
    line-height: 1;
    font-weight: normal;
    color: #53af32;
}

.product-page .plist_taxaverde {
    right: auto;
    left: 1rem;
    bottom: auto;
    top: 1rem;
    padding: 1rem;
}

.home-intro {
    height: auto;
    background: url('../media/trucks-bg-01.webp');
    background-repeat: none;
    background-size: cover;
    background-position: center center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

.home-intro-titles {
    display: inline-block;
}

.home-intro-title {
    margin: 0;
    padding: 1.25rem 2rem 2rem 2rem;
    color: #000;
    background: #fff;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: normal;
    text-transform: uppercase;
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.home-intro-subtitle {
    margin: 0;
    padding: 0.75rem 1rem;
    color: #fff;
    background: #7D3279;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    top: -1rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.home-search {
    width: 100%;
    background: #EDEDED;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
}

.home-intro+.featured-products {
    margin-top: 1.5rem;
}

.home-intro+.featured-products .thirdtitle {
    padding-top: 0;
    border-top: 0;
}

.spaced {
    padding-top: 4rem;
}

.whatsapp-button {
    position: fixed;
    right: 0.5rem;
    bottom: 0.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #51A351;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 90;
    text-align: center;
    display: inline-block;
}

.whatsapp-button>.svgicon {
    width: 60%;
    height: 100%;
}

.plist_techs {
    margin: 1rem 0 0 0;
    list-style: none;
    padding: 0;
}

.plist_techs li {
    display: block;
    width: 100%;
    background: #fff;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1;
    color: #000;
    font-weight: normal;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.plist_techs li:nth-child(odd) {
    background: #EDEDED;
}

.plist_techs li span {
    display: inline-block;
    width: 50%;
    color: #818181;
    padding-right: 0.5rem;
}

.shop_pi .wrapper+.featured-products {
    margin-top: 2rem;
}

.shop_pi_topinfo_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.shop_pi_rightinfo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    margin-top: 1rem;
}

.shop_pi_extrainfo_item.shop_pi_brand {
    margin-top: 1rem;
}

.shop_pi_techs {
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shop_pi_techs>li>div {
    padding: 1.5rem;
    background: #EDEDED;
    color: #000;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.shop_pi_techs>li>p {
    padding: 0;
    color: #818181;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0 0 0.75rem 0;
}

.shop_pi_details_wrapper {
    margin-top: 2rem;
}

.shop_pi_details_tabs {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop_pi_details_tabs>li {
    flex-grow: 1;
    flex-shrink: 1;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #000;
    text-align: center;
    background: #fff;
    cursor: pointer;
    padding: 1.5rem 1rem;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.shop_pi_details_tabs>li.active {
    color: #7D3279;
    background: #EDEDED;
}

.shop_pi_details_content {
    padding: 1rem;
    background: #EDEDED;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.shop_pi_details_item {
    display: none;
}

.shop_pi_details_item.active {
    display: block;
}

.shop_pi_details_item p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #000;
    text-align: left;
}

.shop_pi_details_item p:first-child {
    margin-top: 0;
}

.shop_pi_details_item ul {
    margin: 0.5rem 0 0 2rem;
    padding: 0;
    list-style: circle;
}

.shop_pi_details_item ul li {
    margin: 0.25rem 0 0 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #000;
    text-align: left;
}

.shop_pi_details_item ul li:first-child {
    margin-top: 0;
}

.shop_pi_details_item p strong {
    font-weight: 500;
}

.shop_pi_details_item p a {
    text-decoration: underline;
    color: #7D3279;
}

.shop_pi_details_item table {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
}

.shop_pi_details_item table td,
.shop_pi_details_item table th {
    border: 1px solid #fff;
    border-left-width: 0;
    border-top-width: 0;
    padding: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: normal;
    color: #000;

}

.shop_pi_details_item table td:first-child,
.shop_pi_details_item table th:first-child {
    border-left-width: 1px;
}

.shop_pi_details_item table tr:first-child td,
.shop_pi_details_item table tr:first-child th {
    border-top-width: 1px;
}

.cerere-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.cerere-prod {
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
}

.cerere-form {
    flex-grow: 1;
    flex-shrink: 0;
    width: 100%;
    margin-top: 1rem;
}

.cerere-prod .product-bottom-wrapper {
    display: none;
}

.cerere-prod .product-bottom {
    display: none;
}

.cerere-form .form-title {
    display: none;
}

.cerere-form .form1 fieldset:first-of-type {
    margin-top: 0;
}

.share-wrapper {
    display: none;
    margin-top: 0.5rem;
}

.share-wrapper.active {
    display: block;
}

.shop-pl-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.shop-pl-right {
    flex-grow: 1;
    flex-shrink: 1;
    position: sticky;
    top: 120px;
    height: 100%;
    z-index: 60;
}

.shop-pl-left {
    flex-grow: 0;
    flex-shrink: 0;
    width: 300px;
    padding: 2rem 2rem;
    background: #ededed;
    position: sticky;
    top: 120px;
    height: 100%;
    z-index: 60;
    margin-right: 2rem;
}

.flist {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.flist:last-child {
    margin-bottom: 0;
}

.flist>li {
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    margin: 0.25rem 0 0 0;
    cursor: pointer;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.flist>li:first-child {
    margin-top: 0;
}

.flist>li.active {
    color: #7D3279;
}

.flist>li.disb {
    color: #b1b1b1;
    cursor: auto;
}

.flist-title {
    margin: 0 0 1rem 0;
    padding: 0 0 0.5rem 0;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    color: #000;
    border-bottom: 1px solid #fff;
}

.flist-check {
    width: 1.5rem;
    height: 1.5rem;
    border: 1.5px solid #a6a6a6;
    background: none;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-right: 0.5rem;
    padding: 0;
    line-height: normal;
}

.flist-check>.svgicon {
    display: none;
    height: 100%;
    width: 80%;
    color: #7D3279;
}

.active .flist-check {
    border-color: #7D3279;
}

.disb .flist-check {
    border-color: #d3d3d3;
}

.active .flist-check>.svgicon {
    display: inline-block;
}

.shop-pl-left .ddclear {
    margin: 0 0 1.5rem 0;
    padding: 0.75rem;
    border: 1.5px solid #ff0000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: calc(100% - 3rem);
    justify-content: center;
}

.vand-form-wrapper {
    max-width: 600px;
    margin: 0 auto 0 auto;
}

.main {
    position: relative;
}

.shop-pl {
    position: relative;
}

.main-header {
    margin-bottom: 1rem;
    border-bottom: 1.5px solid #ededed;
}

.noheadersep .main-header {
    margin-bottom: 0;
    border-bottom-width: 0;
}

.filters-but {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    background: none;
    cursor: pointer;
    border: 2px solid #7D3279;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    white-space: nowrap;
    text-align: center;
    height: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #000;
}

.filters-close {
    position: fixed;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 220;
    border: 0;
    background: none;
    text-align: center;
    width: 3rem;
    height: 3rem;
    color: #7D3279;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.filters-close>.svgicon {
    height: 100%;
    width: 100%;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sharebuts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.sharebuts>li {
    margin-left: 0.25rem;
    flex-grow: 0;
    flex-shrink: 0;
}
.sharebuts>li:first-child {
    margin-left: 0;
}
.sharebuts>li>a {
    text-decoration: none;
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background: #ededed;
    color: #818181;
    text-align: center;
    padding: 0.5rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.sharebuts>li>a>.svgicon {
    height: 100%;
    width: 80%;
}
.sharebuts>li>a.sb-wa {
    background: #29a628;
    color: #fff;
}
.sharebuts>li>a.sb-fb {
    background: #3b5998;
    color: #fff;
}
.sharebuts>li>a.sb-mes {
    background: #0084ff;
    color: #fff;
}
.sharebuts>li>a.sb-ln {
    background: #007bb6;
    color: #fff;
}

.shop_pi_price_cond {
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    color: #000;
    margin: 0.5rem 0 0.5rem 0;
}

.shop_pi_price_faratva {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1;
    color: #989898;
    margin-top: 0.25rem;
}

/* RESPONSIVE */
@media only screen and (min-width: 767px) {
    .shop_pi_price_cond {
        margin-bottom: 0;
    }
    .flist {
        margin-bottom:2rem;
    }
    .shop-pl-left .ddclear {
        margin-bottom:2rem;
        width: 100%;
    }
    .filters-close {
        display: none;
    }
    .cerere-box {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .cerere-prod {
        flex-grow: 1;
        flex-shrink: 0;
        padding-right: 2rem;
        width: 50%;
    }

    .cerere-form {
        flex-grow: 1;
        flex-shrink: 0;
        width: 50%;
        padding-left: 2rem;
        margin-top: 0;
    }

    .main-header {
        margin-bottom: 0;
        border-bottom-width: 0;
    }

    .shop_pi_extrainfo_item a img {
        max-height: 80px;
        max-width: 200px;
    }

    .shop_pi_extrainfo {
        margin-top: 1.5rem;
    }

    .shop_pi_extrainfo_item.shop_pi_brand {
        margin-top: 2rem;
    }

    .shop_pi_topinfo_wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .shop_pi_rightinfo {
        padding-left: 2rem;
        max-width: 350px;
        margin-top: 0;
    }

    .shop_pi_details_content {
        padding: 3rem;
    }

    .shop_pi .wrapper+.featured-products {
        margin-top: 5rem;
    }

    .shop_pi_details_tabs>li {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .shop_pi_details_wrapper {
        margin-top: 3rem;
    }

    .shop_pi_techs {
        margin: 4rem 0 0 0;
        flex-wrap: nowrap;
    }

    .fl-blue {
        padding-top: 1rem;
    }

    .footer-coperta-line {
        padding-bottom: 2rem;
    }

    .home-intro-title {
        padding: 1.5rem 3rem 2rem 3rem;
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .home-intro-subtitle {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 1rem 2rem;
    }

    .home-intro {
        height: calc(100vw / 3.77);
        padding-top: 4rem;
        padding-bottom: 0;
    }

    .home-search {
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100%;
        max-width: 510px;
        background: #EDEDED;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        padding: 1.5rem;
        -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
        z-index: 10;
        margin-top: 0;
    }

    .home-intro+.featured-products {
        margin-top: 5.5rem;
    }

    .thirdtitle {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .featured-products {
        margin-top: 3rem;
    }

    .featured-products .thirdtitle {
        padding-top: 3rem;
        max-width: 1000px;
        margin: 0 auto 1.5rem auto;
    }

    .fourthtitle {
        margin-top: 4rem;
    }

    .fourthtitle h4 {
        font-size: 1.1rem;
        line-height: 1;
    }

    .fourthlink {
        font-size: 1.1rem;
        line-height: 1;
    }

    .topbar-left {
        padding-right: 3.2rem;
    }

    .topbar-right {
        display: block;
    }

    .splash-close {
        left: auto;
        bottom: auto;
        right: 0;
        top: 0;
        -webkit-transform: translate(50%, 0%);
        -ms-transform: translate(50%, 0%);
        transform: translate(50%, 0%);
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;

        -webkit-border-top-right-radius: 50%;
        -webkit-border-bottom-right-radius: 50%;
        -moz-border-radius-topright: 50%;
        -moz-border-radius-bottomright: 50%;
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
    }

    .cerere-wrapper .splash-box {
        min-width: 1000px;
    }

    .whatsapp-button {
        width: 4rem;
        height: 4rem;
        right: 1rem;
        bottom: 1rem;
    }

    .plist_stoc {
        top: 4.0rem;
        font-size: 0.9rem;
        line-height: 1;
        font-weight: normal;
    }

    .netopia {
        margin-bottom: 0;
        text-align: left;
    }

    .netopia>img {
        display: inline-block;
        height: 50px;
        width: auto;
    }

    .cptitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .cpcode,
    .cbcode {
        font-size: 0.9rem;
        line-height: 1;
    }

    .cdesc {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .shop_pi_cant {
        height: 3rem;
        width: 3rem;
    }

    .shop_pi_um {
        margin-left: 1rem
    }

    .shop_pi_total {
        margin-left: 3rem;
    }

    .shop_pi_atcline_content {
        margin-bottom: 0;
        justify-content: flex-start;
    }

    .shop_pi_buttons_line {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        margin-top: 1rem;
    }

    .shop_pi_button {
        flex-grow: 1;
        margin-top: 0;
        margin-left: 0.5rem;
    }

    .shop_pi_button:first-child {
        margin-left: 0;
    }

    .shop_pi_button.notext {
        flex-grow: 0;
    }

    .shop_pi_second_desc_caption {
        margin: 0 0 1rem 0;
        background: #49A4F2;
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1;
    }

    .shop_pi_vars {
        margin-top: 3rem;
    }

    .shop_pi_extrainfo_item {
        text-align: left;
        font-size: 1rem;
        line-height: 1;
        white-space: nowrap;
        margin-top: 0.75rem;
    }

    .atfavs {
        flex-grow: 0;
        justify-content: flex-start;
    }

    .product-page {
        padding-top: 1rem;
    }

    .shop_pi_second_desc_wrapper {
        margin-top: 2rem;
    }

    .shop_pi_atcline {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        padding: 1.5rem;
    }

    .menubar-left {
        flex-grow: 0;
        margin-right: 0;
    }

    .nofavs-notice p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .nofavs-notice p .svgicon {
        height: 1.5rem;
        width: 1.5rem;
    }

    .atc-confirm p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .atc-confirm-actions {
        margin-top: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .atc-confirm-actions>a {
        margin-left: 0.75rem;
        margin-top: 0;
        padding: 1.5rem 1.5rem;
    }

    .atc-confirm-actions>a:first-child {
        margin-left: 0;
    }

    .atc-confirm-icon {
        height: 7rem;
        width: 7rem;
    }

    .atc-message .splash-box {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .splash-box {
        min-width: 500px;
        padding: 3rem;
        width: auto;
    }

    .plist_atc_button {
        width: auto;
        font-size: 0.9rem;
        line-height: 1.1;
        padding: 1rem 1rem;
    }

    .plist_detailsbut,
    .combolist_detailsbut {
        margin: 0 0 0 0.25rem;

    }

    .plist_detailsbut:first-child,
    .combolist_detailsbut:first-child {
        margin-left: 0;
    }

    .plist_detailsbut>a,
    .combolist_detailsbut>a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        line-height: 1.1;
        height: 100%;
        min-height: 50px;
    }

    .product-bottom-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: stretch;
        margin-top: 1rem;
    }

    .product-info {
        margin-top: 1rem;
    }

    .plist_title,
    .clist_title,
    .combolist_title {
        font-size: 1rem;
        line-height: 1.4;
    }

    .plist_desc,
    .clist_desc,
    .combolist_desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .ddlabel {
        display: block;
    }

    .shop-pl-row2 {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #DEDEDE;
    }

    .plist_price,
    .combolist_price {
        font-size: 1.1rem;
        line-height: 1;
    }

    .plist_oldprice,
    .combolist_oldprice {
        font-size: 1.1rem;
        line-height: 1;
        height: 3rem;
    }

    .thirdtitle {
        font-size: 1.7rem;
        line-height: 1.3;
    }


    .shop-pl-banner {
        margin-bottom: 2rem;
    }

    .menubar-item {
        margin-left: 1rem;
    }

    .fl-brands-wrapper>a>img {
        max-height: 40px;
        max-width: 160px;
    }

    .fl-certificari-wrapper>img {
        margin-left: 1.5rem;
        height: 80px;
        width: auto;
    }

    .social>li {
        margin-left: 1rem;
    }

    .social>li>a {
        width: 3rem;
        height: 3rem;
        line-height: 1;
    }

    .menubar-item-account,
    .menubar-item-login,
    .menubar-item-home,
    .menubar-item-search {
        display: block;
    }

    .main-left {
        width: 300px;
        flex-grow: 0;
        flex-shrink: 0;
        position: relative;
        top: -2rem;
        z-index: 100;
        display: block;
    }

    .main-right {
        padding-left: 2rem;
        padding-top: 2rem;
    }

    .topbar {
        padding: 2rem 0 2rem 0;
    }

    .topbar-right {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
    }

    .topbar-left {
        width: auto;
        justify-content: flex-start;
        align-items: stretch;
        padding-right: 0;
    }

    .topbar-logo {
        margin-right: 4rem;
    }

    .menubar-wrapper-parent {
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .extrapadding {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .order-review-final .buttons-area {
        margin-top: 2rem;
    }

    .order-choices>li {
        padding: 1.5rem;
        justify-content: flex-start;
    }

    .order-choices>li.selected .order-choices-icon>.svgicon {
        display: block;
    }

    .topbar-dogspa {
        display: block;
        margin-left: 3rem;
    }

    .topbar-20ani {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }

    .hc .plist {
        justify-content: center;
    }

    .shop_pi {
        margin-left: auto;
        margin-right: auto;
    }

    .contact {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-item {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

    .contact-item p {
        text-align: left;
    }

    .contact-item h2,
    .contact-item h3,
    .contact-item h4,
    .contact-item h5,
    .contact-item h5 {
        text-align: left;
    }

    .plist_tags>li button {
        width: 3.5rem;
        height: 3.5rem;
    }

    .shop_pl_filtersline {
        text-align: left;
        margin-bottom: 3rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .shop_pl_filters_wrapper {
        margin-left: 0;
        margin-top: 0;
        padding-bottom: 0;
        border-bottom: 0;
        width: auto;
    }

    .shop_pl_filters {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
    }

    .shop_pl_filters>p {
        font-size: 1rem;
        text-align: left;
        margin: 0 2rem 0 0;
    }

    .shop_pl_filters_text {
        margin-top: 1rem;
        font-size: 1.1rem;
        line-height: 1.3;
        text-align: right;
    }

    .shop-pl-row1 {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .shop-pl-row1-right {
        margin-top: 0;
        flex-grow: 0;
        margin-left: 2rem;
    }

    .order_message_ok_icon {
        width: 7rem;
        height: 7rem;
    }

    .welcome {
        text-align: left;
        font-size: 1.2rem;
        line-height: 1.3;
        margin-left: 2rem;
    }



    .hfc {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }

    .hfc-item {
        text-decoration: none;
        display: block;
        width: calc((100% - 3rem) / 4);
        margin-top: 0;
    }

    .hfc-img {
        height: 200px;
    }

    /*.hfc-item:first-child .hfc-info {
        background: #693013;
        border-color: #e6bca6;
    }*/
    .hfc-item:nth-child(2) .hfc-info {
        background: #AF2B04;
        border-color: #F28A6B;
    }

    .hfc-item:nth-child(3) .hfc-info {
        background: #556600;
        border-color: #abbf47;
    }

    .hfc-item:nth-child(4) .hfc-info {
        background: #EDA129;
        border-color: #FFECCE;
    }

    .order-review-final {
        width: auto;
    }

    .upsale-cart-notice {
        max-width: 900px;
    }

    .hp-intro {
        order: 1;
    }



    .mobile-menu-content {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .order-page-container {}

    .gmaps-tag {
        padding: 1rem 0.5rem 1rem 1rem;
    }

    .shop_pi_toppings {
        margin-top: 1rem;
        border-top: 1px solid #EFECE5;
        padding-top: 2rem;
        text-align: left;
    }

    .shop_pi_toppings_selection {
        margin-top: 1rem;
        border-top: 1px solid #EFECE5;
        padding-top: 2rem;
    }

    .shop_pi_toppings_items>li {}

    .shop_pi_toppings_title {
        margin: 0;
        text-align: left;
    }

    .tcard-add {
        margin-left: 1.5rem;
    }

    .tcard-quantity {
        margin-left: 1.5rem;
    }

    .static {
        /*max-width: 1100px;*/
        margin: 0 auto;
    }

    .shop_pi_toppings_list {
        text-align: right;
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .shop_pi_atc_button_right {
        margin-left: 1rem;
        padding-left: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        border-left: 1px solid #80D5AF;
    }

    .shop_pi_bottom {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 2rem;
        padding: 1.5rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: center;
    }

    .shop_pi_toppings .buton3 {
        width: auto;
        margin: 0;
    }

    .upsale {
        margin: 2rem 0 0 0;
        padding-top: 2rem;
        border-top: 1px solid #EFECE5;
        width: 100%;
    }

    .shop_pi_options {
        margin-left: 0;
        width: auto;
    }

    .shop_pi_options_item>label {
        text-align: left;
    }

    .shop_pi_desc {
        margin-top: 1rem;
        text-align: left;
    }

    .shop_pi_desc>p {
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .shop_pi_vars_list {
        justify-content: flex-start;
    }

    .optb {
        justify-content: flex-start;
    }



    .shop-pl-title-line {
        /*justify-content: space-between;*/
        justify-content: center;
    }

    .shop-pl-title {
        font-size: 1.7rem;
        line-height: 1;
    }


    .shop_pl_categ_desc+.plist,
    .shop-pl-title-line+.plist,
    .shop_pl_categ_desc+.clist,
    .shop-pl-title-line+.clist {
        margin-top: 3rem;
    }

    .main-footer {
        margin-top: 6rem;
    }

    .footermenu>li::before {
        margin-right: 1rem;
    }

    .fl-categs {
        background: none;
        padding: 0;
    }

    .fl-categs .footermenu>li>a {
        font-size: 1.1rem;
        line-height: 1;
    }

    .phonebar-icon {
        top: 0.5rem;
        display: block;
    }

    .phonebar-icon>.svgicon {
        height: 2rem;
        width: 2rem;
    }

    .phonebar {
        position: absolute;
        left: 50%;
        top: 1rem;
        -webkit-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        background: none;
    }

    .phones-item {
        background: none;
        border: 1px solid #E3A446;
        color: #AF2B04;
    }

    .mobile-menu {
        max-width: 500px;
        min-width: auto;
    }

    .mainmenu>li>a {
        background: #fff;
        color: #693013;
        padding: 1rem;
    }

    .mainmenu>li.active>a {
        background: #EDA129;
        color: #fff;
    }

    .mainmenu>li {
        margin-left: 0.5rem;
    }

    .mainmenu>li:first-child {
        margin-left: 0;
    }

    .mainmenu-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
    }

    .order-section.order-voucher-section .form1-row-item input {
        width: auto;
        flex-grow: 1;
    }

    .validate-voucher {
        margin-left: 1rem;
        margin-top: 0;
        width: 40%;
    }

    .delete-voucher {
        display: none;
        margin-left: 1rem;
        margin-top: 0;
    }

    .contact-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-line {
        margin-top: 0;

    }

    .contact-line:first-child {
        margin-left: 0;
        flex-grow: 1;
        padding-right: 5rem;
    }

    .contact-line:nth-child(2) {
        width: 550px;
        padding: 3rem 5rem;
        flex-shrink: 0;
        flex-grow: 0;
    }

    .order_message_ok>p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .order_message_ok>p.order_message_main {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .oi-cell:last-child {
        padding-right: 1rem;
    }

    .oi-subtotal-produse {
        margin-bottom: 1.5rem;
    }

    .orderinfo-products {
        margin-top: 5rem;
    }

    .orderinfo-info p {
        font-size: 1rem;
        line-height: 1.4;
        text-align: left;
    }

    .orderinfo-info p.oi-subtitle {
        font-size: 1.3rem;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .orderinfo-wrapper {
        max-width: 1100px;
        margin: 4rem auto 0 auto;
    }

    .orderinfo-info {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .orderinfo-info-item {
        width: 30%;
        margin: 0;
    }

    .account-buttons {
        margin-bottom: 3rem;
        padding-left: 3rem;
    }

    .return-section {
        padding: 2rem;
    }

    .adractions {
        justify-content: flex-start;
    }

    .adrlist>li {
        text-align: left;
    }

    .add_address {}

    .no_address {
        text-align: left;
    }

    .address-section {
        text-align: left;
        margin-top: 0;
    }

    .account-line {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .account-column {
        margin-left: 1.5rem;
        flex-grow: 0;
        flex-shrink: 0;
        width: auto;
        width: 35%;
    }

    .account-column:first-child {
        margin-left: 0;
        flex-shrink: 0;
        flex-grow: 0;
        width: calc(30% - 3rem);
    }

    .account-column .secondtitle {
        text-align: left;
    }



    .terms-wrapper>label {
        font-size: 1rem;
        line-height: 1.4;
    }

    .order-section-title {
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: left;
    }

    .form1-row-inline {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .form1-row-item {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        margin-top: 0;
    }

    .form1-row-item>label {
        margin-bottom: 0;
        margin-right: 0.5rem;
        white-space: nowrap;
        text-align: left;
    }

    .form1-row-inline>.form1-row-item {
        margin-left: 1rem;
    }

    .form1-row-inline>.form1-row-item:first-child {
        margin-left: 0;
    }

    .address-header {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .address-header-item {
        margin-left: 0.5rem;
        margin-top: 0;
    }

    .address-header-item:first-child {
        margin-left: 0;
    }

    .order-section {
        margin: 0 auto;
        padding: 2rem 0rem;
        border-top: 1px solid #C8E3FB;
    }

    .order-content-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        max-width: 1400px;
        position: relative;
        margin: 0 auto;
    }

    .order-content-left {
        width: 50%;
        padding-right: 1rem;
    }

    .order-content-right {
        width: 50%;
        padding-left: 3rem;
        margin-top: 0;
        position: sticky;
        top: 100px;
    }



    .shop_pi_cant_wrapper {
        justify-content: flex-start;
        padding: 0;
        background: none;
    }

    .shop_pi_atc {
        justify-content: flex-end;
    }

    .shop_pi_config_item {
        justify-content: flex-start;
    }

    .shop_pi_config_item label {
        min-width: 100px;
    }

    .ctable-row {
        padding: 1rem 0;
    }

    .cthumb {
        width: 25%;
        padding-right: 2rem;
    }

    .cart-subtotals {
        padding: 0;
    }

    .cart-footer {
        padding: 0;
        position: relative;
        max-width: 900px;
        margin-top: 4rem;
        background: none;
    }

    .cart-footer .buttons-area {
        justify-content: flex-end;
    }

    .cart-footer .buttons-area-2 {
        justify-content: flex-start;
    }

    .cart-footer .shop_pi_atc_button {
        justify-content: center;
        padding: 1.5rem 2rem;
        margin: 0;
        font-size: 1.4rem;
        line-height: 1;
    }

    .shortcart-wrapper {
        /*position: absolute;
        right: 0;
        top: 0.5rem;
        -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        padding: 0;
        margin-left: 0;*/
        /*padding: 0.5rem 1rem 0.5rem 0.5rem;*/
    }

    .shortcart {
        display: block;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .shortcart-price {
        display: block;
    }

    .shortcart-number {
        width: 2.25rem;
        height: 2.25rem;
        line-height: 2.25rem;
        font-size: 1rem;
        right: -1rem;
    }

    .js-is-pinned .shortcart-wrapper {
        /*top: 0.5rem;
        -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);*/
    }

    .menubar.js-is-pinned {
        z-index: 110;
    }

    .topbar {
        padding: 1.5rem 0 1.5rem 0;
    }

    .topbar-right-group {
        margin-left: 3rem;
    }

    .footer-line-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .gotop {
        width: 64px;
        height: 64px;
    }

    .gotop.active {
        right: 1rem;
    }

    .menu-open-children {
        padding: 0;
    }

    .menu-open-children::after {
        top: 0.5rem;
        font-size: 1rem;
    }

    li ul li .menu-open-children::after {
        color: #fff;
    }

    .mainmenu>li.menu-has-child>.menu-open-children::after {
        top: 0.25rem;
    }

    .cnt p {
        text-align: justify;
        font-size: 1rem;
        line-height: 1.4;
    }

    .cnt ul li,
    .cnt ol li {
        font-size: 1rem;
        line-height: 1.4;
    }

    .cnt ul,
    .cnt ol {
        margin-left: 2rem;
    }

    .cnt h2,
    .cnt h3,
    .cnt h4,
    .cnt h5,
    .cnt h6 {
        margin-top: 2rem;
    }

    .cnt h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .cnt h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .cnt h4,
    .cnt h5,
    .cnt h6 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .payment-logos+.anpc {
        margin-top: 0;
    }

    .anpc>a {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .anpc>a>img {
        width: auto;
        height: 50px;
    }

    .ghid-button-wrapper {
        text-align: left;
    }

    .atc-error {
        text-align: left;
    }

    .shop_pi_back_wrapper {
        text-align: left;
    }

    .shop_pi_atc_button {
        width: auto;
        margin-left: 1rem;
    }

    .shop_pi_images_list>li {
        width: calc((100% - 1.5rem) / 4);
        margin-left: 0.5rem;
    }

    .shop_pi_images_list>li:first-child {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .shop_pi_images_list>li:nth-child(4n+2) {
        margin-left: 0;
    }

    .shop_pi_wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .shop_pi_info {
        margin: 0;
    }

    .shop_pi_left {
        width: 40%;
        padding-right: 3rem;
        position: sticky;
        top: 120px;
        height: 100%;
        z-index: 60;
    }

    .shop_pi_right {
        width: 60%;
        margin: 0;
        position: sticky;
        top: 120px;
        height: 100%;
        z-index: 60;
    }

    .shop_pi_title {
        text-align: left;
        font-size: 1.4rem;
        line-height: 1.3;
        width: auto;
        margin-left: 0;
    }


    .shop_pi_desc>p {
        text-align: justify;
    }



    .plist,
    .clist,
    .combolist {
        flex-direction: row;
    }



    .wrapper {
        max-width: 2200px;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }

    .info {
        text-align: left;
    }

    .error {
        text-align: left;
    }

    .menu-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }



    .buton1 {
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem;
        width: auto;
    }

    .delete-voucher {
        display: none;
    }

    .form1 {
        margin-left: auto;
        margin-right: auto;
    }

    .form1 .error,
    .form1 .info {
        text-align: center;
        font-size: 1rem;
        line-height: 1.4;
    }

    /* BREADCRUMBS START ----------------------------------------------------------------------------------- */
    .breadcrumbs-wrapper {
        display: block;
    }

    .breadcrumbs {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumbs li {
        margin-left: 1rem;
    }

    .breadcrumbs li::before {
        margin-right: 1rem;
        content: '|';
        display: inline-block;
        color: #ededed;
    }

    .breadcrumbs li:first-child {
        margin-left: 0;
    }

    .breadcrumbs li:first-child:before {
        display: none;
    }

    .breadcrumbs>li>a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: normal;
        line-height: 1.2;
        text-align: left;
        display: inline-block;
        color: #ccc;
    }

    /* HEADER ----------------------------------------------------------------------------------- */
    .stickybar {
        position: static;
    }

    .stickybar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        bottom: auto;
        z-index: 100;
        width: 100%;
    }

    /* FOOTER ----------------------------------------------------------------------------------- */
    .cookies-disclaimer {
        max-width: 400px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        left: 1rem;
        bottom: 1rem;
        padding: 2rem;
        background: url('../media/bg-black-60.png');
    }

    .cookies-disclaimer-more {
        text-align: justify;
        font-size: 0.9rem;
        line-height: 1.5;

    }

    .cookies-agree {
        margin-top: 1rem;
        padding: 1rem;
    }

    .footermenu {
        justify-content: center;
        margin-top: 0;
    }

    .footermenu>li {
        margin-top: 0;
        margin-left: 0.5rem;
    }

    .footermenu>li:first-child {
        margin-left: 0;
    }

    .footermenu>li>a {
        padding: 0.25rem 0.25rem;
        font-size: 0.8rem;
        line-height: 1;
    }

    .footermenu+.footermenu {
        margin-top: 0;
    }


    .categsmenu {
        list-style: none;
        width: 100%;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .categsmenu li {
        text-align: left;
        margin: 0 0 0 0.5rem;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        flex-grow: 1;
        flex-shrink: 1;
    }

    .categsmenu li:first-child {
        margin-left: 0;
    }

    .categsmenu li a {
        width: 100%;
        display: block;
        background: #7D3279;
        padding: 1rem 1rem;
        text-align: left;
        text-decoration: none;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        color: #fff;
        font-size: 1rem;
        line-height: 1.3;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .categsmenu li a>.svgicon {
        width: 4rem;
        height: 1.75rem;
        color: #fff;
        margin-right: 1rem;
        flex-shrink: 0;
        flex-grow: 0;
    }

}

@media only screen and (min-width: 1440px) {
    .footermenu>li {
        margin-left: 1rem;
    }

    .footermenu>li>a {
        padding: 0.5rem 0.25rem;
        font-size: 0.9rem;
        line-height: 1;
    }

    .extrapadding {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .main-left {
        width: 350px;
    }

}

@media only screen and (min-width: 1700px) {

    .tbb {

        height: 3.2rem;
        width: 3.8rem;
    }

    .wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .extrapadding {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .topbar {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .topmenu a {
        font-size: 1rem;
        line-height: 1;
    }

    .lang_url ul>li>a {
        font-size: 0.9rem;
        line-height: 1;
    }

    .menubar-login-submenu a {
        font-size: 1rem;
        line-height: 1;
    }

    .menubar-item {
        margin-left: 2rem;
    }

    .searchkey {
        font-size: 1rem;
        width: 350px;
    }

    .categsmenu li a {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .form1 input[type='email'],
    .form1 input[type='password'],
    .form1 input[type='text'],
    .form1 input[type='tel'],
    .form1 select,
    .form1 textarea {
        font-size: 1rem;
        line-height: 1;
    }

    .contact-item p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .plist_title,
    .clist_title,
    .combolist_title {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .main-right {
        padding-left: 3rem;
    }

    .product-page {
        padding-top: 2rem;
    }

    .shop_pi_title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .shop_pi_left {
        padding-right: 4rem;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1399px) {

    .plist>li,
    .clist>li,
    .combolist li {
        width: calc((100% - 4rem) / 3);
        margin-top: 3rem;
        position: relative;
        margin-left: 2rem;
        border-top: 0;
    }

    .plist>li:nth-child(-n+3),
    .clist>li:nth-child(-n+3),
    .combolist li:nth-child(-n+3) {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .plist>li:nth-child(3n+1),
    .clist>li:nth-child(3n+1),
    .combolist li:nth-child(3n+1) {
        margin-left: 0;
    }

    .cbl {
        flex-direction: row;
    }

    .cbl li {
        width: calc((100% - 4rem) / 3);
        margin-top: 3rem;
        position: relative;
        margin-left: 2rem;
    }

    .cbl li:nth-child(-n+3) {
        margin-top: 0;
    }

    .cbl li:nth-child(3n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1699px) {

    .plist>li,
    .clist>li,
    .combolist li {
        width: calc((100% - 6rem) / 4);
        margin-top: 3rem;
        position: relative;
        margin-left: 2rem;
        border-top: 0;
    }

    .plist>li:nth-child(-n+4),
    .clist>li:nth-child(-n+4),
    .combolist li:nth-child(-n+4) {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .plist>li:nth-child(4n+1),
    .clist>li:nth-child(4n+1),
    .combolist li:nth-child(4n+1) {
        margin-left: 0;
    }

    .cbl li {
        width: calc((100% - 6rem) / 4);
        margin-top: 3rem;
        position: relative;
        margin-left: 2rem;
    }

    .cbl li:nth-child(-n+4) {
        margin-top: 0;
    }

    .cbl li:nth-child(4n+1) {
        margin-left: 0;
    }

    .shop-pl-right .plist>li {
        width: calc((100% - 4rem) / 3);
        margin-top: 3rem;
        margin-left: 2rem;
    }

    .shop-pl-right .plist>li:nth-child(-n+4) {
        margin-top: 3rem;
        padding-top: 0;
    }

    .shop-pl-right .plist>li:nth-child(4n+1) {
        margin-left: 2rem;
    }

    .shop-pl-right .plist>li:nth-child(-n+3) {
        margin-top: 0;
        padding-top: 0;
    }

    .shop-pl-right .plist>li:nth-child(3n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1700px) {

    .plist>li,
    .clist>li,
    .combolist li {
        width: calc((100% - 6rem) / 4);
        margin-top: 3rem;
        position: relative;
        margin-left: 2rem;
        border-top: 0;
    }

    .plist>li:nth-child(-n+4),
    .clist>li:nth-child(-n+4),
    .combolist li:nth-child(-n+4) {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .plist>li:nth-child(4n+1),
    .clist>li:nth-child(4n+1),
    .combolist li:nth-child(4n+1) {
        margin-left: 0;
    }

    .cbl li {
        width: calc((100% - 6rem) / 4);
        margin-top: 3rem;
        position: relative;
        margin-left: 2rem;
    }

    .cbl li:nth-child(-n+4) {
        margin-top: 0;
    }

    .cbl li:nth-child(4n+1) {
        margin-left: 0;
    }
}

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

    /* JUST MOBILE */
    .just-desktop {
        display: none !important;
    }

    .menu-open-children::after {
        /*padding: 0 0.5rem;*/
    }

    .menu-item li ul li .menu-open-children::after {
        color: #fff;
    }

    .menubar.js-is-pinned {
        /*padding-right: 3.7rem;*/
    }

    .mainmenu-wrapper {
        overflow-y: hidden;
        overflow-x: auto;
        scrollbar-width: none;
        scrollbar-color: transparent transparent;
        -ms-overflow-style: none;
    }

    .validate-voucher>span {
        display: none;
    }

    .mainmenu>li:first-child>a {
        background: #693013;
    }

    .mainmenu>li:nth-child(2)>a {
        background: #0B623B;
    }

    .mainmenu>li:nth-child(3)>a {
        background: #556600;
    }

    .mainmenu>li:nth-child(4)>a {
        background: #AF2B04;
    }

    .mainmenu>li:nth-child(5)>a {
        background: #67B255;
    }

    .mainmenu>li:nth-child(6)>a {
        background: #EDA129;
    }

    .mainmenu>li:nth-child(7)>a {
        background: #692B51;
    }

    .menubar>.wrapper {
        width: 100%;
    }

    .shortcart-price {
        display: none;
    }

    .shortcart-icon {
        border-right: 0;
        padding-right: 0;
        margin-right: 0;
        color: #fff;
        background: #3B75C3;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        height: 3.2rem;
        width: 3.2rem;
    }

    .shortcart-icon>.svgicon {
        height: 100%;
    }

    .plist,
    .clist {
        flex-direction: row;
        flex-wrap: wrap;
    }

    /*.plist>li,
    .clist>li,
    .combolist li {
        width: calc((100% - 1rem) / 2);
        margin-top: 2rem;
        position: relative;
        margin-left: 1rem;
        border-top: 0;
    }

    .plist>li:nth-child(-n+2),
    .clist>li:nth-child(-n+2),
    .combolist li:nth-child(-n+2) {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .plist>li:nth-child(2n+1),
    .clist>li:nth-child(2n+1),
    .combolist li:nth-child(2n+1) {
        margin-left: 0;
    }*/


    .cbl {
        flex-direction: row;
    }

    .cbl li {
        width: calc((100% - 1rem) / 2);
        margin-top: 2rem;
        position: relative;
        margin-left: 1rem;
    }

    .cbl li:nth-child(-n+2) {
        margin-top: 0;
    }

    .cbl li:nth-child(2n+1) {
        margin-left: 0;
    }

    .shop-pl-row2 .dditem {
        flex-grow: 1;
    }

    .shop-pl-row2 .dditem:first-child {
        margin-left: 0;
    }

    .shop-pl-row2 .dditem .ddbox {
        width: 100%;
    }

    .ddoptions-wrapper {
        width: calc(95vw - 4rem);
    }

    .plist_inactive {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .ao-cell {
        display: none;
        width: auto;
    }

    .ao-cell.onmobile {
        display: block;
    }

    .ao-cell.aotitle {
        flex-grow: 1;
        max-width: none;
    }

    .plist .plist_taxaverde {
        display: none;
    }

    .shop_pi_techs>li {
        margin-left: 0.5rem;
        width: calc((100% - 0.5rem) / 2);
        flex-grow: 0;
        flex-shrink: 0;
        margin-top: 0.5rem;
    }

    .shop_pi_techs>li:nth-child(2n+1) {
        margin-left: 0;
    }

    .shop_pi_techs>li:nth-child(-n+2) {
        margin-top: 0;
    }

    .cerere-wrapper .splash-box {
        height: calc(100% - 3rem);
        margin-top: -1rem;
    }

    .cerere-box {
        height: 100%;
        overflow-y: auto;
    }

    .shop-pl-left {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 200;
        width: calc(100% - 2rem);
        height: 100vh;
        overflow-y: auto;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }

    .shop-pl-left.visible {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .shop-pl-row2 {
        position: sticky;
        top: 0;
        z-index: 210;
        background: #fff;
        padding: 0.75rem 4rem 0.75rem 0;
        background: #fff;
        margin-bottom: 0.25rem;
    }

    .shop-pl-row1 {
        margin-bottom: 0.25rem;
    }
}

@media only screen and (min-width: 767px) {

    /* JUST DEKSTOP */
    .just-mobile {
        display: none !important;
    }

    .shop_pi_techs>li {
        margin-left: 0.5rem;
        width: calc((100% - 1.5rem) / 4);
        flex-grow: 0;
        flex-shrink: 0;
    }

    .shop_pi_techs>li:first-child {
        margin-left: 0;
    }
}

@media (hover: hover) {

    /* HOVER */
    .mainmenu>li:hover>ul {
        display: block;
    }

    .mainmenu>li>ul>li:hover>ul {
        display: block;
        left: 100%;
    }

    .cookies-disclaimer-more:hover {}

    .cookies-agree:hover {
        background: #478300;
        color: #fff;
    }

    .buton1:hover {
        background: #C48DD5;
    }

    .buton2:hover {
        color: #49A4F2;
    }

    .footermenu>li:hover>a,
    .footermenu>li>a:hover {
        color: #C48DD5;
    }

    .social>li:hover a,
    .social>li>a:hover {
        color: #C48DD5;
    }

    .plist_tags>li:hover button>.plist_tagname {
        display: block;
    }

    .ddoptions li:not(.active):hover {
        background: #C48DD5;
        color: #fff;
    }

    .topmenu a:hover {
        color: #7D3279;
    }

    .lang_url a:hover {
        color: #7D3279;
    }

    .searchbutton:hover {
        background: #7D3279;
        color: #fff;
    }

    .categsmenu>li:not(.active) a:hover {
        background: #9E0EAA;
    }

    .plist_detailsbut>a:hover,
    .combolist_detailsbut>a:hover {
        background: #999;
    }

    .plist_detailsbut>a.green:hover,
    .combolist_detailsbut>a.green:hover {
        background: #C48DD5;
    }
}