@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: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #00BE33;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: donut-spin 1.2s linear infinite;
}



/* Regulile de bază IOAN */
.roboto-flex-regular {
    font-family: "Roboto Flex", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;
}

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: #009045;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
}

.infomes {
    display: none;
    color: #009045;
    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: 3rem;
    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: #8F5163;
    -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.4rem;
    line-height: 1.3;
    font-weight: normal;
    padding: 0;
    color: #8F5163;
    text-transform: none;
}

.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: #00BE32;
    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;
    border-radius: 50px;
    text-transform: uppercase;
}

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

.buton2 {
    color: #A7A0A0;
    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: #2E1E1F;
    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 #ff8aab;
    margin: 0 auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-transform: none;
}

.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: #2E1E1F;
    background: #fff;
    border: 1px solid #A7A0A0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    padding: 0.75rem 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;
}

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

.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: #ff8aab;
}

.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: 1.5rem 0 1.5rem 0;
    background: #fff;
    display: none;
}

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

/* HEADER ----------------------------------------------------------------------------------- */
.lang_url {
    position: relative;
    z-index: 90;
}

.lang_url>a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1;
    color: #4d4d4d;
    text-transform: uppercase;
    vertical-align: middle;
}

.lang_url>a .arrow {
    display: inline-block;
    margin-left: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-color: #999;
    transition: 0.2s;
    position: relative;
    top: -0.2rem;
}

.lang_url ul {
    list-style: none;
    position: absolute;
    display: none;
    right: 0;
    padding: 0.5rem 0 0 0;
    margin: 0;
}

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

.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: #1A1A18;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1;
    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;
    background: none;
}

.mainmenu li {
    position: relative;
}

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

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

.mainmenu>li>a {
    background: #fff;
    border-radius: 50px;
    padding: 1.25rem 1.25rem;
    white-space: nowrap;
}

.mainmenu>li ul li {
    padding-top: 2px
}

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

.mainmenu>li>ul {
    z-index: 200;
    padding-left: 3rem;
    min-width: 200px;
}

.mainmenu>li>ul li a {
    white-space: nowrap;
    padding: 1.25rem 2rem;
    line-height: 1;
    text-align: left;
}

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

.mainmenu>li>ul>li:first-child>a,
.mainmenu>li>ul>li>ul>li:first-child>a {
    border-top-right-radius: 16px;
}

.mainmenu>li>ul>li:last-child>a,
.mainmenu>li>ul>li>ul>li:last-child>a {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
}

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

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

.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: #00953F;
}

.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%;
    background: none;
    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.mm-homepage a {
    color: #fff;
}

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

.mobile-menu li.mm-distanced {
    margin-top: 0.5rem;
}

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

.mobile-menu li.mm-special a {
    font-family: "Pacifico", serif;
    font-weight: normal;
    text-transform: none;
    font-size: 1.7rem;
    line-height: 1;
    color: #fff;
}

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

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

.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: 1.5rem;
    width: 1.5rem;
    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: #9B9280;
    border: 0;
    cursor: pointer;
    line-height: 1;
    margin: 0;
    height: 3.2rem;
    width: 3.2rem;
    flex-shrink: 0;
    /*position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 80;*/
}

.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;
}


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

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

.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-line-row-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
}

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

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

.footermenu {
    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;
    align-items: center;
}

.footermenu>li {
    margin: 0.5rem 0 0 0;
}

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

.footermenu>li:first-child::before {
    display: none;
}

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

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

.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: 500;
}

.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: #00BE32;
    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: #8f5163;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 450;
    -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%);
}

.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;
}

.searchkey {
    flex-grow: 1;
    flex-shrink: 1;
    line-height: 2.5rem;
    padding: 0;
    border: 0;
    margin: 0;
    text-align: left;
    background: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
}

.searchkey:focus {
    border-color: #ff8aab;
}

.searchbutton {
    border: 0;
    padding: 0 1rem;
    margin: 0 0 0 1rem;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    font-weight: normal;
    line-height: 2.5rem;
    background: #ff8aab;
    color: #fff;
    white-space: nowrap;
    flex-grow: 0;
    flex-shrink: 0;
    text-transform: uppercase;
}

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

.search-wrapper .infomes {
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    background: #ff0000;
    color: #fff;
    padding: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
    -webkit-transform: translate(0%, 100%);
    -ms-transform: translate(0%, 100%);
    transform: translate(0%, 100%);
    z-index: 10;
    text-align: left;
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}



/* STATIC PAGE ------------------------------------------------------------------------------------------ */
.cnt {
    display: block;
}

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

.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: #1A1A18;
}

.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: #00BE33;
}

.cnt h2,
.cnt h3,
.cnt h4,
.cnt h5,
.cnt h6 {
    font-weight: normal;
    color: #00953F;
    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: #00953F;
}

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

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

.cnt b,
.cnt strong {
    font-weight: 500;
    color: #00953F;
}


