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

/* 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: #7983ff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: donut-spin 1.2s linear infinite;
}



/* Regulile de bază IOAN */
html,
body,
input,
select,
textarea {
    font-family: 'Rubik', sans-serif;
    font-weight: normal;
}

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

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

.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: #FF8A00;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    text-decoration: none;
    padding: 1.25rem 0;
    cursor: pointer;
    display: block;
    text-align: center;
    width: 100%;
    border: 0;
    margin: 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    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;
}

.buton1>.svgicon {
    margin-right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

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

.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 input[type='email'],
.form1 input[type='password'],
.form1 input[type='text'],
.form1 input[type='tel'],
.form1 select,
.form1 textarea {
    color: #000;
    background: #fff;
    border: 1px solid #C3C3C3;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
    font-weight: normal;
    padding: 1rem 1.25rem;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: auto;
    max-width: none;
}

.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: #FFF6EB;
    border-color: #ff8a00;
}

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

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


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

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

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

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

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


/* BREADCRUMBS ----------------------------------------------------------------------------------- */
.breadcrumbs-wrapper {
    padding: 0;
    margin: 0 0 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;
}

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

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

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

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

.mainmenu li {
    position: relative;
}

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

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

.mainmenu>li>a {
    padding: 0.75rem 0.75rem;
    background: #FF8A00;
}

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

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

.mainmenu>li>ul {
    z-index: 200;
}

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

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

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

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

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

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

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

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

.mobile-menu li a {
    display: block;
    width: 100%;
    color: #ffffff;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 1.2rem;
    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: #FFE0BA;
}

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

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

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

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

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

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

.mobile-menu-button {
    background: #E04D00;
    padding: 0;
    color: #fff;
    border: 0;
    cursor: pointer;
    line-height: 1;
    margin: 0;
    height: 3.2rem;
    width: 3.2rem;
    flex-shrink: 0;
    position: fixed;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 90;
}

.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-coperta-line {
    margin-top: 2rem;
    padding-bottom: 2rem;
}

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

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

.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: #dfeff0;
    color: #213953;
    display: block;
    margin: 0.75rem 0 0 0;
    padding: 1rem;
    border: 0;
    width: 100%;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

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

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

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

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

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

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


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

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

.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 #444445;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
}

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

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

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



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

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

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

.cnt ul {
    list-style: disc;
}

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

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

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

.cnt a {
    text-decoration: none;
    color: #FF8A00;
}

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

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

.cnt h2 {
    font-size: 1.4rem;
    line-height: 1.4;
}

.cnt h3 {
    font-size: 1.2rem;
    line-height: 1.4;
}

.cnt h4 {
    font-size: 1rem;
    line-height: 1.4;
}


/* CONTACT ------------------------------------------------------------------------------------------ */
.contact-line {
    margin-bottom: 2rem;
}

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

.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;
    color: #000;
    margin: 0.5rem 0 0 0;
    padding: 0;
}

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

.contact-item p a {
    text-decoration: none;
    color: #FF8A00;
}

.contact-item h2,
.contact-item h3,
.contact-item h4 {
    text-align: center;
    font-weight: normal;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0 0 1rem 0;
    color: #B73F00;
}

.map {
    width: 100%;
    height: 400px;
}


/* LOGIN, REGISTER, RECOVER PASS, ACCOUNT ----------------------------------------------------------------------------------- */
.login_rememberme_wrapper {
    justify-content: center;
    margin-top: 2rem;
}

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

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

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

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


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

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

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

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

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

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

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

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


/* CART ------------------------------------------------------------------------------------------ */
.shortcart-wrapper {
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
    margin-left: 0.5rem;
}

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

.shortcart-info {
    text-decoration: none;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    position: relative;
    cursor: pointer;
    margin-right: 0.25rem;
    background: #B73F00;

}

.shortcart-empty .shortcart-info {
    background: #B73F00;
}

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

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

.shortcart-empty .shortcart-number {
    background: #FFC87C;
}

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

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

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

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

}

.ctable-row:first-child {
    /*background: #f9f9f9;*/
    padding-top: 0;
    border-top-width: 0;
}

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

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

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

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

.cptitle {
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    color: #FF8A00;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: left;
}

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

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

.cart-del-wrapper {
    margin-top: 1rem;
}

.ccant {
    padding: 0;
    margin: 2rem 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;
}

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

