/*
 Theme Name:   Spirit Medical
 Author:       We Are Kudos
 Author URI:   https://wearekudos.com/
 Version:      1.0.0
*/

/* --------------------
	Global
-------------------- */

:root {
	/* Colors: */
	--green: #85be00;
	--blue: #00325d;
	--white: #ffffff;
	--light: #eef0f3;
}

html {
    font-size: 16px;
}

body {
	font-family: museo-sans, sans-serif;
	font-weight: 500;
	color: var(--blue);
	padding-top: 90px;
}

@media screen and (max-width: 767px) {
	body {
		padding-top: 70px;
	}
}

@media screen and (max-width: 575px) {
	body {
		padding-top: 60px;
	}
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
	font-family: gill-sans-nova, sans-serif;
	font-weight: 600;
}

img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

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

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important
}

#mobile-indicator {
    display: none;
}

@media (max-width: 575px) {
	#mobile-indicator {
        display: block;
	}
}

/* --------------------
	Bootstrap Additions and Overrides
-------------------- */

p:last-child {
    margin-bottom: 0;
}

a {color: var(--green);}
a:hover {color: var(--blue);}

a.download,
a.private-purchase {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    text-transform: uppercase;
    border-radius: 5px;
    padding: 8px 15px;
    text-align: center;
    font-family: gill-sans-nova, sans-serif;
}

a.private-purchase {
	background: var(--blue);
}

a.private-purchase img {
    display: inline-block;
    vertical-align: baseline;
    height: 14px;
    margin-left: 10px;
}

a.download:hover,
a.private-purchase:hover {
    color: var(--white);
}

.bg-green {background-color: var(--green)!important;}
.bg-blue {background-color: var(--blue)!important;}
.bg-light {background-color: var(--light)!important;}

.text-green {color: var(--green)!important;}
.text-blue {color: var(--blue)!important;}
.text-gill-sans {font-family: gill-sans-nova, sans-serif;}
.text-museo-sans {font-family: museo-sans, sans-serif;}

.bg-cover {
	background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
}

.p-b-60 {padding-bottom: 67%;}

.hide {display: none!important;}

.text-small {
    font-size: 13px;
}

.btn {
    border-color: var(--blue);
	color: var(--blue);
    text-transform: uppercase;
    font-size: 13px;
    padding: 9px 15px;
}

.btn:hover {
    background: var(--blue);
    color: var(--white);
}

@media (min-width: 1440px) {
    .container {
        max-width: 1280px;
    }
}

/* --------------------
	Forms
-------------------- */

label {
	display: block;
	margin-bottom: 0;
	font-size: 0.9rem;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
textarea {
    color: var(--blue);
    display: block;
    border: solid 1px #d4dce4;
    background-color: #f8fcff;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 10px 20px;
    outline: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-appearance: none;
    -webkit-appearance: none;
}

textarea {
	height: 158px;
	overflow: auto;
	resize: vertical;
}

input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
textarea:disabled {
    background-color: #f7f7f7;
    border: solid 1px #e2e2e2;
	cursor: not-allowed;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
textarea:focus {
    border-color: var(--blue);
    outline: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    display: block;
    margin-left: 0;
    margin-top: 10px;
    background-color: var(--blue);
    color: var(--white);
    padding: 8px 20px;
    overflow: hidden;
    clear: both;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
}

button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    background: #5d5d5d;
}

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

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}

select {
    height: auto;
    width: auto;
    min-width: 240px;
    margin: 5px 0px;
    padding: 8px 24px 8px 16px;
    color: var(--blue);
    background: url(./images/arrow-down.svg) no-repeat var(--white);
    background-size: 16px;
    background-position: right 10px center;
    border: 1px solid var(--blue);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -o-appearance: none;
    -moz-appearance: none;
    outline: none;
}