/* 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: 2px solid #ccc;
}

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

.contact-item p {
    text-align: center;
    font-weight: normal;
    font-size: 1rem;
    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: #bb4e72;
}

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

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

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

.contact-line:nth-child(2) {
    padding: 2rem 2rem;
    background: #F0F0F0;
}

.map {
    width: 100%;
    height: 300px;
    margin-top: 1.5rem;
}

.contact-intro {
    margin-bottom: 1.5rem;
}

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

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


/* 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;
    margin: 0;
    padding: 0;
}

.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;
    height: 300px;
}

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


/* 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;
    margin-left: 1.25rem;
}

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

.shortcart-info {
    text-decoration: none;
    color: #8F5163;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: relative;
    cursor: pointer;
    margin-right: 0.75rem;
}

.shortcart-empty .shortcart-info {}

.shortcart-info .svgicon {
    width: 1.7rem;
    height: 1.7rem;
}

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

.shortcart-empty .shortcart-number {}

.shortcart-price {
    position: absolute;
    z-index: 316;
    bottom: -1.5rem;
    right: 50%;
    background: #8f5163;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    padding: 0.75rem;
    display: none;
    -webkit-border-radius: 5px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-topright: 0;
    border-radius: 5px;
    border-top-right-radius: 0;
}

.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;
    align-items: flex-start;
    padding: 1rem 1rem;
    background: #fff;
}

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

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

.cthumb {
    width: 40%;
    padding: 0 0 0 0;
    margin: 0;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    height: 110px;
}

.cthumb>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.cpcode {
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1;
    text-align: left;
    font-weight: normal;
    color: #8f8f8f;
    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: #8f8f8f;
    font-weight: normal;
    text-align: left;
    display: none;
}

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

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

.cart-del-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;
    text-decoration: none;
    margin-top: 0.5rem;
}

.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 #F0ECE5;
}

.csubtotal {
    text-align: right;
    margin-left: 1rem;
    white-space: nowrap;
    color: #8F5163;
}

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

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

.cart-subtotals {
    padding: 0 1rem;
    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: #8F5163;
}

.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 {
    background: #ffefef;
    color: #ff0000;
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
    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: flex-start;
    align-items: center;
}

.cerror>.svgicon {
    display: inline-block;
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
    flex-grow: 0;
    flex-shrink: 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;
    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;
}

.cart-order-line-error>.svgicon {
    display: inline-block;
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.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: 7rem;
    width: 7rem;
    background: green;
    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: row;
    flex-wrap: wrap;
    justify-content: center;
}

.atc-confirm-actions>a {
    margin-left: 1rem;
    text-decoration: none;
    padding: 1rem;
    border: 1px solid #999;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    font-weight: normal;
    color: #999;
}

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

.atc-confirm-actions>a.atc-confirm-finalize {
    border-color: green;
    color: green;
}


.longcart {}

.cart-del {
    color: #8f8f8f;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 0.9rem;
    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;
}

.cart-del>.svgicon {
    height: 1.5rem;
    width: 1.5rem;
    display: none;
}

.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: #9B9280;
    margin: 0.5rem 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: nowrap;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.product-bottom {
    margin-top: auto;
    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;
    align-items: center;
}

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

.product-image>a {
    display: block;
    width: 100%;
    height: 130px;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.plist_desc,
.clist_desc,
.combolist_desc {
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: left;
    margin: 0.25rem 0 0 0;
    color: #8f8f8f;
    display: none;
    text-decoration: none;
}

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

.clist_count {
    margin: 0.5rem 0 0.75rem 0;
    padding-top: 0.75rem;
    text-align: right;
    color: #8f8f8f;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    border-top: 1px solid #F0ECE5;
}

.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.5rem 0 0 0;
    width: 100%;
}

.plist_price,
.combolist_price {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #8F5163;
}

.plist_price>span {
    color: #8F5163;
}

.plist_oldprice,
.combolist_oldprice {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    margin: 0.5rem 0 0.5rem 0;
    padding: 0;
    color: #FF5356;
    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_oldprice_icon {
    background: #FF5356;
    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.5rem;
    top: 0.5rem;
    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;
}

.plist_bulina {
    background: #AF2B04;
    color: #fff;
    width: 3rem;
    height: 3rem;
    -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.25rem 0 0 0;
    font-size: 0.9rem;
    font-weight: normal;
}

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

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

.plist_bulina_nou {
    background: #8f5163;
}

.plist_bulina_promo {
    background: #ffc21d;
    flex-direction: row;
    flex-wrap: nowrap;
    color: #8F5163;
}

.plist_detailsbut,
.combolist_detailsbut {
    width: 100%;
}

.plist_detailsbut>a,
.combolist_detailsbut>a {
    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;
    text-decoration: none;
    text-align: center;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 0;
    background: #f5f5f5;
    color: #8F5163;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.plist_stoc {
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #000;
    font-weight: normal;
}

.plist_stoc_empty {
    color: #999;
}

.plist_stoc_redus {
    color: red;
}

.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;
    margin-top: 0.5rem;
}

.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 #A7A0A0;
    color: #A7A0A0;
    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: 50%;
}

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

.plist_atc_button {
    padding: 1rem 0.75rem;
    background: #bb4e72;
    border: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    margin: 0 0 0 0.5rem;
    color: #ffffff;
    cursor: pointer;
}

.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: #ff8aab;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

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

.product-card.unbuyable .plist_atc_button_icon {
    display: none;
}

/*.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;
}

.plist_inactive {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 25;
    cursor: pointer;
    border: 0;
    padding: 0.5rem;
    background: #999;
    color: #fff;
    display: block;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
}

.shop_pi_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;
    position: relative;
}

.shop_pi_left {
    order: 0;
}

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

.shop_pi_images {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 0.5rem;
}

.shop_pi_info {}

.shop_pi_title {
    margin: 0 auto 0 auto;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    color: #8F5163;
    width: 95%;
}

.shop_pi_code {
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    margin: 0.5rem 0 0 0;
    padding: 0;
}

.shop_pi_desc {
    margin: 0.5rem auto 0 auto;
    width: 95%;
}

.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: #8f8f8f;
}

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

.shop_pi_desc p strong {
    font-weight: 500;
}

.shop_pi_desc ul {
    list-style: circle;
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.shop_pi_desc li {
    margin-top: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #8f8f8f;
}

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

.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: right;
    margin-top: 1rem;
    display: none;
}

.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 {
    margin-top: 0.5rem;
    width: calc((100% - 1rem) / 3);
    margin-left: 0.5rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

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

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

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

.shop_pi_images_list>li>a>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop_pi_images_list>li:first-child>a {
    height: 30vh;
}



.shop_pi_vars {
    margin-top: 2rem;
}

.shop_pi_cant_wrapper {
    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: center;
    background: #f5f5f5;
    padding: 1rem;
}

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

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

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

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

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

.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;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    background: #bb4e72;
    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: space-between;
    align-items: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-decoration: none;
}

.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: #ff8aab;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

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

.unbuyable .shop_pi_atc_button {
    background: #e8d7a7;
    color: #693013;
}

.unbuyable .shop_pi_atc_button_right {
    border-color: #693013;
}

.unbuyable .shop_pi_total,
.unbuyable .shop_pi_total>span {
    color: #693013;
}

.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;
    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>li {
    margin-left: 1rem;
}

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

.shop_pi_vars_list>li>button {
    background: #f9f9f9;
    padding: 0.75rem 1rem;
    margin: 0;
    cursor: pointer;
    border: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    font-weight: normal;
    color: #9D9D9D;
    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: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

.shop_pi_vars_list>li>button.active {}

.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: #2E1E1F;
    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: #ffffff;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
}

.shop_pi_total>span {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1;
    color: #ffffff;
}

.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.4rem;
    line-height: 1.3;
    font-weight: normal;
    color: #693013;
    width: 90%;
    font-family: "Pacifico", serif;
}

.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: #2E1E1F;
    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: #2E1E1F;
}

.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: #518300;
    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-name {
    font-family: "Pacifico", serif;
    font-size: 1.3rem;
}

.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: #2E1E1F;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #ff8aab;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.tcard-remove {
    padding: 0.5rem;
    text-align: center;
    background: #ededed;
    color: #2E1E1F;
    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 {}

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

.order-section {
    margin: 0 auto;
    padding: 1.5rem 0;
    /*border-top: 1px solid #EFECE5;*/
    width: 95%;
}

.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-ty-wrapper {
    text-align: center;
    margin: 0 auto 0 auto;
    max-width: 700px;
}

.order-ty-title {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.3;
    color: #bb4e72;
    text-align: center;
}

.order-ty-desc {
    margin-top: 1rem;
}

.order-ty-desc p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #8f8f8f;
}

.order-ty-icon {
    width: 5rem;
    height: 5rem;
    color: #fff;
    background: #ff8aab;
    margin: 0 auto 1rem auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.order-ty-icon>.svgicon {
    width: 50%;
    height: 100%;
    color: #fff;
}

.order-ty-back {
    margin-top: 2rem;
}

.order-ty-error .order-ty-icon {
    background: #ff0000;
}

.order-ty-error .order-ty-title {
    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;
    align-items: center;
    margin: 0.5rem 0 0 0;
    border-top: 1px solid #F0ECE5;
    padding-top: 1rem;
}

.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: #8F5163;
}

.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: #8F5163;
}

.order-review-total {
    /*padding-top: 1rem;
    border-top: 1px solid #ccc;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;*/
}

.order-review-final {
    margin: 2rem auto 0 auto;
    text-align: center;
    width: 95%;
}




.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: #FE3B9D;
}

.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: #f5f5f5;
    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: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.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;
    background: #fde6ec;
}

.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-separated {
    margin-top: 1.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-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: #2E1E1F;
    text-align: center;
}

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

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

.form1-row-item>label.mandatory a {
    color: #FF2F22;
    text-decoration: underline;
}

.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: #D6B36A;
    -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 #D6B36A;
    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: none;
}

.stickybar {
    position: sticky;
    top: -1px;
    z-index: 410;
    background: #fff;
}

.main-header {
    padding-bottom: 0.5rem;
}

.menubar {
    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;
    width: auto;
    padding: 0.5rem 0 0.5rem 0;
}

.menubar-underline {
    height: 10px;
    background: #D6B36A;
    border-radius: 50px;
}

.menubar-item {
    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;
}

.menubar-item .social {
    margin-left: 2rem;
}

.header-content {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#007933+0,00953f+100 */
    background: linear-gradient(to bottom, #007933 0%, #00953f 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    position: relative;
    margin-bottom: 4rem;
}

.header-content-wrapper {
    position: relative;
    height: 150px;
    -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;
}

.header-content-underline {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: 50%;
    height: 10px;
    background: #fff;
    border-radius: 50px;
    z-index: 100;
}

.datebar {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    z-index: 101;
}

.datebar-content {
    text-align: center;
    font-size: 1.75rem;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
    background: #00BE33;
    border-radius: 50px;
    padding: 1.25rem 2.25rem;
    -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;
}

.stickybar.js-is-pinned .logo>img {
    height: 100px;
    width: auto;
}

.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: 0.5rem;
    top: 0.25rem;
    color: #fff;
    font-size: 1.4rem;
}

