a,
body,
div,
footer,
h1,
h3,
h5,
h6,
header,
hr,
html,
img,
li,
menu,
nav,
span,
ul {
    border: 0;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
    border: 0;
    margin: 0;
    padding: 0;
    /* font-family: 'Roboto', sans-serif; */
    font-family: arial, helvetica, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    background: #f3f3f3;
}

.site-header{
    line-height:0px;
}

.header-box {
    display: flex;
    position:relative;
    overflow: hidden;
}

.header-box:before, .header-box:after {
    content: '';
    background: url("../img/leaf.png") no-repeat;
    top: -10px;
    bottom: 0px;
    position: absolute;
    height: 100%;
    background-size: cover;
    width: 170px;
    z-index: 10;
}

.header-box:before{
    left: -90px;
    transform: rotate(25deg);
}

.header-box:after{
    right: -90px;
    top: -70px;
    height: 140%;
    transform: rotate(5deg);
}

.header-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 630px);
}

.header-icons {
    background: #9EB83D;
    padding: 30px;
    width: 600px;
    margin-left: auto;
    position: relative;
    z-index: 10;
    display:flex;
    padding-left:80px;
    gap:50px;
}
.header-icons:before {
    content: '';
    width: 100px;
    left: -30px;
    position: absolute;
    background: #9eb83d;
    top: -10px;
    bottom: -10px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    z-index: -1;
}

* {
    box-sizing: border-box;
}

hr {
    height: 1px;
    background: #ccc;
}
.summary p{
    font-size:15px!important;
    margin-top:5px;
    margin-bottom:5px;
}
.green{
    color:green;
}
.color-red{
    color:#CC0000;
}
.lt{
    text-decoration: line-through;
}
p {
    /*font-family:'georgia';*/
}

.mobile-opinion{
    display:none;
}

.d-flex {
    display: flex;
}

.clear {
    clear: both;
}

.only-mobile {
    display: none;
}

.content-from-aside {
    display: none;
}

.a-center {
    text-align: center !important;
}
.a-right {
    text-align: center;
}
.bigUnd {
    font-size: 23px;
    font-weight: bold;
    text-decoration: underline;
}
.redUp {
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
}
.light {
    font-weight: 300;
}
.regular {
    font-weight: 400;
}
.medium {
    font-weight: 500;
}
.bold {
    font-weight: 700;
}
.underline {
    text-decoration: underline;
}

.italic {
    font-style: italic;
}
.lspac {
    letter-spacing: 0.5px;
}
.justify {
    text-align: justify;
}
.fullWidth {
    width: 100%;
}
.uppercase {
    text-transform: uppercase;
}
.fb {
    color: #385898;
    font-weight: bold;
}
.mainColor {
    color: #f9cb37 !important;
}
.big {
    font-size: 28px;
    line-height: 34px;
}
.offer {
    font-weight: 700;
}
.fbSmall {
    font-size: 9px !important;
}
.mainProd {
    width: 40%;
    margin: 0 auto;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    max-height:350px;
    object-fit: contain;
}
.del {
    text-decoration: line-through;
    color: #ff0000;
}
.black {
    color: #000 !important;
}

.font25 {
    font-size: 25px;
    line-height: 32px;
}

.under-links a {
    word-wrap: break-word;
    margin-bottom: 5px;
    display: block;
}

#pTextAboveProductImg p.mobile {
    display: none;
}

b {
    color: #244061;
}

.over-title{
    margin-top:15px !important;
    color: #c00;
}

/* MAIN MENU */

nav.main-menu-section {
    background: #385c28;
    position: -webkit-sticky;
    position:sticky;
    top:0;
    border-bottom:2px solid #9EB83D;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.main-menu-section ul {
    display:flex;
    align-items: center;
    justify-content: center;
}

.main-menu-section li {
    width: 25%;
    text-align:center;
    display:block;
    line-height:1.2;
    opacity:1;
}

.main-menu-section li a {
    padding:15px 20px;
    display:block;
    color:#fff;
    opacity:1;
    transition:color 0.5s ease-in-out;
}

.main-menu-section li a:hover {
    color:#000;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-menu-section ul li {
    --c: #9EB83D;
    color: var(--c);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
}