select:hover {
	cursor: pointer;
	box-shadow: inset 0px 0px 0px 1px var(--green);
	border-color: var(--green);
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

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

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

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

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

::-webkit-input-placeholder {
    color: #cccccc;
}

:-moz-placeholder {
    color: #cccccc;
}

::placeholder {
    color: #cccccc;
}

/* --- login-form --- */

.login-form {
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-bottom: 1.5rem;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	font-size: 11px;
	font-weight: 600;
	background-color: var(--blue);
	color: var(--white);
	padding: 12px 30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background-color: var(--green);
	color: var(--white);
	text-decoration: underline;
}

.woocommerce button.button.wctfa-send-button {
    white-space: nowrap;
    margin-left: 10px;
}

.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
    color: var(--white);
    cursor: not-allowed;
    opacity: 1;
    padding: 12px 30px;
}

.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover {
	color: var(--white);
    background-color: var(--green);
}

.login-form .wtfa-wc-result-message:not(:empty) {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 1rem;
    text-align: center;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--green);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.login-form .wtfa-msg {
    color: var(--blue);
}

/* --- wpcf7 --- */

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=password],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
	background-color: var(--white);
}

span.wpcf7-not-valid-tip {
    position: absolute;
    top: 3px;
    right: 7px;
    font-size: 0.8em;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 16px;
}

span.wpcf7-list-item {
	margin: 0;
}

span.wpcf7-list-item label {
	font-size: inherit;
	cursor: pointer;
	padding-left: 36px;
}

span.wpcf7-list-item-label {
    vertical-align: middle;
}

span.wpcf7-list-item input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

span.wpcf7-list-item .checkmark {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #d4dce4;
    outline: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

span.wpcf7-list-item .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

span.wpcf7-list-item input:checked ~ .checkmark::after {
    display: block;
}

span.wpcf7-list-item .checkmark::after {
    left: 8px;
    top: 3px;
    width: 8px;
    height: 14px;
    border: solid var(--blue);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 20px;
    margin: 0;
    color: var(--blue);
    background: transparent;
    border: 1px solid var(--blue);
    border-radius: 5px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    transition: all .1s linear;
}

.wpcf7 .wpcf7-spinner {
	vertical-align: middle;
	background-color: var(--blue);
	opacity: 1;
	margin: 0 -34px 0 10px;
}

.wpcf7-form-control.wpcf7-submit:not(:disabled):hover {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
    text-decoration: none;
}

.wpcf7-form  div.wpcf7-response-output {
    background-color: #fff;
    color: var(--blue) !important;
    border: 1px solid #d4dce4 !important;
    text-align: center;
    font-weight: 400;
    padding: 1em 0.5em;
    margin: 24px 0 0 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wpcf7-custom-label {
	position: relative;
	font-size: inherit;
	cursor: pointer;
	margin-bottom: 16px;
	padding-left: 36px;
}

	.wpcf7-custom-label .wpcf7-form-control-wrap {
		display: block;
		margin: 0;
		position: absolute;
		left: 0;
		top: 0;
	}

	.wpcf7-custom-label .wpcf7-list-item-label {
		display: none;
	}

/* --------------------
	Header
-------------------- */

#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 90px;
	font-size: 14px;
	background: var(--white);
	background: -moz-linear-gradient(left, var(--white) 50%, var(--green) 50%);
	background: -webkit-linear-gradient(left, var(--white) 50%, var(--green) 50%);
	background: linear-gradient(to right, var(--white) 50%, var(--green) 50%);
}

@media screen and (max-width: 767px) {
	#header {
		height: 70px;
	}
}

