/*!
 Theme Name: artmetal
 Theme URI: http://underscores.me/
 Author: Underscores.me
 Author URI: http://underscores.me/
 Description: Description
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: artmetal
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

 This theme, like WordPress, is licensed under the GPL.
 Use it to make something cool, have fun, and share what you've learned with others.

 artmetal is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
 Underscores is distributed under the terms of the GNU GPL v2 or later.

 Normalizing styles have been helped along thanks to the fine work of
 Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
 */
/*--------------------------------------------------------------
 >>> TABLE OF CONTENTS:
 ----------------------------------------------------------------
 # Normalize
 # Typography
 # Elements
 # Forms
 # Navigation
 ## Links
 ## Menus
 # Accessibility
 # Alignments
 # Clearings
 # Widgets
 # Content
 ## Posts and pages
 ## Comments
 # Infinite scroll
 # Media
 ## Captions
 ## Galleries
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 # Normalize
 --------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
	display: block;
}

audio, canvas, progress, video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden], template {
	display: none;
}

a {
	background-color: transparent;
}

a:active, a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b, strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button, input, optgroup, select, textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button, select {
	text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled], html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, th {
	padding: 0;
}

/*--------------------------------------------------------------
 # Typography
 --------------------------------------------------------------*/
body, button, input, select, optgroup, textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375 rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375 rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
 # Elements
 --------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*, *:before, *:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul, li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
 # Forms
 --------------------------------------------------------------*/
button, input[type="button"], input[type="reset"], input[type="submit"] {
	border: 0;
	border-color: transparent;
	border-radius: 15px;
	background: #ffb01c;
	color: rgb(255, 255, 255);
	font-size: 12px;
	font-size: 1.5 rem;
	line-height: 1;
	padding: 20px 100px;
	text-transform: uppercase;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active, button:focus, input[type="button"]:active, input[type="button"]:focus, input[type="reset"]:active, input[type="reset"]:focus, input[type="submit"]:active, input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
 # Navigation
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 ## Links
 --------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover, a:focus, a:active {
	color: midnightblue;
}

a:focus {
	outline: none;
}

a:hover, a:active {
	outline: 0;
}

/*--------------------------------------------------------------
 ## Menus
 --------------------------------------------------------------*/
.main-navigation {
	/*clear: both;
	 display: block;
	 float: left;
	 width: 100%;*/
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul {
	background: #1c0c00f7;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 100%;
	line-height: 1em;
	padding: 10px 0;
	text-align: center;
	width: 100%;
	display: block;
	font-size: 15px;
	color: #fff;
	text-shadow: none;
}
h1.vc_custom_heading.banner-text {
	background: #000000b5;
	padding: 0;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 0;
}
.text-heading-module {
	margin-top: 30px !important;
	margin-bottom: 61px !important;
}
.text-heading-module h4 {
	font-size: 31px !important;
	text-transform: uppercase;
	font-weight: 100;
}
div#banner {
	padding-top: 564px;
}
.main-navigation ul ul li {
	float: none;
	display: block;
}
.main-navigation ul ul li:hover {
	background: #fff;
}
.main-navigation ul ul li:hover a {
	color: #000;
}
.main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	padding: 0 20px;
	line-height: 90px;
	font-weight: 700;
	font-size: 1.6 rem;
	color: #fff;
	text-shadow: 1px 1px 0 #000000;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle, .main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
 # Accessibility
 --------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875 rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
 # Alignments
 --------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
 # Clearings
 --------------------------------------------------------------*/
.clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
 # Widgets
 --------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
 # Content
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 ## Posts and pages
 --------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
display: none;
}

