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



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

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

.error.ok {
    color: #009045;
}

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

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

.main {
    margin-top: 0;
    margin-bottom: 0;
}

.is-home .main {
    margin-top: 0;
}

.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 a {
    text-decoration: none;
}

.buton1 {
    background: #ff6600;
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    text-decoration: none;
    padding: 1rem 0;
    cursor: pointer;
    display: block;
    text-align: center;
    width: 100%;
    border: 0;
    margin: 0;
}

.buton2 {
    color: #22b373;
    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: 0.5rem;
}

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

.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: #586d6b;
    background: #fff6cf;
    border: none;
    margin: 0;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    padding: 0.75rem;
}

.form1 textarea {
    resize: none;
    line-height: 1.4;
}

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

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


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

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

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

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

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


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

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

/* HEADER ----------------------------------------------------------------------------------- */
.lang_url {
    position: relative;
    margin-right: 3rem;
}

.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 {
    position: sticky;
    top: -1px;
    z-index: 410;
}

.mainmenu {
    position: relative;
}

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

.mainmenu li a {
    display: block;
    text-align: center;
    color: #363739;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mainmenu>li>a {
    padding: 1rem 2rem;
    color: #fff;
}

.mainmenu li {
    position: relative;
}

.mainmenu>li {
    margin: 0 0 0 0;
    border-left: 1px solid #FF9D63;
}

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

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

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

.mainmenu>li>ul {
    z-index: 200;
    padding-top: 0.5rem;
}

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

.mainmenu>li>ul>li>a {
    color: #363739;
    background: #fff8f1;
}

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

.mobile-menu {
    position: fixed;
    z-index: 100;
    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: 90%;
    width: auto;
    min-height: 100%;
    background: #04607b;
    padding: 3rem 2rem 1rem 2rem;
    /*display: none;*/
}

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

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

.mobile-menu li a {
    display: block;
    width: 100%;
    color: #fff;
    padding: 1rem 0;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.3;
    text-decoration: none;
    text-transform: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-top: 1px solid #069bc7;
}

.mobile-menu li ul li a {
    color: #67d9fa;
    padding: 0.75rem 0 0.75rem 1rem;
    text-transform: none;
    border-color: #13738f;
    font-size: 1.1rem;
    line-height: 1.3;
}

.mobile-menu li ul li ul li a {
    color: #d4fff8;
    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: #f0787a;
    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: 1rem;
    top: 1rem;
    z-index: 90;
}

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

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


/* FOOTER ----------------------------------------------------------------------------------- */
.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: 1rem;
    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: 100;
}

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

.cookies-disclaimer-more {
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.3;
    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: #999;
    color: #fff;
    display: block;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem;
    border: 0;
    width: 100%;
    cursor: pointer;
}

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

.searchwrapper {
    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 {
    width: 85%;
    height: 3rem;
    line-height: 3rem;
    padding: 0;
    border: 0;
    margin: 0;
    text-align: left;
    background: none;
    border-bottom: 2px solid #444445;
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    flex-grow: 1;
}

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

.searchbutton {
    border: 2px solid #fff;
    padding: 0 2rem;
    margin: 0 0 0 1rem;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    font-weight: normal;
    height: 3rem;
    line-height: 3rem;
    background: #2f2f30;
    color: #fff;
    text-transform: uppercase;
    -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;
    flex-grow: 0;
    width: auto;
}

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



/* STATIC PAGE ------------------------------------------------------------------------------------------ */
.cnt {
    display: block;
    margin: 2rem auto 0 auto;
    color: #363739;
}

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

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

.cnt ul,
.cnt ol {
    margin: 0;
    padding: 0;
    margin-top: 1rem;
    margin-left: 2rem;
}

.cnt ul {
    list-style: disc;
}

.cnt ul li,
.cnt ol li {
    text-align: left;
    margin: 0.25rem 0 0 0;
    padding: 0;
    color: #363739;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    font-weight: normal;
}

.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 h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #7E9B57;
    text-align: left;
}

.cnt h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #A13E21;
    text-align: left;
}

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


/* CONTACT ------------------------------------------------------------------------------------------ */
.contact {}

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

.contact-item {
    text-align: center;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
    padding: 0;
    font-weight: normal;
    color: #626262;
}

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

.contact-item h2,
.contact-item h3 {
    color: #86D022;
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    font-weight: 100;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
}

.contact-item .svgicon {
    height: 3rem;
    width: 3rem;
    color: #FBB890;
}

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

.contact-program {
    padding: 2rem 1rem;
    text-align: center;
}

.contact-place {
    padding: 2rem 1rem;
    border-top: 1px solid #75b432;
}

.contact-info {
    margin-left: 2rem;
    padding: 3rem;
    background: none;
    border: 2px solid #fff;
}


/* LOGIN, REGISTER, RECOVER PASS, ACCOUNT ----------------------------------------------------------------------------------- */
.recover-wrapper {
    display: none;
}

.register-disclaimer {}




/* CART ------------------------------------------------------------------------------------------ */
.shortcart-info {
    text-decoration: none;
    background: #999;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    position: relative;
    cursor: pointer;
}

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

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

.shortcart-price {
    position: absolute;
    z-index: 316;
    bottom: -1.5rem;
    right: 50%;
    background: #ff0000;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    padding: 0.5rem;
}

.ctable {
    width: 100%;
    border: 0;
    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;
}

.ctable-row {
    width: calc(100% / 3 - 2rem);
    margin-left: 2rem;
    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;
}

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

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

.cthumb {
    width: 100%;
    padding: 0;
    margin: 0;
}

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

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

.cptitle {
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
    color: #000;
}

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

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

.ccant {
    padding: 0;
    margin: auto 0 0 0;
}