@media screen and (max-width: 575px) {
	#header {
		height: 60px;
		background: var(--white);
		background: -moz-linear-gradient(left, var(--white) 50%, var(--blue) 50%);
		background: -webkit-linear-gradient(left, var(--white) 50%, var(--blue) 50%);
		background: linear-gradient(to right, var(--white) 50%, var(--blue) 50%);
	}
}

	#header a {
		color: var(--white);
		text-decoration: none;
		text-transform: uppercase;
		font-family: gill-sans-nova, sans-serif;
	}

	#header a:hover {
		color: var(--blue);
	}

	#header .header-logo {
		display: inline-block;
		vertical-align: middle;
	}

		#header .header-logo .header-logo-image {
			height: 70px;
			margin: 10px 0;
		}

		@media screen and (max-width: 767px) {
			#header .header-logo .header-logo-image {
				height: 50px;
			}
		}

		@media screen and (max-width: 575px) {
			#header .header-logo .header-logo-image {
				height: 50px;
				margin: 5px 0;
			}
		}

	#header nav {
		
	}

		#header nav ul.menu {
			display: -ms-flexbox;
            display: flex;
			-ms-flex-pack: end;
			justify-content: flex-end;
			margin: 0;
			padding: 0;
			list-style: none;
		}

			#header nav ul.menu > li {
				position: relative;
			}

				#header nav ul.menu > li > a {
					display: block;
					height: 90px;
					padding: 35px 8px;
					font-size: 13px;
					line-height: 20px;
					color: var(--white);
					white-space: nowrap;
				}
				
				#header nav ul.menu > li > a:hover {
					color: var(--green);
					text-decoration: none;
				}

			#header nav ul.menu > li.current-menu-item {
				
			}

			    #header nav ul.menu > li.current-menu-item > a {
                    color: var(--green);
				}

			#header nav ul.menu > li.current-menu-item::before {
				content: "";
				display: block;
				position: absolute;
				height: 24px;
				width: 24px;
				background: var(--green);
				left: 50%;
				top: 0;
				-webkit-transform: translate(-50%,-50%) rotate(45deg);
				transform: translate(-50%,-50%) rotate(45deg);
			}

        #header nav ul.sub-menu {
            position: absolute;
            background-color: #ffffffcc;
            top: 100%;
            left: -10px;
            margin: 0;
            padding: 10px;
            list-style: none;
            visibility: hidden;
            opacity: 0;
            -webkit-transition: all .2s linear;
            -moz-transition: all .2s linear;
            transition: all .2s linear;
        }

        #header nav ul li:hover ul.sub-menu {
			visibility: visible;
			opacity: 1;
			-webkit-transition: all .2s linear;
			-moz-transition: all .2s linear;
			transition: all .2s linear;
		}
		
		#header nav ul li.two-columns ul.sub-menu,
        #header nav ul li.three-columns ul.sub-menu {
			-moz-column-fill: auto;
			column-fill: auto;
			-webkit-column-gap: 20px;
			-moz-column-gap: 20px;
			column-gap: 20px;
			-webkit-column-rule: 1px solid var(--green);
			-moz-column-rule: 1px solid var(--green);
			column-rule: 1px solid var(--green);
        }

		#header nav ul li.two-columns ul.sub-menu {
			-webkit-columns: 2;
			-moz-columns: 2;
			columns: 2;
			-moz-column-fill: auto;
			column-fill: auto;
		}

		#header nav ul li.three-columns ul.sub-menu {
			-webkit-columns: 3;
			-moz-columns: 3;
			columns: 3;
			-moz-column-fill: auto;
			column-fill: auto;
		}

        	#header nav ul.sub-menu > li {
				position: relative;
				width: 100%;
				padding: 8px 10px;
			}

				#header nav ul.sub-menu > li > a {
					display: block;
					font-size: 14px;
					line-height: 18px;
					color: var(--blue);
					text-transform: none;
					white-space: nowrap;
				}
				
				#header nav ul.sub-menu > li > a:hover {
					color: var(--green);
					text-decoration: none;
				}

			#header nav ul.sub-menu > li.current-menu-item {
				
			}

			    #header nav ul.sub-menu > li.current-menu-item > a {
                    color: var(--green);
    }

.header-search {
    padding-left: 10px;
}

    .header-search .search-form {
        position: relative;
        padding-right: 30px;
    }

        .header-search .search-form label {
            margin: 0;
        }

    .header-search input[type=search],
    .header-search input[type=submit] {
        display: block;
        border: none;
        width: 30px;
        margin: 0;
        font-size: 14px;
        line-height: 16px;
        height: 30px;
        padding: 7px 12px;
    }

    .header-search input[type=search] {
        border-radius: 5px 0 0 5px;
        width: 100px;
        outline: none;
    }
	
	@media screen and (min-width: 1440px) {
    	.header-search input[type=search] {
			width: 150px;
		}
    }

    .header-search input[type=submit] {
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--white);
        border-right: none;
        border-radius: 0 5px 5px 0;
        font-size: 0;
        background-image: url(./images/search.png);
        background-size: 16px;
        background-repeat: no-repeat;
        background-position: center;
    }

