@charset "UTF-8";
/* @override 
	http://wojteklawniczak.com/wp-content/themes/choco_child/superstyles/superstyles.css?* */

@font-face {
font-family: 'cerebri';
src: url("fonts/cerebrisans-light.eot");
src: url("fonts/cerebrisans-light.eot?#iefix") format("embedded-opentype"), url("fonts/cerebrisans-light.woff") format("woff");
font-weight: 300;
font-style: normal;
}

@font-face {
font-family: 'cerebri';
src: url("fonts/cerebrisans-medium.eot");
src: url("fonts/cerebrisans-medium.eot?#iefix") format("embedded-opentype"), url("fonts/cerebrisans-medium.woff") format("woff");
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: 'cerebri';
src: url("fonts/cerebrisans-bold.eot");
src: url("fonts/cerebrisans-bold.eot?#iefix") format("embedded-opentype"), url("fonts/cerebrisans-bold.woff") format("woff");
font-weight: 600;
font-style: normal;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	  /* position relative and z-index fix webkit rendering fonts issue */
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
	touch-action: manipulation;
	-moz-backface-visibility: hidden;
	  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	  /* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-nav.disabled, .owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
	background: none;
	color: inherit;
	border: none;
	padding: 0 !important;
	font: inherit;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

/* No Js */

.no-js .owl-carousel {
	display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
	animation-duration: 1000ms;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOut {
0% {
	opacity: 1;
}

100% {
	opacity: 0;
}
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
	transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
	/**
	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
	calculation of the height of the owl-item that breaks page layouts
 */
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
	max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url("owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-ms-transform: scale(1.3, 1.3);
	transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.site {
	font-family: 'cerebri', Arial, sans-serif;
}

h1, h2, h3, h4, h5 {
	text-transform: none !important;
	color: #1B2D3F !important;
}

h1, h2, h3, h4, h5, h6, p, li, .lead, a {
	font-family: "cerebri", Arial, sans-serif !important;
	font-weight: 300;
}

h2 {
	font-size: 2.5em !important;
	line-height: 1.2 !important;
	padding-right: 2em !important;
	margin-bottom: 1em !important;
	position: relative;
}

h2:after {
	content: '';
	position: absolute;
	width: 2em;
	height: 1px;
	border-top: 1px solid #333;
	left: 0;
	bottom: -0.5em;
}

h3 {
	font-size: 1.5em !important;
	margin-bottom: 1em !important;
	line-height: 1.3 !important;
}

h4 {
	font-size: 1.1em !important;
	text-transform: uppercase !important;
	font-weight: 400 !important;
	letter-spacing: 0.1em !important;
	margin-bottom: 0.5em !important;
}

p, li {
	font-size: 1.2em;
	line-height: 1.35 !important;
}

li {
	padding-bottom: 1em;
}

ol {
	counter-reset: point;
	padding-left: 0;
}

ol li {
	position: relative;
	padding-left: 2em;
}

ol li:before {
	counter-increment: point;
	content: counter(point);
	position: absolute;
	left: 0;
}

i {
	color: #1B2D3F !important;
	font-style: normal;
	font-size: 0.75em;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.lead {
	font-size: 1.35em !important;
	line-height: 1.5 !important;
	font-weight: 400 !important;
	padding-right: 10%;
}

.lead li {
	font-size: 1.25em;
}

.primary {
	background: #1B2D3F;
}

.primary h2:after {
	border-color: #fff;
}

.secondary {
	background: #105955;
}

.secondary a {
	color: #D0D8CB;
}

.secondary h2:after {
	border-color: #fff;
}

.grey {
	background: #BCCFD3;
}

.primary h2, .primary h3, .primary h4, .primary h5, .primary p, .primary li, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary p, .secondary li {
	color: #fff !important;
}

.primary a:hover, .secondary a:hover {
	color: #fff;
}

.vertical-half {
	min-height: 50vh !important;
}

.max-h-100 img {
	max-height: 100px;
	width: auto;
}

.link-list ul {
	padding-left: 0 !important;
}

.link-list li {
	list-style: none;
	margin-bottom: 1em;
	width: 100%;
}

.link-list a {
	color: #BCCFD3;
	width: 100%;
	display: inline-block;
	position: relative;
}

.link-list a:after {
	content: '';
	width: 80px;
	height: 35px;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	background: url("../img/szczalka-wlewo.svg") no-repeat left top;
	background-size: contain;
}

.quote p {
	color: #105955;
}

blockquote {
	color: #105955;
	border-left: none !important;
	padding: 2em 20% !important;
	font-size: 1.25em !important;
}

.back-to-top a {
	border-color: #BCCFD3 !important;
}

.back-to-top i {
	color: #BCCFD3 !important;
	font-size: 1.25em !important;
}

/* header */

#header-menu {
	height: 6em !important;
}

.header-icon {
	padding-left: 2em;
	width: 367px !important;
	border-color: transparent !important;
}

.header-icon img {
	padding-top: 1em;
	max-height: 8em !important;
	margin-bottom: 0;
}

.home #content {
	margin-top: -5.75em;
}

.page-id-9 #content, .page-id-25 #content, .page-id-95 #content {
	margin-top: -11em !important;
}

.page-id-25 .logo-text, .single .logo-text, .blog .logo-text {
	color: #fff !important;
}

.page-header {
	border: none !important;
}

.przycisk a {
	background: transparent !important;
	border: 2px solid #fff !important;
	border-radius: 3em !important;
	font-size: 1.35em !important;
	line-height: 1.4;
	font-weight: 300 !important;
	color: #fff !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.learnmore a {
	text-transform: uppercase;
	font-size: 0.8em !important;
	color: #5F7686;
	font-weight: 400 !important;
	letter-spacing: 0.1em;
	position: relative;
}

.learnmore a:after {
	content: '';
	position: absolute;
	width: 3em;
	height: 1.5em;
	right: -4em;
	top: -0.25em;
	background: url("../img/szczalka-wlewo.svg") no-repeat left top;
	background-size: contain;
}

/* menu */

.toggle-menu {
	display: none !important;
}

.responsive-menu-button:before {
	content: 'menu';
	position: absolute;
	text-transform: uppercase;
	left: -5em;
	top: 1.3em;
	letter-spacing: 0.1em;
	font-size: 0.85em;
	font-family: 'cerebri';
	color: #fff;
}

.responsive-menu-button span {
	width: 2em;
}

.responsive-menu-button span:before, .responsive-menu-button span:after {
	width: 3em;
	left: -1em;
}

.responsive-menu-button.is-active span:before, .responsive-menu-button.is-active span:after {
	width: 2em;
	left: 0;
}

.logo-text {
	color: #1B2D3F !important;
	font-weight: 400 !important;
	font-size: 1.35em;
	text-transform: uppercase;
	text-align: left !important;
	padding-top: 1em;
	letter-spacing: 0.05em;
}

#responsive-menu-wrapper {
	min-height: 50vh;
}

#responsive-menu-wrapper ul {
	padding-top: 2.5em;
}