.csubtotal {
    text-align: center;
    margin-bottom: 1rem;
}

.cart-footer {
    margin-top: 3rem;
}

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

.ctvatotal {
    text-align: center;
    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: #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;
}

.atc-confirm {}

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

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

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

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

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

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

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

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


.longcart {}

.cart-del {
    color: #ff0000;
}

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

.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: center;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0;
}

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

.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 {
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-align: center;
    margin: 0.5rem 0 0 0;
}

.plist_oldprice {
    text-decoration: line-through;
    margin-right: 1rem;
    color: #ff0000;
}

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

.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 #999;
    background: none;
    color: #999;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
    margin: 0;
}

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

.plist_stoc_empty {
    color: #999;
}

.plist_stoc_redus {
    color: red;
}

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

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

.plist_cant_button {
    background: none;
    padding: 0.5rem;
    border: 1px solid #999;
    color: #999;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    margin: 0;
}

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

.plist_atc {
    padding: 0.5rem;
    background: green;
    border: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    margin: 0 0 0 0.5rem;
    color: #fff;
    cursor: pointer;
}

.plist_atc>.svgicon {
    display: inline-block;
    margin-right: 0.5rem;
    height: 2rem;
    width: 2rem;
}

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

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

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

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

.shop_pi_images_list>li {
    width: 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: flex-start;
}

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

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

.shop_pi_atc {
    margin-top: 1rem;
    position: relative;
}

.shop_pi_atc_button {
    background: none;
    border: 0;
    margin: 0;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    background: green;
    color: #fff;
    display: block;
    width: 100%;
}

.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: #ccc;
    padding: 1rem;
    margin: 0;
    border: 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.1;
    white-space: nowrap;
    color: #000;
}

.shop_pi_vars_list>li>button.active {
    background: coral;
    color: #fff;
}

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

.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;
    max-width: 700px;
}

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

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

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

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

.od-pickup {
    margin-top: 1rem;
}

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

.ob-wrapper {
    margin-top: 1rem;
}

.cblabel {
    cursor: pointer;
}

.order_message_ok {
    text-align: center;
}