.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;
}

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

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

.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: wrap;
    justify-content: center;
}

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

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

.social>li>a {
    text-decoration: none;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1;
    color: #AFAFAF;
    text-align: center;
}

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

.logo {
    text-decoration: none;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 0.5rem;
    z-index: 105;
    border: 10px solid #fff;
    border-radius: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    -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;
}

.logo>img {
    border: 0;
    height: 150px;
    width: 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;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
    border: 10px solid #fff;
    border-radius: 50%;
}

.footer-logo>img {
    display: block;
    border: 0;
    height: 110px;
    width: auto;
}

.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: #9D9D9D;
    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: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 100%;
}

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

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

}

.plist_vars_item.active {}


.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 {
    margin-left: 1rem;
}

.emptylist {
    padding: 2rem 0;
    margin: 0;
    font-size: 1.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: 1rem 0;
    padding: 1rem;
    background: #ededed;
}

.featured-products {
    margin: 3rem auto 0 auto;
    width: 95%;
    padding-top: 2rem;
    border-top: 1px solid #F0ECE5;
}

.thirdtitle {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #693013;
}

.featured-products .thirdtitle {
    margin-bottom: 2rem;
}

.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 #bb4e72;
    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: #2E1E1F;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.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: #FE3B9D;
    margin-right: 0.5rem;
    display: none;
}

.order-choices-info-title {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #2E1E1F;
    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: #999;
    text-align: left;
}

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

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

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

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

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

.order-choices>li.selected .order-choices-icon>.svgicon {
    /*display: block;*/
}

.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: #FE3B9D;
    border-color: #FE3B9D;
    color: #fff;
    font-weight: normal;
    font-size: 1.4rem;
    line-height: 1;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
    padding: 2rem;
    width: 100%;
    text-transform: uppercase;
}

.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%;
}


.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: #8F5163;
}


.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: 1rem 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: #FF5356;
}

.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: #2E1E1F;
}

.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: #f5f5f5;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    position: relative;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.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 #ff8aab;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    color: #ff8aab;
    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: #FF5356;
    border-color: #FF5356;
}

.adrlist>li.fav {}

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

.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: #F4FBFF;
}

.ao-row.ao-status-0 .ao-cell {
    background: #FFF4F4;
}

.ao-row.ao-status-1 .ao-cell {
    background: #F4FFF8;
}

.ao-row.ao-status-3 .ao-cell,
.ao-row.ao-status-3 .aodesc {
    color: #d0d0d0;
}

.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 #ff8aab;
    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 #ff8aab;
    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: #2E1E1F;
}

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

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

.orderinfo {}

.orderinfo .maintitle {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 0;
}

.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: #bb4e72;
    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: #bb4e72;
    color: #fff;
    padding: 0.75rem;
}

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

.oi-link {
    color: #bb4e72;
    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: #bb4e72;
    border-color: #bb4e72;
}

.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: #bb4e72;
    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: #f5f5f5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.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%;
    padding-top: 2rem;
    border-top: 1px solid #F0ECE5;
}

.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: #518300;
}

.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;
    font-family: "Pacifico", serif;
    font-size: 1.3rem;
    line-height: 1.3;
}

.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 {
    flex-shrink: 0;
    flex-grow: 0;
    margin-left: 1rem;
}

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

.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: #8f8f8f;
}

.od-pbi-icon {
    color: #ff8aab;
    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%;
    flex-shrink: 0;
    flex-grow: 0;
}

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

.od-pbi.active .od-pbi-icon {
    background: #8F5163;
    border-color: #8F5163;
    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: #fef3ff;
    border: 0;
}

.so-credit-icon {
    color: #ff8aab;
    margin-right: 1rem;
    width: 2rem;
    height: 2rem;
    text-align: center;
    background: none;
    border: 1px solid #ff8aab;
    -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: #ff8aab;
    border-color: #ff8aab;
    color: #fff;
}

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

.order-voucher-section {
    border-top: 1px solid #F0ECE5;
}

.order-payment-section {
    border-top: 1px solid #F0ECE5;
}

.voucher_response {
    display: none;
    margin-top: 1rem;
    text-align: center;
    color: #ff8aab;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    border-top: 1px solid #ff8aab;
    padding-top: 1rem;
}

.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: #8f5163;
    display: none;
}

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


html,
body,
input,
select,
textarea {
    font-family: "Rubik", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "XOPQ" 96,
        "XTRA" 468,
        "YOPQ" 79,
        "YTAS" 750,
        "YTDE" -203,
        "YTFI" 738,
        "YTLC" 514,
        "YTUC" 712;
}


.fl-main {
    background: #1A1A18;
    padding: 2rem 0;
    position: relative;
}

.fl-main-underline {
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 60%;
    height: 10px;
    background: #D6B36A;
    border-radius: 50px;
    z-index: 100;
}


.fl-social {
    margin-top: 1rem;
}

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

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

.fl-social .social>li>a {
    width: 2.6rem;
    height: 2.6rem;
    line-height: 1;
    color: #fff;
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
}

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




.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;
}


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

.phones-item {
    text-decoration: none;
    background: #fef3ff;
    color: #AF2B04;
    font-size: 0.95rem;
    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;
    border: 2px solid #fef3ff
}

.phones>li:first-child .phones-item {
    border-color: #AF2B04;
}

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

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

.tbb {
    padding: 0;
    margin: 0 0 0 1.25rem;
    background: none;
    cursor: pointer;
    border: 0;
    color: #8F5163;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.tbb:first-child {
    margin-left: 0;
}

.tbb>.svgicon {
    width: 1.4rem;
    height: 1.4rem;
}

.tbb .live {
    display: block;
    position: absolute;
    right: -0.25rem;
    top: -0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    background: #9fec29;
    -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 #ff8aab;
    background: none;
    text-align: center;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    color: #2E1E1F;
    margin: 0;
    padding: 1rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

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

.shop_pi_bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 205;
    background: #f5f5f5;
    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: #2E1E1F;
    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-reclamatii {
    margin-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.hp-reclamatii-but {
    text-decoration: none;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #0b623b;
    padding: 1rem;
    border: 1px solid #67b255;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.hp-promos {
    padding: 1rem;
    background: #ff8aab;
    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: 1.5rem;
    position: relative;
}

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

.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: #ff8aab;
}

.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: #2E1E1F;
    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;
}

label[for="oa_phone"],
label[for="oa_email"],
label[for="oa_firstname"],
label[for="oa_lastname"],
label[for="oo_obs"],
label[for="od_street"],
label[for="od_postalcode"],
label[for="od_streetno"],
label[for="od_adr"],
label[for="od_companyname"],
label[for="od_city"],
label[for="od_cityid"],
label[for="login_password"],
label[for="add_delivery_extra"],
label[for="add_delivery_streetno"],
label[for="add_delivery_street"],
label[for="add_delivery_cityid"] {
    display: none;
}

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

.subtitle span {
    color: #8F5163;
}

.order-login {
    padding: 1.5rem;
    background: #f5f5f5;
    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;
}


.secondmenu {
    margin-left: 1rem;
}

.secondmenu li {
    border-left: 1px solid #78B060;
}

.secondmenu li:first-child {
    border-left: 0;
}

.secondmenu li a {
    color: #fff;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-weight: normal;
}

.order-review-cart {
    display: none;
    margin-bottom: 2rem;
}

.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: #0C623B;
}

.cashback-line p {
    text-align: right;
    color: #0C623B;
}

.upsale-cart-notice {
    text-align: center;
    text-decoration: none;
    display: block;
    padding: 1.5rem;
    margin: 0.5rem auto 0 auto;
    background: #0C623B;
    -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-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;
}