.header-favourites {
	position: relative;
	z-index: 10;
}

	.header-favourites a {
		display: block;
		margin-left: 10px;
	}

	.header-favourites .header-favourites-image {
		height: 20px;
		width: 23px;
	}

@media screen and (min-width: 768px) {
	.header-favourites {
		margin-right: -15px;
	}
}

.slant {
    position: relative;
    padding-right: 90px;
}

.slant::after {
	content: "";
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	width: 90px;
	height: 90px;
}

.slant.white-blue::after {
	border: 45px solid var(--white);
    border-top-color: var(--blue);
    border-right-color: var(--blue);
}

.slant.blue-green::after {
	border: 45px solid var(--blue);
    border-top-color: var(--green);
    border-right-color: var(--green);
}

@media screen and (max-width: 767px) {
	.slant {
		padding-right: 70px;
	}

	.slant.white-blue::after,
	.slant.blue-green::after {
		width: 70px;
		height: 70px;
		border-width: 35px;
	}
}

@media screen and (max-width: 575px) {
	.slant {
		padding-right: 70px;
	}

	.slant.blue-green {
		padding-right: 0;
	}

	.slant.white-blue::after {
		width: 60px;
		height: 60px;
		border-width: 30px;
	}
    
	.slant.blue-green::after {
		display: none;
	}
}

.slicknav_menu {
	display: none;
}

#mobile-nav-trigger {
    display: block;
    padding: 5px;
    cursor: pointer;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
	#mobile-nav-trigger {
		margin-left: 0;
	}
}

	#mobile-nav-trigger .mobile-nav-trigger-bar {
		display: block;
		width: 22px;
		height: 2px;
		background: #fff;
	}

	#mobile-nav-trigger .mobile-nav-trigger-bar:not(:last-child) {
		margin-bottom: 6px;
	}

@media screen and (max-width: 1199px) {
	.slicknav_menu {
		display: block;
	}
}

/* --------------------
	Content
-------------------- */

.hero-banner {
    position: absolute;
    height: 50vw;
    max-height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light);
    margin-bottom: 2.5rem;
}

.hero-banner:first-child {
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 767px) {
	.hero-banner {
		height: 70vw;
	}
}

.hero-banner-content {
	position: absolute;
	width: 100%;
	bottom: 20%;
	overflow: hidden;
}

.hero-banner-text {
    position: relative;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    font-family: gill-sans-nova, sans-serif;
    padding: 0.3em 0 0.5em;
    width: 62%;
	opacity: 0;
}

.hero-banner-text.current-hero {
    animation-name: fadeInFromNone;
	-webkit-animation-name: fadeInFromNone;
	animation-duration: 1s;	
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@keyframes fadeInFromNone {
	0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }	
}

@-webkit-keyframes fadeInFromNone {
	0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }		
}

@media screen and (max-width: 1439px) {
	.hero-banner-text {
        width: 70%;
	}
}

@media screen and (max-width: 1199px) {
	.hero-banner-text {
		font-size: 34px;
	}
}

@media screen and (max-width: 991px) {
	.hero-banner-text {
		font-size: 25px;
	}
}

@media screen and (max-width: 767px) {
	.hero-banner-text {
		font-size: 21px;
	}
}

.hero-banner-text span {
	position: relative;
}

.hero-banner-text::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 5000px;
    background: var(--white);
    opacity: 0.6;
    -webkit-transform: skewX(45deg);
    transform: skewX(45deg);
    transform-origin: left top;
}


.page-banner {
    height: 280px;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
	background-color: var(--light);
}

@media screen and (max-width: 1199px) {
	.page-banner {
        height: 240px;
	}
}

@media screen and (max-width: 991px) {
	.page-banner {
		height: 210px;
	}
}

@media screen and (max-width: 767px) {
	.page-banner {
		height: 180px;
	}
}

@media screen and (max-width: 575px) {
	.page-banner {
		height: 120px;
	}
}

.row.blocks-4-columns,
.row.blocks-3-columns {
    padding: 0 10px 14px;
}

