/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/** FONTS **/
html, body, p, a, button, input, select, textarea {
	font-family: "Roboto";
	font-size: 16px;
	color: #000000;
}
a:hover,
a:focus {
	color: #da3925;
	font-weight: 700;
}
h1 {
	font-size: 3em;
	line-height: 3rem;
	font-weight: 900;
	text-transform: uppercase;
}
h2 {
	font-size: 2em;
	line-height: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 900;
	text-transform: uppercase;
}

.site-header {
    background-color: #3b3b3b;
}

/** Download Zip overlay **/
#zip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  color: white;
  text-align: center;
}

.zip-overlay-inner {
  background: rgba(0,0,0,0.7);
  padding: 2rem;
  border-radius: 1rem;
}

.zip-overlay-inner p {
  color: #FFFFFF;
}

.zip-spinner {
  border: 6px solid #ccc;
  border-top: 6px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/** Subscribe spinner **/
#subscription-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.subscription-overlay-inner {
  background: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.subscription-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #0073aa;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/** GENERAL **/
html, body {
	overflow: auto;
	min-height: 100%;
}
.container.grid-container {
	width: 100%;
	max-width: 100%;
}
.peli-button {
	padding: 8px 20px;
    text-decoration: none;
    width: auto;
    display: block;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-clip: padding-box;
	outline: 0;
}
.peli-button:hover {
	color: #FFFFFF;
	outline: 0;
	-webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}
.peli-button:focus {
	color: #FFFFFF;
	outline: 0;
}
.peli-button img {
	width: 15px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}
.transparent {
	border: 1px #3E3B38 solid;
	background-color: 0 none;
	color: #3E3B38;
}
.transparent:hover {
	border: 1px #3C5A79 solid;
	background-color: #ededed;
	color: #3C5A79;
}
.red {
	background-color: #da3925;
	color: #FFFFFF;
}
.red:hover {
	background-color: #ae2f1e;
	-webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}
a.white {
	background-color: #FFFFFF;
}
a.white:hover {
	-webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
	color: #3E3B38;
}
a.arrow img {
	width: 15px;
    margin-left: 10px;
    top: 0px;
}
.subscribe,
.unsubscribe {
    background-color: transparent;
	position: relative;
    top: 1px;
	background: transparent;
	padding: 0 0 0 10px;
}
.subscribe:hover,
.unsubscribe:hover,
.subscribe:focus,
.unsubscribe:focus {
    background-color: transparent;
}
.subscribe:hover img,
.unsubscribe:hover img,
.subscribe:focus img,
.unsubscribe:focus img {
    -webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
}
.subscribe img,
.unsubscribe img {
    position: relative;
    top: 10px;
	margin-right: 5px;
	width: 65px;
}
.error-message {
	border: 1px #da3925 solid;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
	background-color: #FBEBE9;
	background-image: url('./img/error-message-icon.png');
	padding: 1rem 1rem 1rem 4rem;
    background-repeat: no-repeat;
    background-position-x: 1rem;
    background-position-y: 50%;
	margin-bottom: 2rem;
}
.success-message {
	border: 1px #079455 solid;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
	background-color: #F6FEF9;
	background-image: url('./img/green-check.png');
	padding: 1rem 1rem 1rem 4rem;
    background-repeat: no-repeat;
    background-position-x: 1rem;
    background-position-y: 50%;
	margin-bottom: 2rem;
}
input.error {
	border: 1px #da3925 solid !important;
}
.lb-image {
  max-width: 100vw !important;
  max-height: 80vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/** HEADER **/
header .site-logo img {
	width: 120px;
}
header nav.main-navigation {
	background-color: #3e3b38;
	color: #FFFFFF;
}
header .inside-header {
	display: flex;
	flex-grow: 1;
	flex-wrap: wrap;
	padding: 10px 20px;
	position: relative;
}
header .inside-header .site-logo {
	width: 25%;
}
header .inside-header form.is-search-form {
	width: 50%;
    max-width: 400px;
    margin: auto;
	display: flex;
    flex-direction: row-reverse;
}
header .inside-header form.is-search-form input {
	-webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    -o-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}
header .inside-header form.is-search-form .is-search-submit {
	position: absolute;
    left: 0;
}
.is-form-style.is-form-style-3 input.is-search-input {
    border-left: 0 !important;
	border-right: 1px !important;
}
header .inside-header form.is-search-form .is-search-submit span {
	-webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
	background-color: #FFFFFF;
	border-right: 0 none;
}
header .inside-header .my-profile-link.profile-button {
	width: 150px;
	margin-left: 16px;
	z-index: 101;
}
header .inside-header .my-profile-link a {
	color: #FFFFFF;
}
header .inside-header .my-profile-link .my-profile-link-content {
	text-align: right;
}
.inside-header .my-profile-dropdown {
	position: absolute;
    display: none;
    background-color: #FFFFFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    top: 65px;
    right: 20px;
	z-index: 9999;
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
}
.inside-header .my-profile-dropdown:before {
	content: "";
    position: absolute;
    top: 0;
    width: 0;
    border-top: 18px solid #FFFFFF;
    border-left: 18px solid #FFFFFF;
    border-right: 18px solid #FFFFFF;
    right: 20px;
    transform: rotate(45deg);
}
.inside-header .my-profile-dropdown .my-profile-dropdown-header {
	padding: 1.5rem 1.5rem 0 1.5rem;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-header .user-img {
	display: inline-block;
	background-color: #EDEDED;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    padding: 8px;
    width: 35px;
    height: 35px;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-header .user-img img {
	width: 100%;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-header .user-info {
	display: inline-block;
    color: #3E3B38;
    padding-left: 0.5rem;
	position: relative;
    top: 2px;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-header .user-info .user-name {
	font-size: 12px;
	font-weight: 700;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-header .user-info .user-email {
	font-size: 12px;
	color: #656260;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-links {
	padding: 1.5rem;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-links .my-profile-dropdown-links-wrapper .my-profile-link {
	display: block;
    text-decoration: none;
    font-size: 12px;
	padding: 5px;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-links .my-profile-dropdown-links-wrapper .my-profile-link:hover {
	color: #3E3B38;
	background-color: #F8F8F8;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-links .my-profile-dropdown-links-wrapper .gap-buffer {
	height: 1.5rem;
	background: transparent;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-links .my-profile-dropdown-links-wrapper .my-profile-link img {
	width: 20px;
    vertical-align: middle;
	margin-right: 8px;
}
.inside-header .my-profile-dropdown .my-profile-dropdown-links .my-profile-dropdown-links-wrapper hr {
	color: #3E3B38;
    background-color: #3E3B38;
	margin-top: 0;
    margin-bottom: 1.5rem;
}
.inside-header .my-notifications-link {
	width: 25px;
    height: 25px;
	margin-left: auto;
	position: relative;
}
.inside-header .my-notifications-link .my-notifications-button {
	background-image: url(./img/Bell_Notification_white_active.png);
	background-color: transparent;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position-y: center;
	width: 25px;
    height: 25px;
}
.inside-header .my-notifications-link .my-notifications-button.inactive {
	background-image: url(./img/Bell_Notification_white.png);
}
.inside-header .my-notifications-dropdown {
	position: absolute;
    display: none;
    background-color: #FFFFFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    top: 40px;
    right: -30px;
	z-index: 9999;
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
	min-width: 300px;
}
.inside-header .my-notifications-dropdown:before {
	content: "";
    position: absolute;
    top: 0;
    width: 0;
    border-top: 18px solid #FFFFFF;
    border-left: 18px solid #FFFFFF;
    border-right: 18px solid #FFFFFF;
    right: 20px;
    transform: rotate(45deg);
}
.inside-header .my-notifications-dropdown-header {
	padding: 1.5rem;
}
.inside-header .my-notifications-dropdown .notif {
	width: 480px;
    color: #3E3B38;
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
	flex: 1 1 auto;
	gap: 5px;
	font-size: 12px;
	padding-bottom: 10px;
	border-bottom: 1px #c5c4c3 solid;
	padding-top: 15px;
}
.inside-header .my-notifications-dropdown .notif-text {
	width: 60%;
	font-weight: 700;
}
.inside-header .my-notifications-dropdown .notif-date {
	width: 20%;
	font-size: 11px;
    margin-top: 3px;
	text-align: right;
}
.inside-header .my-notifications-dropdown .notif-status {
	width: 10%;
    margin-left: auto;
    text-align: right;
	font-size: 90px;
    line-height: 20px;
	color: #C5C4C3;
}
.inside-header .my-notifications-dropdown .notif.unread .notif-status {
	color: #6395C8;
}
.inside-header .my-notifications-dropdown a.peli-button {
	max-width: 200px;
    margin: 2rem auto 0rem auto;
}
@media only screen and (max-width: 768px) {
	header .inside-header .my-profile-link a {
		text-indent: -9999px;
        overflow: hidden;
        white-space: nowrap;
        display: block;
        background-image: url(./img/usercirclewhite.png);
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: 30px;
        background-position-y: center;
	}
	header .inside-header .my-profile-link.profile-button {
		width: auto;
	}
	.inside-header .my-notifications-dropdown .notif {
		width: 350px;
	}
	.inside-header .my-notifications-dropdown:before {
		
	}
	.inside-header .my-notifications-dropdown {
		left: -300px;
	}
}

/** FOOTER **/
.site-footer {
	background-color: #3e3b38;
}
.partner-footer {
	background-image: url(./img/Topo_Black.jpg);
    background-repeat: repeat-x;
    background-size: contain;
	border-top: 11px #da3925 solid;
}
.partner-footer .partner-footer-wrapper {
	padding: 2rem 20px;
	margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.partner-footer .footer-logo {
	width: 20%;
}
.partner-footer .footer-logo img {
	width: 120px;
}
.partner-footer .footer-content {
	width: 60%;
}
.partner-footer .footer-content-wrapper {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.partner-footer .footer-content .partner-footer-left {
	width: 30%;
}
.partner-footer .footer-content .partner-footer-right {
	width: 70%;
}
.partner-footer .footer-content h4 {
	color: #FFFFFF;
	font-size: 16px;
}
.partner-footer .footer-content .partner-links a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
    margin-bottom: 8px;
}
.partner-footer .footer-content .partner-links a:hover {
	color: #f7e9e8;
}
.partner-footer .partner-footer-right .partner-links {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.partner-footer .partner-footer-right .partner-links-left {
	width: 35%;
}
.partner-footer .partner-footer-right .partner-links-left-wrapper {
	padding-right: 1rem;
}
.partner-footer .partner-footer-right .partner-links-right {
	width: 65%;
}
.partner-footer .partner-footer-right .partner-links-right-wrapper {
	padding-left: 1rem;
}
.partner-footer .footer-social {
	width: 20%;
}
.partner-footer .footer-social-wrapper {
	padding-left: 1rem;
	float: right;
}
.partner-footer .footer-social h4 {
    color: #FFFFFF;
    font-size: 16px;
}
.partner-footer .footer-social .social-menu-item {
	display: inline-block;
}
.partner-footer .footer-social a {
	color: #FFFFFF;
    margin-right: 8px;
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
    display: inline-block;
}
.partner-footer .footer-social a span {
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
	display: block;
}
.partner-footer .footer-social a.fb {
	background-image: url('./img/fb.png');
}
.partner-footer .footer-social a.ig {
	background-image: url('./img/instagram.png');
}
.partner-footer .footer-social a.tiktok {
	background-image: url('./img/tiktok.png');
}
.partner-footer .footer-social a.lkd {
	background-image: url('./img/linkedin.png');
}
.partner-footer .footer-social a.x {
	background-image: url('./img/x.png');
}
.partner-footer .footer-social a.yt {
	background-image: url('./img/youtube.png');
}
.partner-footer-bar {
	background-color: #000000;
	text-align: center;
}
.partner-footer-bar-wrapper {
	padding: 2rem 40px;
	margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
.partner-footer-bar p {
	color: #FFFFFF;
	margin: 0;
	padding: 0;
	font-size: 12px;
}
@media only screen and (max-width: 768px) {
	.partner-footer .partner-footer-wrapper {
		display: block;
	}
	.partner-footer .footer-content {
		margin: 2rem 0;
		width: 100%;
	}
	.partner-footer .footer-content .partner-footer-left {
		width: 50%;
	}
	.partner-footer .footer-content .partner-footer-right {
		width: 50%;
	}
	.partner-footer .partner-footer-right .partner-links-left {
		width: 50%;
	}
	.partner-footer .partner-footer-right .partner-links-right {
		width: 50%;
	}
	.partner-footer .footer-social {
		width: auto;
	}
	.partner-footer .footer-social-wrapper {
		padding-left: 0;
		float: none;
		display: block;
	}
}
@media only screen and (max-width: 500px) {
	.partner-footer .footer-content-wrapper {
		display: block;
	}
	.partner-footer .footer-content .partner-footer-left,
	.partner-footer .footer-content .partner-footer-right {
        width: auto;
		margin-bottom: 3rem;
    }
}

/** Login Form **/
body.login h1.wp-login-logo {
	margin: 0;
}
body.login h1 {
	text-align: left;
	margin: 3rem 0 2rem 0;
}
body.login h1 a {
	margin: 0;
}
body.login .message.register,
body.login .wp-login-register,
body.login .wp-login-lost-password,
body.login #login #nav {
	display: none;
}
body.login .login-form-wrapper {
	height: 100%;
	min-height: 100%;
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
	overflow:auto;
}
body.login .login-form-wrapper section.login-left-section,
body.login .login-form-wrapper section.login-right-section {
	width: 50%;
	position: relative;
}
body.login .login-form-wrapper .login-left-section-wrapper {
	position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	padding: 25px;
	width: 60%;
}
body.login #login {
	width: auto;
    margin: auto;
    display: block;
    position: relative;
	padding: 0;
}
body.login #loginform,
body.login #registerform,
body.login #lostpasswordform {
	background: 0 none;
    border: 0;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}
body.login #loginform .wp-hide-pw {
	color: #000;
}
body.login #loginform .forgetmenot {
	float: none;
}
body.login #loginform .submit, 
body.login #lostpasswordform .submit, 
body.login #registerform .submit, 
body.login #loginform .submit #wp-submit,
body.login #registerform .submit #wp-submit,
body.login #lostpasswordform .submit #wp-submit {
	float: none;
}
body.login #loginform .submit #wp-submit,
body.login #registerform .submit #wp-submit,
body.login #lostpasswordform .submit #wp-submit {
	background-color: #da3925;
    width: 100%;
    border: 0;
    margin-top: 1rem;
	padding: 0.3rem;
}
body.login .custom-forgot-pass-link {
	text-align:center;
}
body.login #loginform .submit #wp-submit:hover,
body.login #registerform .submit #wp-submit:hover,
body.login #lostpasswordform .submit #wp-submit:hover {
	background-color: #ae2f1e;
	-webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}
body.login .custom-login-footer-section {
	width: auto;
    margin: auto;
    display: block;
    position: relative;
}
body.login .custom-login-footer-section-wrapper {
	width: 100%;
}
body.login .custom-login-footer-section-wrapper.register {
	width: 100%;
	margin-top: 4rem;
}
body.login .custom-login-footer-section-wrapper.register div:nth-child(odd) {
	float: left;
	width: auto;
}
body.login .custom-login-footer-section-wrapper.register div:nth-child(even) {
	width: auto;
	float: right;
}
body.login .custom-login-footer-section-wrapper div {
	width: auto;
}
body.login .custom-login-footer-section h2 {
	margin: 2rem 0 1rem 0;
}
body.login .custom-login-footer-section a {
	width: auto;
}
body.login .custom-login-footer-section .custom-terms-message {
	margin-top: 5rem;
}
body.login .custom-login-footer-section .custom-terms-message a {
	font-size: 12px;
}
body.login .login-form-wrapper section.login-right-section {
	background-image: url('./img/login-bg.jpg');
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center center;
}
body.login .login-form-wrapper section.login-right-section .right-section-block {
	position: relative;
    width: auto;
    height: 100%;
}
body.login .login-form-wrapper section.login-right-section .right-section-block .right-section-block-wrapper {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	margin: 2rem 0;
	padding: 3rem;
    width: 50%;
	background-color: #f0f0f1;
}
body.login .login-form-wrapper section.login-right-section h2 {
	margin-bottom: 2rem;
}
body.login .login-form-wrapper section.login-right-section p {
	margin: 1rem 0;
}
body.login .login-form-wrapper section.login-right-section ul {
	margin: 2rem 0;
    padding-left: 1.5rem;
}

@media only screen and (max-width: 768px) {
	body.login .login-form-wrapper div#login {
		width: 100%;
	}
	body.login .login-form-wrapper section.login-left-section {
		width: auto;
	}
	body.login .login-form-wrapper section.login-right-section {
		display: none;
	}
	body.login .login-form-wrapper .login-left-section-wrapper {
		width: auto;
	}
}

/** Registration form **/
body.login-action-register div[data-name="customer_number_for_direct"],
body.login-action-register div[data-name="picture"] {
	display: none;
}
body.login-action-register #registerform h2 {
	display: none;
}
#registerform label[for="user_login"], #registerform input#user_login {
	display:none;
}
body.login-action-register #registerform label {
	width: 100%;
}
body.login-action-register #registerform #reg_passmail {
	display: none;
}
body.login-action-register #registerform .acf-user-register-fields {
	display: flex;
    flex: 1;
    flex-grow: 1;
    flex-wrap: wrap;
}
body.login-action-register #registerform .acf-user-register-fields div.acf-field {
	width: 50%;
}
body.login-action-register #registerform .acf-user-register-fields .acf-field-select select,
body.login-action-register #registerform .acf-user-register-fields .acf-field-select .select2-selection.select2-selection--single {
	height: 40px;
}
body.login-action-register #registerform .acf-user-register-fields .acf-field-select .select2-selection.select2-selection--single .select2-selection__rendered {
	padding-top: 5px;
}
body.login-action-register #registerform .acf-user-register-fields .acf-field-select .select2-selection__arrow {
	padding-top: 10px;
}
body.login-action-register #registerform .acf-user-register-fields .acf-field:nth-child(even) .acf-input,
body.login-action-register #registerform .acf-user-register-fields .acf-field:nth-child(even) .acf-label,
body.login-action-register #registerform .acf-user-register-fields .acf-field-select .acf-input,
body.login-action-register #registerform .acf-user-register-fields .acf-field-select .acf-label {
	margin-left: 10px;
}
@media only screen and (max-width: 768px) {
	body.login-action-register #registerform .acf-user-register-fields {
		display: block;
	}
	body.login-action-register #registerform .acf-user-register-fields div.acf-field {
		width: auto;
	}
	body.login-action-register #registerform .acf-user-register-fields .acf-field:nth-child(even) .acf-input,
	body.login-action-register #registerform .acf-user-register-fields .acf-field:nth-child(even) .acf-label,
	body.login-action-register #registerform .acf-user-register-fields .acf-field-select .acf-input,
	body.login-action-register #registerform .acf-user-register-fields .acf-field-select .acf-label {
		margin-left: 0;
	}
}