.cart-footer {
    margin: 0 auto 0 auto;
    max-width: 900px;
    padding: 2rem 1rem 0 1rem;
    border-top: 1px solid #FFE0BA;
}

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

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

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

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

}

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

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

.atc-message .splash-box {
    padding-top: 6rem;
    padding-bottom: 4rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.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: #B73F00;
    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-icon>span {
    position: absolute;
    right: -1rem;
    top: 0;
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    background: #FF8A00;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.atc-confirm-icon>span>.svgicon {
    height: 100%;
    width: 50%;
}

.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: 1.5rem;
    border: 1px solid #FFF6EB;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    font-weight: normal;
    color: #707070;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #FFF6EB;
}

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

.atc-confirm-actions>a.atc-confirm-finalize {
    border-color: #FF8A00;
    color: #fff;
    background: #FF8A00;
}


.longcart {}

.cart-del {
    color: #ff0000;
    font-size: 0.9rem;
    line-height: 1.3;
    text-decoration: none;
    font-weight: normal;
}

.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 ------------------------------------------------------------------------------------------ */
.plist,
.clist {
    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 {
    width: 100%;
    margin-top: 2rem;
    position: relative;
}

.plist li:first-child,
.clist li:first-child {
    margin-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;
}

.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-image {
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

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

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

.product-info {
    /*margin-top: auto;*/
}

.plist_title,
.clist_title {
    text-align: left;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0;
    color: #FF8A00;
}

.plist_desc,
.clist_desc {
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: normal;
    text-align: center;
    margin: 0.5rem 0 0 0;
    display: none;
}

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

.clist_count {
    margin: 0.5rem 0 0 0;
}

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

.plist_price_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 1rem 0 0 0;
    border-top: 1px solid #FFE0BA;
}

.plist_price {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #000;
    padding: 1rem 1.5rem;
    background: #FFF6EB;
}

.plist_oldprice {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: center;
    margin: 0 1rem 0 0;
    padding: 0;
    color: #ff0000;
    text-decoration: line-through;
    padding: 1rem 0;
}

.plist_buline_wrapper {
    position: absolute;
    right: 1rem;
    top: 1rem;
    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: #ff0000;
    color: #fff;
    width: 4rem;
    height: 4rem;
    -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;
}

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

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

.plist_bulina_nou {
    background: green;
}

.plist_bulina_promo {
    background: red;
    flex-direction: row;
    flex-wrap: nowrap;
}

.plist_detailsbut {
    margin-top: 0.5rem;
}

.plist_detailsbut>a {
    display: block;
    text-decoration: none;
    text-align: center;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #FF8A00;
    background: none;
    color: #FF8A00;
    font-size: 0.9rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.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: flex-end;
    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.5rem;
    border: 1px solid #999;
    color: #999;
    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;
}

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

.plist_cant {
    font-size: 1rem;
    line-height: 1;
    padding: 0.5rem;
    border: 1px solid #999;
    color: #999;
    text-align: center;
    margin: 0 0.5rem;
    width: 3rem;
    height: 2.5rem;
}

.plist_atc_button {
    padding: 0.75rem;
    background: #FF8A00;
    border: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    margin: 0 0 0 0.5rem;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    white-space: nowrap;
}

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

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

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

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

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

.plist li .shop_pl_loader .donut {
    width: 4rem;
    height: 4rem;
}

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

.shop_pi_images {
    order: 1;
    width: 100%;
    margin: 0;
}

.shop_pi_info {
    order: 2;
    width: 100%;
    margin: 1rem 0 0 0;
}

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

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

.shop_pi_desc {
    margin: 1rem 0 0 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: normal;
    color: #444;
}

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

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

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

.shop_pi_images_list>li {
    width: 100%;
    margin-top: 0.5rem;
}

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

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

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

.shop_pi_vars {
    margin-top: 2rem;
}

.shop_pi_cant_wrapper {
    margin: 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;
}

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

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

.shop_pi_cant {
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    border: 0;
    background: none;
    color: #000;
    text-align: center;
    margin: 0 0.5rem;
    height: 3rem;
    width: 3rem;
}

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

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

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

}

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

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

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

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

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

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