.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;
    text-align: center;
    width: 100%;
    position: relative;
    margin-top: 0.5rem;
    overflow: hidden;
    background: #ffffff;
    color: #fff;
}

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

.hfc-title {
    padding: 1rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    text-align: left;
    text-transform: none;
    flex-grow: 1;
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    /*-webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);*/
    padding: 1rem;
    background: #8F5163;
    letter-spacing: 1px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


.hfc-img {
    height: 200px;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    overflow: hidden;
}

.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: 1rem 0 1rem 0;
    padding: 0;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1.3;
    color: #ff8aab;
}

.footermenu-categs li ul {
    display: none;
}

.shop-pl-intro {
    margin-bottom: 1rem;

}

.shop-pl-row1 {
    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-row1-left {
    flex-grow: 1;
}

.shop-pl-row1-right {
    flex-grow: 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;
}

.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 {
    position: relative;
}

.shop_pl_filters_text {
    margin-top: 1rem;
    display: none;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: right;
    background: #E33223;
    color: #fff;
    position: absolute;
    right: 0;
    padding: 0.5rem 0.75rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    white-space: nowrap;
}

.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;
    display: none;
}

.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 #fff;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    background: none;
    width: 3.2rem;
    height: 3.2rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
}

.plist_tags>li button.active {
    border-color: #710A12;
    color: #710A12;
}

.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: #00953F;
    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: #8f8f8f;
    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"] {
    display: none;
}

.contact-form .buton1 {
    width: 100%;
}

.reclamatii-form {
    margin-top: 1.5rem;
    background: #f5f5f5;
    padding: 2rem 2rem;
}

.call-button {
    width: 3.6rem;
    height: 3.6rem;
    text-align: center;
    background: #000;
    color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    text-decoration: none;
}

.call-button>.svgicon {
    height: 100%;
    width: 50%;
}

.spaced {
    margin-top: 1.5rem;
}

.spaced-s {
    margin-top: 0.25rem;
}

.hslider-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    -ms-overflow-style: none;
    width: 100%;
}

.hslider {
    list-style: none;
    display: 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;
}

.hslider>li {
    width: 100%;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0;
    padding: 0;
}

.hslider>li a {
    text-decoration: none;
}