.main-menu-section ul li span {
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--c);
    transform: translateY(-140%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.main-menu-section ul li:hover {
    color: #fff;
}

.main-menu-section ul li:hover span {
    transform: translateY(0) scale(2);
}

.main-menu-section ul li span:nth-child(1) {
    --n: 1;
}

.main-menu-section ul li span:nth-child(2) {
    --n: 2;
}

.main-menu-section ul li span:nth-child(3) {
    --n: 3;
}

.main-menu-section ul li span:nth-child(4) {
    --n: 4;
}
/* OWL */

.owl-dots {
    margin: 0 auto;
    text-align: center;
    margin-top: 25px;
}

.owl-carousel .owl-dots .owl-dot span {
    height: 24px;
    width: 24px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    opacity: 0.6;
    background: #797979;
    display: block;
    border-radius: 20px;
    margin: 0px 5px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    width: 40px;
    height: 24px;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    background: #ff8000;
    opacity: 1;
}

.book-pages {
    width: calc(100% - 70px);
    margin: 0 auto;
}

.owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% + 70px);
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    margin-left: -35px;
    margin-right: -35px;
    z-index: -1;
}

.owl-nav button {
    margin: 0px;
}

.owl-nav button i {
    font-size: 50px;
}

.owl-nav button:last-child {
    margin-left: auto;
}

.owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

aside p {
    font-size: 17px;
    line-height: 27px;
}

h3 {
    padding: 15px 0px;
}
.pullLeft {
    float: left;
}


input[type="submit"],
.popupText button {
    cursor: pointer;
    transition: 0.2s linear;
}


input[type="submit"]:hover,
.popupText button:hover:not(:disabled) {
    opacity: 0.7;
}

a {
    transition: 0.2s linear;
}

.promoBox a {
    display: inline-block;
    text-align: center;
    font-size: 30px;
    line-height: 37px;
}

.promoBox a:hover {
    text-decoration: none;
}

.pullRight {
    float: right;
}

div.main {
    padding: 20px 0px;
}