.shop_pi_vars_list {
    list-style: none;
    padding: 0;
    margin: 0;
    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_vars_list>li {
    margin-left: 1rem;
}

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

.shop_pi_vars_list>li>button {
    cursor: pointer;
    background: #fff;
    padding: 1rem;
    margin: 0;
    border: 1px solid #ededed;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    color: #ccc;
}

.shop_pi_vars_list>li>button.active {
    color: #444;
}

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

.shop_pi_options_row {
    margin-top: 0.5rem;
}

.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: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.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;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #FFE0BA;
    font-size: 1.3rem;
    line-height: 1;
}

.shop_pi_toppings {
    margin-top: 1rem;
}

.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_list {
    display: none;
    text-align: left;
    margin-top: 0.5rem;
}

.shop_pi_toppings_selection {
    display: none;
}

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

.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: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shop_pi_toppings_items>li {
    width: calc(100% / 5 - 0.5rem);
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    flex-grow: 0;
    flex-shrink: 0;
}

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

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

.shop_pi_toppings_items>li>a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.5rem;
    background: #999;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    color: #fff;
    height: 100%;
    text-align: left;
}

.shop_pi_toppings_items>li.active>a {
    background: green;
}

.toppings_price {
    margin-left: 2rem;
    text-align: right;
    white-space: nowrap;
}

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


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

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

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

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


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

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

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

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

.cblabel {
    cursor: pointer;
}

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

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

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

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

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

.order_message_ok_icon {
    width: 7rem;
    height: 7rem;
    color: #FF8A00;
    ;
    border: 2px solid #FF8A00;
    ;
    margin: 0 auto 1rem auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

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

.order_message_ok_icon.bad {
    color: #ff0000;
    border-color: #ff0000;
}
.order_message_ok_icon.bad>.svgicon {
    color: #ff0000;
}
.confirm-error {
    color: #ff0000;
}

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

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

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

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

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




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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: #fff;
    cursor: pointer;
    font-size: 1rem;
    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;
    border-top: 1px solid #ccc;
}

.order-existing-addresses>li:first-child {
    margin-top: 0;
    border-top-width: 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 {
    color: #B73F00;
    padding-left: 4rem;
}

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

.order-add-address-button {
    display: none;
    padding: 1rem 1rem 1rem 1rem;
    margin: 0 0 0 0;
    background: none;
    border: 1px solid #000;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    color: #000;
    cursor: pointer;
    width: 100%;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

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


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


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

}

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

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

.form1-row-item-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: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    text-align: center;
}

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

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

.menubar {
    background: #FF8A00;
    position: sticky;
    top: -1px;
    z-index: 80;
    margin-bottom: 2rem;
}

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

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

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

.topbar {
    padding: 0 4.2rem 0 0;
    min-height: 4.2rem;
}

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

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

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

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

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

.search-trigger {
    padding: 1rem 1rem;
    margin: 0;
    background: #FFF6EB;
    cursor: pointer;
    border: 0;
    color: #B73F00;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

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

.topmenu {}

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

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

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

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

.topmenu a .svgicon.icon-user {
    width: 1.3rem;
}

.topmenu a .svgicon.icon-mail {
    width: 1.4rem;
}

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

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

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

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

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

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

.logo {
    text-decoration: none;
    display: inline-block;
    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;
}

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

.logo>img.bynafi {
    display: none;
    height: auto;
    width: 110px;
    margin-left: 1rem;
}

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

.shop-pl-title {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: left;
    font-weight: normal;
    color: #000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.shop-pl-title>.svgicon {
    width: 1.5rem;
    height: 1.5rem;
    color: #C3C3C3;
    display: inline-block;
    margin-right: 0.75rem;
}

.shop-pl-title>strong {
    margin-left: 0.5rem;
    color: #B73F00;
    font-weight: normal;
}

.shop-pl-count {
    font-size: 1rem;
    line-height: 1;
    text-align: left;
    font-weight: normal;
    color: #707070;
    white-space: nowrap;
    border-bottom: 1px solid #707070;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.plist_vars {
    margin-top: 0.5rem;
}

.plist_vars_item {
    background: none;
    padding: 1rem 1rem;
    margin: 0 0 0 1rem;
    cursor: pointer;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    font-weight: normal;
    color: #000;
}

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

.plist_vars_item.active {
    color: red;
    border-color: red;
}

.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;
    background: #fff;
    border: 1px solid #C3C3C3;
    padding: 1rem 1.25rem;
}

.shop_pi_loader {
    margin-left: 1rem;
}

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

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

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

.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;
    background: #FFF6EB;
    border: 1px solid #FFF6EB;
    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;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ob-identity {
    display: none;
}

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

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

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

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

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

