body {
    background: #fff;
    color: #757575;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    font-family: 'Montserrat', sans-serif;
}

.barlow {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
}

.logo img {
	max-width: 200px;
}

a {
    color: #3C3C3B;
    text-decoration: none;
    outline: none;
    transition: all 0.3s cubic-bezier(.55, 0, .1, 1);
}

a:hover,
a:focus {
    color: #EFC482;
    outline: none;
}

a.active {
    color: #CC9F58;
}

b,
strong {
    font-weight: 700;
}

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

header {
    padding: 19px 0;
}

header.with-border {
    border-bottom: 3px solid #F8F8F8;
}

table {
	font-size: 14px;
}

.help-block {
    font-family: Barlow Condensed;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #CF7C7C;
    position: absolute;
    top: 0;
    right: 0;
}

.lead {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 20px;
    line-height: 34px;
}

.h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
}

@media(min-width: 768px) {
	.h1 {
		font-size: 36px;
	}
}

/*
 *	BUTTON
 */

.btn {
    font-family: Montserrat;
    color: #3C3C3B;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 0;
}

.btn:focus {
    box-shadow: none !important;
}

.btn-link {
    color: #3C3C3B;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
    color: #EFC482;
}

.btn-primary {
    background-color: #3C3C3B !important;
    color: #fff !important;
}

.btn-secondary {
    background-color: #EFC482 !important;
    color: #fff !important;
}

.btn-dark {
    background-color: #757575 !important;
    color: #fff !important;
}

.btn-light {
    background-color: #F8F8F8 !important;
    color: #3C3C3B !important;
}

.btn-info {
    background-color: #DCEFEF !important;
    color: #3C3C3B !important;
}

.btn-sm {
    padding: 7px 18px;
    font-size: 14px;
    font-weight: 500;
}

.btn-lg {
    padding: 17px 35px;
    font-weight: 600;
}

.bg-info {
    background-color: #DCEFEF !important;
    color: #3C3C3B;
}

/*
 *	ALERTS
 */

.alert {
    border: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding: 15px 25px;
    color: #F8F8F8;
}

.alert-danger {
    background-color: #CF7C7C;
    color: #fff;
}

.alert-success {
    background-color: #7BCFAB;
    color: #f8f8f8;
}

.alert-info {
    color: #3C3C3B;
}

.alert ul {
    margin-bottom: 0;
}

/*
 *	DROPDOWNS
 */

.dropdown-menu {
    font-size: 18px;
    border-radius: 0;
    min-width: 290px;
    background: #FFFFFF;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.25);
    border: 0;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #EFC482;
}

/*
 *	LISTS
 */

.module-content ul:not(.list-unstyled),
ul:not(.list-unstyled).smaller,
.smaller {
    font-size: 14px;
    line-height: 31px;
    color: #757575;
}

.module-content ul:not(.list-unstyled) li,
ul:not(.list-unstyled).smaller li {
    padding-left: 30px;
    background-image: url('/themes/vincabee/images/angle-right.svg');
    background-repeat: no-repeat;
    background-position: top 8px left;
    list-style: none;
}

/*
 *	FORMS
 */

.form-group {
    margin: 10px 0;
    position: relative;
}

.form-control {
    border-radius: 0;
    border-color: #EFC482;
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #3C3C3B;
}

.form-control.is-invalid {
    border-color: #CF7C7C;
    background-image: url('/themes/vincabee/images/warning.svg');
}

label {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    color: #999999;
}

.required {
    color: #d92828;
}

/*
 *	SECTIONS
 */

section {
    padding: 50px 0;
}

/*
 *	MENU TOP
 */

.navbar {
    padding: 0;
}

.navbar-light .navbar-nav .nav-link {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #3C3C3B;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #EFC482;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 10px;
        padding-left: 10px;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu .nav-link {
        padding: 10px 15px;
    }

    .navbar-expand-lg .navbar-nav > .nav-item.first > .nav-link {
        padding-left: 0;
    }
}