.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:first-child {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

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

.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-choices {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.order-choices-item {
    width: calc(100% / 2 - 2rem);
    margin-left: 2rem;
}

.order-choices-three .order-choices-item {
    width: calc(100% / 3 - 2rem);
    margin-left: 2rem;
}

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

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

.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-existing-addresses .active {
    color: blue;
}

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

.order-add-address-button {
    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: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

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

.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 {
    width: calc(100% / 2 - 1rem);
    margin-left: 1rem;
}

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

.form1-row-item input {
    width: 200px;
}



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

.footer-internal-links {
    padding-top: 1.5rem;
    border-top: 12px solid #fdecda;
}

.internal-links {
    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;
}

.internal-links li {
    border-left: 1px solid #ccc;
}

.internal-links li:first-child {
    border-left-width: 0;
}

.internal-links li a {
    text-decoration: none;
    display: block;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #363739;
    text-align: center;
    -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;
}

/*.internal-links li:first-child a {
    color: #027788;
}
.internal-links li:nth-child(2) a {
    color: #A13E21;
}*/

.footer-pictures {
    margin-top: 2.5rem;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    height: 250px;
    overflow: hidden;
}

.footer-pictures>img {
    height: 100%;
    width: auto;
    margin: 0 0 0 1rem;
}

.footer-pictures>img:first-child {
    margin-left: 0;
}

.footer-top-line {
    background: #F4F2EF;
    padding: 2rem 0;
    margin: 2rem 0 0 0;
}

.footer-top-line-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;
}

.footer-menus {
    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;
}

.footer-menus>li {
    margin-top: 1rem;
    text-align: center;
}

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

.footer-menus>li>p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    color: #FF9D63;
    position: relative;
    text-align: left;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.footermenu {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
    display: none;
}

.js-fm-parent.active .footermenu {
    display: block;
}

.footermenu>li {
    display: block;
    text-align: left;
    margin: 0.5rem 0 0 0;
}

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

.footermenu>li>a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    color: #363739;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

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

.footer-right .social {
    margin-top: 1rem;
    justify-content: center;
}

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

.social>li {
    margin: 0 0 0 0.75rem;
}

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

.social>li>a {
    display: block;
    text-decoration: none;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -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: 2px solid #7f8082;
    color: #7f8082;
    text-align: center;
    background: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.social>li>a.button {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
}

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

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

.simple_button {
    margin: 0;
    padding: 0;
    background: none;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    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;
}

.mainbar {
    padding: 2rem 0;
    text-align: center;
}

.mainbar>h1 {
    font-size: 1.6rem;
    text-align: center;
    font-weight: normal;
    line-height: 1.3;
    color: #363739;
    color: #D24217;
    margin: 1rem auto 0 auto;
    padding: 0;
    font-family: 'Libre Baskerville', serif;
    max-width: 80%;
}

.mainbar-content {
    margin: 0 auto;
    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;
    align-items: center;
}

.mainmenu-wrapper {
    margin: 0 0 0 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.mainmenu-wrapper .mainmenu {
    margin-left: 1.5rem;
}

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

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

.mainbar-right {
    margin: 1rem 0 0 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;
    align-items: center;
}

.logo {
    display: block;
    margin: 0;
    text-decoration: none;
    text-align: left;
}

.logo>img {
    display: inline-block;
    height: 170px;
    width: auto;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.logo>h1 {
    font-size: 1.3rem;
    line-height: 1;
    font-weight: normal;
    text-align: left;
    margin: 0.75rem 0 0 0;
    padding: 0;
    color: #363739;
    text-decoration: none;
}

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

.topmenu>li {
    margin: 0 0 0 0.75rem;
}

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

.topmenu>li>a,
.topmenu>li>button {
    display: block;
    text-decoration: none;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -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: 2px solid #7f8082;
    color: #7f8082;
    text-align: center;
    background: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.topmenu>li>a>.svgicon,
.topmenu>li>button>.svgicon {
    height: 100%;
    width: 50%;
}

.topmenu>li>a.long {
    width: auto;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    padding: 0 1rem;
    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;
    font-size: 1.1rem;
    line-height: 1;
    font-weight: normal;
}

.topmenu>li>a.long>.svgicon {
    width: 1.5rem;
    margin-left: 0.5rem;
}

.b1 {
    background: none;
    margin: 0;
    padding: 1rem 1.5rem;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
    color: #6ba9ac;
    border: 2px solid #9bdee1;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

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

.home-despre {
    background: #fdecda;

}

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

.home-despre-left {
    width: 100%;
    text-align: left;
    position: relative;
    height: 30vh;
}

.home-despre-left>h1 {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    color: #fff;
    padding: 0 1rem;
    /*background: #f7c93a;*/
    margin: 0;
    font-weight: normal;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
    width: calc(100% - 2rem);
}

.home-despre-left>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-despre-right {
    width: auto;
    padding: 0;
    text-align: center;
    max-width: 800px;
    margin: 1.5rem auto 1.5rem auto;
    /*position: absolute;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    max-width: 600px;
    background: url('../media/bg-black-60.png');*/
}

.home-despre-right .home-title {
    text-align: center;
    color: #363739;
    margin-bottom: 1rem;
}

.home-despre-desc {
    margin: 0 0 0 0;
}

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

.home-despre .b1 {
    border-color: #363739;
    color: #363739;
    text-transform: uppercase;
    margin: 1.5rem 0 0 0;
    font-size: 0.9rem;
    line-height: 1.1;
    padding: 1.25rem 2rem;
}

.home-servicii {
    position: relative;
    z-index: 5;
    padding-top: 2rem;
    background: #BF3766;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#264ccb+0,264ccb+12,ffffff+100&1+0,1+12,0+13 */
    background: -moz-linear-gradient(top, rgba(197, 197, 201, 1) 0%, rgba(197, 197, 201, 1) 15rem, rgba(40, 78, 204, 0) 15rem, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(197, 197, 201, 1) 0%, rgba(197, 197, 201, 1) 15rem, rgba(40, 78, 204, 0) 15rem, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(197, 197, 201, 1) 0%, rgba(197, 197, 201, 1) 15rem, rgba(40, 78, 204, 0) 15rem, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#264ccb', endColorstr='#00ffffff', GradientType=0);
    /* IE6-9 */

}

.home-servicii+.home-servicii {
    margin-top: 2rem;
}

.home-servicii-thumbs-wrapper {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f4f2ef+20,f4f2ef+21,f4f2ef+79,f4f2ef+79,f4f2ef+80,ffffff+100&0+0,0+20,1+21,1+79,0+80,0+100 */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(244, 242, 239, 0) 15%, rgba(244, 242, 239, 1) 15%, rgba(244, 242, 239, 1) 85%, rgba(244, 242, 239, 0) 85%, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(244, 242, 239, 0) 15%, rgba(244, 242, 239, 1) 15%, rgba(244, 242, 239, 1) 85%, rgba(244, 242, 239, 0) 85%, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(244, 242, 239, 0) 15%, rgba(244, 242, 239, 1) 15%, rgba(244, 242, 239, 1) 85%, rgba(244, 242, 239, 0) 85%, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=0);
    /* IE6-9 */

}

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

.home-servicii-thumbs+.home-servicii-thumbs {
    margin-top: 2rem;
}

.home-servicii-thumbs-column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: calc((100% - 4rem) / 3);
}

.home-servicii-thumbs-column .home-servicii-box {
    margin-top: 2rem;
}

.home-servicii-thumbs-column .home-servicii-box:first-child {
    margin-top: 0;
}

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

.home-servicii-thumbs2>a {
    width: 100%;
    margin-top: 1rem;
}

.home-servicii-thumbs2>a:first-child {
    margin-top: 0;
}

.home-servicii-box {
    display: block;
    text-decoration: none;
    position: relative;
    height: 25vh;
    background: #ededed;
}

.home-servicii-box>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-servicii-box>span {
    background: #fff;
    padding: 1rem;
    margin: 0;
    display: inline-block;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: normal;
    color: #d34d24;
    width: 100%;
    border: 2px solid #fff;
    /*font-family: 'Libre Baskerville', serif;*/
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
}

.hsbbg {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0%;
    width: 100%;
    z-index: 5;
    background: #027788;
    -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(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hsb1>span {
    color: #027788;
}

.hsb2>span {
    color: #667148;
}

.hsb3>span {
    color: #A13E21;
}

.hsb4>span {
    color: #397779;
}

.hsb5>span {
    color: #5B7B6C;
}

.hsb6>span {
    color: #BFA38C;
}

.hsb7>span {
    color: #647e56;
}

.hsb8>span {
    color: #927943;
}

.hsb9>span {
    color: #8f7173;
}

.hsb10>span {
    color: #958372;
}

.hsb11>span {
    color: #595f5d;
}

.hsb1 .hsbbg {
    background: #027788;
}

.hsb2 .hsbbg {
    background: #667148;
}

.hsb3 .hsbbg {
    background: #A13E21;
}

.hsb4 .hsbbg {
    background: #397779;
}

.hsb5 .hsbbg {
    background: #5CAC87;
}

.hsb6 .hsbbg {
    background: #BFA38C;
}

.hsb7 .hsbbg {
    background: #647e56;
}

.hsb8 .hsbbg {
    background: #927943;
}

.hsb9 .hsbbg {
    background: #8f7173;
}

.hsb10 .hsbbg {
    background: #958372;
}

.hsb11 .hsbbg {
    background: #595f5d;
}

.home-contact {
    position: relative;
    padding-top: 2rem;
    margin-top: 3rem;
    background: #7E9B57;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#7e9b57+0,7e9b57+18,ffffff+100&1+0,1+17,0+18 */
    background: -moz-linear-gradient(top, rgba(253, 236, 218, 1) 0%, rgba(253, 236, 218, 1) 17rem, rgba(156, 201, 34, 0) 17rem, rgba(255, 255, 255, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(253, 236, 218, 1) 0%, rgba(253, 236, 218, 1) 17rem, rgba(156, 201, 34, 0) 17rem, rgba(255, 255, 255, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(253, 236, 218, 1) 0%, rgba(253, 236, 218, 1) 17rem, rgba(156, 201, 34, 0) 17rem, rgba(255, 255, 255, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7e9b57', endColorstr='#00ffffff', GradientType=0);
    /* IE6-9 */
}

.home-contact-info {
    background: #fff;
    padding: 2rem 1rem 0 1rem;
    /*-webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;*/
    text-align: center;
}

.home-contact-info p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #363739;
    text-align: center;
}

.home-contact-info p strong {
    color: #6ba9ac;
    font-weight: normal;
}

.home-contact-info p a {
    margin: 0 0.5rem;
}

.home-contact-info p.home-contact-title {
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.home-contact-steps {
    margin: 2rem 0 0 0;
    list-style: none;
    padding: 2rem 0;
    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;
    background: #fff;
    border-top: 2px solid #c5c5c9;
}

.home-contact-steps>li {
    text-align: center;
    position: relative;
    margin: 1rem 0 0 0;
}

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

.home-contact-steps>li>p {
    text-align: center;
}

.home-contact-steps>li .bulina {
    position: absolute;
    left: -2rem;
    top: 0;
    -webkit-transform: translate(-100%, -35%);
    -ms-transform: translate(-100%, -35%);
    transform: translate(-100%, -35%);
    display: none;
}

.home-contact-steps>li:nth-child(even) .bulina {
    position: absolute;
    left: auto;
    right: -2rem;
    top: 0;
    -webkit-transform: translate(100%, -35%);
    -ms-transform: translate(100%, -35%);
    transform: translate(100%, -35%);
}

.bulina {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    background: #E9FFB5;
    color: #9CC922;
    text-align: center;
}

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

.invisible {
    display: none;
}


.page-price-notice {
    margin: 1rem 0 0 0;
    background: #fdecda;
}

.infosection+.page-price-notice {
    margin-top: 0;
}

.page-price-notice-content {
    background: #fff;
    padding: 2rem;
    text-align: center;
}

.page-price-notice-content>p {
    color: #363739;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
}

.page-price-notice-footer {
    margin-top: 1.5rem;
}

.page-price-notice-footer>p {
    margin: 1rem 0 0 0;
    color: #363739;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.page-price-notice-footer>p:first-child {
    margin-top: 0;
}

.page-price-notice-footer a {
    color: #A13E21;
    text-decoration: underline;
}

.page-price-notice .b1 {
    border-color: #FFBE60;
    color: #A13E21;
    padding: 1rem 1.5rem;
}

.page-intro {
    background: #fdecda;
    position: relative;
    padding: 2rem 0;
    text-align: center;
}


.page-intro-title {
    font-size: 1.5rem;
    text-align: center;
    font-weight: normal;
    line-height: 1.3;
    color: #363739;
    padding: 0 1rem 1rem 1rem;
    margin: 0;
}

.page-intro-text {
    color: #363739;
    padding: 0 1rem 0 1rem;
}

.page-intro-text>p {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
    margin: 1rem 0 0 0;
    color: #363739;
}

.page-intro-text>p:first-child {
    margin-top: 0;
}

.page-intro-text>p a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
}

.page-intro-text>p strong {
    color: #6ba9ac;
    font-weight: normal;
}

.page-intro-img {
    width: 100%;
    height: auto;
    margin-top: 1.5rem;
}

.page-intro-img>a {
    width: 100%;
    display: block;
    margin-top: 1rem;
    text-decoration: none;
    position: relative;
}

.page-intro-img>a::after {
    content: '';
    padding-bottom: 100%;
    display: block;
}

.page-intro-img>a:first-child {
    margin-top: 0;
}

.page-intro-img>a>img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.page-catchphrase {
    background: #A13E21;
    padding: 1.5rem;
    margin: 0;
    display: none;
}

.page-catchphrase p {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: normal;
    color: #fff;
    padding: 0;
    margin: 0;
}



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

.page-info {
    margin-top: 2rem;
}

.page-info>.small-wrapper {
    text-align: left;
}

.page-info-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
}

.page-info-wrapper h2,
.page-info-wrapper h3,
.page-info-wrapper h4 {
    color: #A13E21;
    text-align: left;
    font-weight: normal;
    padding: 0;
    margin: 0;
}

.page-info-wrapper h2 {
    font-size: 1.3rem;
    line-height: 1.4;
}

.page-info-wrapper h3 {
    font-size: 1.2rem;
    line-height: 1.4;
}

.page-info-wrapper h4 {
    font-size: 1.1rem;
    line-height: 1.4;
}

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

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

.page-info-wrapper>p.page-info-important {
    font-size: 1.3rem;
    line-height: 1.4;
    font-style: italic;
}

.page-info-wrapper>p.page-info-bigtext {
    font-size: 1.4rem;
    line-height: 1.4;
    font-style: italic;
}

.page-info-wrapper>p.page-info-bigtext a {
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
}

.page-info-wrapper>p strong {
    color: #A13E21;
}

.page-info-wrapper ol,
.page-info-wrapper ul {
    margin: 1rem 0 0 2rem;
    padding: 0 0 0 0rem;
}

.page-info-wrapper ul {
    list-style: circle;
}

.page-info-wrapper ol>li,
.page-info-wrapper ul>li {
    position: relative;
    margin: 1rem 0 0 0;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    color: #363739;
    text-align: left;
    font-weight: normal;
}

/*.page-info-wrapper ul>li::after {
    content: '<svg class="svgicon icon-check"><use xlink:href="#icon-check"></use></svg>';
    position: absolute;
    top: 0;
    left: 0;
}*/

.page-info-wrapper ol>li strong,
.page-info-wrapper ul>li strong {
    color: #A13E21;
    font-weight: normal;
}

.page-info-wrapper ol>li:first-child,
.page-info-wrapper ul>li:first-child {
    margin-top: 0;
}

.page-info-wrapper ol>li>p,
.page-info-wrapper ul>li>p {
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    color: #363739;
    text-align: left;
    font-weight: normal;
}

.page-info-wrapper ol>li>p strong,
.page-info-wrapper ul>li>p strong {
    color: #A13E21;
    font-weight: normal;
}

.page-info-wrapper ol>li>.svgicon,
.page-info-wrapper ul>li>.svgicon {
    position: absolute;
    left: -1rem;
    top: 0;
    -webkit-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
    color: #FFBE60;
    width: 1.5rem;
    height: 1.5rem;
}



.page-info-wrapper .list1 {
    margin-top: 2rem;
    margin-left: 3rem;
}

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

.list1>li {
    position: relative;
    margin: 1rem 0 0 0;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    color: #363739;
    text-align: left;
    font-weight: normal;
}

.list1>li strong {
    color: #A13E21;
    font-weight: normal;
}

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

.list1>li>p {
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    color: #363739;
    text-align: left;
    font-weight: normal;
}

.list1>li>p strong {
    color: #A13E21;
    font-weight: normal;
}

.list1>li>.svgicon {
    position: absolute;
    left: -1rem;
    top: 0;
    -webkit-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
    color: #FFBE60;
    width: 1.5rem;
    height: 1.5rem;
}

.page-images {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.page-images>img {
    width: 100%;
    height: auto;
    margin: 0.5rem 0 0 0;
}

.page-images>img:first-child {
    margin-top: 0;
}

.infosection {
    padding: 2rem 0 2rem 0;
    position: relative;
    background: #F4F2EF;
    text-align: center;
    margin-top: 1rem;
}

.recomandare {
    text-align: center;
    position: relative;
    display: block;
    padding: 0 1rem;
}

.recomandare-title {
    color: #A13E21;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: normal;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: center;
}

.recomandare-info {
    margin: 1rem 0 0 0;
}

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

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

.recomandare .bulina {
    background: #FFBE60;
    color: #fff;
    position: absolute;
    top: -2rem;
    left: -1rem;
    -webkit-transform: translate(-100%, 0%);
    -ms-transform: translate(-100%, 0%);
    transform: translate(-100%, 0%);
}

.maintitle-wrapper {
    background: #fdecda;
    padding: 2rem 0;
    text-align: center;
}

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

.cform {
    margin: 2rem auto 0 auto;
    padding: 0 1rem;
}

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

.cform-row input,
.cform-row textarea,
.cform-row select {
    width: auto;
    display: block;
    text-align: left;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    color: #363739;
    border: 0;
    background: #EBDDD5;
    margin: 0;
    padding: 1rem;
    flex-grow: 1;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.cform-row textarea {
    height: 200px;
    resize: none;
    line-height: 1.5;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.cform-row label {
    display: block;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: left;
    font-weight: normal;
    color: #363739;
    width: 100%;
}

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

.cform-footer .error {
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
    margin: 0 0 1rem 0;
}

.cform .loader {
    margin-top: 1rem;
}

.cform-terms {
    margin-top: 2rem;
    text-align: center;
}

.cform-terms label {
    padding: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
    display: inline-block;
    margin: 0 0 0 0.5rem;
    cursor: pointer;
}

.cform-terms label a {
    text-decoration: none;
    color: #ffbe60;
}

.tarifetbl {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
}

.tarifetbl th {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
    color: #363739;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: #FFF6F1;
}

.tarifetbl tr:first-child th {
    border-top: 1px solid #ccc;
}

.tarifetbl tr th:first-child {
    border-left: 1px solid #ccc;
}

.tarifetbl td {
    font-size: 1rem;
    line-height: 1.3;
    font-weight: normal;
    text-align: left;
    color: #363739;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.tarifetbl tr:first-child td {
    border-top: 1px solid #ccc;
}

.tarifetbl tr td:first-child {
    border-left: 1px solid #ccc;
}

p.tarifesubtitle {
    margin: 0;
    padding: 1rem 0 0 0;
    font-size: 1.3rem;
    color: #6ba9ac;
}

p.tarifetotal {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
    color: #a13e21;
    text-align: inherit;
}

.ressource {
    background: #fff;
    padding: 1rem 1.5rem;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin: 1rem auto;
    display: inline-block;
}

.ressource>img {
    width: auto;
    height: 50px;
}

.price {
    border: 2px solid #FFBE60;
    color: #A13E21;
    padding: 1rem 1.5rem;
    font-weight: normal;
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: normal;
    text-align: center;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.home-trust {
    padding: 2rem 0;
    background: #f5f5f5;
}

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

.trust>li {
    width: 100%;
    text-align: center;
    border-top: 2px solid #fff;
    margin-top: 1rem;
    padding-top: 1rem;
}

.trust>li:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.trust>li img {
    display: inline-block;
    margin: 0;
    height: 50px;
    width: auto;
}

.trust>li p {
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: normal;
    display: block;
}

.trust>li strong {
    margin: 0 0 0 0;
    padding: 0;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: bold;
    display: block;
    color: #d34d24;
}

.page-intro .b1 {
    border-color: #FFBE60;
    color: #A13E21;
    padding: 1rem 1.5rem;
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.force-center {
    text-align: center !important;
}

.empty {
    margin: 0;
    padding: 3rem 0 0 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #363739;
}

.news_item_added_wrapper {
    margin-top: 1.5rem;
}

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


.nlist {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    margin: 3rem 0 0 0;
    padding: 0;
}

.nlist>li {
    width: 100%;
    margin-top: 2rem;
}

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

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

.nimg {
    width: 100%;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    background: #fff;
}

.nimg>img {
    height: auto;
    width: 100%;
    display: 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;
}

.ntitle {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 0 0 0.5rem 0;
    padding: 0;
    text-align: left;
    color: #027788;
}

.ndesc {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: justify;
    color: #172A32;
    margin: 0 0 1rem 0;
}

.ndesc>p {
    margin: 0;
    padding: 0;
}

.nbottom {
    padding-top: 1rem;
    border-top: 1px solid #027788;
    margin-top: auto;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.ndate {
    color: #635D52;
    font-size: 0.95rem;
    text-align: left;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
}

.but1 {
    background: #dafaff;
    border: 1px solid #027788;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal;
    text-transform: uppercase;
    padding: 1.2rem 1.5rem;
    margin: 0;
    color: #027788;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.cnt>table td {
    padding: 5px;
    vertical-align: top;
}

.mainmenubar {
    padding: 1rem 0;
    background: #D34D24;
}

.page-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 6px solid #fdecda;
    border-bottom: 6px solid #fdecda;
}

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

.page-footer-wrapper a {
    display: inline-block;
    margin: 0.25rem;

}

.page-footer-wrapper a:first-child {
    margin-left: 0;
}

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

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

.gallery-images>li {
    margin: 1rem 0 0 0;
    position: relative;
}

.gallery-images>li::after {
    display: block;
    content: '';
    padding-bottom: 100%;
}

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

.gallery-images li a {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

.page-children-wrapper {
    margin-top: 2rem;
    padding: 1rem 0;
    background: #f4f2ef;
}

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

.page-children-item {
    text-decoration: none;
    display: block;
}

.page-children-thumb {
    width: 100%;
    height: 25vh;
    background: #fdecda;
    padding: 1rem;
    border: 2px solid #d34d24;
}

.page-children-thumb>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.page-content-left {
    display: none;
    flex-grow: 1;
    order: 1;
}

.page-content-right {
    flex-grow: 1;
    order: 0;
}

.has-intro-image .page-content-left {
    display: block;
}


/* RESPONSIVE */
@media only screen and (min-width: 767px) {
    .page-info-wrapper>p.page-info-important {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .page-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 12px solid #fdecda;
        border-bottom: 12px solid #fdecda;
    }


    .page-info-wrapper h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .page-info-wrapper h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .page-info-wrapper h4 {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .page-info-wrapper ol,
    .page-info-wrapper ul {
        margin: 1rem 0 0 3rem;
    }

    .page-children-wrapper {
        margin-top: 2rem;
        padding: 3rem 0;
    }

    .page-children {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-children-thumb {
        height: 30vh;
    }

    .page-children-title {
        margin-top: 1rem;
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: left;
    }

    .home-despre-left {
        height: 50vh;
    }

    .home-despre-left>h1 {
        right: auto;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        font-size: 5rem;
        line-height: 1.1;
        padding: 0 5rem 0 0;
        text-align: left;
        width: auto;
        /*background: #f7c93a;*/
        /*border-bottom: 10px solid #fff;*/
        color: #000;
    }

    .page-catchphrase p {
        max-width: 1265px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        padding-left: 4rem;
    }

    .has-intro-image .page-catchphrase p {
        padding-left: calc(450px + 4rem);
    }

    .logo {
        position: absolute;
        z-index: 500;
        border-radius: 50%;
        padding: 2rem;
        background: #fff;
        left: 0;
        top: -4rem;
    }

    .logo>img {
        width: 200px;
        height: auto;
        max-width: none;
    }

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

    .stickybar.js-is-pinned {}

    .nlist {
        justify-content: center;
    }

    .nlist>li {
        width: 30%;
        margin-top: 3rem;
        margin-left: 5%;
    }

    /*.nlist>li:nth-child(3n+2) {
        width: 40%;
        padding-left: 5%;
        padding-right: 5%;
    }*/
    .nlist>li:nth-child(-n+3) {
        margin-top: 0;
    }

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

    .nimg {
        height: 205px;
        margin-bottom: 1.5rem;
    }

    .ntitle {
        font-size: 1.2rem;
        line-height: 1.4;
        margin: 0 0 0.5rem 0;
    }

    .ndesc {
        font-size: 0.95rem;
        line-height: 1.4;
        text-align: justify;
        margin: 0 0 1.5rem 0;
    }

    .cnt p {
        text-align: justify;
    }

    .page-intro .b1 {
        margin-left: 4rem;
    }

    .topmenu>li>a,
    .topmenu>li>button {
        width: 3rem;
        height: 3rem;
    }

    .topmenu>li>a.long>.svgicon {
        width: 2rem;
        margin-left: 1rem;
    }

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

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

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

    .cnt {
        max-width: 900px;
        margin: 3rem auto 0 auto;
    }

    .cform-row input,
    .cform-row textarea,
    .cform-row select {
        font-size: 1rem;
        line-height: 1;
        padding: 1.5rem;
    }

    .cform-terms {
        margin-top: 4rem;
    }

    .cform {
        margin: 2rem auto 0 auto;
        max-width: 700px;
        padding: 0;
    }

    .cform-row label {
        margin: 0 0 0.5rem 0;
        font-size: 1rem;
        line-height: 1.3;
        width: 30%;
        padding-top: 1.5rem;
    }

    .maintitle-wrapper {
        padding: 3rem 0;
    }

    .maintitle {
        font-size: 2rem;
        line-height: 1.3;
    }

    .ressource {
        position: absolute;
        right: 2rem;
        top: 0;
        background: #fff;
        padding: 1rem 1.5rem;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        -webkit-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        margin: 0;
    }

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

    .page-price-notice-content {
        padding: 3rem 5rem;
    }

    .page-price-notice-content>p {
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: center;
    }

    .recomandare {
        text-align: left;
        display: inline-block;
        max-width: 650px;
        padding: 0;
    }

    .recomandare-info {
        margin: 0;
    }

    .recomandare-title {
        font-size: 1.4rem;
        line-height: 1;
        text-align: left;
    }

    .recomandare-info>p {
        font-size: 1rem;
        line-height: 1.4;
        margin: 1rem 0 0 0;
        text-align: left;
    }

    .infosection {
        padding: 5rem 0 4rem 0;
        /*top: -1rem;*/
        z-index: 1;
        background: #F4F2EF;
        text-align: center;
        margin-top: 2rem;
    }


    .page-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        margin: 0 auto 0 auto;
    }

    .page-content-left {
        order: 0;
    }

    .page-content-right {
        order: 1;
    }

    .has-intro-image .page-content {
        max-width: 1265px;
    }

    .page-content-left {
        width: 400px;
        flex-grow: 0;
        flex-shrink: 0;
    }


    .page-intro-title {
        font-size: 2rem;
        line-height: 1.3;
        padding: 0 4rem 1rem 4rem;
        text-align: left;
    }

    .page-intro-text {
        padding: 0 4rem 0 4rem;
    }

    .page-intro-text>p {
        font-size: 1.2rem;
        line-height: 1.4;
        text-align: left;
        margin: 1rem 0 0 0;
    }

    .page-intro {
        padding: 5rem 0;
        text-align: left;
    }



    .page-intro-img {
        position: relative;
        top: -1rem;
        margin-top: 0;
    }

    .list1>li>.svgicon {
        width: 2rem;
        height: 2rem;
    }

    .list1 {
        padding: 0 0 0 3rem;
    }

    .page-images {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        height: 275px;
        overflow: hidden;
        margin-top: 5rem;
    }

    .page-images>img {
        height: 100%;
        width: auto;
        margin: 0 0 0 1rem;
    }

    .page-images>img:first-child {
        margin-left: 0;
    }

    .page-intro>.small-wrapper {
        position: relative;
    }


    .page-info-wrapper {
        padding-left: 4rem;
        min-height: 300px;
    }

    .page-info>.small-wrapper {
        text-align: left;
    }

    .footer-menus>li>p {
        text-align: left;
        padding-bottom: 0;
        border-bottom: 0;
        cursor: auto;
    }

    .footermenu {
        display: block;
    }

    .home-servicii-thumbs2 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .home-servicii-thumbs2>a {
        width: calc((100% - 4rem) / 3);
        margin-left: 2rem;
        margin-top: 2rem;
    }

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

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

    .b1 {
        font-size: 1.3rem;
        line-height: 1.1;
        padding: 1.5rem 2rem;
    }

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

    .home-contact-info p.home-contact-title {
        font-size: 1.8rem;
        line-height: 1;
        margin-bottom: 1.5rem;
    }

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

    .home-contact-info {
        padding: 3rem 0 0 0;
        text-align: center;
    }

    .home-contact-info p {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .home-contact {
        top: -3rem;
        padding-top: 7rem;
        margin-top: 0;
    }

    .internal-links {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .footermenu>li>a {
        text-align: left;
    }

    .footer-menus>li {
        text-align: left;
    }

    .footer-right .social {
        margin-top: 1.5rem;
        justify-content: flex-end;

    }

    .footer-right {
        text-align: right;
        margin-top: 0;
        padding-left: 1.5rem;
    }

    .footer-top-line-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .footer-top-line {
        padding: 4rem 0;
        margin: 2rem 0 0 0;
    }

    .footer-menus {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .footer-menus>li {
        margin-left: 6rem;
        text-align: left;
        margin-top: 0;
    }

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

    .home-servicii {
        padding-top: 3rem;
    }

    .trust>li p {
        font-size: 1rem;
        line-height: 1.3;
    }

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

    .trust>li {
        width: calc((100% - 4px) / 3);
        text-align: center;
        border-left: 2px solid #fff;
        border-top: 0;
        margin: 0;
        padding: 0;
    }

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

    .home-trust {
        padding: 3rem 0;
    }

    .home-servicii-box>span {
        font-size: 1rem;
        line-height: 1.5;
    }

    .home-despre .b1 {
        margin: 2rem 0 0 0;
        font-size: 1.1rem;
        line-height: 1.1;
        padding: 1.25rem 2rem;
    }

    .home-title {
        margin: 0 0 2rem 0;
        font-size: 1.8rem;
        line-height: 1.3;
    }

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

    .mainbar>h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        max-width: none;
    }

    .social>li>a {
        width: 3rem;
        height: 3rem;
    }

    .social>li>a.button {
        width: 3rem;
        height: 3rem;
    }

    .topmenu {
        margin: 1rem 0 0 0;
    }

    .mainbar-left {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }

    .mainbar-right {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
    }

    .contact-place {
        padding: 3rem;
        border-left: 1px solid #B8896D;
        border-top: 0;
    }

    .contact-item {
        text-align: left;
    }

    .contact-program {
        text-align: right;
        padding: 3rem;
    }

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

    .contact {
        padding: 2rem 0;
        margin-top: 1rem;
    }

    .page-info-wrapper .contact {
        margin-top: 0;
        padding: 0;
    }

    .page-info-wrapper .contact h2 {
        text-align: right;
        color: #86D022;
    }

    .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_desc {}

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

    .shop_pi_ghidul_notice {
        text-align: left;
    }

    .shop_pi_price {
        text-align: right;
    }



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

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

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

    .wrapper {
        max-width: 1680px;
    }

    .small-wrapper {
        max-width: 1265px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .info {
        text-align: left;
    }

    .error {}

    .main {
        margin-top: 1rem;
        margin-bottom: 0;
    }

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

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

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

    .form1 .error,
    .form1 .info {
        text-align: center;
    }



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


    /* FOOTER ----------------------------------------------------------------------------------- */
    .cookies-disclaimer {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 1.5rem;
    }

    .cookies-disclaimer-more {
        text-align: left;
        width: 85%;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .cookies-agree {
        width: 10%;
        margin: 0;
    }
}

@media only screen and (min-width: 1100px) {
    .mainbar-right {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        margin: 0;
    }

    .topmenu {
        margin: 0 0 0 2rem;
    }

    .mainmenu li a {
        font-size: 1.1rem;
        line-height: 1;
    }

    .home-servicii-box>span {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}

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

@media only screen and (min-width: 1680px) {
    .social>li>a {
        width: 3rem;
        height: 3rem;
    }

    .topmenu>li>a,
    .topmenu>li>button {
        width: 3.5rem;
        height: 3.5rem;
    }

    .topmenu {
        margin-left: 3rem;
    }

    .home-trust {
        padding: 3rem 0;
    }
}

@media only screen and (max-width: 768px) {
    .page-children>li {
        width: 100%;
        margin-top: 1rem;
    }

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

@media only screen and (min-width: 767px) and (max-width: 1099px) {
    .page-children>li {
        width: calc((100% - 1rem) / 2);
        margin-left: 1rem;
        margin-top: 1rem;
    }

    .page-children>li:nth-child(-n+2) {
        margin-top: 0;
    }

    .page-children>li:nth-child(2n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1599px) {
    .page-children>li {
        width: calc((100% - 4rem) / 3);
        margin-left: 2rem;
        margin-top: 2rem;
    }

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

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

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

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

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

@media only screen and (max-width: 1099px) {
    .gallery-images>li {
        width: calc((100% - 0.5rem) / 2);
        margin-left: 0.5rem;
        margin-top: 0.5rem;
    }

    .gallery-images>li:nth-child(-n+2) {
        margin-top: 0;
    }

    .gallery-images>li:nth-child(2n+1) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 1100px) and (max-width: 1499px) {
    .gallery-images>li {
        width: calc((100% - 3rem) / 4);
        margin-left: 1rem;
        margin-top: 1rem;
    }

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

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

@media only screen and (min-width: 1500px) {
    .gallery-images>li {
        width: calc((100% - 4rem) / 5);
        margin-left: 1rem;
        margin-top: 1rem;
    }

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

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

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

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

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

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

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

    .footer-menus>li>p:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 6px 0 6px;
        border-color: #cccccc transparent transparent transparent;
        position: absolute;
        right: 0;
        top: 0;
    }

    .fm {
        margin-bottom: 1rem;
    }

    .home-contact-info p a {
        display: block;
        margin: 0.5rem 0;
    }

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

    .page-intro-img>a {
        width: calc((100% - 0.5rem) / 2);
        margin-left: 0.5rem;
        margin-top: 0.5rem;
    }

    .page-intro-img>a:nth-child(-n+2) {
        margin-top: 0;
    }

    .page-intro-img>a:nth-child(2n+1) {
        margin-left: 0;
    }
}

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

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

@media (hover: hover) {

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

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

    .mainmenu>li>a:hover,
    .mainmenu>li:hover>a {
        color: #fff;
        background: #FF9D63;
    }

    .mainmenu>li>ul>li>a:hover,
    .mainmenu>li>ul>li:hover>a {
        background: #FF9D63;
        color: #fff;
    }

    .mainmenu>li>ul>li>ul>li>a:hover,
    .mainmenu>li>ul>li>ul>li:hover>a {
        background: #D76F32;
        color: #fff;
    }

    .lang_url:hover ul {
        display: block;
    }

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

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

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

    .cookies-disclaimer-more:hover {
        color: #ccc;
    }

    .cookies-agree:hover {
        background: #ccc;
    }

    .buton1:hover {
        background: #eaa77a;
    }

    .buton2:hover {
        color: #eaa77a;
    }

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

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

    .topmenu>li>a:hover,
    .topmenu>li:hover>a,
    .topmenu>li>button:hover,
    .topmenu>li:hover>button {
        color: #FF9D63;
        border-color: #FF9D63;
    }

    .internal-links li a:hover,
    .internal-links li:hover a {
        color: #FFBE60;
    }

    .searchbutton:hover {
        background: #FFBE60;
        border-color: #FFBE60;
        color: #2f2f30;
    }

    .simple_button:hover {
        color: #FF9D63;
    }

    .b1:hover {
        border-color: #FFBE60;
        color: #FFBE60;
    }

    .home-despre .b1:hover {
        background: #FFBE60;
        color: #fff;
    }

    /*.home-servicii-box:hover .hsbbg {
        height: 100%;
    }
    .home-servicii-box:hover>span {
        background: none;
        color: #fff;
    }*/
}