/** SWIPER CAROUSEL **/
.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
	position: relative;
	margin-top: 3rem;
}

/** HOME **/
.one-container .site-content,
.site-content {
	width: 100%;
	padding: 0;
	display: block;
}
.hero_bg_image {
	background: 0 !important;
	background-color: rgba(0, 0, 0, 0.6) !important;
	border-bottom: 11px #da3925 solid;
}
.hero_bg_image1 {
    display: block !important;
}
.qcld_hero_content_area {
    max-width: 1200px;
    margin: auto;
    position: relative !important;
	border-left: 2px #da3925 solid;
}
body.home .qcld_hero_content_area h2 {
    font-size: 70px;
}
body.home .qcld_hero_content_area .slider-x-item-title {
    width: 100%;
	max-width: 100%;
}
div.section {
	padding: 6rem 0;
}
div.section.white {
	background-color: #FFFFFF;
}
.section-wrapper {
	max-width: 1200px;
    margin: auto;
    position: relative;
	padding: 0 20px;
}
.section-content {
	margin-top: 3rem;
}
.section-header.flex {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.section-header.flex .section-title {
	width: 80%;
	border-left: 2px #da3925 solid;
    padding-left: 1rem;
}
.section-header.flex .section-button {
	width: 20%;
    justify-items: flex-end;
}
.swiper {
	padding-right: 1rem;
	padding-bottom: 2rem;
}
/* new product launches block */
.new-product-launches .section-title {
	display: inline-block;
}
.new-product-launches .section-button {
	display: inline-block;
	float: right;
	text-align: center;
}
.new-product-launches .section-button p {
	margin:0;
}
/*boxed items*/
.content-item-boxed a {
	text-decoration: none;
}
.content-item-boxed-wrapper {
    -webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
	background-color: #ededed;
}
.content-item-boxed-wrapper .content-image {
	text-align: center;
    position: relative;
    height: 160px;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
}
.content-item-boxed-wrapper .content-image-overlay {
	z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: 15px;
    background: linear-gradient(15deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
    top: 0;
    left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: visibility 0s, opacity 0.2s linear;
    -ms-transition: visibility 0s, opacity 0.2s linear;
    transition: visibility 0s, opacity 0.2s linear;
}
.content-item-boxed a:hover .content-image-overlay {
	visibility: visible;
	opacity: 1;
}
.content-item-boxed-wrapper .content-image img {
	width: 100%;
    height: auto;
}
.content-item-boxed-wrapper .content-content {
	padding: 15px;
	width: auto;
    background-color: #FFF;
	min-height: 130px;
	-webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}
.content-item-boxed-wrapper .content-content .content-title {
	font-weight: bold;
}
.content-item-boxed-wrapper .content-content .content-info {
	margin-top: 1rem;
}
.content-item-boxed-wrapper .content-content .content-info p {
	display: inline-block;
	font-size: 12px;
	width: 50%;
}
.content-item-boxed-wrapper .content-content .content-info p span {
	font-weight: 700;
}
.content-item-boxed-wrapper .content-content .content-date {
	font-size: 12px;
	color: #8B8988;
}
.content-item-boxed-wrapper .content-content .content-size {
	font-size: 12px;
	color: #8B8988;
}
/*non boxed items*/
.content-item a {
	text-decoration: none;
}
.section-wrapper.recently-added-wrapper .swiper-scrollbar {
	margin-top: 1rem;
}
.section-wrapper.recently-added-wrapper .section-header {
	text-align: center;
}
.section-tabs .section-tab {
	display: inline-block;
    border-bottom: 1px #c5c4c3 solid;
    width: auto;
    margin-right: -5px;
}
.section-tabs .section-tab:hover {
	cursor: pointer;
}
.section-tabs .section-tab p {
	margin-bottom: 1rem;
	padding: 0 15px;
}
.section-tabs .section-tab.selected,
.section-tabs .section-tab:hover {
	border-bottom: 2px #da3925 solid;
	color: #da3925;
}
.section-tabs .section-tab.selected p {
	color: #da3925;
	font-weight: 700;
}
.section-tabs .section-tab:hover p {
	color: #da3925;
	font-weight: 700;
}
.content-item-wrapper {
	background-color: #ededed;
}
.content-item-wrapper .download-product {
	position: absolute;
    top: 7rem;
    visibility: hidden;
    right: 15px;
    text-align: center;
    vertical-align: middle;
    background-color: #F8F8F8;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    width: 32px;
    height: 32px;
    display: block;
    z-index: 9999;
}
.content-item-wrapper .download-product:hover {
    background-color: #D7D7D6;
}
.content-item:hover .download-product {
    visibility: visible;
}
.content-item-wrapper .download-product img {
    width: 16px;
    position: relative;
	top: 7px;
}
.content-item-wrapper .content-image {
	text-align: center;
    position: relative;
    height: 160px;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
}
.content-item-wrapper .content-image-overlay {
	z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: 15px;
    background: linear-gradient(15deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
    top: 0;
    left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: visibility 0s, opacity 0.2s linear;
    -ms-transition: visibility 0s, opacity 0.2s linear;
    transition: visibility 0s, opacity 0.2s linear;
}
.content-item a:hover .content-image-overlay {
	visibility: visible;
	opacity: 1;
}
.content-item-wrapper .content-image img,
.content-item-boxed-wrapper .content-image img {
	width: auto;
    height: 150px;
    object-fit: contain;
}
.content-item-wrapper .content-content {
	padding: 15px;
	width: auto;
}
.content-item-wrapper .content-content .content-title {
	font-weight: bold;
}
.content-item-wrapper .content-content .content-date {
	font-size: 12px;
	color: #8B8988;
}
.content-item-wrapper .content-content .content-size {
	font-size: 12px;
	color: #8B8988;
}
.section-content#content {
	display: none;
	position: relative;
}
.section-content#content .section-content-wrapper {
	padding: 0 1rem;
	background-color: #FFF;
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.section-content#content .content {
	border-bottom: 1px #EDEDED solid;
}
.section-content#content .content:last-child {
	border-bottom: 0 none;
}
.section-content#content .content-content {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    width: 100%;
	background-color: #FFF;
}
.section-content#content .content-content .content-icon {
	-webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
	width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    background-color: #EDEDED;
}
.section-content#content .content-content .content-icon img {
	vertical-align: middle;
    padding-top: 10px;
}
.section-content#content .content-content .content-title {
	padding-top: 10px;
    padding-left: 1rem;
    text-align: center;
    width: 40%;
	font-weight: normal;
}
.section-content#content .content-content .content-cat {
	padding-top: 12px;
    width: 40%;
    font-size: 14px;
	text-align: center;
}
.section-content#content .content-content .content-cat span {
	background-color: #EDEDED;
	padding: 5px 15px;
	-webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.section-content#content .content-content .content-button {
	width: auto;
    padding-left: 1rem;
    margin-left: auto;
}
.section-content#content .content-content .content-button a {
	float: right;
}
.section-image {
	height: 250px;
    width: 100%;
	margin-bottom: 3rem;
}
.section-image .section-image-wrapper {
	width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}