@media(max-width: 991px) {

    .navbar,
    .col-menu {
        position: static;
    }

    .navbar-light .navbar-toggler {
        border: 0;
        color: #3C3C3B;
    }

    .navbar-light .navbar-toggler-icon {
        background-image: url("/themes/vincabee/images/menu.svg");
        width: 30px;
        height: 30px;
    }

    .navbar-toggler {
        display: flex;
        align-items: center;
        font-family: Barlow Condensed;
        font-weight: 300;
        font-size: 24px;
        line-height: 29px;
        padding: 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 163px;
        left: 0;
        background: #3C3C3B;
        width: 100%;
        padding: 0 15px;
        z-index: 1000;
    }

    .navbar-collapse .menu {
        max-width: 720px;
        margin: 0 auto;
        padding: 30px 15px;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #EFC482;
    }
	
	.navbar-light .navbar-nav .dropdown-menu{
        background-color: transparent;
		box-shadow: none;
    }
}

@media(max-width: 768px) {
    .navbar-collapse .menu {
        max-width: 540px;
        margin: 0 auto;
        padding: 30px 15px;
    }
}

/*
 *	BLOCK CART & BLOCK USERACCOUNT
 */

.block-cart,
.block-useraccount {
    position: relative;
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
}

.block-useraccount .dropdown-toggle::after,
.block-cart .dropdown-toggle::after {
    display: none;
}

.block-useraccount .btn.dropdown-toggle,
.block-cart .btn.dropdown-toggle {
    font-family: Barlow Condensed;
    font-size: 18px;
    font-weight: 300;
    padding: 5px 0;
}

/*
 *	BLOCK CART
 */

.product-name {
    line-height: 18px;
}

/*
 *	SLIDER
 */

.slider {
    padding: 40px 0 0;
    background: rgb(248, 248, 248);
    background: linear-gradient(180deg, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.slider .carousel {
    max-width: 1400px;
    margin: 0 auto;
}

.slider .carousel .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.slide-content .title {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    max-width: 580px;
}

.slide-content .title h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

@media(max-width: 768px) {
    .slide-content .title {
        font-size: 20px;
        line-height: 24px;
    }
    .slide-content .title h2 {
        font-size: 20px;
        line-height: 24px;
    }
}

.slide-content a {
    font-weight: 300;
    font-size: 21px;
    line-height: 26px;
    text-align: center;
    text-decoration-line: underline;
    color: #fff;
}

@media(max-width: 768px) {
    .slide-content a {
        font-size: 14px;
        line-height: 18px;
    }
}

.carousel-control-next,
.carousel-control-prev {
    font-size: 36px;
}

.header h1,
h1.header {
    max-width: 620px;
    font-weight: 200;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
    color: #EFC482;
    margin-left: auto;
    margin-right: auto;
}

.header h1:after,
h1.header:after {
    display: block;
    margin-top: 10px;
    content: url('/themes/vincabee/images/dots.svg');
}

.header .lead {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/*
 *	NEWSLETTER
 */

.newsletter {
    padding: 20px 0;
    background: #DCEFEF;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

/*
 *	FOOTER
 */

footer {
    background: #3C3C3B;
    padding: 60px 0;
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    color: #F8F8F8;
}

footer a {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 16px;
    color: #f8f8f8;
}

.socials a {
    display: inline-block;
    font-size: 24px;
    line-height: 28px;
}

footer hr {
    border-top: 1px solid #EFC482;
}

/*
 *	MODULE
 */

.page-title {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #3C3C3B;
}

.module-content p {
    max-width: 730px;
    margin: 15px auto 40px;
}

.module-content p.wider {
    max-width: 100%;
}

h1 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    text-transform: uppercase;
    margin: 15px auto 40px;
    color: #3C3C3B;
	word-break: break-word;
}

h2 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #3C3C3B;
    max-width: 730px;
    margin: 15px auto 40px;
	word-break: break-word;
}

h3 {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 24px;
    line-height: 38px;
    max-width: 730px;
    text-transform: uppercase;
    color: #EFC482;
    margin: 15px 0 40px;
	word-break: break-word;
}

h1:after {
    display: block;
    margin-top: 30px;
    content: url('/themes/vincabee/images/dots.svg');
}

.module-content .lead {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 20px;
    line-height: 34px;
    color: #3c3c3b;
}

.module-content .lead.bold {
    font-size: 18px;
    font-weight: 600;
}

/*
 *	BREADCRUMB
 */

.breadcrumb {
    list-style-type: none;
    padding: 10px 25px;
    margin: 20px 0;
}

.breadcrumb li {
    display: inline-block;
}

/*
 *	NEWS
 */

.news-item {
    position: relative;
}

.news-item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: #f8f8f8;
}

@media (min-width: 1200px) {
    .news-item:before {
        height: calc(100% - 50px);
    }
}

.news-item img {
    margin-top: 50px;
}

.news-content {
    padding-top: 100px;
    padding-right: 30px;
    padding-bottom: 30px;
    background: #f8f8f8;
}

.news-content .date {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
}

.news-content h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-transform: uppercase;
    margin: 15px auto 40px;
    color: #3C3C3B;
}

