/*
Theme Name: beauty-salon.pl
Author: dwarazy.com
Author URI: http://dwarazy.com/
Version: 99.1
Text Domain: beauty-salon.pl
package beauty-salon.pl
*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size:12px;
}

body {
	margin: 0; height:100%;
}

article,
aside,
footer,
header,
nav,
section {
	display: block;
}

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

figcaption,
figure,
main {
	display: block;
}

figure {
	margin: 1em 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

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

a {
	background-color: transparent; color:#333;
	-webkit-text-decoration-skip: objects;
}

a:active, a:visited,
a:hover {
	outline-width: 0; color:#333;
}

abbr[title] {
	border-bottom: 1px #767676 dotted;
	text-decoration: none;
}

b,
strong {
	font-weight: inherit;
}

b,
strong {
	font-weight: 700;
}

code,
kbd,
samp {
	font-family: 'Oswald', sans-serif;
	font-size: 1em;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #eee;
	color: #222;
}

small {
	font-size: 80%;
}

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

audio,
video {
	display: inline-block;
}

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

img {
    border-style: none;
    vertical-align: middle;
    padding: 10px 10px 10px 0;
	transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
}

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

button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

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

legend {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	display: inline-block;
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

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

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

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

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

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details,
menu {
	display: block;
}

summary {
	display: list-item;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

.dwarazycom {
    max-width: 100%;
    margin: auto;
    padding: 5px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}

.dwarazycom a:link, .dwarazycom a:visited,.dwarazycom a:active,.dwarazycom a:hover {color:#bdbdbd; text-decoration:none;}

/* ALL CSS */

@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