.order-section-title {
    margin: 0 0 1rem 0;
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    color: #000;
}


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

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

}

.account-section {
    display: none;
}

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

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

.account-column {
    width: 100%;
}

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

.account_change_pass_form {
    margin-top: 3rem;
}

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

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

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

.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: #f9f9f9;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    color: #000;
    position: relative;
    text-align: center;
}

.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;
    background: none;
    border: 0;
    border-left: 1px solid #ccc;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.1;
    font-weight: normal;
    color: #B73F00;
    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;
}

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

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

.adractions>button.adr_del {
    border-color: #999;
    color: #999;
}

.adrlist>li.fav {
    color: #B73F00;
}

.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;
    background: #fff;
    font-size: 0.9rem;
    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: 180px;
}

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

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

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

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

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

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

.ao-more {
    display: inline-block;
    width: auto;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.1;
    background: none;
    background: #B73F00;
}


.account-buttons {
    margin-bottom: 3rem;
    border-bottom: 1px solid #C3C3C3;
    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 #C3C3C3;
    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: #000;
}

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

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

.orderinfo {
    padding-top: 6rem;
}

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

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

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

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

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

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

.footer-info {
    margin-bottom: 1.5rem;
}

.footer-info>p {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    color: #707070;
    margin: 0.25rem 0 0 0;
    padding: 0;
}

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

.footer-info>p.footer-info-title {
    color: #B73F00;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: normal;
}

.footer-map {
    margin-bottom: 1rem;
    height: 320px;
    background: #ededed;
}

.footer-map-canvas {
    width: 100%;
    height: 100%;
}

.menubar-caption {
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid #B73F00;
}