.news-content h2:after {
    display: block;
    margin-top: 10px;
    content: url('/themes/vincabee/images/dots.svg');
}

.news-content .text {
    font-size: 14px;
    line-height: 24px;
}

.news-item:nth-child(2n):before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: calc(100% - 50px);
    background: #f8f8f8;
}

.news-item:nth-child(2n) .text-column {
    order: 1;
}

.news-item:nth-child(2n) .photo-column {
    order: 2;
}

.news-item:nth-child(2n) .news-content {
    padding-right: 0;
    padding-left: 30px;
}

.module-content h1.news-header {
    font-weight: 200;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    color: #EFC482;
    text-align: left;
}

@media(min-width:768px) {
	.module-content h1.news-header {
		font-size: 36px;
		line-height: 44px;
	}
}

.module-content h1.news-header:after {
    display: none;
}

/*
 *	BLOG CAROUSEL
 */

.carousel-news {
    position: relative;
}

.carousel-news:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    z-index: 0;
    width: 100%;
    max-width: 825px;
    height: 412px;
    margin: auto;
    background: #f8f8f8;
}

.carousel-news .carousel-indicators {
    width: 50%;
    right: 0;
    left: auto;
    bottom: 0;
    margin: 0 -15px;
    justify-content: start;
}

@media(max-width: 991px) {
	.carousel-news .carousel-indicators {
		width: 50%;
		right: auto;
		left: 0;
		bottom: 0;
		margin: 0;
		justify-content: flex-end;
	}
}

@media(max-width: 767px) {
	.carousel-news .carousel-indicators {
		width: 100%;
		right: auto;
		left: 0;
		bottom: -20px;
		margin: 0;
		justify-content: center;
	}
}

.carousel-news .carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 90px;
    background: none;
    border: 4px solid #C4C4C4;
    background: #C4C4C4;
    opacity: 1;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 15px;
}

.carousel-news .carousel-indicators .active {
    background: transparent;
}

.carousel-news .title {
    max-width: 75%;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
}

.carousel-news .title:after {
    display: block;
    margin-top: 10px;
    content: url('/themes/vincabee/images/dots.svg');
}

.carousel-news .text {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #757575;
    margin-top: 15px;
}

/*
 *	MENU MODULE
 */

.menu-module {
    background: #F8F8F8;
    font-family: Barlow Condensed;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 0;
}

.menu-module ul {
    padding: 10px 0;
}

.menu-module li {
    padding: 14px 20px;
}

.menu-module .ul-header {
    font-family: Montserrat;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #3C3C3B;
    padding: 15px 20px;
}