.page-content, .entry-content, .entry-summary {
	/*margin: 1.5em 0 0;*/
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
 ## Comments
 --------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
 # Infinite scroll
 --------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
 # Media
 --------------------------------------------------------------*/
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed, iframe, object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
 ## Captions
 --------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
 ## Galleries
 --------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
.container-width {
	max-width: 1400px;
	margin: 0 auto;
}
div#primary {
	max-width: 1400px;
	margin: 0 auto;
}
header#masthead {
	background: #000000c9;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
}
.site-branding {
	float: left;
	margin-top: 8px;
}
.main-navigation {
	/*float: right;*/
	float: left;
	margin-left: 30px;
}
.min-height-650 {
	min-height: 650px;
}
.image-hover p {
	margin: 0;
	padding: 0;
}
.image-hover {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	background: #00000052;
}
.image-text {
	position: relative;
	display: inline-block;
}
.image-text span {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -1em;
	margin-left: -50%;
	width: 100%;
	height: 2em;
	color: #f90;
	background-color: rgba(0,0,0,0.5);
}
.ts-hover-effects-grid figure figcaption h2 {
	font-size: 23px !important;
	text-align: center;
}
.ts-hover-effects-grid * {
	text-align: center;
}
.ts-hover-effects-grid figure figcaption h2 {
	font-size: 31px !important;
	text-align: center;
	font-weight: bold;
	word-wrap: break-word !important;
	white-space: normal !important;
}
figure.ts-hover-effect-roxy h2 {
	padding: 25% 60px 10px !important;
}
figure.ts-hover-effect-roxy {
	background: -webkit-linear-gradient(45deg,#2b2b2b 0,#636363 100%) !important;
	background: linear-gradient(45deg,#2b2b2b 0,#636363 100%) !important;
}
.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
	display: table;
	content: " ";
}
.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
	display: table;
	content: " ";
}
.btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
	clear: both;
}
.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
	display: table;
	content: " ";
}
.col-xs-6 {
	width: 50%;
}
.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
	float: left;
}
.col-xs-12 {
	width: 100%;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.margin-bottom-0 {
	margin-bottom: 0;
}
.text-center {
	text-align: center;
}
.white-text, .white-text p {
	color: #fff;
}
.footer {
	background: url(img/bg_foot.png) left top repeat;
	padding-bottom: 30px;
	padding-top: 30px;
	color: #fff;
}
.pad15 {
	padding-left: 15px;
	padding-right: 15px;
}
.line_gray {
	margin: 15px 0;
	border-bottom: 1px solid #242424;
}
.footer .row.flags {
	    padding: 25px 0 0 0;
}
.row.apps .android {
	text-align: right;
}
.row.apps .apple {
	text-align: left;
}
.footer .row.flags a {
	padding: 0 3px;
}
.footer h3 {
	margin: 25px 0;
	line-height: 50px;
	font-weight: 300;
	font-size: 2.0 rem;
	text-shadow: 1px 1px 0 #000000;
}
.contact-visit .ts-font-icons.ts-icon-align-center {
	display: inline-block;
}
#newsletterPopup {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 20;
}
#newsletterPopup #bgContainer .newsletter-container {
	color: #686868;
}
#newsletterPopup #bgContainer .newsletter-container .text-container-news {
	text-align: center;
	width: 402px;
	font-size: 13px;
	margin: 50px auto 0 auto;
}
#newsletterPopup #bgContainer .newsletter-container .text-container-news h3 {
	color: #86D0FF;
	text-align: center;
	margin: 0;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
}
#newsletterPopup #bgContainer .newsletter-container .text-container-news h2 {
	margin: 0;
	padding: 0;
	color: #686868;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 26px;
	margin-top: 6px;
}
#newsletterPopup #bgContainer .newsletter-container .text-container-news p {
	text-align: center;
	margin-top: 14px;
}
#newsletterPopup #bgContainer .newsletter-container .input-container {
	text-align: center;
	width: 402px;
	font-size: 13px;
	margin: 50px auto 0 auto;
}
#newsletterPopup #bgContainer .newsletter-container .input-container a {
	color: #686868;
	text-decoration: underline;
}
#newsletterPopup #bgContainer .newsletter-container .input-container a:hover {
	color: inherit;
}
#newsletterPopup #bgContainer .newsletter-container .input-container .input-inner {
	margin-top: 20px;
}
#newsletterPopup #bgContainer .newsletter-container .input-container .input-inner .form_container form.form_subscribe div {
	margin-top: 0 !important;
	float: left;
	width: 70%;
}
#newsletterPopup #bgContainer .newsletter-container .input-container .input-inner .form_container form.form_subscribe p {
	width: 30%;
	float: left;
	margin: 0;
	padding: 0;
}
#newsletterPopup #bgContainer img {
	max-width: 100%;
	margin: 30px 0 10px 0;
}
#newsletterPopup #bgContainer .newsletter-container .input-container .input-inner .form_container form.form_subscribe p button {
	box-shadow: none;
	border-radius: 0;
	width: 100%;
	height: 40px;
	font-size: 11pt;
	color: #ffffff;
	background: #86D0FF;
	border: 0px solid #8c8c8c;
	text-transform: uppercase;
	padding: 0;
}
#newsletterPopup #bgContainer .newsletter-container .input-container .input-inner .form_container form.form_subscribe input[type="text"] {
	background: none;
	border-radius: 0;
	margin-top: 0;
	padding: 0;
	margin: 0;
	padding-left: 10px;
}
span.message_error {
	color: red;
}
#newsletterPopup #bgContainer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	background-position: 50% -150px;
	width: 90%;
	max-width: 510px;
	border-radius: 0;
}
#newsletterPopup .close {
	background: transparent url(https://www.art-metal.pl/wp-content/uploads/2018/02/closeimg.jpg) no-repeat center center;
	cursor: pointer;
	height: 19px;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 16px;
	z-index: 21;
}
#newsletterPopup .firstname-container, #newsletterPopup .email-container {
	width: 220px;
}
#newsletterPopup .firstname-container .nf-field-element:after, #newsletterPopup .email-container .nf-field-element:after {
	right: -13px;
}
#newsletterPopup .nf-form-cont {
	transform: translateY(-100px);
}
#newsletterPopup input[type="text"], #newsletterPopup input[type="email"] {
	background: #fff url("../images/frm_sprites.png") repeat-x scroll 0 0;
	border: 1px solid #fff;
	border-radius: 4px;
	margin: 0 5px 0 0;
	padding: 5px;
	color: #666;
	font: 12px/16px Arial, "Helvetica Neue", Helvetica, sans-serif;
}
#newsletterPopup .checkbox-wrap label {
	font-size: 12px;
	line-height: 18px;
	font: 12px/16px Arial, "Helvetica Neue", Helvetica, sans-serif;
	width: 85%;
}
#newsletterPopup .label-right .nf-field-label {
	padding-left: 30px;
}
#newsletterPopup input[type="button"] {
	border: 0 none;
	border-radius: 15px;
	color: #fff;
	cursor: pointer !important;
	display: inline-block;
	font: 13px/25px Calibri, Arial, Helvetica, sans-serif;
	height: 25px;
	padding: 0 20px;
	text-decoration: none;
	text-transform: uppercase;
	background: transparent url("../images/btns_sprites.png") repeat-x scroll 0 -25px;
	margin-top: 20px;
}
#newsletterPopup .label-right .checkbox-wrap .nf-field-label {
	width: 95%;
	padding-left: 5px;
}
#newsletterPopup .req .checkbox-wrap .nf-field-label::after {
	right: 10%;
}
#newsletterPopup nf-fields-wrap nf-field:nth-child(3) {
	margin-top: 30px;
	display: block;
}
#newsletterPopup .nf-form-wrap {
	position: relative;
}
#newsletterPopup .nf-response-msg {
	position: absolute;
	top: 100%;
	left: 0;
}
.wpb_wrapper ol {
	margin-left: 0;
    padding-left: 18px;
}
.margin-bottom-10 {
	margin-bottom: 10px;
}
.margin-top-0{
	margin-top: 0;
}
.privacy a {
	color:#fff;
	font-size: 12px;
	text-decoration: none;
}

.top-flags {
	margin-top: 15px;
	float: right;
}

.top-flags .text {
	margin: 2px 10px 0 0;
	float: left;
	font-size: 0.85rem;
	color: #f2f2f2;
}

@media screen and (max-width: 1200px) {
	.top-flags {
		float: left;
		width: 100%;
	}
	
	.top-flags .text {
		float: none;
	}
}