/** Products in development home section **/
.products-in-development-wrapper {
	background-image: url(https://new.partner.peli.com/wp-content/uploads/2025/07/pid_image-overlay.jpg);
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
	position: relative;
	border-bottom: 11px #da3925 solid;
}
.products-in-development-wrapper h2,
.products-in-development-wrapper p {
	color: #FFF;
}
.products-in-development-wrapper .section-header {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 100%;
    margin: auto;
    max-width: 1200px;
}

/** Documents **/
.section.white.documents {
	padding-top: 0;
}

/* product images home section */
div.product-images.section {
	padding-bottom: 0;
}
.product-images h2 {
	text-align: left;
}
.product-images h3 {
	font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 3rem;
	text-transform: uppercase;
}
.product-images h4 {
	font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.2em;
    font-weight: 900;
    text-transform: none;
    text-align: center;
	margin-top: 1rem;
}
.product-images .section-content-wrapper {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
	margin-left: -1rem;
    margin-right: -1rem;
}
.product-images .section-content-product {
	width: 33.3333%;
}
.product-images .section-content-product .arrow {
    width: 0.7rem;
    height: 0.7rem;
    border: solid 2px black;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transition: transform 0.2s;
    position: absolute;
    top: 15px;
    right: 15px;
	display: none;
}
.product-images .section-content-product .arrow {
    transform: rotate(135deg) translate(-20%, 20%);
}
.product-images .section-content-product .arrow.up {
    transform: rotate(-45deg) translate(-20%, 20%);
}
.product-images .section-content-product {
	width: 33.3333%;
}
.product-images .section-content-product:nth-child(1) .section-content-list,
.product-images .section-content-product:nth-child(2) .section-content-list,
.product-images .section-content-product:nth-child(3) .section-content-list {
	min-height: 240px;
}
.product-images .section-content-product-wrapper {
	margin: 1rem;
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.product-images .section-content-top {
	border: 15px #ededed solid;
	position: relative;
}
.product-images .section-content-title h3 {
	font-size: 16px;
	text-align: center;
	font-weight: 700;
}
.product-images .section-content-image {
	text-align: center;
	margin-bottom: 2rem;
}
.product-images .section-content-list {
	min-height: auto;
	padding: 1rem;
}
.product-images .section-content-list ul {
	list-style: none;
    padding: 0;
    margin: 0;
}
.product-images .section-content-list ul li {
	border-bottom: 1px #3E3B38 solid;
    padding-bottom: 5px;
    margin-top: 5px;
}
.product-images .section-content-list ul li:last-child {
	border-bottom: 0 none;
}
.product-images .section-content-list ul li a {
	width: 100%;
    position: relative;
    display: block;
	text-decoration: none;
}
.product-images .section-content-list ul li img {
	float: right;
    width: 10px;
	position: relative;
	top: 5px;
}
.product-images .section-content-footer {
	margin-top: 2rem;
	padding: 1rem;
}
.product-images .section-content-footer .section-content-footer-button {
	display: inline-block;
    vertical-align: bottom;
	width: 100%;
}
.product-images .section-content-footer .section-content-footer-subscribe {
	display: inline-block;
    vertical-align: bottom;
	float: right;
	margin-bottom: 15px;
}
.product-images .section-content-footer .section-content-footer-subscribe .subscribe,
.product-images .section-content-footer .section-content-footer-subscribe .unsubscribe {
	padding: 0;
    vertical-align: bottom;
    top: 0;
}
.product-images .section-content-footer .section-content-footer-subscribe .subscribe img,
.product-images .section-content-footer .section-content-footer-subscribe .unsubscribe img {
	margin: 0;
    margin-left: 10px;
    position: relative;
}
.product-images .section-content-footer .section-content-footer-subscribe .subscribe span,
.product-images .section-content-footer .section-content-footer-subscribe .unsubscribe span {
	display: block;
	text-indent: -9999em;
	text-transform: uppercase;
}
.product-images form {
	position: relative;
    display: block;
    flex-grow: 1;
    flex-wrap: wrap;
}
.product-images form img {
	position: absolute;
    width: 15px;
    top: 11px;
    left: 5rem;
}
.product-images form button.peli-button {
	background: 0;
    color: #FFF;
	background-color: #da3925;
	width: 100%;
}
.product-images form button.peli-button:hover {
	font-weight: 700;
	background-color: #ae2f1e;
}

/* lifestyle images home section */
div.lifestyle-images.section {
	padding-top: 3rem;
}
.lifestyle-images h3 {
	font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 3rem;
	text-transform: uppercase;
	padding-bottom: 3rem;
	float: left;
}
.section-wrapper.lifestyle-images-wrapper {
	display: block;
    flex-grow: 1;
    flex-wrap: wrap;
}
.section-wrapper.lifestyle-images-wrapper .section-title {
	
}
.section-wrapper.lifestyle-images-wrapper .section-content-wrapper {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.section-wrapper.lifestyle-images-wrapper .section-header {
	width: 100%
}
.section-wrapper.lifestyle-images-wrapper .lifestyle-subscribe  {
	float: right;
	margin-top: 3rem;
	text-align: center;
}
.section-wrapper.lifestyle-images-wrapper .lifestyle-subscribe p {
	margin: 0;
}
.section-wrapper.lifestyle-images-wrapper .section-content {
	width: 100%;
	margin: 0;
	float: none;
    clear: both;
	padding-top: 2rem;
}
.section-wrapper.lifestyle-images-wrapper .section-by-topic,
.section-wrapper.lifestyle-images-wrapper .section-by-category {
	width: 50%;
}
.section-wrapper.lifestyle-images-wrapper .section-by-topic-wrapper,
.section-wrapper.lifestyle-images-wrapper .section-by-category-wrapper {
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 2rem;
}
.section-wrapper.lifestyle-images-wrapper .section-by-topic-wrapper {
	margin-right: 15px;
}
.section-wrapper.lifestyle-images-wrapper .section-by-category-wrapper {
	margin-left: 15px;
}
.section-wrapper.documents-wrapper .section-pricing,
.section-wrapper.documents-wrapper .section-newsletters,
.section-wrapper.documents-wrapper .section-tspecs,
.section-wrapper.documents-wrapper .section-marketing {
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
	margin-bottom: 2rem;
}
.lifestyle-title {
	cursor: pointer;
    padding: 1rem;
    background-color: #FFFFFF;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border: 15px solid #ededed;
}
.section.white.documents .lifestyle-title {
	background-color: #ededed;
	border: 0;
}
.lifestyle-title .arrow {
	display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border: solid 2px black;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transition: transform 0.2s;
    float: right;
	position: relative;
    top: 5px;
}
.lifestyle-title .arrow {
	transform: rotate(135deg) translate(-20%, 20%);
}
.lifestyle-title .arrow.up {
	transform: rotate(-45deg) translate(-20%, 20%);
}
.lifestyle-content-wrapper {
	display: flex;
	padding: 1rem;
	margin-top: 1rem;
}
.lifestyle-content .topic-column {
	width: 50%;
}
.lifestyle-content.twocols .topic-column {
	width: 50%;
}
.lifestyle-content .topic-column-wrapper {
	padding-right: 1rem;
}
.lifestyle-content .topic-column:last-child .topic-column-wrapper {
	padding-right: 0;
}
.lifestyle-content .topic-item {
	margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px #3E3B38 solid;
}
.lifestyle-content .topic-item:last-child {
    border-bottom: 0 none;
}
.lifestyle-content .topic-item a {
	width: 100%;
    display: block;
	text-decoration: none;
	font-style: normal;
}
.lifestyle-content .topic-item a img {
	float: right;
	width: 10px;
	position: relative;
    top: 5px;
}
.lifestyle-content.twocols .topic-item a img {
	width: 15px;
}
.lifestyle-footer {
	padding: 1rem;
	text-align: right;
}
.lifestyle-footer p {
	margin: 0;
}
.section-wrapper.lifestyle-images-wrapper .section-by-topic .lifestyle-title .arrow,
.section-wrapper.lifestyle-images-wrapper .section-by-category .lifestyle-title .arrow {
	display: none;
}
@media only screen and (max-width: 500px) {
	.section-wrapper.lifestyle-images-wrapper .section-header {
		width: auto;
	}
}
@media only screen and (max-width: 768px) {
	.product-images .section-content-product .arrow {
		display: block;
	}
	.product-images .section-content-top {
		cursor: pointer;
	}
	.section-wrapper.lifestyle-images-wrapper .section-content-wrapper {
		display: block;
	}
	.section-wrapper.lifestyle-images-wrapper .section-by-topic,
	.section-wrapper.lifestyle-images-wrapper .section-by-category {
		width: 100%;
	}
	.section-wrapper.lifestyle-images-wrapper .section-by-topic-wrapper {
		margin-right: 0;
	}
	.section-wrapper.lifestyle-images-wrapper .section-by-category-wrapper {
		margin-left: 0;
	}
	.section-wrapper.lifestyle-images-wrapper .section-by-topic .lifestyle-title .arrow,
	.section-wrapper.lifestyle-images-wrapper .section-by-category .lifestyle-title .arrow {
		display: block;
	}
}
/* banner */
.section.banner {
	background-color: #3b3b3b;
    background-image: url(./img/orthographics_Dk-Gray.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}
.section.banner .banner-title {
	background-image: url(./img/PELICAN-2025_Type-Graphic_Built-To-Protect_Reverse.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 180px;
    background-size: contain;
}
.section.banner .banner-wrapper h2 {
	color: #FFFFFF;
    font-weight: normal;
    font-size: 3rem;
    line-height: 4rem;
}
.section.banner .banner-wrapper h2 span {
	display: block;
    padding-left: 4rem;
	font-size: 5rem;
	font-weight: 900;
}
.section.banner .banner-content {
	margin-top: 3rem;
}
.section.banner .banner-content-wrapper {
	display: block;
}
.section.banner .banner-button {
	display: inline-block;
    margin-bottom: 2rem;
}
.section.banner .banner-button a,
.section.banner .banner-button form {
	margin-right: 1rem;
    width: auto;
    display: inline-block;
}
.section.banner .banner-button form {
	position: relative;
    top: 1px;
    height: 38px;
}
.section.banner .banner-button form.peli-button {
	border: 1px #FFFFFF solid;
}
.section.banner .banner-button form button {
	background: 0;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #FFF;
    position: relative;
    top: -1px;
}
.section.banner .banner-button form:hover button {
	color: #3E3B38;
}
.section.banner .banner-button a.transparent:hover {
	color: #3E3B38 !important;
}
/** Videos homepage Section **/
.section.videos .section-tabs .section-tab p {
	font-size: 12px;
}
.section.videos .section-title {
	text-align: center;
}
.section.videos .section-tabs {
	text-align: center;
}
.section.videos .section-content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.section.videos .video-item {
    display: flex;
    flex-direction: column;
}
.section.videos .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.section.videos .video-wrapper iframe,
.section.videos .video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    border-radius: 5px;
}
.section.videos .video-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
	float: left;
	text-align: left;
	width: 80%;
}
.section.videos .video-download {
	float: right;
    position: relative;
    top: 10px;
}
.section.videos .video-download a {
	background-color: #FFFFFF;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 8px;
	width: 32px;
    height: 32px;
	display: block;
}
.section.videos .video-download a:hover {
	background-color: #D7D7D6;
}
.section.videos .video-download img {
	width: 15px;
	position: relative;
}
.section.videos .video-size {
	font-size: 12px;
    color: #8B8988;
	clear: both;
	display: block;
}
.section.videos .videos-footer,
.section.videos .videos-footer-wrapper {
	text-align:center;
}
.section.videos .videos-footer-wrapper .view-all {
	width: 150px;
    text-align: center;
    margin: auto;
}
.section.videos .videos-footer-wrapper .subscribe-button {
	width: auto;
    display: block;
    margin-left: 0;
    margin-bottom: 2rem;
    margin-top: 3rem;
}
.section.videos .videos-footer-wrapper .subscribe-button p {
	margin: 0;
}
@media only screen and (max-width: 1100px) {
	.section-content#content .content-content .content-cat {
		width: 30%;
	}
}
@media only screen and (max-width: 1000px) {
	.new-product-launches .section-button {
		float: none;
		display: block;
	}
}
@media only screen and (max-width: 768px) {
	div.section {
		padding: 3rem 0;
	}
	.new-product-launches .section-title {
		display: block;
	}
	.new-product-launches .section-button {
		float: none;
		display: block;
	}
	.recently-added .content-button a {
		-webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        border-radius: 40px;
        width: 30px;
        height: 30px;
        padding: 0;
        position: relative;
        top: 5px;
	}
	.recently-added .content-button a img {
		width: 20px;
		height: 20px;
		top: 5px;
		padding: 0;
		margin: 0;
	}
	.recently-added .content-button a span {
		display: block;
		text-indent: -9999em;
		text-transform: uppercase;
	}
	.section-header.flex .section-title {
		width: 60%;
	}
	.section-header.flex .section-button {
		margin-left: auto;
		width: auto;
	}
	.product-images .section-content-product {
		width: 50%;
	}
	.section-wrapper.lifestyle-images-wrapper {
		display: block;
	}
	.section-wrapper.lifestyle-images-wrapper .section-content {
		width: auto;
	}
	.section-tabs .section-tab {
		margin-bottom: 1rem;
	}
}
@media only screen and (max-width: 600px) {
	.product-images .section-content-product {
		width: 100%;
	}
}
@media only screen and (max-width: 500px) {
	#particles-js2 .slider-x-item-title {
		font-size: 14px;
		line-height: 1.5rem;
	}
	.section-content#content .content-content .content-cat {
		display: none;
	}
	.section-content#content .content-content .content-title {
		width: 60%;
	}
	.section-header.flex {
		display: block;
	}
	.section-header.flex .section-button {
        margin-left: 0;
        width: auto;
        display: block;
        justify-items: start;
    }
	.section-header.flex .section-title {
        width: auto;
        display: block;
    }
	.lifestyle-content-wrapper {
		display: block;
	}
	.lifestyle-content .topic-column {
		width: auto;
	}
	.lifestyle-content .topic-item:last-child {
		border-bottom: 1px #3E3B38 solid;
	}
	.lifestyle-content .topic-column-wrapper {
		padding-right: 0;
	}
	.lifestyle-content.twocols .topic-column {
		width: auto;
	}
	.section.banner .banner-button {
		display: block;
		margin-bottom: 2rem;
		width: auto;
	}
	.section.banner .banner-button a, .section.banner .banner-button form {
		width: 100%;
	}
}