.menu-column+.module-content {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.subfield {
    position: relative;
}

/*
 *  CHECKBOX
 */

.checkboxlist input[type=checkbox],
.checkbox input[type=checkbox] {
    display: block;
    position: absolute;
    top: 1px;
    width: 11px;
    height: 11px;
    margin: 4px;
}

input[type=checkbox]+label {
    position: relative;
    font-weight: 400;
    padding-left: 30px;
}

.checkboxlist input[type=checkbox]:checked+label::before,
.checkbox input[type=checkbox]:checked+label::before {
    background-image: url('/themes/vincabee/images/check.svg');
}

.checkboxlist .subfield label::before,
.checkbox label::before {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    left: 0;
    top: 3px;
    padding: 0;
    font-family: "Font Awesome\ 5 Free";
    font-size: 10px;
    font-weight: 700;
    content: "";
    text-align: center;
    color: #EFC482;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #EFC482;
    cursor: pointer;
}

.checkboxlist .help-block,
.checkbox .help-block {
    position: relative;
}

.radiolist input[type=radio] {
    display: block;
    position: absolute;
    top: 1px;
    width: 11px;
    height: 11px;
    margin: 4px;
}

input[type=radio]+label {
    position: relative;
    font-weight: 400;
    padding-left: 30px;
}

.radiolist input[type=radio]:checked+label::before {
    background-image: url('/themes/vincabee/images/check.svg');
}

.radiolist .subfield label::before {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    left: 0;
    top: 3px;
    padding: 0;
    font-family: "Font Awesome\ 5 Free";
    font-size: 10px;
    font-weight: 700;
    content: "";
    text-align: center;
    color: #EFC482;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 2px solid #EFC482;
    border-radius: 90px;
    cursor: pointer;
}

.radiolist .help-block {
    position: relative;
}

/*
 *	IMAGE
 */

.image {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 30px;
}

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

.image .details {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
}

.offer {
    margin-top: 40px;
    text-align: center;
}

.offer-label {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    padding: 18px 25px;
    background: #3c3c3b;
    color: #fff;
}

.offer-label.smaller {
    font-size: 12px;
    font-weight: normal;
    padding: 8px 25px;
    display: inline-block;
    width: auto;
}

.offer-label-is_new {
    background: #DCEFEF;
    color: #3c3c3b;
}

.offer h2 {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    color: #282828;
    margin: 15px 0;
}

.offer-thumbs {
    margin: 10px 0;
}

.offer-thumbs a {
    text-decoration: none;
}

.price {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #3c3c3b;
}

.old-price {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-decoration-line: line-through;
    color: #757575;
}

/*
 *  BREADCRUMBS
 */

.breadcrumbs {
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #757575;
}

/*
 *  PRODUCT
 */

.offer-product-name {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.offer-product-name:after {
    display: none;
}

.text-description {
    font-family: Montserrat;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.offer-product-header .price {
    font-size: 32px;
}

.product-cart-quantity {
    border: 3px solid #EFC482;
    padding: 7px 0;
    min-width: 120px;
    flex: 0;
}

.quantinty-box {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #EFC482;
    padding: 0 10px;
    cursor: pointer;
    background: none;
    border: 0;
    outline: 0 !important;
}

.product-cart-quantity input {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #EFC482;
    border: 0;
}

.offer-product-info .offer-product-header .price span span {
    font-size: 0.7em;
}

.offer-product-details .properties {
    text-align: right;
    border-bottom: 1px solid #e4e4e4;
    padding: 0px 0px 30px 0px;
}

.offer-product-details .properties_global {
    text-align: right;
    padding: 30px 0px 0px 0px;
}

.offer-product-details .properties .property,
.offer-product-details .properties_global .property {
    margin: 0 0 10px;
}

.offer-product-details .properties span,
.offer-product-details .properties_global span {
    float: left;
    font-weight: 700;
}

.offer-product-details .property-variant li {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 40px;
    height: 40px;
    font-weight: 900;
    border: 2px solid #e4e4e4;
    cursor: pointer;
}

.offer-product-details .property-variant li.selected {
    border: 2px solid #000000;
}

.offer-product-details .properties_variant #sizes {
    position: absolute;
    right: 0px;
    top: 41px;
    font-size: 0.85em;
    display: block;
    padding: 5px 0px 5px 32px;
    color: #000000;
}

.offer-product-details .cart {
    padding: 25px 0px 5px 0px;
}

.offer-product-info .ask-modal {
    position: absolute;
    top: 140px;
    left: 50%;
    width: 300px;
    margin-left: -161px;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
}

.offer-product-details .other-colors {
    margin-top: 30px;
}

.offer-product-details h3 {
    font-weight: 700;
}

#carouselProducts .carousel-indicators {
    width: 100%;
    right: 0;
    left: 0;
    bottom: -30px;
    margin: 0;
    justify-content: center;
}

#carouselProducts .carousel-indicators li {
    width: 15px;
    height: 15px;
    border-radius: 90px;
    background: none;
    border: 4px solid #C4C4C4;
    background: #C4C4C4;
    opacity: 1;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 15px;
}

#carouselProducts .carousel-indicators .active {
    background: transparent;
}

.offer-item.homepage {
    position: relative;
    height: 630px;
    overflow: hidden;
}

.offer-item.homepage img {
	position: absolute;
    top: 50%;
	left: 50%;
    transform: translateY(-50%) translateX(-50%);
	min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
}

.offer-item.homepage .product-title {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    font-family: Montserrat;
    font-weight: 300;
    font-size: 22px;
    line-height: 27px;
    text-transform: uppercase;
    color: #FFF;
    text-shadow: 2px 2px rgba(0,0,0,0.2);
}