.hslider-img {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.hslider-img>img {
    width: 100%;
    height: auto;
    display: block;
}

.hslider-info {
    padding: 0 1rem;
    text-align: center;
}

.hslider-info p {
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    color: #2E1E1F;
    margin: 0.5rem 0 0 0;
    padding: 0;
}

.hslider-promo {
    font-size: 1.3rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    background: #C7171B;
    color: #fff;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-family: "Pacifico", serif;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: relative;
    top: -1rem;
    display: inline-block;
    width: auto;
}

.hslider-title {
    font-size: 1.3rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    color: #C7171B;
    margin: 0 0 0 0;
    padding: 0;
    font-family: "Pacifico", serif;
}


.extrainfo-wrapper {
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.extrainfo-buts {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.extrainfo-but {
    background: #fff;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    color: #A7A0A0;
    border: 0;
    border-left: 1px solid #F0ECE5;
    padding: 0.5rem 0 0.5rem 0.75rem;
    cursor: pointer;
    margin: 0 0 0 0.75rem;
    flex-grow: 0;
    flex-shrink: 1;
    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;
}

.extrainfo-but:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.extrainfo-but.active {
    color: #8F5163;
}

.extrainfo-but>.svgicon {
    display: none;
    margin-left: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
}



.extrainfo {
    margin-top: 0;
    display: none;
}

.extrainfo-content {
    display: none;
    padding: 2rem;
    background: #f5f5f5;
}

.extrainfo-content.active {
    display: block;
}

.extrainfo-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: left;
    color: #000;
    margin: 0.5rem 0 0 0;
    padding: 0;
}

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

.extrainfo-content p strong {
    font-weight: bold;
    color: #049a86;
}

.extrainfo-content p a {
    text-decoration: underline;
    color: #049a86;
}

.atfavs {
    width: 3.4rem;
    height: 3.4rem;
    text-align: center;
    background: #fff;
    color: #ff8aab;
    border: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

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

.atfavs.active {
    color: #fff;
    background: #ff8aab;
}

.atfavsline {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 10;
}

.tbb-logout {
    display: none;
}

.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: #2E1E1F;
    vertical-align: middle;
}

.nofavs-notice p .svgicon {
    vertical-align: middle;
    height: 1.2rem;
    width: 1.2rem;
}

.nofavs-notice .buton1 {
    margin-top: 3rem;
}

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

.account-logout {
    margin-top: 2rem;
}

.buton1.account-logout-button {
    width: 100%;
    display: block;
    background: #FF5356;
}

.depasit_ora {
    position: absolute;
    text-align: left;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
    background: #eb8a35;
    right: 0;
    top: 0.5rem;
    z-index: 100;
    padding: 0.5rem 0.75rem;
}

.depasit_ora.err {
    background: #fc0d1c;
}

.cart-bottom-buttons {
    margin-top: 3rem;
}

.cart-bottom-buttons .buton3 {
    width: 100%;
    margin-top: 1rem;
}

.cart-bottom-buttons .buton2 {
    margin-top: 1rem;
}

.static-album {
    margin-top: 3rem;
}

.closed_notice {
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    padding: 1rem;
    color: #fff;
    background: #E2241B;
}

.order_closed_notice {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #E2241B;
    padding: 3rem 1rem 0 1rem;
}

.contact-wrapper {
    margin-top: 1.5rem;
}

.clist li {
    border: 0;
    padding: 0;
    margin-top: 0.5rem;
}

.clist .product-top {
    margin: 0;
}

.clist .product-info {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0;
}

.clist .product-image {
    width: 100%;
}

.clist .product-image>a {
    width: 100%;
    height: 200px;
}

.clist .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clist .plist_detailsbut {
    display: none;
}

.clist .clist_count {
    display: none;
}

.clist .clist_title {
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
    font-weight: normal;
    text-align: left;
    text-transform: none;
    background: #8f5163;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
}

.order-login .buttons-area {
    align-items: center;
}

.order-review-deldate {
    background: #f5f5f5;
    padding: 2rem;
    margin-top: 1rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.order-review-deldate-caption p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    color: #8F5163;
}

.order-review-deldate-caption p:first-child {
    margin-top: 0;
}

.order-review-deldate-caption strong {
    font-weight: 500;
    color: #bb4e72;
}

.order-review-invalid-order {
    background: #ffefef;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    color: #ff0000;
    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;
}

.order-review-invalid-order>.svgicon {
    display: inline-block;
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.shop_pi_deltime {
    text-align: center;
    margin: 1rem 0 0 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #8f5163;
}

.order-review-final .loader .donut {
    width: 50px;
    height: 50px;
    border-width: 7px;
}

.js-add_billing_company_container {
    display: none;
    margin-top: 1rem;
}

.js-add_billing_person_container {
    margin-top: 1rem;
}

.product-page {}

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

.static .cnt {
    margin-top: 1rem;
}

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

.shop_pi_allowinterndel {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
    padding: 1rem 1rem;
    text-align: center;
    color: #2ba200;
    background: #f1ffdd;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.home-section {
    margin-top: 2rem;
}

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

.signature {
    margin: 0;
    display: inline-block;
    width: 427px;
    height: auto;
}

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

.home-section-desc p:first-child {
    margin-top: 0;
}

.home-section-desc .signature {
    margin-top: 1rem;
    width: 230px;
    height: auto;
}

.home-section-title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    color: #D6B36A;
    margin: 0 0 1rem 0;
    padding: 0;
}

.home-section-types-list {
    padding: 2rem 1rem;
    background: #D6B36A;
}

.types-list {
    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: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.types-list>li {
    position: relative;
    width: 100%;
    height: 200px;
    flex-grow: 0;
    flex-shrink: 0;
    margin-top: 1rem;
    -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;

}

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

.types-list>li>a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    text-decoration: none;
}

.types-list>li>a>strong {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
    font-weight: 500;
    text-align: center;
    background: #92BE00;
    color: #fff;
    border-radius: 50px;
    padding: 1rem 2rem;
    text-transform: uppercase;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.types-list>li:nth-child(2)>a>strong {
    background: #00BE32;
}

.types-list>li:nth-child(3)>a>strong {
    background: #00BEBF;
}

.home-section-participanti-list {
    padding: 2rem 0;
    background: #F0F0F0;
    margin-top: 2rem;
}

.participanti-list {
    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;
}

.participanti-list>li {
    width: 150px;
    height: 150px;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    margin: 0.5rem 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
    -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;
}

.participanti-list>li>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -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;
}

.home-section-contact-list {
    margin-top: 1.5rem;
}

.contact-list {
    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: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.contact-list>li {
    width: 100%;
    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: flex-start;
    align-items: center;
    background: #F0F0F0;
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
}

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

.contact-list-photo {
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #D6B36A;
    width: 100px;
    height: 100px;
    margin-right: 1rem;
    flex-shrink: 0;
    flex-grow: 0;
}

.contact-list-photo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-list-info {}

.contact-list-info p {
    text-align: left;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #1A1A18;
    margin: 0.75rem 0 0 0;
    padding: 0;
}

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

.contact-list-info p a {
    text-decoration: none;
    color: #1A1A18;
}

.contact-list-info p.contact-list-title {
    font-size: 1.1rem;
    line-height: 1;
}

.contact .contact-list {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.contact .contact-list>li {
    margin-top: 1rem;
    margin-left: 0;
    width: 100%;
}

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

.fl-menus {
    align-items: stretch;
}

.meciuri-list {
    background: #F0F0F0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.fitem {
    background: #fff;
    padding: 2rem 2rem;
    margin: 0.5rem 0 0 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: 10px solid #A7A7A7;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

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

.fitem.status-1 {
    border-left-color: #00BE32;
}

.fitem.status-2 {
    border-left-color: #D6B36A;
}

.fitem-date {
    margin-bottom: 1.5rem;
    width: 100%;
}

.fitem-right {
    margin-top: 1.5rem;
    width: 100%;
}



.fitem-date>span {
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    font-weight: 500;
    color: #D6B36A;
    border-left: 1px solid #ccc;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-left: 1rem;
}

.fitem-date>span:first-child {
    font-size: 1.1rem;
    line-height: 1;
    white-space: nowrap;
    text-align: left;
    font-weight: 500;
    color: #00953F;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.meci-header-info {
    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;
    position: relative;
}

.meci-header-score {
    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 1rem;
}

.meci-header-score>span {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    color: #A7A7A7;
    margin-left: 0.5rem;
}

.meci-header-score-value {
    border: 2px solid #A7A7A7;
    width: 3.5rem;
    height: 3.5rem;
    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;
    border-radius: 14px;
}

.meci-header-score-value.winner {
    color: #00953F;
    border-color: #00953F;
}

.meci-header-score>span:first-child {
    margin-left: 0;
}

.meci-header-team {
    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;
    flex-grow: 0;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
}
.meci-header-team:first-child {
    right: auto;
    left: 0;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
}

.meci-header-team>p {
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    text-align: left;
    display: none;
}

.meci-header-team:first-child>p {
    text-align: right;
}

.meci-header-team>img {
    height: 60px;
    width: auto;
    margin-right: 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.meci-header-team:first-child>img {
    margin-left: 0.5rem;
    margin-right: 0;
}

.meciuri-more {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    color: #1A1A18;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    text-transform: uppercase;
    border: 1px solid #707070;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    width: 100%;
}

.meciuri-more.active {
    color: #fff;
    background: #00BE32;
    border-color: #00BE32;
}

.meciuri-list-group-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: normal;
    line-height: 1;
    text-transform: uppercase;
    color: #1A1A18;
    margin: 3rem 0 1rem 0;
}

.meciuri-etapa-title+.meciuri-list-group-title {
    margin-top: 0;
}

.meciuri-list-group-title:first-child {
    margin-top: 0;
}

.comps-wrapper {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.comps {
    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: nowrap;
    justify-content: flex-start;
}

.comps li {
    margin-top: 0.5rem;
}

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

.comps li a {
    background: #fff;
    border: 2px solid #D6B36A;
    text-align: center;
    padding: 1rem 1.25rem;
    color: #1A1A18;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}



.comps li a.active {
    background: #D6B36A;
    color: #fff;
}

.meciuri-etapa-title {
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #d6b36a;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: normal;
    text-transform: uppercase;
}

.meciuri-etapa-title:first-child {
    margin-top: 0;
}

.meci-header {
    height: 25vh;
    background: #F0F0F0;
}

.meci-header-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.meci-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
}

.meci-box-background {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 16px;
    width: 90%;
    height: 8rem;
    z-index: 2;
}

.meci-header-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.meci-content {
    margin-top: 1rem;
}

.meci-date {
    margin: 0 0 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #1A1A18;
    padding: 0;
}

.meci-title {
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #00953F;
    padding: 0 0 0.75rem 0;
    border-bottom: 1px solid #D6B36A;
}

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

.meci-text {
    flex-grow: 1;
    flex-shrink: 1;
}

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

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

.meci-youtube {
    margin-top: 2rem;
    border-radius: 14px;
    overflow: hidden;
}

.meci-youtube iframe {
    width: 100%;
    height: 250px;
}

.meci-teams {
    margin-top: 1rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.meci-teams-item {
    margin-top: 0.5rem;
}

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

.meci-players {
    background: #F0F0F0;
    border-radius: 16px;
    padding: 3rem 1.5rem 2rem 1.5rem;
}

.meci-teams-team {
    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;
    top: 1.5rem;
    left: 1rem;
}

.meci-teams-logo {
    width: 6rem;
    height: 6rem;
    text-align: center;
    border-radius: 50%;
    padding: 0.75rem;
    border: 2px solid #D6B36A;
    margin-right: 1rem;
    background: #fff;
    order: 0;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 0;
}

.meci-teams-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.meci-teams-title {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    color: #000;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    order: 1;
}

.meci-teams-item:first-child .meci-teams-team {
    left: auto;
    right: 1rem;
    justify-content: flex-end;
}

.meci-teams-item:first-child .meci-teams-logo {
    order: 1;
    margin-left: 1rem;
    margin-right: 0;
}

.meci-teams-item:first-child .meci-teams-title {
    order: 0;
}

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

.players li {
    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-top: 0.5rem;
}

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

.players-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;
}

.players-number {
    white-space: nowrap;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 500;
    text-align: left;
    color: #D6B36A;
    margin-right: 0.5rem;
}

.players-thumb {
    overflow: hidden;
    width: 4rem;
    height: 4rem;
    text-align: center;
    border: 2px solid #D6B36A;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

.players-thumb>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.players-name {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
    color: #1A1A18;
}

.players-position {
    white-space: nowrap;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    color: #A7A7A7;
}

/* RESPONSIVE */
@media only screen and (min-width: 767px) {
    .meciuri-list {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .meciuri-list-group-title {
        text-align: left;
        font-size: 1.3rem;
        line-height: 1;
        margin: 4rem 0 1rem 0;
    }

    .meciuri-etapa-title {
        margin: 4rem 0 2rem 0;
        padding-bottom: 1rem;
        font-size: 1.3rem;
        line-height: 1;
    }

    .fitem {
        padding: 2rem 2rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .fitem-date,
    .fitem-right {
        width: 20%;
    }

    .fitem-date {
        text-align: left;
        margin-bottom: 0;
    }
    .fitem-date>span {
        font-size: 1.4rem;
        line-height: 1;
    }

    .fitem-right {
        text-align: right;
        margin-top: 0;
    }

    .comps-wrapper {
        margin-top: 0;
        margin-bottom: 1rem;
        position: relative;
        top: 2.5rem;
    }

    .comps {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .comps li {
        margin-left: 0.5rem;
        margin-top: 0;
    }

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

    .comps li:first-child a {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .comps li:last-child a {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .meci-header-info {}

    .meci-header-score {
        margin: 0 2rem;
    }

    .meci-header-score>span {
        font-size: 1.8rem;
        line-height: 1;
    }

    .meci-header-score-value {
        width: 4rem;
        height: 4rem;
    }

    .meci-header-team {}

   

    .meci-header-team>p {
        font-size: 1.1rem;
        line-height: 1.2;
        display: block;
    }

    .meci-header-team>img {
        height: 74px;
        width: auto;
    }
    .meciuri-more {
        display: inline-block;
        font-size: 0.9rem;
        line-height: 1.1;
        padding: 1.25rem 0.5rem;
        width: 100%;
    }

    .meci-box-background {
        border-radius: 20px;
        width: 50%;
        height: 10rem;
    }

    .meci-date {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.3;
    }

    .meci-header {
        height: 40vh;
    }

    .meci-box {
        width: auto;
    }

    .meci-title {
        margin-bottom: 3rem;
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 5rem 1.5rem 5rem;
        border-bottom: 1px solid #D6B36A;
        width: 70%;
    }

    .meci-content {
        margin-top: 1.5rem;
    }

    .meci-content-info {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .meci-text {
        padding-right: 5rem;
    }

    .meci-text p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .meci-youtube {
        flex-grow: 0;
        flex-shrink: 0;
        width: 45%;
        margin-top: 0;
    }

    .meci-youtube iframe {
        height: 400px;
    }

    .meci-teams {
        margin-top: 5rem;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .meci-teams-item {
        flex-grow: 0;
        flex-shrink: 0;
        width: calc((100% - 2rem) / 2);
        margin-left: 2rem;
        margin-top: 0;
    }

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

    .meci-players {
        border-radius: 20px;
        padding: 3rem 3rem;
    }

    .meci-teams-logo {
        width: 8rem;
        height: 8rem;
    }

    .meci-teams-title {
        font-size: 1.3rem;
        line-height: 1;
    }

    .meci-teams-team {
        top: 2rem;
        left: 1rem;
    }

    .players-number {
        font-size: 1.1rem;
        line-height: 1;
        margin-right: 1rem;
    }

    .players-thumb {
        width: 5rem;
        height: 5rem;
    }

    .players-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .players-position {
        font-size: 1.1rem;
        line-height: 1;
    }

    .fl-main-underline {
        width: 80%;
        max-width: 700px;
    }

    .contact-intro p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

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

    .footer-logo>img {
        height: 123px;
        width: auto;
    }

    .footermenu {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .footermenu+.footermenu {
        margin-left: 7rem;
        margin-top: 0;
    }

    .footermenu>li {
        margin-top: 1.5rem;
    }

    .footermenu>li>a {
        padding: 0;
        font-size: 0.9rem;
        line-height: 1;
    }

    .fl-main {
        padding: 4rem 0;
    }

    .fl-social {
        margin-left: 2rem;
        margin-top: 0;
    }

    .footer-line-row-item {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        margin-top: 0;
    }

    .fl-menus {
        align-items: flex-start;
    }

    .home-section-contact-list {
        margin-top: 2.5rem;
    }

    .contact-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-list>li {
        width: calc((100% - 4rem) / 3);
        margin-left: 2rem;
        margin-top: 0;
        padding: 2rem 1rem;
        justify-content: center;
    }

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

    .home-section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .home-section {
        margin-top: 4rem;
    }

    .home-section-types {
        margin-top: 2rem;
    }

    .types-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;

    }

    .types-list>li {
        width: 285px;
        height: 285px;
        margin-left: 2rem;
        margin-top: 0;
        border: 10px solid #D6B36A;
    }

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

    .home-section-types-list {
        padding: 3rem 0;
    }

    .home-section-desc p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .home-section-desc .signature {
        margin-top: 2rem;
        width: 250px;
        height: auto;
    }

    .header-content {
        margin-bottom: 5rem;
    }

    .datebar-content {
        font-size: 2rem;
        line-height: 1;
        padding: 1.25rem 2.5rem;
    }

    .logo>img {
        height: 160px;
        width: auto;
    }

    .stickybar.js-is-pinned .logo>img {
        height: 140px;
        width: auto;
    }

    .menubar {
        padding: 1rem 0 0.5rem 0;
    }

    .menubar-underline {
        height: 14px;
    }

    .shop_pi_allowinterndel {
        text-align: left;
    }

    .static .cnt {
        margin-top: 2rem;
    }

    .product-top {
        margin-bottom: 0.5rem;
    }

    .home.spaced-s {
        margin-top: 1rem;
    }

    .product-page {
        margin-top: 1rem;
    }

    .plist_title,
    .clist_title,
    .combolist_title {
        text-align: left;
    }

    .secondbar {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .shop_pi_deltime {
        text-align: left;
        font-size: 1rem;
        line-height: 1.3;
    }

    .shop_pi_images_list>li>a {
        height: 110px;
    }

    .shop_pi_images_list>li:first-child>a {
        height: 300px;
    }

    .cerror {
        font-size: 1rem;
        line-height: 1.4;
        padding: 1rem;
    }

    .cerror>.svgicon {
        margin-right: 0.25rem;
    }

    .cart-order-line-error>.svgicon {
        margin-right: 0.25rem;
    }

    .order-review-invalid-order>.svgicon {
        margin-right: 0.25rem;
    }

    .order-review-deldate {
        margin-top: 2rem;
        padding: 3rem;
    }

    .address-header-item+.address-header-item {
        margin-left: 0.5rem;
    }

    #ob_judet+.address-header-item {
        margin-left: 0.5rem;
    }

    .shop_pi_images {
        padding: 0;
        margin: 0 0 0 auto;
        max-width: 750px;
    }

    .closed_notice {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .order_closed_notice {
        font-size: 1.3rem;
        line-height: 1.4;
        padding-top: 3rem;
    }

    .plist_desc,
    .clist_desc,
    .combolist_desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .plist_bulina {
        width: 4rem;
        height: 4rem;
        font-size: 1rem;
    }

    .clist_count {
        font-size: 1rem;
        line-height: 1;
    }

    .static-album {
        margin-top: 3rem;
        padding: 2rem;
        background: #f5f5f5;
    }

    .gallery-albums,
    .gallery-images {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

    .home .welcome {
        display: none;
    }

    .home-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .hslider>li {
        width: 100%;
    }

    .hslider-wrapper {
        flex-grow: 0;
        flex-shrink: 0;
        width: 50%;
    }

    .hfc-wrapper {
        flex-grow: 1;

    }

    .hfc {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-grow: 1;
    }

    .hfc-img {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        height: 250px;
    }

    .clist .product-image>a {
        height: 250px;
    }

    .product-image>a {
        height: 250px;
    }

    .hfc-title {
        font-size: 1.2rem;
        line-height: 1;
    }

    .hslider-promo {
        font-size: 1.8rem;
        line-height: 1;
        top: 0;
        margin-bottom: 0.5rem;
    }

    .hslider-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .hslider-info p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hslider-info {
        position: relative;
        top: -2rem;
    }

    .thirdtitle {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .plist_buline_wrapper,
    .combolist_buline_wrapper {
        left: 1rem;
        top: 1rem;
    }

    .nofavs-notice p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .nofavs-notice p .svgicon {
        height: 1.5rem;
        width: 1.5rem;
    }

    .atc-message .splash-box {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .splash-box {
        min-width: 500px;
        padding: 3rem;
        width: auto;
    }

    .atfavsline {
        right: 5rem;
    }

    .atfavs {
        width: 3.6rem;
        height: 3.6rem;
    }

    .tbb-logout {
        display: block;
    }

    .tbb {
        margin-left: 2rem;
    }

    .order-review-cart {
        display: block;
    }

    .extrainfo-but.active>.svgicon {
        display: inline-block;
    }

    .extrainfo-wrapper {
        padding: 0;
    }

    .extrainfo-buts {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .extrainfo-but {
        flex-grow: 0;
    }

    .map {
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .featured-products {
        width: 100%;
    }

    .topbar-left {
        padding: 0;
    }

    .maintitle {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 3rem;
    }

    .spaced {
        margin-top: 2rem;
    }

    .fl-social {
        margin-bottom: 0;
    }

    .reclamatii-form {
        margin-top: 2rem;
        padding: 3rem 5rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }

    .hc .plist {
        justify-content: center;
    }

    .shop_pi {
        /*max-width: 1400px;*/
        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;
    }

    .shop-pl-row1-right {
        margin-top: 0;
        flex-grow: 0;
        margin-left: 2rem;
    }

    .order-ty-icon {
        width: 7rem;
        height: 7rem;
    }


    .hfc-wrapper {
        margin-top: 0;
    }

    .order-review-final {
        width: auto;
    }

    .upsale-cart-notice {
        max-width: 900px;
    }

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

    .hp-desc {
        margin-top: 0.5rem;
    }

    .hp-reclamatii {
        order: 1;
        padding: 0;
        margin-top: 1rem;
    }

    .hp-reclamatii-but {
        width: auto;
        display: inline-block;
        padding: 1rem 2rem;
    }



    .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-left: auto;
        margin-right: 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 #ee96b3;
    }

    .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;
        width: 100%;
    }

    .shop_pi_options {
        margin-left: 0;
        width: auto;
    }

    .shop_pi_options_item>label {
        text-align: left;
    }

    .shop_pi_desc {
        width: auto;
    }

    .shop_pi_vars_list {
        justify-content: flex-start;
    }

    .optb {
        justify-content: flex-start;
    }

    .plist_price_wrapper,
    .combolist_price_wrapper {
        margin-top: 1rem;
        /*padding-top: 0.5rem;
        border-top: 2px solid #ff8aab;*/
        margin-left: 0;
        justify-content: flex-end;
    }

    .plist_detailsbut>a,
    .combolist_detailsbut>a {
        padding: 1rem;
    }



    .plist_atc_button_icon>span {
        background: #ff8aab;
        top: -0.5rem;
    }

    .product-bottom {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
        width: 100%;
        margin: auto auto 0 auto;
    }

    .product-top {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: stretch;
    }

    .product-image {
        width: 100%;
        position: relative;
    }

    .product-image>a {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }

    .product-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .product-info {
        /*padding: 1rem 1rem 1rem 1rem;*/
        position: relative;
        margin-top: 1rem;
    }

    .shop-pl-title-line {
        justify-content: space-between;
    }

    .shop-pl-title {
        font-size: 1.7rem;
        line-height: 1;
        margin-left: 0;
    }

    .shop_pl_categ_desc {
        text-align: left;
        margin: 0.5rem 0 0 0;
    }

    .shop_pl_categ_desc p {
        text-align: left;
    }

    .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: 8rem;
    }

    .topbar-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }


    .phones-item {
        background: none;
        border: 2px solid #E3A446;
        color: #AF2B04;
        font-size: 1rem;
        line-height: 1;
    }

    .phones>li:first-child .phones-item {
        border-color: #55d935;
        color: #0b623b;
    }

    .mobile-menu {
        max-width: 500px;
        min-width: auto;
        width: 90%;
    }

    .mobile-menu-button {
        margin-left: 1.5rem;
    }



    .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: 1600px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
    }

    .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;
        border-radius: 20px;
    }

    .order-ty-desc p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .order-ty-title {
        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 {}

    .orderinfo .maintitle {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .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: 3rem;
    }

    .account-column:first-child {
        width: 30%;
        margin-left: 0;
    }

    .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;
        margin-left: 0;
    }

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

    .order-section {
        margin: 0 auto;
        padding: 2rem 2rem;
        /*border-top: 1px solid #ccc;*/
        width: auto;
        max-width: 900px;
    }

    .order-content-wrapper {
        position: relative;
        margin: 0 auto;
    }




    .shop_pi_atc_button {
        justify-content: flex-start;
    }

    .shop_pi_cant_wrapper {
        justify-content: flex-start;
        padding: 0;
        background: none;
        margin-top: 2rem;
    }

    .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%;
        height: 150px;
    }

    .cinfo {
        padding-left: 2rem;
    }

    .cart-subtotals {
        padding: 0;
    }

    .cart-footer {
        padding: 0;
        position: relative;
        max-width: 900px;
        margin-top: 2rem;
        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: flex-end;
        padding: 1.5rem 2rem;
    }

    .shortcart {
        display: block;
        height: 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;
    }

    .shortcart-wrapper {
        margin-left: 2rem;
    }

    .shortcart-info {
        margin-right: 1rem;
    }


    .shortcart-price {
        /*display: block;*/
    }

    .shortcart-number {
        width: 1.8rem;
        height: 1.8rem;
        line-height: 1.8rem;
        font-size: 1rem;
        right: -1.25rem;
        top: -0.75rem;
    }

    .js-is-pinned .shortcart-wrapper {
        /*top: 0.5rem;
        -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);*/
    }

    .topbar {}

    .secondbar-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: #ff8aab;
    }

    .mainmenu>li.menu-has-child>.menu-open-children::after {
        top: 0.25rem;
    }

    .cnt {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .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;
        text-align: left;
    }

    .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;
    }



    .shop_pi_wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .shop_pi_info {
        margin: 0;
    }

    .shop_pi_left {
        width: 50%;
        position: sticky;
        top: 90px;
        padding-right: 4rem;
    }

    .shop_pi_right {
        width: 50%;
        padding-top: 2rem;
        margin: 0;
    }

    .shop_pi_title {
        text-align: left;
        font-size: 1.8rem;
        line-height: 1.3;
        width: auto;
    }

    .shop_pi_code {
        text-align: left;
    }


    .shop_pi_desc ul {
        margin: 1rem 0 0 2rem;
    }

    .shop_pi_desc p {
        text-align: justify;
    }

    .shop_pi_desc li {
        text-align: left;
    }

    .shop_pi_ghidul_notice {
        text-align: left;
    }

    .shop_pi_price {
        text-align: right;
    }



    .plist,
    .clist,
    .combolist {
        flex-direction: row;
    }



    .wrapper {
        max-width: 2200px;
        padding-left: 2rem;
        padding-right: 2rem;
        width: 100%;
    }

    .small-wrapper {
        max-width: 1000px;
    }

    .medium-wrapper {
        max-width: 1600px;
    }

    .info {
        text-align: left;
    }

    .error {
        text-align: left;
    }

    .buton1 {
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem;
        width: auto;
    }

    .place-order-button {
        font-size: 1.3rem;
        line-height: 1.1;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .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: none;
    }

    .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;
    }


    /* 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;
    }

}

@media only screen and (min-width: 1000px) and (max-width: 1279px) {

    .hfc>a {
        width: calc((100% - 2rem) / 3);
        margin-top: 1rem;
        margin-left: 1rem;
    }

    .hfc>a:nth-child(-n+3) {
        margin-top: 0;
    }

    .hfc>a:nth-child(3n+1) {
        margin-left: 0;
    }

    .plist li,
    .clist li,
    .combolist li {
        width: calc((100% - 2rem) / 3);
        margin-top: 2rem;
        position: relative;
        margin-left: 1rem;
        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% - 2rem) / 3);
        margin-top: 2rem;
        position: relative;
        margin-left: 1rem;
    }

    .cbl li:nth-child(-n+3) {
        margin-top: 0;
    }

    .cbl li:nth-child(3n+1) {
        margin-left: 0;
    }

    .gallery-albums li,
    .gallery-images li {
        width: calc((100% - 3rem) / 4);
        margin-top: 2rem;
        margin-left: 1rem;
    }

    .gallery-albums li:nth-child(-n+4),
    .gallery-images li:nth-child(-n+4) {
        margin-top: 0;
        padding-top: 0;
    }

    .gallery-albums li:nth-child(4n+1),
    .gallery-images li:nth-child(4n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1799px) {
    .hfc>a {
        width: calc((100% - 2rem) / 3);
        margin-top: 1rem;
        margin-left: 1rem;
    }

    .hfc>a:nth-child(-n+3) {
        margin-top: 0;
    }

    .hfc>a:nth-child(3n+1) {
        margin-left: 0;
    }

    .plist li,
    .clist li,
    .combolist li {
        width: calc((100% - 6rem) / 4);
        margin-top: 2rem;
        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 {
        flex-direction: row;
    }

    .cbl li {
        width: calc((100% - 3rem) / 4);
        margin-top: 2rem;
        position: relative;
        margin-left: 1rem;
    }

    .cbl li:nth-child(-n+4) {
        margin-top: 0;
    }

    .cbl li:nth-child(4n+1) {
        margin-left: 0;
    }

    .gallery-albums li,
    .gallery-images li {
        width: calc((100% - 3rem) / 4);
        margin-top: 2rem;
        margin-left: 1rem;
    }

    .gallery-albums li:nth-child(-n+4),
    .gallery-images li:nth-child(-n+4) {
        margin-top: 0;
        padding-top: 0;
    }

    .gallery-albums li:nth-child(4n+1),
    .gallery-images li:nth-child(4n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1800px) {
    .hfc>a {
        width: calc((100% - 6rem) / 4);
        margin-top: 2rem;
        margin-left: 2rem;
    }

    .hfc>a:nth-child(-n+4) {
        margin-top: 0;
    }

    .hfc>a:nth-child(4n+1) {
        margin-left: 0;
    }

    .plist li,
    .clist li,
    .combolist li {
        width: calc((100% - 8rem) / 5);
        margin-top: 2rem;
        position: relative;
        margin-left: 2rem;
        border-top: 0;
    }

    .plist li:nth-child(-n+5),
    .clist li:nth-child(-n+5),
    .combolist li:nth-child(-n+5) {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .plist li:nth-child(5n+1),
    .clist li:nth-child(5n+1),
    .combolist li:nth-child(5n+1) {
        margin-left: 0;
    }

    .cbl {
        flex-direction: row;
    }

    .cbl li {
        width: calc((100% - 4rem) / 5);
        margin-top: 2rem;
        position: relative;
        margin-left: 1rem;
    }

    .cbl li:nth-child(-n+5) {
        margin-top: 0;
    }

    .cbl li:nth-child(5n+1) {
        margin-left: 0;
    }

    .gallery-albums li,
    .gallery-images li {
        width: calc((100% - 4rem) / 5);
        margin-top: 2rem;
        margin-left: 1rem;
    }

    .gallery-albums li:nth-child(-n+5),
    .gallery-images li:nth-child(-n+5) {
        margin-top: 0;
        padding-top: 0;
    }

    .gallery-albums li:nth-child(5n+1),
    .gallery-images li:nth-child(5n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1000px) {}

@media only screen and (min-width: 1300px) {}

@media only screen and (min-width: 1440px) {
    .contact-list-photo {
        width: 120px;
        height: 120px;
        margin-right: 1.5rem;
    }

    .menubar-item .social {
        margin-left: 3rem;
    }
}

@media only screen and (min-width: 1500px) {
    .mainmenu>li>a {
        padding: 1.5rem 1.5rem;
    }

    .datebar-content {
        font-size: 2.25rem;
        line-height: 1;
        padding: 1.5rem 3rem;
    }

    .logo>img {
        height: 170px;
        width: auto;
    }

    .participanti-list>li {
        width: 160px;
        height: 160px;
        margin: 0.75rem 0.75rem;
    }

    .contact-list-info p.contact-list-title {
        font-size: 1.2rem;
        line-height: 1;
    }

    .contact-list>li {
        padding: 2rem 2rem;
    }
}

@media only screen and (min-width: 1600px) {}

@media only screen and (min-width: 1700px) {}

@media only screen and (min-width: 1800px) {}

@media only screen and (min-width: 1900px) {}

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

    /* JUST MOBILE */
    .just-desktop {
        display: none;
    }

    .lang_url {
        height: 100%;
        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>a {
        color: #4d4d4d;
        padding: 0.25rem 0.75rem;
        border: 1px solid #999;
        white-space: nowrap;
        background: none;
        display: inline-block;
        height: 100%;
        line-height: 28px;
        font-size: 0.8rem;
    }

    .lang_url>a .arrow {
        display: none;
    }

    .lang_url ul {
        position: relative;
        display: inline-block;
        padding: 0;
        height: 100%;
        margin: 0;
    }

    .lang_url ul>li {
        height: 100%;
    }

    .lang_url ul>li>a {
        border: 0;
        background: none;
        color: #999;
        display: block;
        padding: 0 0.75rem;
        height: 100%;
        line-height: 28px;
        font-size: 0.8rem;
    }

    .menu-open-children::after {
        padding: 0 0.5rem;
    }

    .menu-item li ul li .menu-open-children::after {
        color: #fff;
    }

    .validate-voucher>span {
        display: none;
    }

    .ao-cell {
        display: none;
        width: auto;
    }

    .ao-cell.onmobile {
        display: block;
    }

    .ao-cell.aotitle {
        flex-grow: 1;
        max-width: none;
    }

    .home>.wrapper {
        width: 100%;
    }

    .plist,
    .clist,
    .combolist {
        flex-direction: row;
    }

    .plist li,
    .clist li,
    .combolist li {
        width: calc((100% - 1rem) / 2);
        margin: 2rem 0 0 1rem;
        position: relative;
        border-top: 0;
    }

    .plist li:nth-child(-n+2),
    .clist li:nth-child(-n+2),
    .combolist li:nth-child(-n+2) {
        margin-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;
    }
}

@media only screen and (min-width: 767px) {

    /* JUST DEKSTOP */
    .just-mobile {
        display: none;
    }
}

@media (hover: hover) {

    /* HOVER */
    .mainmenu>li:hover>ul {
        display: block;
    }

    .mainmenu>li>ul>li:hover>ul {
        display: block;
        left: 100%;
    }

    .lang_url:hover ul {
        display: block;
    }

    .lang_url>a:hover .arrow {
        border-color: #000;
    }

    .lang_url:hover>a {
        color: #FE3B9D;
    }

    .lang_url ul>li>a:hover {
        background: #FE3B9D;
        color: #fff;
    }

    .cookies-disclaimer-more:hover {}

    .cookies-agree:hover {
        background: #00953F;
        color: #fff;
    }

    .buton1:hover {
        background: #00953F;
    }

    .buton2:hover {
        color: #00BE32;
    }

    .footermenu>li:hover>a,
    .footermenu>li>a:hover {
        color: #D6B36A;
    }

    .social>li:hover a,
    .social>li>a:hover {
        color: #D6B36A;
        border-color: #D6B36A;
    }

    .mainmenu>li>a:hover,
    .mainmenu>li:hover>a {
        background: #F2F2F2;
    }

    .mainmenu>li>ul>li>a:hover,
    .mainmenu>li>ul>li:hover>a {
        background: #93BE00;
    }

    .mainmenu>li>ul>li.menu-has-child>a:hover,
    .mainmenu>li>ul>li.menu-has-child:hover>a {
        /*border-top-right-radius: 0;*/
    }

    .mainmenu>li>ul>li>ul>li>a:hover,
    .mainmenu>li>ul>li>ul>li:hover>a {
        background: #00bebf;
    }



    .contact-list-info p a:hover {
        color: #00BE32;
    }

    .participanti-list>li:hover {
        padding: 1.5rem;
    }

    .types-list>li:hover {
        border-width: 0;
    }
}