/** Profile page **/
body.page-template-page-profile,
body.page-template-page-profile .container.grid-container {
	background-color: #FFFFFF;
}
.profile-page-wrapper {
	display: flex;
    max-width: 1200px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.profile-page-wrapper .profile-sidebar {
	width: 20%;
}
.profile-page-wrapper .my-profile-menu {
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links {
	padding: 1.5rem;
}
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link {
	display: block;
    text-decoration: none;
    font-size: 12px;
	padding: 5px;
}
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link.selected,
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link:hover {
	background-color: #F8F8F8;
	color: #3E3B38;
}
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .gap-buffer {
	height: 1.5rem;
	background: transparent;
}
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link img {
	width: 15px;
    vertical-align: middle;
	margin-right: 8px;
}
.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper hr {
	color: #3E3B38;
    background-color: #3E3B38;
	margin-top: 0;
    margin-bottom: 1.5rem;
}
.profile-page-wrapper .my-account-content {
	width: 80%;
}
.profile-page-wrapper .my-account-content-wrapper {
	padding-left: 3rem;
}
.my-profile {
	padding: 2rem 2rem 4rem 2rem;
}
.my-profile .profile-data div {
	display: inline-block;
	vertical-align: top;
}
.my-profile .user-info {
	margin-left: 1rem;
}
.my-profile .user-info div {
	display: block;
}
.my-profile .user-info .user-name {
	font-size: 22px;
    font-weight: 700;
    vertical-align: top;
    position: relative;
    top: -6px;
}
.my-profile .user-info .user-company {
	color: #656260;
}
.my-profile .user-info .user-email {
	font-weight: 700;
}
.my-profile .profile-data .profile-edit {
	float: right;
}
.my-profile .user-img {
	background-color: #F7D8D4;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
    padding: 10px;
    width: 50px;
    height: 50px;
}
.my-profile .user-img img {
	width: 25px;
    margin-left: 3px;
    margin-top: 2px;
}
.my-account-content h2 {
	font-size: 16px;
	font-weight: 700;
}
.recently-viewed-container,
.recently-downloaded-container {
	padding: 1rem 2rem;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
	border: 1px #c5c4c3 solid;
	margin-bottom: 4rem;
}
body.page-template-page-profile .content-item-boxed-wrapper .content-content {
	min-height: 80px;
}
.csn-notifications {
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.csn-notifications .notification-item {
	padding: 2rem 2rem 1rem 2rem;
    margin-bottom: 2rem;
	position: relative;
	display: none;
}
.csn-notifications .notification-item-wrapper {
	border-bottom: 2px #c5c4c3 solid;
    padding-bottom: 2rem;
}
.csn-notifications .notification-item.read {
	background-color: #EEEEEE;
}
.csn-notifications .notification-item .date {
	font-size: 12px;
    color: #8B8988;
}
.csn-notifications .notification-item button {
	display: inline-block;
    margin-right: 0.5rem;
}
.csn-notifications .notification-item-left {
	display: inline-block;
}
.csn-notifications .notification-item-right {
	display: inline-block;
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.csn-notifications .load-more-notif {
	padding-bottom: 2rem;
    text-align: center;
}
.csn-notifications .load-more-notif button {
	background-color: transparent;
    border: 1px #3E3B38 solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 25px;
}
.csn-notifications .load-more-notif button:hover,
.csn-notifications .load-more-notif button:focus {
	background-color: #EEEEEE;
	color: #3E3B38;
}
.delete-notif {
	background-color: transparent;
    border: 1px #3E3B38 solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 6px 20px;
    font-weight: 700;
}
.delete-notif:hover,
.delete-notif:focus {
	background-color: #DEDEDE;
}
.mark-read {
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 22px;
    font-weight: 700;
}
.csn-subscriptions-wrapper {
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 2rem;
}
.csn-subscriptions .subscription-item-header-wrapper {
	padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    background-color: #ededed;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}
.csn-subscriptions .subscription-item-header-title {
	width: 60%;
	padding-right: 10px;
}
.csn-subscriptions .subscription-item-header-status {
	width: 30%;
}
.csn-subscriptions .subscription-item-header-delete {
	width: 10%;
}
.csn-subscriptions .subscription-item-wrapper {
	padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
	border-bottom: 1px #DDDDDD solid;
}
.csn-subscriptions .subscription-item-title {
	width: 60%;
	padding-right: 10px;
	padding-top: 10px;
}
.csn-subscriptions .subscription-item-status {
	width: 30%;
	padding-top: 10px;
}
.csn-subscriptions .subscription-item-delete {
	width: 10%;
    margin-left: auto;
    text-align: right;
}
.csn-subscriptions .subscription-item-delete .delete-subs {
	background-color: transparent;
}
.csn-subscriptions .subscription-item-delete .delete-subs:hover,
.csn-subscriptions .subscription-item-delete .delete-subs:focus {
	background-color: #EEEEEE;
}
.csn-subscriptions .subscription-item-delete .delete-subs img {
	min-width: 15px;
}
.subscription-item-status .switch,
.notificationconf-option .switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
}
.notificationconf-option .notif-info {
    display: inline-block;
    position: relative;
    top: 2px;
    padding-left: 0.5rem;
    font-size: 14px;
    font-weight: 500;
} 
.subscription-item-status .switch input,
.notificationconf-option .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.subscription-item-status .slider,
.notificationconf-option .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}
.subscription-item-status .slider:before,
.notificationconf-option .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.subscription-item-status input:checked + .slider,
.notificationconf-option input:checked + .slider {
    background-color: #AE2F1E;
}
.subscription-item-status input:checked + .slider:before,
.notificationconf-option input:checked + .slider:before {
    transform: translateX(20px);
}
.notificationconf-option input[name="acf_notif_submit"] {
	display: block;
    float: none;
    clear: both;
    margin-top: 2rem;
}
.csn-subscriptions .load-more-subs {
	padding-bottom: 2rem;
    text-align: center;
	padding-top: 2rem;
}
.csn-subscriptions .load-more-subs button {
	background-color: transparent;
    border: 1px #3E3B38 solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 25px;
}
.csn-subscriptions .load-more-subs button:hover,
.csn-subscriptions .load-more-subs button:focus {
	background-color: #EEEEEE;
	color: #3E3B38;
}
.my-account-content .notifications h2,
.my-account-content .settings h2,
.my-account-content .subscriptions h2 {
	font-size: 30px;
	font-weight: 900;
	margin-bottom: 2rem;
}
.my-account-content .notifications .section-content,
.my-account-content .settings .section-content,
.my-account-content .subscriptions .section-content {
	margin-top: 0;
}
.my-account-content .editprofile-content-wrapper p,
.my-account-content .notificationconf-content-wrapper p,
.my-account-content .security-content-wrapper p {
	margin: 0;
}
.my-account-content .editprofile-content-wrapper .editprofile-header,
.my-account-content .notificationconf-content-wrapper .notificationconf-header,
.my-account-content .security-content-wrapper .security-header {
	margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px #c5c4c3 solid;
}
.my-account-content .editprofile-form .editprofile-form-field {
	border-bottom: 1px #c5c4c3 solid;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}
.my-account-content .editprofile-form .editprofile-form-field-wrapper {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.my-account-content .editprofile-form .editprofile-form-field-column {
	width: 60%;
	padding-left: 10px;
}
.my-account-content .editprofile-form .editprofile-form-field-column.name {
	display: flex;
	flex-grow: 1;
    flex-wrap: wrap;
}
.my-account-content .editprofile-form .editprofile-form-field-column.label {
	font-weight: 700;
	padding-left: 0;
	width: 40%;
}
.my-account-content .editprofile-form .editprofile-name,
.my-account-content .editprofile-form .editprofile-surname {
	width: 50%;
	padding-left: 10px;
}
.my-account-content .editprofile-form .editprofile-form-field.field-name .editprofile-form-field-column {
	padding-left: 0;
}
.my-account-content .editprofile-form .editprofile-form-field-column label {
	font-weight: 700;
}
.my-account-content .editprofile-form .editprofile-form-field-column input,
.my-account-content .editprofile-form .editprofile-form-field-column select {
    line-height: 1.33333333;
    width: 100%;
    border-width: .0625rem;
    padding: .1875rem .3125rem;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
	box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    border: 1px solid #8c8f94;
    background-color: #fff;
}
.my-account-content .editprofile-form-submit {
	background-color: #da3925;
	margin-left: auto;
}
.my-account-content .editprofile-form-submit:hover,
.my-account-content .editprofile-form-submit:focus {
	background-color: #ae2f1e;
	-webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}
.my-account-content .editprofile-message {
	padding: 2rem;
    background-color: #F6FEF9;
    border: 1px #079455 solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.my-account-content .editprofile-message img {
	position: relative;
    top: 5px;
    padding-right: 1rem;
}
.my-account-content .security-form label {
	font-weight: 400;
	display: block;
	margin-top: 1.5rem;
}
.my-account-content .security-form input.pass-field {
	line-height: 1.33333333;
    width: 50%;
    border-width: .0625rem;
    padding: .1875rem .3125rem;
    margin: 0 6px 0 0;
    min-height: 40px;
    max-height: none;
    box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    border: 1px solid #8c8f94;
    background-color: #fff;
}
.my-account-content .security-form p {
	color: #8B8988;
	font-size: 10px;
	max-width: 300px;
}
.my-account-content .change-password-form-submit {
	background-color: #da3925;
	margin-left: auto;
	margin-top: 2rem;
}
.my-account-content .change-password-form-submit:hover,
.my-account-content .change-password-form-submit:focus {
	background-color: #ae2f1e;
	-webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}
.my-profile-menu-mobile .profile-select-wrapper {
	position: relative;
	width: 100%;
	font-family: Arial, sans-serif;
	user-select: none;
}
.my-profile-menu-mobile .profile-select-trigger {
	background: #F8F8F8;
	padding: 10px;
	border: 1px solid #F8F8F8;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	background-image: url(./img/chevron_down.png);
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 10px;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.my-profile-menu-mobile .profile-options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	border: 1px solid #F8F8F8;
	background: white;
	z-index: 10;
}
.my-profile-menu-mobile .profile-option {
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.my-profile-menu-mobile .profile-option:hover {
	background: #eee;
}
.my-profile-menu-mobile .option-icon {
	width: 20px;
	height: auto;
}
.my-profile-menu-mobile .my-profile-dropdown-links {
	padding: 0 !important;
}
@media only screen and (max-width: 1000px) {
	.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link span {
		display: none;
	}
	.profile-page-wrapper .profile-sidebar {
		width: 10%;
	}
	.profile-page-wrapper .my-account-content {
		width: 90%;
	}
	.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link {
		text-align: center;
	}
	.profile-page-wrapper .profile-sidebar .my-profile-dropdown-links-wrapper .my-profile-link img {
		width: 20px;
	}
}
@media only screen and (max-width: 768px) {
	.profile-page-wrapper {
		display: block;
	}
	.profile-page-wrapper .profile-sidebar,
	.profile-page-wrapper .my-account-content {
		width: auto;
	}
	.profile-page-wrapper .profile-sidebar {
        margin-bottom: 1rem;
    }
	.profile-page-wrapper .my-account-content-wrapper {
		padding-left: 0;
	}
	.profile-page-wrapper .my-profile-menu {
		display: none;
	}
	.profile-page-wrapper .my-profile-menu-mobile {
		display: block !important;
		margin-bottom: 3rem;
	}
	.profile-page-wrapper .my-profile-menu-mobile select {
		width: 100%;
	}
}
@media only screen and (max-width: 500px) {
	.my-account-content .editprofile-form .editprofile-form-field-wrapper {
		display: block;
	}
	.my-account-content .editprofile-form .editprofile-name, .my-account-content .editprofile-form .editprofile-surname {
		padding-left: 0;
		width: auto;
	}
	.my-account-content .editprofile-form .editprofile-form-field-column {
		width: auto;
		padding-left: 0;
	}
	.my-account-content .editprofile-form .editprofile-form-field-column.name {
		display: block;
	}
	.my-account-content .editprofile-form .editprofile-form-field.field-name .editprofile-form-field-column {
		margin-bottom: 1rem;
	}
	.my-account-content .security-form input.pass-field {
		width: 100%;
	}
}

/** Products in development **/
body.page-template-page-pid,
body.page-template-page-pid .container.grid-container {
	background-color: #FFFFFF;
}
.products-in-development-page .section-title {
	display: inline-block;
    width: 70%;
    padding-right: 2rem;
	color: #FFF;
}
.products-in-development-page .section-content {
	margin-left: -1rem;
    margin-right: -1rem;
}
.products-in-development-page .section-button {
	display: inline-block;
    width: 25%;
    margin-left: auto;
    text-align: right;
    vertical-align: top;
}
.products-in-development-page .section-content-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
}
.products-in-development-page .section-content-wrapper .pid {
	width: 25%;
}
.products-in-development-page .section-content-wrapper .pid .content-item-boxed {
	padding: 1rem;
}
.products-in-development-page .section-content-wrapper .content-terms {
	margin-bottom: 1rem;
}
.products-in-development-page .section-content-wrapper .content-terms span {
	background-color: #EFF4F9;
	-webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
	font-size: 10px;
	text-decoration: none;
	color: #3C5A79;
	padding: 5px 8px;
}
.products-in-development-page .section-content-wrapper a:hover .content-terms span {
	font-weight: normal;
}
@media only screen and (max-width: 768px) {
	.products-in-development-page .section-content-wrapper .pid {
		width: 33.33333%;
	}
}
@media only screen and (max-width: 500px) {
	.products-in-development-page .section-content-wrapper .pid {
		width: 50%;
	}
	.products-in-development-page .section-title {
		width: auto;
	}
}

/*** Single Pack **/
.custom-breadcrumb {
	width: 100%;
    background-color: #FFF;
    margin: 0;
    border: 0;
}
.custom-breadcrumb .breadcrumb {
	max-width: 1200px;
    margin: auto;
    position: relative;
    padding: 2rem 20px;
}
body.single-pack .pack-header .section-wrapper {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
body.single-pack .pack-header-left {
	width: 50%;
    position: relative;
    overflow: hidden;
}
body.single-pack .pack-header-right {
	width: 40%;
    position: relative;
    margin-left: auto;
}
body.single-pack .pack-header-right-wrapper {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 3rem 0 3rem 3rem;
}
body.single-pack .section-description {
	margin: 3rem 0;
}
body.single-pack .swiperslider {
	border: 1px #C5C4C3 solid;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.swiperslider, .swiper-wrapper {
	height: auto; 
}
.pack-header .swiperslider, .pack-header .swiper-wrapper {
	height: 100%; 
	align-items: anchor-center;
}
body.single-pack .swiper-slide {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
body.single-pack .swiper-button-next:after,
body.single-pack .swiper-button-prev:after {
    display: none;
}
body.single-pack .swiper-button-next,
body.single-pack .swiper-button-prev {
    background-image: url(./img/right-arrow.png);
    background-color: #da3925;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: block;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}
body.single-pack .swiper-button-prev {
    transform: rotate(180deg);
}
body.single-pack .swiper-button-next:hover,
body.single-pack .swiper-button-prev:hover {
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
	background-color: #ae2f1e;
}
body.single-pack .swiper-button-next:focus,
body.single-pack .swiper-button-prev:focus {
	background-color: #da3925;
}
body.single-pack .section.pack-documents .section-content {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
	margin-left: -1rem;
    margin-right: -1rem;
}
body.single-pack .section.pack-documents .content-list {
	width: 50%;
	margin-bottom: 2rem;
}
body.single-pack .section.pack-documents .content-list-wrapper {
	padding: 2rem;
    background-color: #FFFFFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
	margin: 1rem;
	height: 100%;
}
body.single-pack .section.pack-documents .content-list-title {
	font-size: 16px;
    font-weight: 700;
    margin-bottom: 2rem;
}
body.single-pack .section.pack-documents .content-list-content-item {
	border-bottom: 1px #EDEDED solid;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
body.single-pack .section.pack-documents .content-list-content-item:last-child {
	border-bottom: 0;
	margin-bottom: 0;
    padding-bottom: 0;
}
body.single-pack .section.pack-documents .content-list-content-item p {
	margin: 0;
}
body.single-pack .section.pack-documents .content-list-content-item a {
	float: right;
}
body.single-pack .section.pack-documents .content-list-content.links .content-list-content-item a {
	float: none;
}
body.single-pack .section.pack-documents .content-list-content-item img {
	width: 15px;
    vertical-align: middle;
	margin-right: 5px;
}
body.single-pack .section.pack-images .section-content {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
	margin-bottom: 3rem;
}
body.single-pack .section.pack-images .content-image {
	width: 25%;
	text-align: center;
    position: relative;
}
body.single-pack .section.pack-images .content-image-wrapper {
	text-align: center;
    position: relative;
    height: 160px;
    background-position-x: center;
    background-position-y: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
	margin: 1rem;
    padding: 1rem;
}
body.single-pack .section.pack-images .content-image-overlay {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: 15px;
    background: linear-gradient(15deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 80%);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: visibility 0s, opacity 0.2s linear;
    -ms-transition: visibility 0s, opacity 0.2s linear;
    transition: visibility 0s, opacity 0.2s linear;
}
body.single-pack .content-image-wrapper:hover .content-image-overlay {
    visibility: visible;
    opacity: 1;
}
body.single-pack .section.pack-images .content-image a {
	text-decoration: none;
    text-align: center;
}
body.single-pack .section.pack-images .content-image img {
	width: auto;
    height: 150px;
    object-fit: contain;
}
body.single-pack .section.pack-images .content-info {
	text-align: left;
    padding: 0 1rem;
}
body.single-pack .section.pack-images .content-info span {
	display: block;
    font-size: 12px;
    color: #8B8988;
    background-color: #FFF;
}
body.single-pack .load-more-packimg {
	padding-bottom: 2rem;
    text-align: center;
    padding-top: 2rem;
}
body.single-pack .load-more-packimg .load-more-packimg-button {
	background-color: transparent;
    border: 1px #3E3B38 solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 25px;
}
body.single-pack .load-more-packimg .load-more-packimg-button:hover,
body.single-pack .load-more-packimg .load-more-packimg-button:focus {
    background-color: #EEEEEE;
    color: #3E3B38;
}
body.single-pack .pack-video {
	padding-bottom: 1rem;
}
body.single-pack .pack-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
body.single-pack .pack-video .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}
body.single-pack .pack-video .video-size {
    display: block;
    font-size: 12px;
    color: #8B8988;
    background-color: #FFF;
}
body.single-pack .pack-video .video-title a {
    float: right;
    background-color: #F8F8F8;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    padding: 8px;
    width: 32px;
    height: 32px;
    display: block;
}
body.single-pack .pack-video .video-title a:hover {
    background-color: #D7D7D6;
}
body.single-pack .content-image .download-product {
	position: absolute;
    top: 8rem;
    visibility: hidden;
    right: 30px;
    text-align: center;
    vertical-align: middle;
    background-color: #F8F8F8;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
    width: 32px;
    height: 32px;
    display: block;
    z-index: 9999;
}
body.single-pack .content-image .download-product:hover {
    background-color: #D7D7D6;
}
body.single-pack .content-image:hover .download-product {
    visibility: visible;
}
body.single-pack .content-image .download-product img {
    width: 16px;
	height: 16px !important;
    position: relative;
	top: 7px;
}
@media only screen and (max-width: 1000px) {
	body.single-pack .section.pack-documents .section-content {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}
	body.single-pack .section.pack-documents .content-list {
		width: auto;
	}
	body.single-pack .section.pack-documents .content-list-wrapper {
		margin: 0;
	}
	body.single-pack .section.pack-images .content-image {
		width: 50%;
	}
}
@media only screen and (max-width: 900px) {
	body.single-pack .pack-header-right {
		width: 50%;
	}
}
@media only screen and (max-width: 768px) {
	body.single-pack .pack-header .section-wrapper {
		display: block;
	}
	body.single-pack .pack-header-right,
	body.single-pack .pack-header-left {
		width: auto;
	}
	body.single-pack .pack-header-left {
        margin-bottom: 3rem;
    }
	body.single-pack .pack-header-right-wrapper {
		position: relative;
		top: 0;
		left: 0;
		transform: none;
		width: auto;
		padding: 0;
	}
}
@media only screen and (max-width: 600px) {
	body.single-pack .section.pack-documents .content-list-content-item p {
		font-size: 12px;
	}
	body.single-pack .section.pack-documents .content-list-content-item,
	body.single-pack .section.pack-documents .content-list-content-item a {
		font-size: 12px;
	}
	body.single-pack .section.pack-documents .content-list-content.links .content-list-content-item a {
		font-size: 12px;
	}
}

/** FAQ **/
body.page-template-page-faq div.section {
	padding-bottom: 4rem;
    padding-top: 4rem;
}
body.page-template-page-faq div.section.faq-description {
	padding-top: 4rem;
	padding-bottom: 2rem;
}
div.section.faq-videos {
	padding-top: 0;
}
body.page-template-page-faq h2 {
	margin-bottom: 3rem;
	font-size: 38px;
	font-weight: 700;
	line-height: 48px;
}
.faq-videos .video-big {
	margin-bottom: 4rem;
}
.faq-videos .video-item {
	display: flex;
    flex-direction: column;
}
.faq-videos .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.faq-videos .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}
.faq-videos .video-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 700;
    float: left;
    text-align: left;
    width: 80%;
	margin-bottom: 1rem;
}
.faq-videos .video-title.big {
    font-size: 22px;
}
.faq-videos .video-wrapper video {
    width: 100%;
}
.faq-videos .video-small-wrapper {
    display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
}
.faq-videos .video-small-wrapper .video-item {
    width: 33.33333%;
}
.faq-videos .video-small-wrapper .video-item .video-info {
    margin: 0 0.5rem;
}
.faq-videos .video-small-wrapper .video-item .video-wrapper {
    margin: 0 0.5rem;
}
.faq-faqs .ewd-ufaq-faq-div {
	margin-bottom: 1.5rem !important;
	border: 1px #8B8988 solid;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.faq-faqs .ewd-ufaq-faq-div.ewd-ufaq-post-active {
	-webkit-box-shadow: 3px 3px 5px 2px #ccc;
    -moz-box-shadow: 3px 3px 5px 2px #ccc;
    box-shadow: 3px 3px 5px 2px #ccc;
}
.faq-faqs .ewd-ufaq-faq-div.ewd-ufaq-post-active .ewd-ufaq-faq-title {
	background-color: #EDEDED;
}
.faq-faqs .ewd-ufaq-faq-div .ewd-ufaq-faq-title {
	padding: 0.5rem;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.faq-faqs .ewd-ufaq-faq-div:hover .ewd-ufaq-faq-title {
	background-color: #EDEDED;
}
.faq-faqs .ewd-ufaq-faq-div a:hover,
.faq-faqs .ewd-ufaq-faq-div a:active,
.faq-faqs .ewd-ufaq-faq-div a:focus {
	font-weight: normal;
	color: #3e3b38;
}
.faq-faqs a .ewd-ufaq-post-margin-symbol {
	position: relative;
    top: 8px;
}
.faq-contact {
	background-color: #EDEDED;
}
.faq-contact h2 {
	text-align: center;
}
.faq-feedback .faq-feedback-wrapper {
	display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
}
.faq-feedback .faq-feedback-wrapper .faq-contact-left {
	width: 40%;
}
.faq-feedback .faq-feedback-wrapper .faq-contact-right {
	width: 60%;
}
.faq-feedback .faq-contact-right label {
	margin-bottom: 10px;
}
.faq-feedback .faq-contact-right .wpcf7-text,
.faq-feedback .faq-contact-right .wpcf7-textarea {
	border: 1px #8B8988 solid;
	width: 100%;
	background-color: #FFF;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.faq-feedback .faq-contact-right .wpcf7 {
	margin-left: 4rem;
}
.faq-feedback .faq-contact-right .peli-button {
	background-color: #da3925;
    color: #FFFFFF;
	clear: both;
    margin-top: 3rem;
}
.faq-feedback .faq-contact-right .peli-button:hover {
	background-color: #ae2f1e;
}
.faq-feedback span.wpcf7-character-count {
	color: #8B8988;
	float: right;
    font-size: 12px;
}
.faq-feedback span.wpcf7-character-count:after {
    content: "/260";
}
@media only screen and (max-width: 768px) {
	.faq-videos .video-small-wrapper .video-item {
		width: 50%;
		margin-bottom: 2rem;
	}
	.faq-feedback .faq-feedback-wrapper {
		display: block;
	}
	.faq-feedback .faq-feedback-wrapper .faq-contact-left {
		width: auto;
		margin-bottom: 3rem;
	}
	.faq-feedback .faq-feedback-wrapper .faq-contact-right {
		width: auto;
	}
	.faq-feedback .faq-contact-right .wpcf7 {
		margin-left: 0;
	}
}
@media only screen and (max-width: 768px) {
	.faq-videos .video-small-wrapper .video-item {
		width: 100%;
}