body {background: #fff; font-family: 'Montserrat', sans-serif;}

.calosc {
    background: #fff;
    max-width: 100%;
    width: 100%;
    padding: 0px 0 0px 0;
    margin: auto;
    position: relative;
}

/* CHECKBOX */
.container {
    display: block;
    position: relative;
    padding: 5px 0 0 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* END CHECKBOX */

.metaslider .caption-wrap {
    position: absolute;
    bottom: 50px !important;
    left: 50px !important;
    background: white !important;
    color: black !important;
	opacity: 1 !important;
    background: rgba(255,255,255,0.7) !important;
    margin: 0;
    display: block;
    width: 100% !important;
    line-height: 1.4em;
}

.banerin { display: flex; justify-content: center;  max-width: 1680px;
    margin: auto; height:110px;
align-items: center;}

.logoin {
    width: 30%;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
}

.cn-button.bootstrap {
    color: #000 !important;
    background: #fff !important;
}

.srodekinfo {
    margin: 110px auto 0 auto;
}

.menu {width:70%;}

.shrink img { padding:0; transition: all 0.4s ease-in-out;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out; width: calc(420px / 2);}

.baner {
    background: #f6f6f6;
    position: fixed;
    z-index: 999;
    width: 100%;
	 top:0;
}

.logo {
    text-align: center;
    margin: auto;
    max-width: 420px;
	width:100%;
}

.logo div {
    margin: 57px 0 0 0;
    font-size: 24px;
    color: #9e9e9e;
}

.logo img {padding:10px;}
.face {right: 30px;
    position: absolute;
    top: 30px;
}

.transwew { text-align: center; color: #fff; display:flex;
  /* The image used */
  background-image: url("https://beauty-salon.pl/wp-content/uploads/tlo_kob.jpg");

  /* Set a specific height 
  min-height: 400px; */

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.transwew h1 {
    font-size: 48px;
    padding: 40px;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    margin: auto;
    font-weight: 300;
}

.slider {
    width: 50%;
    max-width: 800px;
    display: inline-block;
    box-sizing: border-box;
	vertical-align: middle;
}

.sliderall {
    padding: 110px 0 0 0;
}

.metaslider .flexslider {margin:0px !important;}

.kwadraty {
    width: 50%;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}

.kwadratyin li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    height: 126px;
}

.kwadratyin ul {
    padding: 0;
    margin: 0;
    grid-template-columns: 48% 48%;
    display: grid;
	grid-gap: 10px;
}

.kwadratyin a:link, .kwadratyin a:active, .kwadratyin a:hover, .kwadratyin a:visited {
    text-decoration: none;
    color: #fff;
}

.kwadratyin li:nth-child(1) {
transition: all 0.6s ease-in-out;
background: rgba(248,220,76,1);
}


.kwadratyin li:nth-child(1):hover {
background: rgba(248,220,76,0.7);
	transition: all 0.6s ease-in-out;
}

.kwadratyin li:nth-child(2) {
  background: #ceee75; transition: all 0.6s ease-in-out;
}
.kwadratyin li:nth-child(2):hover {
background: rgba(248,220,76,0.7);
	transition: all 0.6s ease-in-out;
}

.kwadratyin li:nth-child(3) {
	background: #e1b11e; transition: all 0.6s ease-in-out;}
.kwadratyin li:nth-child(3):hover {
background: rgba(248,220,76,0.7);
	transition: all 0.6s ease-in-out;
}

.kwadratyin li:nth-child(4) {
  background: #afd547; transition: all 0.6s ease-in-out;
}
.kwadratyin li:nth-child(4):hover {
background: rgba(248,220,76,0.7);
	transition: all 0.6s ease-in-out;
}

.kwadratyin li:nth-child(5) {
  background: #eb1a41; transition: all 0.6s ease-in-out;
}
.kwadratyin li:nth-child(5):hover {
background: rgba(248,220,76,0.7);
	transition: all 0.6s ease-in-out;
}

.kwadratyin li:nth-child(6) {
  background: #7dc253; transition: all 0.6s ease-in-out;
}
.kwadratyin li:nth-child(6):hover {
background: rgba(248,220,76,0.7);
	transition: all 0.6s ease-in-out;
}

.slidercaly {
    text-align: center;
    margin: auto;
    width: 100%;
}


.gallery-icon img {border:none !important; padding:0; max-width:100%; height:auto;}

.glownaart {
    max-width: 1366px;
    margin: auto;
	text-align:center;
	padding: 60px 0;
	width: 100%;
}

.textwidget {
    width: 33%;
    display: inline-block;
    vertical-align: top;
	margin: 10px auto;
}

.entry-contentglotw {
    width: 100%;
	margin: 10px auto;
}

.oferta-wiecej {

    background-image: url("https://beauty-salon.pl/wp-content/uploads/u63s6k5k2.jpg");
    background-size: 100%;}

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

.informacja {
    max-width: 300px;
    margin: 10px auto;
    box-shadow: 2px 20px 20px #dedede;
    border-radius: 30% 30% 30px 30px;
}

.obrazekinf {text-align: center; overflow:hidden; border-radius: 40% 40% 0 0;}

.obrazekinf img { transition: transform .5s ease;}

.obrazekinf img:hover {transform: scale(1.2);} 

.informacjaotw {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resztainfo {
    font-size: 16px;
    line-height: 140%;
    font-weight: 300;
    text-align: justify;
    padding: 0;
}

.tytulinfo h1 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: #a36951 !important;
    margin: 0;
    padding: 10px;
}

.wiecejakt {
    text-align: center;
    background: #7dc253;
    padding: 20px;
    max-width: 130px;
    margin: auto;
}

.wiecejakt a:link, .wiecejakt a:active, .wiecejakt a:visited, .wiecejakt a:hover {color:#fff; text-decoration:none;}

.otw {margin:20px auto 20px auto;}

.entry-contentgl-otw {
    margin: 40px auto;
}

.news-zapisy {
    display: flex;
    justify-content: center;
    align-items: center;
}

.zapisy {background:#003876;}

.zapis-info {
    font-size: 16px;
    line-height: 140%;
    padding: 0 0 20px 0;
}

.newslet, .zapisy {width:50%; text-align: left;}

.zapis-ins {
    max-width: 500px;
    margin: auto;
    color: #fff;
    padding: 20px;
}

.tyzapis {
    font-size: 34px;
    padding: 20px 0;
}

.news-ins {max-width: 330px;
margin: auto;
padding: 20px;}

.news-zapisy {
    background: #afd547;
    color: #fff;
}

.news-ins p {line-height: 170%; font-size: 18px; font-weight: 300;}

.tytulinfo a:link, .tytulinfo a:active, .tytulinfo a:visited, .tytulinfo a:hover {text-decoration:none;}

.trescgl figure {
    margin: 20px 10px 40px 10px;
    display: inline-block;
    vertical-align: middle;
}

.trescgl {
    max-width: 1366px;
    margin: auto;
}

.trescgl h2 {text-align:center; font-size:24px; font-weight:700; margin:10px; padding:10px;}

.tytaktgl-one {
    font-size: 36px;
    text-align: center;
    padding: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

.wiecej-film {padding:40px;}

.wiecej-film a:active, .wiecej-film a:link,.wiecej-film a:visited {
    background: rgba(248,220,76,1);
    padding: 20px;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
	transition: all 0.6s ease-in-out;
	display: block;
	max-width: 180px;
	margin: auto;
}

.wiecej-film a:hover {background: #eb1a41; transition: all 0.6s ease-in-out; color:#fff;}

.niebieski {
    background: aliceblue;
}

.pierwszyw {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    padding: 40px;
    box-sizing: border-box;
    line-height: 200%;
}

.pierwszyin {
    max-width: 460px;
    margin: auto;
}

.drugiw {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.stopkainfo {
    display: flex;
    padding: 50px 0;
}

.stopka-ins-lewa {width:70%;}

.stopka-ins-prawa {
    width: 30%;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 170%;
}

.stopka-ins-prawa a:link, .stopka-ins-prawa a:active, .stopka-ins-prawa a:hover, .stopka-ins-prawa a:visited {color:#fff; text-decoration:none;}

.umow-sie {
    max-width: 200px;
    margin: auto;
    text-align: center;
	padding: 20px;
}

.umow-sie a:link { color:#fff; text-decoration:none; text-transform:uppercase;
background: #a36951;
text-align: center;
padding: 20px;
border-radius: 10px;}

.zabieg {
    font-size: 48px;
    font-weight: 700;
    padding: 0 0 30px 0;
    color: #a36951;
}

.pomar-zap {
    font-size: 24px;
    font-weight: 700;
    color: #f8dc4c;
    line-height: 120%;
    padding: 0;
    margin: 0;
}

.jednastr {
    column-count: 2;
    column-gap: 60px;
    column-rule: 1px solid #dedede;
    max-width: 1280px;
    margin: auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 180%;
    padding: 50px 20px;
}

.jedna {
    max-width: 1280px;
    margin: auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 180%;
    padding: 50px 20px;
}

.waska {max-width: 700px;}

.jedna figure {display: block;
margin: auto !important;
max-width: 600px;}

.entry-header h1 { text-align:center;
    font-size: 48px;
    margin: 0.67em 0;
    color: #a36951;
	padding:30px 0 0 0;
}

.list.archive-listing {max-width: 100% !important;}

.trzygl {clear: both;}

.es-field-wrap input {
    padding: 10px;
    box-sizing: border-box;
    border: none;
    background: #fff;
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    line-height: 150%;
}

.es_subscription_form_submit { cursor: pointer;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    background: #57972f;
    max-width: 300px;
    width: 100%;
    font-size: 16px;
    line-height: 150%;
    margin: auto;
    color: #fff;
    text-transform: uppercase;}

.oferta-info {width:50%;}

.oferta-info-wew {
    max-width: 500px;
    margin: 120px auto;
    text-align: left;
	box-sizing:border-box;
}

.oferta-info-wew ul {color: #000;
line-height: 200%;
font-size: 14px;}

.oferta-info-wew h1 {padding:40px 0; text-align:left; color: #a36951;}

.laska {width:50%;}

.o-nas-inside-lewy h1 {
    color: #a36951;
    font-size: 44px;
    font-weight: 300;
}

.o-nas {
    display: flex;
    max-width: 1680px;
    margin: auto;
	justify-content: center;
	align-items: center;
}

.o-nas-inside-lewy {
    width: 50%;
    padding: 50px 0 50px 50px;
    text-align: right;
    line-height: 200%;
	box-sizing:border-box;
}

.o-nas-inside-lewy div {
    text-align: right;
    line-height: 200%;
    font-size: 14px;
    font-weight: 300;
}

.o-nas-inside-prawy {width:50%; padding: 50px;
    box-sizing: border-box;}

.o-nas-inside-prawy img {
	max-width: 100%;
    height: auto;}
.trescgl table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1024px;
    margin: 40px auto;
	
}

.entry-content table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1024px;
    margin: 40px auto;
}

.trescgl td, .entry-content td {
    width: 50% !important;
    padding: 20px;
    box-sizing: border-box;
    font-size: 14px;
}

.cennik h1 {text-align:center; color: #a36951;
font-size: 44px; margin: 0 auto; padding: 60px 0 0 0;
font-weight: 300;}

.oferta-wiecej h1 {text-align:center; color: #a36951;
font-size: 44px;
font-weight: 300;}

.trescgl tr, .entry-content tr {border-bottom:1px solid #dedede;}

.oferta-ins {max-width: 1024px;
    margin: 40px auto;}

.trzygl {
    background-image: url(https://beauty-salon.pl/wp-content/uploads/stopka_tlo.jpg);
    padding: 50px;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #3d3834;
	background-size: 100%;
}

.cennik {
    padding: 0 20px;
}

.mobile-reverse {display:flex; flex-direction:column-reverse;}

.obrazekinf img {
    padding: 0;
    width: 100%;
    margin: auto;
}

.tytulinfo h1 {
    font-size: 20px !important;
    font-weight: 700 !important;
	color: #fff !important;
	text-align: center;
}

.textinfo ul  {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 10px 0 40px 0;
    line-height: 170%;
	font-size: 14px;
}

.salon-dalej {max-width:900px; margin:auto;}



@media (max-width: 1680px) {
	.trzygl {background-size: unset;}
}

@media (max-width: 1279px) {
	/* #mega-menu-wrap-menu-glowne #mega-menu-menu-glowne {text-align: left !important;} */
	.o-nas-inside-lewy div {font-size:12px;}
	.stopka-ins-lewa {width: 60%;}
	.stopka-ins-prawa {
		width: 40%;}
	}

@media (max-width: 1024px) {
   
}

@media (max-width: 900px){
	
	.textwidget { margin: 10px;
		width: 45%;}
	
	/* #mega-menu-wrap-menu-glowne #mega-menu-menu-glowne {text-align: center !important;} */
	.o-nas-inside-lewy {
    width: 100%;
    padding: 50px;
		text-align: center;}
	.o-nas-inside-lewy div {
		text-align: justify;}
	.o-nas-inside-prawy {
    width: 100%;
		padding: 0 50px 30px 50px;}
	.o-nas {
		display: block;}
	.menu {
    width: 100%;
}
	.banerin {display:block;}
	.logoin {
    width: 100%;
		text-align: center;}
	.stopka-ins-lewa {
    display: none;
}
.stopka-ins-prawa {
    width: 100%;
    margin: auto;
    max-width: 380px;
    background-color: rgba(89, 48, 30, 0.5);
    padding: 10px 40px;
    font-size: 14px;
    box-sizing: border-box;
}
	.logo-stopka img {max-width:100%; height:auto; padding:0;}
	
	.sliderall {
    padding: 140px 0 0 0;
}
}

@media (max-width: 767px){
	
	.zabieg {font-size:24px;}
	.stopkainfo {
    display: block;
    padding: 20px 0;
}
	.mobile-reverse {display:flex; flex-direction:column-reverse;}
}
@media (max-width: 680px){
	.oferta-info {
    width: 100%;
}
	.oferta-info-wew {background-color: rgba(163, 105, 81, 0.4);
margin: 40px auto;
padding: 20px;}
	.oferta-info-wew h1 {
    padding: 0;
    text-align: center;
    color: #fff;
}
	.laska {display:none;}	
.oferta-info-wew ul {
    color: #fff;
    font-size: 12px;
}
}

@media (max-width: 480px){
	
	.oferta-info {width:90%; margin:auto;}
	
	.gallery-item {
    float: none !important;
    width: 100% !important;
}
	.logoin {
		width: 100%; margin:auto;}
	.logoin img {
    padding: 10px;
    max-width: 90%;
    height: auto;
    box-sizing: border-box;
}
	.textwidget {
    width: 100%; margin:0;
		display: block;}
	.o-nas-inside-lewy, .o-nas-inside-prawy {padding:10px;}
	
	.trzygl {padding:20px;}
    
}

@media (max-width: 380px){

}