#responsive-menu-wrapper a {
	color: #fff !important;
}

.page-id-118 .responsive-menu-button:before {
	color: #1B2D3F !important;
}

.page-id-118 .responsive-menu-button .responsive-menu-inner {
	background: #1B2D3F !important;
}

.page-id-118 .responsive-menu-button span:before, .page-id-118 .responsive-menu-button span:hover:before, .page-id-118 .responsive-menu-button span:after, .page-id-118 .responsive-menu-button span:hover:after {
	background: #1B2D3F !important;
}

/* elementor mods */

.elementor-column-wrap {
	padding: 0 !important;
}

.column-gaps {
	margin-left: -2em;
	margin-right: -2em;
}

.column-gaps .elementor-column-wrap {
	padding: 2em !important;
}

.boxed-column {
	padding: 2.5em;
}

.elementor-tab-title {
	border: 2px solid transparent !important;
	border-color: rgba(255, 255, 255, 0.2) !important;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-ms-border-radius: 2em;
	border-radius: 2em;
}

.elementor-tab-title a {
	font-size: 1.35em;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5) !important;
	text-transform: uppercase;
}

.elementor-tab-title.elementor-active {
	border-color: #fff !important;
}

.elementor-tab-title.elementor-active a {
	color: #fff !important;
}

.elementor-tab-content {
	border: none !important;
	padding-top: 3em !important;
}

.elementor-tabs-content-wrapper {
	border-top: none !important;
	display: block !important;
	margin-top: 1em !important;
}

.elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:after, .elementor-widget-tabs.elementor-tabs-view-horizontal .elementor-tab-desktop-title.elementor-active:before {
	bottom: 0;
	height: 0;
	width: 999em;
	border-bottom-style: none !important;
}

.elementor-tabs-view-horizontal .elementor-tab-title {
	color: #fff;
	text-transform: uppercase;
	padding-left: 2em !important;
	letter-spacing: 0.1em;
	font-weight: 400 !important;
}

.elementor-tabs-view-horizontal li {
	list-style: none;
}