.cart-order-button {
    text-transform: uppercase;
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.orderinfo .maintitle {
    margin-bottom: 0rem;
}

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

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

.home-section-more-line {
    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;
    margin-top: 2rem;
    padding: 2rem 1rem;
    background: #f9f9f9;
}

.morebut {
    background: #B73F00;
}


/* RESPONSIVE */
@media only screen and (min-width: 767px) {
    .logo>img.bynafi {
        display: block;
    }
    .footer-map {
        margin-bottom: 3rem;
    }
    .shop-pl-title {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    .plist_atc_button {
        padding: 1rem 1rem;
        font-size: 1rem;
        line-height: 1.1;
    }
    .plist_detailsbut>a {
        font-size: 1rem;
        line-height: 1;
        padding: 1rem;
    }
    .order-addresses-wrapper>p {
        text-align: left;
    }

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

    .order-choices>li {
        padding: 1.5rem;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        justify-content: flex-start;
    }

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

    .order-choices-info-title {
        text-align: left;
    }

    .order-review-total {
        margin-top: 3rem;
    }

    .shop_pi_images_list {
        max-width: 300px;
    }

    .shop-pl-title-line {
        margin-bottom: 2rem;
    }

    .form1 input[type='email'],
    .form1 input[type='password'],
    .form1 input[type='text'],
    .form1 input[type='tel'],
    .form1 select,
    .form1 textarea {
        max-width: calc(70% - 0.5rem);
    }

    /*.form1 .form1-row-item-element input[type='email'],
    .form1 .form1-row-item-element input[type='password'],
    .form1 .form1-row-item-element input[type='text'],
    .form1 .form1-row-item-element input[type='tel'],
    .form1 .form1-row-item-element select,
    .form1 .form1-row-item-element textarea {
        max-width: none;
    }*/

    .mainmenu>li>a {
        padding: 0.75rem 1rem;
    }

    .menubar-wrapper {
        justify-content: flex-start;
        padding-right: 10rem;
    }

    .contact {
        max-width: 1000px;
        margin: 0 auto;
    }

    .static>.wrapper {
        max-width: 1200px;
    }

    .maintitle {
        margin-bottom: 2rem;
    }

    .footer-info>p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .footer-info>p.footer-info-title {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .main-footer {
        margin-top: 7rem;
    }

    .noproducts {
        margin-top: 4rem;
    }

    .shop-pl-count {
        padding-bottom: 0.75rem;
        padding-left: 5rem;
    }

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

    .order_message_ok>p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .order_message_ok>p.order_message_main {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .oi-cell:last-child {
        padding-right: 1rem;
    }

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

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

    .orderinfo-info p {
        font-size: 1rem;
        line-height: 1.4;
        text-align: left;
    }

    .orderinfo-info p.oi-subtitle {
        font-size: 1.3rem;
        line-height: 1;
        margin-bottom: 1rem;
    }

    .orderinfo {
        padding-top: 2rem;
    }

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

    .form1-row-inline>.form1-row-item {
        margin-left: 1rem;
    }

    .form1-row-inline>.form1-row-item:first-child {
        margin-left: 0;
    }

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

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

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

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

    .order-content-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        max-width: 1400px;
        position: relative;
    }

    .order-content-left {
        width: 50%;
        padding-right: 3rem;
    }

    .order-content-right {
        width: 50%;
        padding-left: 3rem;
        margin-top: 0;
        position: sticky;
        top: 100px;
    }

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

    .shop_pi_cant_wrapper {
        justify-content: flex-end;
    }

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

    .cthumb {
        width: 20%;
    }

    .cart-footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .cart-footer .buttons-area {
        justify-content: flex-end;
    }

    .cart-footer .buttons-area-2 {
        justify-content: flex-start;
    }

    .shortcart-wrapper {
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        padding: 0;
        margin-left: 0;
    }

    .shortcart-info {
        width: 5rem;
        height: 5rem;
        line-height: normal;
        margin-right: 1rem;
        border: 3px solid #fff;
    }

    .shortcart-info .svgicon {
        width: 2rem;
        height: 100%;
    }

    .shortcart-price {
        display: block;
    }

    .shortcart-number {
        width: 2.25rem;
        height: 2.25rem;
        line-height: 2.25rem;
        font-size: 1rem;
        right: -1rem;
    }

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

    .topbar {
        padding: 0 0;
        min-height: auto;
    }

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

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

    .gotop {
        width: 64px;
        height: 64px;
    }

    .gotop.active {
        right: 1rem;
    }

    .menu-open-children {
        padding: 0;
    }

    .menu-open-children::after {
        top: 0.5rem;
        font-size: 1rem;
    }

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

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

    .cnt p {
        text-align: justify;
        font-size: 1rem;
        line-height: 1.4;
    }

    .cnt ul li,
    .cnt ol li {
        font-size: 1rem;
        line-height: 1.4;
    }

    .cnt ul,
    .cnt ol {
        margin-left: 2rem;
    }

    .cnt h2,
    .cnt h3,
    .cnt h4 {
        margin-top: 2rem;
    }

    .cnt h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .cnt h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .cnt h4 {
        font-size: 1.2rem;
        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_images_list>li {
        width: calc(100% / 4 - 0.5rem);
        margin-left: 0.5rem;
    }

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

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

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

    .shop_pi_info {
        margin: 0;
        width: 50%;
    }

    .shop_pi_images {
        width: 45%;
    }

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

    .shop_pi_code {
        text-align: left;
    }

    .shop_pi_desc {
        text-align: left;
    }

    .shop_pi_desc>p {
        text-align: left;
    }

    .shop_pi_ghidul_notice {
        text-align: left;
    }

    .shop_pi_price {
        text-align: right;
    }



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



    .wrapper {
        max-width: 1600px;
    }

    .info {
        text-align: left;
    }

    .error {
        text-align: left;
    }

    .menu-item {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
    }



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

    .form1 {
        margin-left: auto;
        margin-right: auto;
    }

    .form1 .error,
    .form1 .info {
        text-align: center;
        font-size: 1rem;
        line-height: 1.4;
    }

    /* BREADCRUMBS START ----------------------------------------------------------------------------------- */
    .breadcrumbs-wrapper {
        display: block;
    }

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

    .breadcrumbs li {
        margin-left: 1rem;
    }

    .breadcrumbs li::before {
        margin-right: 1rem;
        content: '|';
        display: inline-block;
        color: #ededed;
    }

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

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

    .breadcrumbs>li>a {
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: normal;
        line-height: 1.2;
        text-align: left;
        display: inline-block;
        color: #ccc;
    }

    /* HEADER ----------------------------------------------------------------------------------- */
    .stickybar {
        position: static;
    }

    .stickybar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        bottom: auto;
        z-index: 100;
        width: 100%;
    }

    /* FOOTER ----------------------------------------------------------------------------------- */
    .cookies-disclaimer {
        max-width: 400px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        left: 1rem;
        bottom: 1rem;
        padding: 2rem;
        background: url('../media/bg-black-60.png');
    }

    .cookies-disclaimer-more {
        text-align: justify;
        font-size: 0.9rem;
        line-height: 1.5;

    }

    .cookies-agree {
        margin-top: 1rem;
        padding: 1rem;
    }

    .footermenu {
        justify-content: center;
    }

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

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

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

    .footermenu+.footermenu {
        margin-top: 0;
    }
}

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

    .plist li,
    .clist li {
        width: calc((100% - 6rem) / 3);
        margin-top: 4rem;
        position: relative;
        margin-left: 3rem;
    }

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

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

@media only screen and (min-width: 1100px) and (max-width: 1599px) {

    .plist li,
    .clist li {
        width: calc((100% - 9rem) / 4);
        margin-top: 5rem;
        position: relative;
        margin-left: 3rem;
    }

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

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

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

    .plist li,
    .clist li {
        width: calc((100% - 15rem) / 6);
        margin-top: 6rem;
        position: relative;
        margin-left: 3rem;
    }

    .plist li:nth-child(-n+6),
    .clist li:nth-child(-n+6) {
        margin-top: 0;
    }

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

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

    .menubar.js-is-pinned {
        padding-right: 3.7rem;
    }

    .mainmenu-wrapper {
        overflow-y: hidden;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .shop-pl-count {
        display: none;
    }

    .cpriceline>p.cprice {
        text-align: right;
    }

    .mainmenu>li>a {
        border: 1px solid #FFE0BA;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }

    .plist, .clist {
        flex-direction: row;
    }
    .plist li, .clist li {
        width: calc((100% - 1rem) / 2);
        margin-top: 3rem;
        position: relative;
        margin-left: 1rem;
    }
    .plist li:nth-child(-n+2),
    .clist li:nth-child(-n+2) {
        margin-top: 0;
    }

    .plist li:nth-child(2n+1),
    .clist li:nth-child(2n+1) {
        margin-left: 0;
    }
    .plist_buline_wrapper {
        right: 0.5rem;
        top: 0.5rem;
    }
    .plist_atc_button_icon {
        display: none;
    }
    .plist_atc_button {
        flex-grow: 1;
        margin-left: 0;
    }
}

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

    /* JUST DESKTOP */
    .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: #FF8A00;
    }

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

    .cookies-disclaimer-more:hover {}

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

    .buton1:hover {
        background: #B73F00;
    }

    .buton2:hover {
        color: #E2570E;
    }

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

    .plist_detailsbut>a:hover {
        border-color: #FF8A00;
        background: #FF8A00;
        color: #fff;
    }

    /*.plist_atc:hover span {
        display:block;
    }
    .product-card:hover .plist_atc {
        display: block;
    }*/
    .plist_atc:hover {
        background: orange;
    }

    .atc-confirm-actions>a:hover {
        border-color: #FF8A00;
        background: #FFF6EB;
    }

    .atc-confirm-actions>a.atc-confirm-finalize:hover {
        border-color: #B73F00;
        background: #B73F00;
    }

    .shop_pi_back:hover {
        color: #000;
    }

    .ghid-button:hover {
        color: crimson;
    }

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

    .order-add-address-button:hover {
        color: #FF8A00;
        border-color: #FF8A00;
    }

    .order-existing-addresses>li:not(.active):hover {
        background: #FFF8FB;
    }

    .ao-row:hover .ao-cell {
        background: #FF8A00;
        color: #fff;
    }

    .ao-row:hover .ao-more {
        color: #fff;
        border-color: #fff;
    }

    .ao-row:hover .ao-more:hover {
        background: #fff;
        color: #FF8A00;
    }

    .account-but:hover {
        color: #FF8A00;
    }

    .order-add-address-button:hover {
        color: #FF8A00;
        border-color: #FF8A00;
    }

    .order-existing-addresses>li:not(.active):hover {
        background: #FFF8FB;
    }

    .oi-return-but:hover {
        color: #fff;
        background: #FF8A00;
    }

    .oi-row-return:hover .oi-cell {
        background: #FFF6EB;
    }

    .mainmenu>li>a:hover,
    .mainmenu>li:hover>a {
        background: #B73F00;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
    }

    .breadcrumbs>li>a:hover,
    .breadcrumbs>li:hover>a {
        color: #707070;
    }

    .finish-order-button:hover {
        background: #B73F00;
    }

    .morebut:hover {
        background: #E04D00;
    }
}