div.mainContainer {
    width: 1050px;
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.add-to-cart {
    background: linear-gradient(180deg, #FFF99D, #FFE03C);
    padding: 15px 40px;
    border-radius: 10px;
    border: 1px solid #ECBB3B;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: #76590b;
    font-size:20px;
    transition: 0.2s ease-in-out;
    display:block;
    opacity:1 !important
}

.icon-text-item {
    display:flex;
    align-items: center;
    gap:20px;
}

.icons-box{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.icon-box{
    border: 1px solid #54c141;
    width: calc(50% - 8px);
}

.icon-text-item .icon-item {
    width: 70px;
    height: 70px;
    background: #54c141;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-text-item  p {
    margin:0 !important;
    display:block;
    max-width: calc(100% - 90px);
}

.icon-text-item .icon-item img {
    max-width: 70%;
}

.add-to-cart:hover{
    background: linear-gradient(180deg, #FFE03C, #FFF99D);
}

div.sideBoxes {
    width: 100%;
    padding:30px;
}

div.mainContent {
    width: 70%;
    padding-right: 30px;
}

aside {
    width: 30%;
}

aside .promo {
    margin-top: 0px;
}

.info {
    background: #fff6da;
    border: 1px solid #ffc308;
    padding: 20px 20px;
    margin: 20px 0px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    text-align: justify;
}

.alert {
    background: #ffdada;
    border: 1px solid #ff0808;
    padding: 30px 20px;
    margin: 20px 0px;
    height: 100%;
    text-align: center;
}

.dateAuthor p {
    font-size: 13px;
}

.authorFB {
    font-size: 14px;
    color: #385898;
    font-weight: bold;
    color: #385898;
    font-weight: bold;
    padding-top: 10px;
}

.mainArticle p {
    padding-bottom: 20px;
    text-align: justify;
}

div.promoBox {
    text-align: center;
}

.promoBox > * {
    margin-bottom: 20px;
}

.promoBox > *:last-child {
    margin-bottom: 0px;
}

.promo,
.popupText button.promo {
    background: #28a745;
    padding: 15px 25px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    font-size: 26px;
    line-height: 33px;
    font-weight: 500;
    text-align: center;
    margin: 20px auto;
}
.promo:hover:not(:disabled),
.popupText button.promo:hover:not(:disabled) {
    background: #218838;
    opacity: 1 !important;
}

p.promo {
    text-align: center;
}

.promo img {
    width: 100%;
}

.verificated{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #00000070;
    color: gold;
    letter-spacing:1px;
    font-size:15px;
    font-weight:600;
    padding: 10px;
    border-radius: 10px;
    gap: 5px;
}

p,
.mainContent li {
    font-size: 18px;
    line-height: 26px;
}

img.imgArticle {
    margin-left: 20px;
    margin-bottom: 6px;
}

footer {
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.small{
    font-size:12px;
    color: #888;
    line-height:20px;
    word-wrap: break-word;
}

footer p.small {
    font-size: 12px;
    color: #aaa;
    line-height: 19px;
    text-align: center;
}

ul.list {
    padding-left: 20px;
}

.bigList {
    font-size: 22px;
    line-height: 29px;
}

ul.list li {
    padding-bottom: 5px;
}

.cert {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.cert img {
    padding-left: 20px;
    width: 320px;
}

span.otherStyle {
    background: #f9cb37;
    padding: 5px 10px;
    font-weight: 900;
    color: #000;
}

.bigger {
    font-size: 19px;
    line-height: 28px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.form-group {
    text-align: left;
    margin-bottom:15px;
}

.radioGroup{
    text-align: left;
    margin-bottom:10px;
}

.radioGroup label {
    width: 100%;
    margin-left: 10px;
}

.price-under-photo {
    text-align: center;
    text-decoration: none;
    padding-top: 0px;
}

.price-under-photo .old-price {
    text-decoration: line-through;
    color: #ff0000;
}

.price-under-photo .current-price {
    font-weight: bold;
    font-size: 50px;
}

h3.form-order-title {
    font-size: 45px;
    text-align: center;
    line-height: 55px;
}
.buyForm {
    /*margin-bottom: 30px;*/
}


.under-product-text {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.red {
    color: red;
}

.green {
    color: green;
}

.form-icons {
    flex-wrap: wrap;
    margin: 20px 0px;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    justify-content: center;
}

.form-icons > img {
    width: initial !important;
}

.form-icons .form-single-icon {
    max-height: 30px;
    object-fit: contain;
    margin: 15px;
}

.form-icons-item {
    align-items: center;
    font-size: 14px;
    margin: 10px 15px;
}

.form-icons-item:first-child {
    margin-left: 0px;
}

.form-icons-item:last-child {
    margin-right: 0px;
}

.form-icons-item:last-child img {
    height: 35px;
}

.form-icons-item img {
    height: 40px;
    object-fit: contain;
    margin-right: 10px;
    max-width: 40px;
}

img {
    max-width: 100%;
}

div.form {
    width: 570px;
    margin: 0 auto;
    text-align: center;
}

div.form h3 {
    text-align: center;
}

input,
.popupText button {
    margin-right: 15px;
    padding: 8px 10px;
    background: #f1efef;
    outline: none;
    border: 1px solid #b1b1b1;
    border-radius: 5px;
}

input,
select {
    font-size: 17px;
    padding: 8px 10px;
    background: #fff;
    outline: none;
    border: 1px solid #b1b1b1;
    border-radius: 10px;
}

input[type="submit"] {
    margin: 0 auto;
    display: inline-block;
    border: none;
    padding: 25px 20px;
    width: 100% !important;
}

.popupText button {
    margin: 0 auto !important;
    display: inline-block;
    border: none !important;
    padding: 25px 15px !important;
}

input:last-of-type {
    margin-right: 0px;
}

.col-sm-1 {
    width: 100%;
}

.col-sm-2 {
    width: 66%;
}

.col-sm-3 {
    width: calc(33% - 16px);
}

.formContent {
    width: 400px;
}

div.buyForm div.promoBox p.promo {
    background: none;
}

div.buy-form input{
    width: 100%;
}

.formGroup-3-1{
    display:flex;
    gap:20px;
}
.formGroup-3-1.reverse {
    flex-direction: row-reverse;
}

.formGroup-half{
    display:flex;
    gap:20px;
}
.formGroup-half .form-group{
    width:50%;
}
.formGroup-3-1 .form-group:first-child{
    width:70%;
}

.formGroup-3-1 .form-group:last-child {
    width: 30%;
}

.smallCert {
    display: none;
}

.dr {
    width: 41%;
    float: right;
}

.popupBox {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0000008c;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popupContent {
    width: 750px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px #000;
    max-width: 750px;
}
span.closePopup {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
}

.popupLeftText {
    width: 100%;
    background: #fff9;
    position: relative;
}

.popupProduct {
    position: absolute;
    right: 20px;
    bottom: 0px;
    width: 220px;
    height: auto;
    top: 0px;
    margin: auto;
    display: flex;
}

.popupText span.otherStyle {
    padding: 3px 10px;
}

.popupText {
    font-family: "Roboto", sans-serif;
}

.popupText h3 {
    font-size: 27px;
    line-height: 37px;
    font-weight: 700;
    text-align: center;
    padding-top: 0px;
}

.popupText span.otherStyle {
    font-size: inherit;
}

.popupText span.text {
    font-size: 22px;
}

.popupText input,
.popupText a.promo,
.popupText button.promo {
    width: 100%;
}

.popupText a.defaultBtn.promo {
    margin: 0px;
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000;
}

.popupText a.defaultBtn {
    text-align: center;
    display: block;
    width: 100%;
    text-decoration: none;
    color: #4472c4b5;
}

.priceDiscPopup {
    position: absolute;
    background: #28a745;
    border-radius: 50%;
    padding: 41px 7px;
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    top: -7px;
    transform: rotate(-17deg);
    left: -13px;
}

span.smileInfo {
    padding: 10px;
    display: block;
    margin-right: 137px;
    font-size: 20px;
    text-align: center;
    font-weight: 400;
}

a:hover {
    opacity: 0.8;
}

.popupText input[type="text"] {
    padding: 18px;
    font-size: 18px;
    margin: 10px 0px;
}

.popupText .lineSeparator {
    height: 2px;
    background: #f9cb37;
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.popupProduct img {
    width: 100%;
    object-fit: contain;
}

.rules *{
    word-break: break-word;
}

.rules h1 {
    padding-bottom: 15px;
}

.rules p {
    padding: 15px 0px;
    text-align: justify;
}

.rules ul.rulesList {
    list-style-type: decimal;
    margin-left: 27px;
}

.rules ul.rulesList li {
    padding-bottom: 8px;
    text-align: justify;
}

.rules ul.rulesList li ul.secondList {
    padding: 13px 22px 0px;
    list-style-type: lower-alpha;
}

.rules h2 {
    font-size: 22px;
    padding-bottom: 0px;
    font-weight: 500;
}

.footerMenu {
    text-align: center;
}

ul.footerMenuContent {
    list-style-type: none;
}

ul.footerMenuContent li {
    display: inline-block;
    margin: 5px;
}

ul.footerMenuContent li a {
    color: #888;
    font-size: 12px;
}

.path {
    margin: 7px 0px 15px;
}


@media screen and (min-width: 500px) {
    .desktopContent {
        display: block;
    }

    .mobileContent {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .desktopContent {
        display: none;
    }

    .mobileContent {
        display: block;
    }
    .imgProd.only-mobile {
        display: block;
        max-height: 500px !important;
    }
    .imgProd.only-desktop {
        display: none;
    }
    .mainProdDiv {
        display: none;
    }
    #pTextAboveProductImg p.desktop {
        display: none;
    }
    #pTextAboveProductImg p.mobile {
        display: block;
    }
}

@media screen and (max-height: 550px) {
    .popupContent {
        height: 90%;
        overflow: auto;
        padding: 0px 30px;
        margin-top: 0px;
        top: auto;
    }

    .popupLeftText {
        height: 480px;
        transform: none;
        top: auto;
    }
}

@media screen and (max-height: 600px) and (max-width: 500px) {
    .popupContent,
    .popupLeftText {
        width: 99% !important;
        height: 99vh;
        padding: 10px 3px;
    }
}

@media screen and (max-width: 680px) {
    .popupContent,
    .popupLeftText {
        width: 98%;
    }
    .popupProduct img {
        display: none;
    }

    .popupText input,
    .popupText a.promo,
    .popupText a.defaultBtn,
    span.smileInfo,
    .popupText button.promo {
        width: 100%;
        margin-right: 0px;
    }

    .popupLeftText {
        height: auto;
        max-height: 100%;
        overflow: auto;
    }

    .main-menu-section li {
        width: 33.3333%;
    }
    
    .main-menu-section ul li:nth-child(1) {
        display:none
    }
}

@media screen and (max-width: 1200px) {
    div.mainContainer {
        width: calc(100% - 20px);
        margin: 10px;
        margin-top: 0px;
    }
}

@media screen and (max-width:1050px) {
    .header-icons {
        width: 500px;
        padding-left: 50px;
        gap: 30px;
    }

    .header-logo {
        width: calc(100% - 500px);
    }
}

@media screen and (max-width: 1000px) {
    .popupContent {
        width: 95%;
    }
    .mainProd {
        width: 55% !important;
    }
}
@media screen and (max-width: 700px) {
    .mainProd {
        width: 80% !important;
    }
    .formGroup-half, .formGroup-3-1{
        flex-wrap:wrap;
        gap:0px!important;
    }
    .form-group{
        width:100%
    }
    .form-group:first-child{
        width:100%!important;
    }
    .form-group:last-child{
        width:100%!important;
    }
}
@media screen and (max-width: 990px) {
    aside {
        display: none;
    }

    div.sideBoxes {
        padding-top: 10px;
    }

    .mobile-opinion{
        display:block;
    }    

    .content-from-aside {
        display: block;
    }

    .sideBoxes .mainContent {
        width: 100%;
        padding-right: 0px;
        margin: 0px;
    }
}

@media screen and (max-width:920px) {
    .header-icons {
        width: 400px;
        padding-left: 10px;
        gap: 20px;
    }
    .header-logo {
        width: calc(100% - 400px);
    }

    .main-menu-section ul li span {
        width: 25%;
        height: 100%;
        transform: translateY(-190%);
    }

    .main-menu-section ul li:nth-child(4), .main-menu-section ul li:nth-child(5) {
        display:none
    }
}

@media screen and (max-width: 850px) {
    .info {
        flex-direction: column;
    }

    .cert img {
        display: none;
    }

    .smallCert {
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .main-menu-section ul li span {
        transform: translateY(-150%);
    }
    .header-icons{
        display:none;
    }
    .header-logo {
        width: 100%;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 800px) {
    .box .box-head {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .box .quote {
        padding: 20px;
        position: relative;
    }

    .box .quote:before,
    .box .quote:after {
        opacity: 0.3;
    }

    .box .box-head h2 {
        width: 100%;
    }

    .img {
        float: none !important;
        margin: 10px auto !important;
    }
}

@media screen and (max-width: 700px) {
    div.form {
        width: 100%;
    }

    .icons-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .icons-section .form-icons-item {
        margin: 10px 0px;
    }

    p img {
        width: auto !important;
        height: auto !important;
        max-width: 100%;
    }

    .popupProduct {
        display: none;
    }

    .mainPopupTextCont {
        width: 100% !important;
    }

    .formGroup {
        display: block;
    }
    .formContent {
        width: 100%;
    }

    .radioGroup {
        display: flex;
    }

    .icons-box{
        flex-direction: column;
    }
    .icon-box {
        width: 100%;
    }
}

@media screen and (max-width: 550px) {
    img.dr {
        width: 100%;
        float: none;
        margin-left: 0px;
    }
    .main-menu-section ul li:nth-child(6){
        display:none
    }
    h1 {
        line-height: 35px !important;
        font-size: 30px !important;
        margin-top:30px;
    }
}

@media screen and (max-width: 480px) {

    div.mainContainer {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .sideBoxes .mainContent {
        width: calc(100% - 0px);
        padding-right: 0px;
        margin: 0px 0px;
        padding-top: 20px;
    }

    h2 {
        line-height: 32px;
        font-size: 25px;
        text-align: left;
    }



    img {
        width: 100%;
        height: auto;
    }

    .header-logo img{
        max-width: 230px;
    }

    .header-box:after {
        right: -140px;
        top: -50px;
    }

    img.like {
        width: 11px;
    }
}

/* Additional */
.errors {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

.red {
    color: #ff0000;
}

/*.yellowBg {
    background: #FFFF00;
}*/

.redBg {
    background: #ff0000;
}

.inlineBlock {
    display: inline-block;
}

.blueBg {
    background: #00ffff;
}

.nav {
    background: #525252;
    width: 100%;
    height: 44px;
}

.nav a {
    float: left;
    padding: 10px 0px;
    margin-right: 40px;
    font-size: 14px;
    color: #eee;
    text-decoration: none;
}

.nav a.logout {
    float: right;
    margin-right: 0px;
}


button.disabled:hover {
    opacity: 0.5;
}

.center-buyForm {
    max-width: 700px;
    margin: 0 auto;
    border: 3px solid #2b763d;
    border-radius: 10px;
    padding: 0px 20px 20px;
}

select {
    outline: none;
}

.errors2 {
    color: #fb6363;
    font-size: 15px;
    margin-top: 10px;
    font-weight: bold;
}

.errors2-title {
    background: #ff4545;
    color: #fff;
    /* border-radius: 28px; */
    padding: 9px 10px;
    text-transform: uppercase;
    font-size: 17px;
}

.error-field {
    border-color: red;
}

.successMsg {
    color: green;
    font-size: 15px;
    margin-top: 10px;
    font-weight: bold;
}

.loader {
    display: inline-block;
    background: url("../img/loader.gif") no-repeat;
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
}

.popupContent .errors2 {
    line-height: 16px;
    font-size: 14px;
}

.popupContent .errors2:empty {
    display: none;
}

.popupContent .successMsg {
    line-height: 16px;
    font-size: 14px;
    margin-top: 15px;
}

.popupContent .successMsg:empty {
    display: none;
}

.captchaSection {
    text-align: left;
}
.captchaSection > .iconNextCaptcha {
    width: 16px;
    height: 16px;
    vertical-align: top;
    margin-left: 4px;
    cursor: pointer;
}
.captchaSection > .captcha {
    height: 80px;
    vertical-align: bottom;
}
.captchaSection > input[type="text"] {
    margin-left: 5px;
    vertical-align: bottom;
    width: 80px;
    float: none;
    font-size: 12px;
    margin-left: -13px;
}

.editingSection label {
    display: inline-block;
}

/* Style dla tresci z wysiwyga */
.mainContent {
    line-height: 1.4;
}

.mainContent ul {
    margin: 0;
    padding: 0;
    padding-left: 20px;
}

.mainContent p {
    margin: 15px 0px;
}

.mainContent p:first-child {
    margin-top: 0px;
}

.mainContent p:last-child {
    margin-bottom: 0px;
}

.productInfoVariant-1 {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.productInfoVariant-1 > .infoProd {
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: #222;
    margin-right: 0px;
}
.productInfoVariant-1 > .infoProd > p {
    margin-bottom: 8px;
}
.productInfoVariant-1 > .infoProd > .oldPrice {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-decoration: line-through;
}
.productInfoVariant-1 > .infoProd > .newPrice {
    color: #f44336;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}
.productInfoVariant-1 > .imgProd {
    width: 100%;
    height: auto;
    max-width: 80%;
    max-height: 330px;
    object-fit: contain;
    margin-bottom: 20px;
}
.promo.promo2 {
    background: #ff8000;
    color: #fff;
}
.promo.promo2:hover {
    background: #218838;
    opacity: 1 !important;
}

.mainProdDiv {
    margin-bottom: 10px !important;
    overflow: hidden;
}
.mainProdDiv .mainProd {
    margin-top: -30px;
}

.main-prod{
    max-height:350px;
}

@media (max-width: 780px) {
    .mainProdDiv {
        margin-bottom: 25px !important;
        width: 100% !important;
    }
    .mainProdDiv .mainProd {
        margin-top: -30px;
    }
}

@media (max-width: 660px) {
    .mainProdDiv{
        margin-bottom: 25px !important;
    }
}

@media screen and (max-width: 500px) {
    input,
    select {
        width: 100% !important;
        margin-right: 0px !important;
        margin-left: 0px !important;
        margin-bottom: 10px;
    }

    .main-menu-section li {
        width: 50%;
    }

    input[type="radio"] {
        width: initial !important;
    }
}

@media (max-width: 400px) {
    .mainProdDiv .mainProd {
        margin-top: -5px;
    }

    .main-menu-section li {
        width: 100%;
    }
}
@media (max-width: 840px) {
    .productInfoVariant-1 > .imgProd {
        height: auto;
    }
    .productInfoVariant-1 > .infoProd {
        margin-right: 40px;
    }
}
@media (max-width: 700px) {
    .productInfoVariant-1 {
    }
    .productInfoVariant-1 > .imgProd {
        height: auto;
        max-width: 100%;
        min-width: 260px;
    }
    .productInfoVariant-1 > .infoProd {
        margin-right: 0px;
    }
}

.verified {
    color: #444;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}
.verified > i {
    display: inline-block;
    background: url("../img/verified.png") no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}


.name-link,
.name-link:hover{
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
}

@media (max-width: 500px) {
    .center-buyForm {
        padding: 0 10px 10px;
    }
    div.sideBoxes {
        padding: 10px 15px;
    }
}