.elementor-tabs-view-horizontal a {
	color: #fff !important;
}

.elementor-tabs-view-horizontal .elementor-tab-mobile-title {
	color: rgba(255, 255, 255, 0.5) !important;
}

.elementor-tabs-view-horizontal .elementor-tab-mobile-title.elementor-active {
	color: #fff !important;
}

/* home – usługi */

.uslugi {
	padding: 0;
	counter-reset: uslugi_counter;
}

.uslugi li {
	list-style: none;
	display: inline-block;
	border-right: 1px solid #499682;
	position: relative;
	padding: 0 2em;
	margin-bottom: 2em;
	vertical-align: top;
	transition: all .3s linear;
}

.uslugi li:before {
	content: "+";
	position: absolute;
	bottom: 0;
	right: 0.75em;
	font-size: 2em;
}

.uslugi li:after {
	content: '';
	position: absolute;
	bottom: -1em;
	width: 95%;
	height: 1px;
	border-bottom: 1px solid #499682;
	left: 0;
}

.uslugi li:hover h5 {
	max-height: 999px;
}

.uslugi li:hover:before {
	display: none;
}

.uslugi h3 {
	font-size: 1.5em;
	font-weight: 300;
}

.uslugi h3:before {
	counter-increment: uslugi_counter;
	content: counter(uslugi_counter);
	left: 0;
	display: inherit;
	font-size: 2.5em;
	opacity: .9;
}

.uslugi h5 {
	font-size: 1em;
	font-weight: 300 !important;
	max-height: 0;
	overflow: hidden;
	transition: all .3s linear;
}

.six-items li {
	width: 32.66667%;
	min-height: 16em;
}

.six-items li:nth-child(3n + 1) {
	border-left: 1px solid #499682;
}

.six-items:nth-child(n + 4):after {
	display: none;
}

.four-items li {
	width: 49%;
	min-height: 12em;
}

.four-items li:nth-child(2n + 1) {
	border-left: 1px solid #499682;
}

/* home – powiedzieli */

.testimonials-slider {
	position: relative;
	padding-top: 3em;
	padding-bottom: 3em;
}

.testimonials-slider p {
	font-size: 1.55em;
}

.testimonials-slider p, .testimonials-slider h5 {
	color: #105955 !important;
}

.testimonials-slider:before {
	content: '';
	position: absolute;
	width: 5em;
	height: 3em;
	top: 4em;
	background: url("../img/quotes.svg") no-repeat left top;
}

.slide {
	padding-left: 33%;
	padding-right: 10%;
}

.quote-cite {
	max-width: 66%;
}

.owl-dots {
	display: none;
}

.slider-counter {
	color: #105955;
	margin-top: -2em;
}

/* cta */

.cta h2 {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	font-weight: 300;
	line-height: 1.35 !important;
}

.cta h2:after {
	display: none;
}

.cta a {
	position: relative;
	color: #5F7686;
}

.cta a:after {
	content: '';
	position: absolute;
	width: 3em;
	height: 1em;
	top: 8px;
	right: -3.5em;
	background: url("../img/szczalka-wlewo.svg") no-repeat left top;
	background-size: contain;
}

/* blog */

.blog, .single-post {
	background: #105955;
}

.blog-container {
	width: 100% !important;
	padding-right: 2.5em !important;
}

.blog-container h5 {
	font-size: 2em !important;
	line-height: 1.3;
}

.blog-container h5 a {
	color: #1B2D3F;
}

.blog-container .post {
	background: #fff !important;
}

.blog-container .navigation a {
	color: #fff !important;
	border-color: transparent;
	font-size: 1.5em;
	padding: 0;
}

/* single-post */

.single-post h1 {
	font-size: 3.5em;
	margin: 1em 0;
	font-weight: 300;
}

.single-post .col-md-8 {
	width: 100% !important;
}

.single-post img {
	clear: both;
	float: none;
}

#comments h3, #comments h6, #comments p {
	color: #fff !important;
}

#comments p {
	font-size: 1em;
}

#comments .comment-author-vcard {
	border-color: transparent;
}

.post-share i {
	color: #fff !important;
}

.post-share a {
	color: #fff !important;
}

.post-controls a {
	border: none !important;
}

.post-controls i {
	color: #fff !important;
	font-size: 2em;
	line-height: 0 !important;
}

/* footer */

.footer {
	margin: 0 !important;
	padding: 4em !important;
	width: 100% !important;
}

.footer a {
	color: #1B2D3F !important;
}