.row.blocks-4-columns .col,
.row.blocks-3-columns .col {
    padding: 0 5px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .blocks-4-columns .col {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .blocks-3-columns .col {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.block-link {
	display: block;
	background-color: var(--light);
}

.block-link::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 93, 0.4);
    -webkit-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

.block-link:hover::before {
    background: rgba(0, 50, 93, 0.8);
}

.block-link .title {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 0 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--white);
    font-family: gill-sans-nova, sans-serif;
    font-size: 22px;
}

.my-account-blocks .block-link::before {
    display: none;
}

.my-account-blocks .block-link .title {
    top: auto;
    bottom: 0;
    -webkit-transform: none;
    transform: none;
    color: var(--blue);
    font-size: 16px;
    background-color: rgb(255 255 255 / 50%);
    padding: 10px 15px;
    -webkit-transition: background 0.3s ease, color 0.3s ease;
	-moz-transition: background 0.3s ease, color 0.3s ease;
	transition: background 0.3s ease, color 0.3s ease;
}

.my-account-blocks .block-link:hover .title {
    color: var(--white);
    background-color: var(--blue);
}

.testimonials {
    position: relative;
    padding: 40px 0;
}

.testimonial-slider {
    background-color: var(--light);
    padding: 40px 0;
}

.testimonial-content {
    padding: 0 140px;
    font-size: 1.2rem;
    text-align: center;
}

.testimonial-content .attribution {
    padding: 20px 0 0;
    font-size: 1.2rem;
    text-align: center;
    color: var(--green);
    text-transform: uppercase;
}

.quote-marks {
    top: 0;
    left: 0;
    pointer-events: none;
}

.quote-before,
.quote-after {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(./images/quote-mark.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.quote-before {
    top: 0;
    left: 15px;
}

.quote-after {
    bottom: 0;
    right: 15px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
	.testimonials,
	.testimonial-slider {
		padding: 30px 0;
	}

    .testimonial-content {
		padding: 0 110px;
		font-size: 1.1rem;
		text-align: center;
	}

	.quote-before,
	.quote-after {
		width: 80px;
		height: 80px;
	}
}

@media screen and (max-width: 767px) {
	.testimonials {
		padding: 20px 0;
	}

	.testimonial-slider {
		padding: 35px 0;
	}

    .testimonial-content {
		padding: 0;
		font-size: 1rem;
		text-align: center;
	}

	.quote-before,
	.quote-after {
		width: 40px;
		height: 40px;
	}

	.quote-before {
		top: 5px;
	}

	.quote-after {
		bottom: 5px;
	}
}

.content-extra-toggle:not(.btn) {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

    .content-extra-toggle:not(.btn)::after {
        content: "";
        display: inline-block;
        position: relative;
        width: 8px;
        height: 8px;
        margin: 0 0 3px 8px;
        border: solid var(--green);
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .content-extra-toggle:not(.btn):hover::after {
		border-color: var(--blue);
	}

    .content-extra-toggle.active:not(.btn)::after {
        -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        transform: rotate(225deg);
        margin: 0 0 -2px 8px;
    }

.logo-in-row img {
    max-width: 200px;
    max-height: 100px;
}

@media screen and (max-width: 575px) {
	.logo-in-row img {
		max-width: 160px;
		max-height: 80px;
	}
}

/* --------------------
	Posts
-------------------- */

/* --- archive --- */

.post-item {
    background-color: var(--light);
    text-align: center;
}

.post-item-image {
    display: block;
    padding-bottom: 67%;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
}

.post-item-title {
    padding: 10px 15px;
    margin: 0;
    font-size: 16px;
}

.post-item-title a {
    color: var(--blue);
}

.post-item-read-more {
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 20px;
    margin: 5px 0 15px;
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 5px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    transition: all .1s linear;
}

.post-item-read-more:hover,
.post-item-read-more:focus {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);
    text-decoration: none;
}

/* --- navigation --- */

.navigation {
    font-size: 13px;
}

.navigation ul {
    padding: 0;
    margin: 0;
}

.navigation li {
    display: inline;
}

.navigation li::before {
    display: none;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    color: var(--blue);
    text-decoration: none;
    display: inline-block;
    padding: 0 2px;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
    cursor: pointer;
}
 
.navigation li a:hover {
    text-decoration: underline;
}

.navigation li.active a {
    color: var(--green);
    pointer-events: none;
}

.file-download {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center!important;
    align-items: center!important;
    color: var(--blue);
}

.file-download .icon {
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
    max-width: 26px;
}

.file-download .title {
    padding: 0 0 0 15px;
    line-height: 1.2;
}

/* --------------------
	WooCommerce
-------------------- */

.woocommerce-info {
    border-top-color: var(--blue);
}

.woocommerce-error, .woocommerce-info, .woocommerce-message,
.woocommerce-info::before {
    color: var(--blue);
}

.woocommerce .woocommerce-breadcrumb,
.site-breadcrumb {
    margin: 0 0 20px;
    padding: 10px 0;
    font-size: 13px;
    color: var(--blue);
}

.woocommerce .woocommerce-breadcrumb::after,
.woocommerce .woocommerce-breadcrumb::before,
.site-breadcrumb::after,
.site-breadcrumb::before {
    content: " ";
    display: table
}

.woocommerce .woocommerce-breadcrumb::after,
.site-breadcrumb::after {
    clear: both
}

.woocommerce .woocommerce-breadcrumb a,
.site-breadcrumb a {
    color: var(--blue);
}

.woocommerce .woocommerce-breadcrumb .breadcrumb_last,
.site-breadcrumb .breadcrumb_last {
	color: var(--green);
}

/* --- single product --- */

.woocommerce.single-product h1.product_title {
    font-size: 2rem;
}

@media screen and (max-width: 767px) {
	.woocommerce.single-product h1.product_title {
		font-size: 1.6rem;
	}
}

.product-gallery {
	overflow: hidden;
}

.gallery-slider:not(.slick-slider) {
    position: relative;
}

.gallery-slider:not(.slick-slider) img:not(:first-child) {
    position: absolute;
}

.gallery-slider .slick-list,
.woocommerce-product-gallery__image {
    border: 1px solid var(--light);
}

.gallery-slider .slick-slide {
    line-height: 0;
}

.sku_wrapper {
    display: inline-block;
    border: 1px solid var(--green);
    border-radius: 10px;
    padding: 12px 20px 10px;
    text-align: center;
    font-size: 13px;
}

.sku_wrapper .sku {
    font-size: 20px;
    font-weight: 700;
}

.toggle-favourite {
    display: inline-block;
    border: 1px solid var(--blue);
    border-radius: 5px;
    padding: 8px 15px 8px 55px;
    text-align: center;
    text-transform: uppercase;
    font-family: gill-sans-nova, sans-serif;
    background: url(./images/heart-green-outline.svg) no-repeat var(--white);
    background-size: 25px;
    background-position: left 15px center;
    cursor: pointer;
    margin-bottom: 24px;
}

.toggle-favourite:hover {
    box-shadow: inset 0px 0px 0px 1px var(--green);
    border-color: var(--green);
}

.toggle-favourite.is-favourite {
	background-image: url(./images/heart-green.svg);
}

.toggle-favourite.disabled {
	pointer-events: none;
}

.view-your-favourites {
    display: block;
    width: 152px;
    font-size: 13px;
    padding-top: 5px;
    margin-top: -24px;
}

.product-tabs {
    text-align: center;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 1.5rem;
}

.product-tabs .tab {
    display: inline-block;
    text-transform: uppercase;
    font-family: gill-sans-nova, sans-serif;
    color: var(--blue);
    background: var(--light);
    padding: 10px;
    font-size: 15px;
    width: 180px;
    text-align: center;
    cursor: pointer;
}

.product-tabs .tab.active,
.product-tabs .tab:hover {
    color: var(--white);
    background: var(--blue);
}

.tab-data {
    display: none;
}

.mobile-tab {
    text-transform: uppercase;
    font-family: gill-sans-nova, sans-serif;
    color: var(--blue);
    background: var(--light);
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
	margin-top: 2px;
}

.mobile-tab.active {
    color: var(--white);
    background: var(--blue);
}

table.product-specifications {
	width: 100%;
	border-collapse: separate;
	border-spacing: 3px;
	margin: auto;
	border: none;
}

table.product-specifications tr td {
    padding: 0.5rem 1rem;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    display: table-cell;
}

table.product-specifications tr td:first-child {
    width: 30%;
    background-color: var(--light);
}

@media screen and (max-width: 767px) {
	table.product-specifications tr td:first-child {
		width: auto;
	}
}

.find-out-more p {
	max-width: 600px;
    margin: 0 auto 5px;
    font-size: 19px;
}

@media screen and (max-width: 767px) {
	.find-out-more p {
		font-size: 16px;
	}
}

/* --- favourites --- */

.product-cat-item .remove-favourite {
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    cursor: pointer;
}

.product-cat-item:hover .remove-favourite {
    opacity: 1;
}

.product-cat-item .remove-favourite svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
}

.product-cat-item .remove-favourite svg .cross {
    fill: var(--blue);
}

.product-cat-item a {
    -webkit-transition: opacity .2s linear;
    -moz-transition: opacity .2s linear;
    transition: opacity .2s linear;
}

.product-cat-item.removed a {
    opacity: 0.2;
}

.product-cat-item.removed .remove-favourite {
    background: var(--green);
}

.product-cat-item.removed .remove-favourite svg {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.product-cat-item.removed .remove-favourite svg .cross {
    fill: var(--white);
}

.product-cat-item .lds-dual-ring {
	display: inline-block;
	width: 40px;
	height: 40px;
	opacity: 0;
}

.product-cat-item .lds-dual-ring:after {
	content: " ";
	display: block;
	width: 40px;
	height: 40px;
	margin: 0;
	border-radius: 50%;
	border: 4px solid var(--green);
	border-color: var(--green) transparent var(--green) transparent;
	animation: lds-dual-ring-rev 1.2s linear infinite;
}

.product-cat-item.removed .lds-dual-ring:after {
	border: 4px solid #fff;
	border-color: #fff transparent #fff transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}

.product-cat-item .remove-favourite[status='updating-favourite'] .lds-dual-ring {
	opacity: 1;
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes lds-dual-ring-rev {
	0% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

/* --- catalogue loop --- */

.product-cat-item-image {
    display: block;
    padding-bottom: 67%;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
}

.product-cat-item-title {
    background-color: var(--light);
    padding: 15px 20px;
}

.product-cat-item-title h2 {
    color: var(--blue);
    text-align: center;
    font-size: 16px;
    margin: 0;
}

/* --- navigation --- */

.woocommerce nav.woocommerce-pagination {
    text-align: left;
}

.woocommerce nav.woocommerce-pagination ul {
    display: block;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    float: none;
    display: inline!important;
}

.woocommerce nav.woocommerce-pagination ul li:not(:last-child)::after {
    content: "|";
    margin-left: 3px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: var(--blue);
    text-decoration: none;
    display: inline-block;
    padding: 0 2px;
    min-width: 0;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    color: var(--blue);
    text-decoration: underline;
    background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    color: var(--green);
    background: transparent;
    pointer-events: none;
}

/* --------------------
	Footer
-------------------- */

#footer {
    background-image: url(./images/footer-background-pattern.png);
    background-position: left bottom;
    background-repeat: repeat-x;
}

#footer a {
	color: var(--white);
}

@media screen and (max-width: 767px) {
	#footer {
		background-size: auto 120px;
	}
}

#footer ul.menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    text-transform: uppercase;
    font-size: 14px;
}

    #footer ul.menu li {
        padding: 0 20px;
    }

        #footer ul.menu li a {
            color: var(--white);
            white-space: nowrap;
        }

#footer ul#menu-footer-secondary.menu {
	font-size: 12px;
}

#footer .b-bordered {
    border-bottom: 1px solid var(--green);
}

#footer .footer-logo .footer-logo-image {
	height: 60px;
}

#copyright,
#attribution {
    font-size: 12px;
}

.social-icon {
    display: inline-block;
    height: 30px;
    width: 30px;
    background-image: url(./images/social-icons.png);
    background-size: 120px 90px;
}

.social-icon.facebook {background-position: -30px 30px;}
.social-icon.twitter {background-position: 0px 30px;}
.social-icon.instagram {background-position: -90px 30px;}
.social-icon.linkedin {background-position: -60px 30px;}

/* --------------------
	404
-------------------- */

.not-found {
    width: 145px;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
	.not-found {
		width: 290px;
	}
}