.offer-item.homepage .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	transition: all 0.3s cubic-bezier(.55, 0, .1, 1);
}

.offer-item.homepage:hover .overlay {
	background-color: rgba(239, 196, 130, 0.5);
}

/*
 *	CART STEPS
 */

.cart-steps {
    margin: 10px 0;
}

#cart_details,
#cart-login,
#cart-delivery {
    margin: 40px 0;
}

.progress-bar {
	background-color: #EFC482;
}

/*
 *	POPUPS
 */

.noty_message {
    background: #FFFFFF;
    padding: 50px 25px !important;
}

.noty_message .noty-icon {
    display: block;
    margin: 0 auto;
}

.noty_message h4 {
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    margin: 0 0 20px;
    font-weight: 900;
}

.noty_message form label {
    display: none;
}

.noty_message span.message_title {
    color: #000000;
    display: block;
    margin-bottom: 15px;
    text-align: center;
    font-size: 18px;
}

.noty_message .noty_text {
    color: #000000;
}

.noty_message .noty_text ul {
    margin-top: 10px;
    margin-bottom: 10px;
    list-style-type: square;
    margin-left: 20px;
}

.note_type_error {
    border: 1px solid #E3010F;
}

.note_type_success {
    background: #FFFFFF !important;
}

.noty_message #btnavi {
    margin: 25px 0px 0px 0px;
}

.noty_message #btnavi ul {
    padding: 0;
    margin: 0 -2.5%;
}

.noty_message #btnavi ul li {
    display: inline-block;
    width: 45%;
    margin: 0px 2.5%;
}

.noty_message #btccart,
.noty_message #btcshopping {
    position: static !important;
    opacity: 1 !important;
    background: #343a40 !important;
    padding: 10px 10px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
    text-align: center;
}

.noty_bar .message_container {
    padding: 50px;
}

.noty_buttons {
    padding: 0px 50px 50px 50px !important;
    text-align: center !important;
    border-top: 0px solid #CCC !important;
    background-color: #FFF;
    position: relative;
    z-index: 10;
    margin: -50px 0px 0px 0px;
}

.noty_buttons button {
    margin: 0px 2.5% 0px 2.5% !important;
}

.noty_close {
    opacity: 1 !important;
    display: block !important;
    height: 31px !important;
    width: 32px !important;
    top: 0px !important;
    right: 0px !important;
    background: url('/themes/vincabee/images/message-close.png') center no-repeat !important;
}

/*
 *	COOKIES
 */

.info_c_box {
    position: fixed;
    bottom: 15px;
    right: 15px;
    left: 15px;
    max-width: 600px;
    z-index: 1000;
    padding: 15px;
    font-size: 12px;
    line-height: 16px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.25);
}

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

.paczkawruchu_main.inline {
    position: relative;
    border: 1px solid rgba(0,0,0,.1);
    padding: 15px;
}

.paczkawruchu_close_btn {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
}

.paczkawruchu_input {
    width: 50%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    background-color: #fff;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 0;
    border: 1px solid #EFC482;
    font-family: Barlow Condensed;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #3C3C3B;
}

.paczkawruchu_input_search {
    font-family: Montserrat;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 10px 25px;
    width: 100%;
    margin-top: .5rem;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 0;
    background-color: #EFC482 !important;
    color: #fff !important;
}

.paczkawruchu_map_object {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: .5rem;
}

.pac-container {
    z-index: 1005;
}

/*
 *  BLOCK INSTAGRAM
 */

.block-instagram .title {
    position: relative;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #3C3C3B;
    min-width: 33%;
}

.block-instagram .title:after {
    display: block;
    margin-top: 10px;
    content: url('/themes/vincabee/images/dots.svg');
}

.block-instagram .desc {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    color: #757575;
    max-width: 50%;
}

.block h3.headline {
    position: relative;
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
    color: #3C3C3B;
    min-width: 33%;
}
.block h3.headline:after {
    display: block;
    margin-top: 10px;
    content: url('/themes/vincabee/images/dots.svg');
}

.easypack-widget.mobile .map-list-row {
    min-height: 320px !important;
}

.checkbox span.description {
    padding: 0 0 0 20px;
}
video {
    max-width: 100%;
    height: auto;
}