@media all and (max-width: 520px) {
	.header-icon {
		padding-left: 0.6em !important;
	}
	
	.responsive-menu-button {
		top: 20px !important;
	}
	
	.responsive-menu-button .responsive-menu-inner {
		width: 1.5em;
		left: 0.5em;
	}
	
	.responsive-menu-button span:before, .responsive-menu-button span:hover:before, .responsive-menu-button span:after, .responsive-menu-button span:hover:after {
		width: 2em;
		left: -0.5em;
	}
	
	h1 {
		font-size: 2em !important;
	}
	
	h2 {
		font-size: 2.25em !important;
		padding-right: 0 !important;
	}
	
	p, li {
		font-size: 1em !important;
	}
	
	.boxed-column, .footer {
		padding: 1.5em !important;
	}
	
	.przycisk a {
		font-size: 1.05em !important;
	}
	
	.uslugi li {
		padding: 0 !important;
		border-left: none !important;
		border-right: none !important;
		min-height: auto !important;
	}
	
	.uslugi li:last-child:after {
		display: none;
	}
	
	.six-items li, .four-items li {
		width: 100% !important;
		min-height: 20em;
	}
	
	.six-items li:nth-child(3n + 1), .four-items li:nth-child(3n + 1) {
		border-left: 1px solid #499682;
	}
	
	.slide {
		padding-left: 10% !important;
		padding-right: 10%;
	}
	
	.testimonials-slider p {
		font-size: 1.25em !important;
	}
	
	.testimonials-slider:before {
		top: 1em;
	}
	  /* blog */
	
	.single .blog-content {
		padding: 0 !important;
	}
	
	.entry-content {
		padding: 1em !important;
	}
	
	.cta a:after, .link-list a:after {
		position: relative !important;
		display: block;
		left: 3px;
		top: 3px;
	}
}

@media all and (min-width: 521px) and (max-width: 768px) {
	h1 {
		font-size: 2.75em !important;
	}
}

@media all and (max-width: 768px) {
	.slide {
		padding-left: 18%;
		padding-right: 10%;
	}
	
	.home .responsive-menu-button .responsive-menu-inner, .page-id-9 .responsive-menu-button .responsive-menu-inner {
		background: #1B2D3F !important;
	}
	
	.home .responsive-menu-button span:before, .home .responsive-menu-button span:hover:before, .home .responsive-menu-button span:after, .home .responsive-menu-button span:hover:after, .page-id-9 .responsive-menu-button span:before, .page-id-9 .responsive-menu-button span:hover:before, .page-id-9 .responsive-menu-button span:after, .page-id-9 .responsive-menu-button span:hover:after {
		background: #1B2D3F !important;
	}
	
	.elementor-tabs-content-wrapper {
		border-bottom: none !important;
	}
	
	.responsive-menu-button:before {
		display: none;
	}
	
	#responsive-menu-container {
		width: 100% !important;
	}
	
	.blog-container {
		padding-left: 2.5em !important;
	}
}

@media all and (min-width: 769px) {
	.two-columns-md {
		column-count: 2;
		column-gap: 6em;
	}
	
	.two-columns-md li {
		display: inline-block;
	}
}

@media all and (max-width: 960px) {
	.six-items li, .four-items li {
		width: 49%;
		min-height: 20em;
	}
	
	.six-items li:nth-child(3n + 1), .four-items li:nth-child(3n + 1) {
		border-left: 1px solid #499682;
	}
}

@media all and (min-width: 521px) and (max-width: 1000px) {
	.header-icon {
		padding-left: 1.5em !important;
	}
	
	.footer {
		padding: 2.5em !important;
	}
}

@media all and (min-width: 1281px) {
	h2 {
		font-size: 3em !important;
	}
	
	h3 {
		font-size: 1.75em !important;
	}
	
	p, li {
		font-size: 1.35em;
		line-height: 1.35 !important;
	}
	
	.boxed-column, .footer {
		padding: 3.5em;
	}
}

@media all and (min-width: 1200px) {
	.blog .navigation {
		position: fixed;
		top: 12em;
		left: 3em;
		margin-top: 0;
	}
	
	.nav-links a {
		width: 4em;
		height: 2em;
		overflow: hidden !important;
		position: relative;
		text-indent: 999px;
	}
	
	.nav-links .nav-previous:before, .nav-links .nav-next:before {
		color: #fff;
		font-size: 1.5em;
		font-weight: 300;
		position: absolute;
		top: 0;
	}
	
	.nav-links .nav-previous:before {
		content: 'Starsze';
	}
	
	.nav-links .nav-next:before {
		content: 'Nowsze';
	}
	
	.blog-container {
		padding-left: 33% !important;
	}
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}