.carousel {
	position: relative;
}

.carousel.pointer-event {
	touch-action: pan-y;
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-inner::after {
	display: block;
	clear: both;
	content: "";
}

.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	backface-visibility: hidden;
	transition: transform .6s ease-in-out;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
	display: block;
}

.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
	transform: translateX(100%);
}

.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
	transform: translateX(-100%);
}

.carousel-fade .carousel-item {
	opacity: 0;
	transition-property: opacity;
	transform: none;
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
	z-index: 1;
	opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	z-index: 0;
	opacity: 0;
	transition: opacity 0s .6s;
}

.carousel-control-next,
.carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15%;
	color: #fff;
	text-align: center;
	opacity: .5;
	transition: opacity .15s ease;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: .9;
}

.carousel-control-prev {
	left: 0;
}

.carousel-control-next {
	right: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 15;
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none;
}

.carousel-indicators li {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #fff;
	background-clip: padding-box;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	opacity: .5;
	transition: opacity .6s ease;
}

.carousel-indicators .active {
	opacity: 1;
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #495057;
}

.form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

input[type=date].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control,
input[type=time].form-control {
	appearance: none;
}

select.form-control:focus::-ms-value {
	color: #495057;
	background-color: #fff;
}

.form-control-file,
.form-control-range {
	display: block;
	width: 100%;
}

.col-form-label {
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
}

.col-form-label-lg {
	padding-top: calc(.5rem + 1px);
	padding-bottom: calc(.5rem + 1px);
	font-size: 1.25rem;
	line-height: 1.5;
}

.col-form-label-sm {
	padding-top: calc(.25rem + 1px);
	padding-bottom: calc(.25rem + 1px);
	font-size: .875rem;
	line-height: 1.5;
}

.form-control-plaintext {
	display: block;
	width: 100%;
	padding: .375rem 0;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #212529;
	background-color: transparent;
	border: solid transparent;
	border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
	padding-right: 0;
	padding-left: 0;
}

.form-control-sm {
	height: calc(1.5em + .5rem + 2px);
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5;
	border-radius: .2rem;
}

.form-control-lg {
	height: calc(1.5em + 1rem + 2px);
	padding: .5rem 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: .3rem;
}

select.form-control[multiple],
select.form-control[size] {
	height: auto;
}

textarea.form-control {
	height: auto;
}

.form-group {
	margin-bottom: 1rem;
}

.form-text {
	display: block;
	margin-top: .25rem;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

.form-row>.col,
.form-row>[class*=col-] {
	padding-right: 5px;
	padding-left: 5px;
}

.form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem;
}

.form-check-input {
	position: absolute;
	margin-top: .3rem;
	margin-left: -1.25rem;
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
	color: #6c757d;
}

.form-check-label {
	margin-bottom: 0;
}

.form-check-inline {
	display: inline-flex;
	align-items: center;
	padding-left: 0;
	margin-right: .75rem;
}

.form-check-inline .form-check-input {
	position: static;
	margin-top: 0;
	margin-right: .3125rem;
	margin-left: 0;
}

.valid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #28a745;
}

.valid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .25rem .5rem;
	margin-top: .1rem;
	font-size: .875rem;
	line-height: 1.5;
	color: #fff;
	background-color: rgba(40,167,69,.9);
	border-radius: .25rem;
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
	display: block;
}

.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: #28a745;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
	border-color: #28a745;
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
	padding-right: calc(1.5em + .75rem);
	background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.custom-select.is-valid,
.was-validated .custom-select:valid {
	border-color: #28a745;
	padding-right: calc(.75em + 2.3125rem);
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
	border-color: #28a745;
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
	color: #28a745;
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip,
.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
	display: block;
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
	color: #28a745;
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
	border-color: #28a745;
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
	border-color: #34ce57;
	background-color: #34ce57;
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}

.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before {
	border-color: #28a745;
}

.custom-file-input.is-valid~.custom-file-label,
.was-validated .custom-file-input:valid~.custom-file-label {
	border-color: #28a745;
}

.custom-file-input.is-valid:focus~.custom-file-label,
.was-validated .custom-file-input:valid:focus~.custom-file-label {
	border-color: #28a745;
	box-shadow: 0 0 0 .2rem rgba(40,167,69,.25);
}

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #dc3545;
}

.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .25rem .5rem;
	margin-top: .1rem;
	font-size: .875rem;
	line-height: 1.5;
	color: #fff;
	background-color: rgba(220,53,69,.9);
	border-radius: .25rem;
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
	display: block;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
	border-color: #dc3545;
	padding-right: calc(1.5em + .75rem);
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(.375em + .1875rem) center;
	background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
	padding-right: calc(1.5em + .75rem);
	background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.custom-select.is-invalid,
.was-validated .custom-select:invalid {
	border-color: #dc3545;
	padding-right: calc(.75em + 2.3125rem);
	background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
	border-color: #dc3545;
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
	color: #dc3545;
}

.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip,
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip {
	display: block;
}

.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
	color: #dc3545;
}

.custom-control-input.is-invalid~.custom-control-label::before,
.was-validated .custom-control-input:invalid~.custom-control-label::before {
	border-color: #dc3545;
}

.custom-control-input.is-invalid:checked~.custom-control-label::before,
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
	border-color: #e4606d;
	background-color: #e4606d;
}

.custom-control-input.is-invalid:focus~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}

.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before {
	border-color: #dc3545;
}

.custom-file-input.is-invalid~.custom-file-label,
.was-validated .custom-file-input:invalid~.custom-file-label {
	border-color: #dc3545;
}

.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus~.custom-file-label {
	border-color: #dc3545;
	box-shadow: 0 0 0 .2rem rgba(220,53,69,.25);
}

.form-inline {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.form-inline .form-check {
	width: 100%;
}

.w-25 {
	width: 25%!important;
}

.w-50 {
	width: 50%!important;
}

.w-75 {
	width: 75%!important;
}

.w-100 {
	width: 100%!important;
}

.w-auto {
	width: auto!important;
}

.h-25 {
	height: 25%!important;
}

.h-50 {
	height: 50%!important;
}

.h-75 {
	height: 75%!important;
}

.h-100 {
	height: 100%!important;
}

.h-auto {
	height: auto!important;
}

.mw-100 {
	max-width: 100%!important;
}

.mh-100 {
	max-height: 100%!important;
}

.min-vw-100 {
	min-width: 100vw!important;
}

.min-vh-100 {
	min-height: 100vh!important;
}

.vw-100 {
	width: 100vw!important;
}

.vh-100 {
	height: 100vh!important;
}

@font-face {
	font-family: drynites-icons;
	src: url(../fonts/drynites-icons.svg?djspu5#drynites-icons) format("svg");
	src: url(../fonts/drynites-icons.woff) format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

[class*=" icon-"],
[class^=icon-] {
	font-family: drynites-icons!important;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-collapse:before {
	content: "";
	color: #fff;
}

.icon-Expand:before {
	content: "";
	color: #fff;
}

.icon-play-red:before {
	content: "";
	color: #fafafa;
	background-color: #ea1b23;
}

.icon-download:before {
	content: "";
}

.icon-eye:before {
	content: "";
	color: #003552;
}

.icon-radio-default:before {
	content: "";
	color: #fafafa;
}

.icon-cross:before {
	content: "";
	color: #fafafa;
}

.icon-drop-circle:before {
	content: "";
	color: #fafafa;
}

.icon-feather-circle:before {
	content: "";
	color: #fafafa;
}

.icon-globe:before {
	content: "";
	color: #fafafa;
}

.icon-checkbox-default:before {
	content: "";
	color: #fafafa;
}

.icon-facebook:before {
	content: "";
	color: #fafafa;
}

.icon-instagram:before {
	content: "";
	color: #fafafa;
}

.icon-radio-selected:before {
	content: "";
	color: #fafafa;
}

.icon-twitter:before {
	content: "";
	color: #fafafa;
}

.icon-tick:before {
	content: "";
	color: #004974;
}

.icon-arrow-left:before {
	content: "";
	color: #fafafa;
}

.icon-arrow-up:before {
	content: "";
	color: #fafafa;
}

.icon-arrow-down:before {
	content: "";
	color: #fafafa;
}

.icon-arrow-right:before {
	content: "";
	color: #fafafa;
}

.icon-checkbox-selected:before {
	content: "";
	color: #fafafa;
}

.icon-Checkbox_hover {
	filter: drop-shadow(0 0 15px #2dc0ff);
}

.icon-Checkbox_hover:before {
	content: "";
	color: #fafafa;
}

.icon-cross-circle:before {
	content: "";
	color: #fafafa;
}

.icon-direction-arrow-left:before {
	content: "";
	color: #c9c9c9;
}

.icon-strech-circle:before {
	content: "";
	color: #fafafa;
}

.icon-direction-arrow-right:before {
	content: "";
	color: #2dc0ff;
}

.icon-drop:before {
	content: "";
	color: #fafafa;
}

.icon-feather:before {
	content: "";
	color: #fafafa;
}

.icon-fullscreen:before {
	content: "";
	color: #fafafa;
}

.icon-mail:before {
	content: "";
	color: #004974;
}

.icon-man-m:before {
	content: "";
	color: #fafafa;
}

.icon-minus:before {
	content: "";
	color: #fafafa;
}

.icon-phone:before {
	content: "";
	color: #004974;
}

.icon-play-circle:before {
	content: '';
	background: url(/img/Play-icon.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	display: block;
	color: #fafafa;
	width: 30px;
	height: 30px;
}

.icon-plus:before {
	content: "";
	color: #fafafa;
}

.icon-prd-feature:before {
	content: "";
	color: #fafafa;
}

.icon-profile:before {
	content: "";
	color: #fafafa;
}

.icon-rotate-left:before {
	content: "";
	color: #fff;
}

.icon-rotate-right:before {
	content: "";
	color: #fff;
}

.icon-scroll-top:before {
	content: "";
	color: #2dc0ff;
}

.icon-search:before {
	content: "";
	color: #fafafa;
}

.icon-share:before {
	content: "";
}

.icon-star:before {
	content: "";
	color: #fafafa;
}

.icon-strech:before {
	content: "";
	color: #fafafa;
}

.icon-trash:before {
	content: "";
	color: #fafafa;
}

.icon-warning:before {
	content: "";
	color: #f26e86;
}

.icon-zoom:before {
	content: "";
	color: #fafafa;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: 0;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:after,
.slick-track:before {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-next,
.slick-prev {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	background: 0 0;
	color: transparent;
	top: 50%;
	-webkit-transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	transform: translate(0,-50%);
	padding: 0;
	border: none;
	outline: 0;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
	outline: 0;
	background: 0 0;
	color: transparent;
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
	opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
	opacity: .25;
}

.slick-next:before,
.slick-prev:before {
	font-family: drynites-icons;
	font-size: 20px;
	line-height: 1;
	color: #fff;
	opacity: .75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir=rtl] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-prev:before {
	content: "←";
}

[dir=rtl] .slick-prev:before {
	content: "→";
}

.slick-next {
	right: -25px;
}

[dir=rtl] .slick-next {
	left: -25px;
	right: auto;
}

.slick-next:before {
	content: "→";
}

[dir=rtl] .slick-next:before {
	content: "←";
}

.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	border: 0;
	background: 0 0;
	display: block;
	height: 20px;
	width: 20px;
	outline: 0;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
	outline: 0;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
	opacity: 1;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "•";
	width: 20px;
	height: 20px;
	font-family: drynites-icons;
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: #000;
	opacity: .25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: #000;
	opacity: .75;
}

.slick-slide {
	float: left;
}

.slick-slide img {
	width: 100%;
}

ul.slick-dots {
	z-index: 2;
	display: flex;
	justify-content: center;
	align-content: center;
}

ul.slick-dots li {
	margin: 0 0!important;
	height: 8px;
	width: 8px;
	border: 1px solid #fafafa;
	background-color: transparent;
	border-radius: 100px;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 16px!important;
}

ul.slick-dots li:focus,
ul.slick-dots li:hover {
	background-color: #2dc0ff!important;
	outline: 0;
}

ul.slick-dots li:last-child {
	margin-right: 0!important;
}

ul.slick-dots li.slick-active {
	cursor: default;
	background-color: #fafafa;
}

.slick-next,
.slick-prev {
	background: #fff;
	height: 28px;
	width: 28px;
	border-radius: 50%;
	border: 0;
	z-index: 3;
}

.slick-next:before,
.slick-prev:before {
	font-family: drynites-icons;
	font-size: 12px;
	line-height: 28px;
	color: #e5007d;
	opacity: 1;
	display: flex;
	justify-content: center;
	font-weight: bolder;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
	border: 0;
	background: #fafafa;
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled {
	background: rgba(242,242,242,.5);
	opacity: 1;
	border: 0;
}

.slick-next.slick-disabled:hover,
.slick-prev.slick-disabled:hover {
	cursor: default;
}

.slick-next.slick-disabled::before,
.slick-prev.slick-disabled::before {
	opacity: 1;
	color: #ccc;
}

button.slick-prev {
	left: 4px;
	z-index: 1;
	transform: scaleX(1);
}

button.slick-prev:before {
	content: "";
}

button.slick-next {
	right: 20px;
	transform: scaleX(1);
}

button.slick-next:before {
	content: "";
}

.testimonial-section {
	background: #003552;
}

.testimonial-section .testimonial-description-wrapper {
	padding-top: 26px;
}

.testimonial-section .testimonial-checkbox-wrapper,
.testimonial-section .testimonial-tab-wrapper {
	background: #004974;
}

.testimonial-section .testimonial-checkbox-wrapper ::-webkit-scrollbar,
.testimonial-section .testimonial-tab-wrapper ::-webkit-scrollbar {
	display: none;
}

.testimonial-section .testimonial-checkbox-wrapper ul,
.testimonial-section .testimonial-tab-wrapper ul {
	display: block;
	text-align: center;
	white-space: nowrap;
	justify-content: center;
	margin-bottom: 0;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	padding: 16px 9px 18px 9px;
	overflow: auto;
}

.testimonial-section .testimonial-checkbox-wrapper ul li,
.testimonial-section .testimonial-tab-wrapper ul li {
	list-style-type: none;
	color: #fafafa;
	padding-right: 16px;
	white-space: nowrap;
	display: inline-block;
}

.testimonial-section .testimonial-checkbox-wrapper ul li.active a,
.testimonial-section .testimonial-tab-wrapper ul li.active a {
	border-bottom: 3px solid #2dc0ff;
	color: #fafafa;
}

.testimonial-section .testimonial-checkbox-wrapper ul li a,
.testimonial-section .testimonial-tab-wrapper ul li a {
	padding-bottom: 8px;
	color: #fafafa;
}

.testimonial-section .testimonial-checkbox-wrapper ul li a:hover,
.testimonial-section .testimonial-tab-wrapper ul li a:hover {
	border-bottom: 3px solid #2dc0ff;
	color: #fafafa;
}

.testimonial-section .testimonial-checkbox-wrapper {
	margin-bottom: 16px;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox {
	padding-left: 9px;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .checkbox-label {
	margin-bottom: 0;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .checkbox-label-text {
	vertical-align: bottom;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .icon-Checkbox_default {
	font-size: 12px;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .icon-Checkbox_default:before {
	content: "";
	color: #fafafa;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .icon-checkbox-selected {
	font-size: 12px;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .icon-checkbox-selected:before {
	color: #fafafa!important;
}

.testimonial-section .testimonial-checkbox-wrapper input,
.testimonial-section .testimonial-checkbox-wrapper select {
	border-radius: 10px;
	background-color: #f2f2f2;
	border: none;
	height: 40px;
}

.testimonial-section .testimonial-checkbox-wrapper input:checked+.checkbox-label .icon-checkbox-selected {
	margin-right: 2px;
}

.testimonial-section .testimonial-checkbox-wrapper input:checked+.checkbox-label:hover .icon-checkbox-selected {
	margin-right: 2px;
}

.testimonial-section .testimonial-checkbox-wrapper .checkbox-label span.icon-Checkbox_default {
	margin-right: 3px;
}

.testimonial-section .testimonial-checkbox-wrapper input:checked+.checkbox-label .icon-checkbox-selected::before {
	font-size: 12px;
	color: #081f2d;
}

.testimonial-section .testimonial-section-wrapper {
	background: #003552;
	padding: 16px;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper {
	background: #004974;
	color: #fafafa;
	border-radius: 16px;
	display: flex;
	padding: 16px 11.97px 17px 16px;
	flex-direction: column;
	margin-bottom: 16px;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .video-image-div {
	padding-bottom: 17px;
	position: relative;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .video-image-div img {
	width: 100%;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .video-image-div .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .video-image-div .custom-play-button {
	background-color: transparent;
	border: none;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .content-wrapper h2 {
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 21px;
	line-height: 24px;
	font-weight: 700;
	margin-bottom: 0;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .content-wrapper span {
	display: block;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 1.49012e-09px;
	padding-top: 4px;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .content-wrapper p {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 16px;
	padding-top: 16px;
	margin-bottom: 0;
	font-weight: 500;
	line-height: 24px;
	text-align: left;
}

.testimonial-section .testimonial-section-wrapper .testimonial-wrapper p {
	color: #fafafa;
	text-align: center;
}

.paginationjs-pages {
	text-align: center;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 20px;
	text-align: center;
	line-height: 36px;
}

.paginationjs-pages .num-of-items {
	margin-bottom: 6px;
}

.paginationjs-pages .num-of-items span {
	color: #fafafa;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
}

.paginationjs-pages ul {
	width: 100%;
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 0;
}

.paginationjs-pages ul li {
	width: 32px;
	height: 32px;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	color: #fafafa;
	padding: 3px 0;
	margin-right: 6px;
}

.paginationjs-pages ul li::before {
	color: #fafafa;
	font-size: 11px;
}

.paginationjs-pages ul li a {
	color: #fafafa;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.paginationjs-pages ul li.active {
	background: #fafafa;
	border-radius: 100px;
}

.paginationjs-pages ul li.active a {
	color: #004974;
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.paginationjs-pages .arrow-disabled {
	opacity: .5;
}

.testimonial-video-popup {
	padding: 0!important;
}

.testimonial-video-popup .modal-dialog {
	width: 90%;
	max-width: none;
	height: 50%;
	margin: 0 auto;
	padding: 0;
	overflow-y: hidden;
	border-radius: 16px;
}

.testimonial-video-popup .modal-content {
	background-color: transparent;
	padding: 16px;
	border: 0;
	height: auto;
	min-height: 99%;
}

.testimonial-video-popup .modal-body {
	padding: 0;
	border: 0;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.testimonial-video-popup .modal-body .responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 16px;
}

.product-detail {
	background-color: #003552;
}

.product-detail .prod-buy-container {
	display: flex;
	flex-direction: column;
}

.product-detail .prd-detail-description-block {
	width: 100%;
}

.product-detail .prd-detail-description-block .prod-buy-section {
	padding: 24px 16px;
	text-align: left;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-title {
	font-size: 24px;
	line-height: 32px;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	color: #fafafa;
	margin-bottom: 0;
	font-weight: 500;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-title span {
	white-space: nowrap;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-description {
	display: flex;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 1.49012e-09px;
	font-weight: 500;
	color: #fafafa;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	flex-direction: column;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-description p {
	margin-bottom: 0;
	margin-top: 8px;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-description ul {
	margin-bottom: 0;
	padding-left: 15px;
	padding-right: 0;
}

.product-detail .prd-detail-description-block .prod-buy-section .morelink {
	color: #fafafa;
	text-decoration: underline;
	font-size: 14px;
	line-height: 16px;
	padding-top: 8px;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-detail .prd-detail-description-block .prod-buy-section .morelink:hover {
	color: #fafafa;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 24px;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section a {
	min-width: 138px;
	margin-right: 24px;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section a:last-child {
	margin-right: 0;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section .free-sample-btn {
	line-height: 34px;
	height: 40px;
}

.product-detail .prd-detail-description-block .prod-buy-section .moreellipses {
	color: #fafafa;
}

.product-detail .prd-detail-image-block {
	width: 100%;
}

.product-detail .prd-detail-image-block .product-detail-carousel {
	margin: 0;
	position: relative;
	background: radial-gradient(118.87% 33.62% at 50.09% 67.93%,#000 0,#d7dee1 29.23%,rgba(225,246,255,0) 49.92%),#f1fbff;
	width: 100%;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel {
	padding: 0 0 12px;
	text-align: center;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner {
	padding: 36px 0 0 0;
	margin-bottom: 27px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner .carousel-item img {
	width: auto;
	height: 198px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner .carousel-item .video-image-div {
	padding-bottom: 17px;
	position: relative;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner .carousel-item .video-image-div .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner .carousel-item .video-image-div .custom-play-button {
	background-color: transparent;
	border: none;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators {
	width: calc(100% - 65px);
	margin: 0 auto;
	padding: 0 0 36px 0;
	z-index: 4;
	position: relative;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li {
	width: unset;
	margin-right: 8px;
	background-color: transparent;
	border: none;
	opacity: 1;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li:last-child {
	margin-right: 0;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li.active .slider-indicator-img {
	border: 2px solid #2dc0ff;
	box-shadow: 0 0 8.12877px .541918px #fff;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li .slider-indicator-img {
	width: 39px;
	height: 39px;
	border: 2px solid transparent;
	background-color: transparent;
	border-radius: 4px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li .slider-indicator-img:hover {
	box-shadow: 0 0 15px #2dc0ff;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li .slider-indicator-img img {
	width: 100%;
	height: 100%;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev {
	opacity: 1;
	width: auto;
	margin-left: 13px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev .icon-arrow-left:before {
	color: #2dc0ff;
	position: relative;
	left: -1px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev .carousel-control-prev-icon {
	background: 0 0;
	width: 18px;
	height: 18px;
	border-radius: 50px;
	border: 1px solid #2dc0ff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 8px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev .carousel-control-prev-icon:hover {
	text-shadow: 0 0 15px #2dc0ff;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev.disabled {
	opacity: .5;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev.disabled .icon-arrow-left:before {
	color: #ccc;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev.disabled .carousel-control-prev-icon {
	border: 1px solid #ccc;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next {
	opacity: 1;
	margin-right: 13px;
	width: auto;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next .icon-arrow-right:before {
	color: #2dc0ff;
	position: relative;
	right: -1px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next .carousel-control-next-icon {
	background: 0 0;
	width: 18px;
	height: 18px;
	border-radius: 50px;
	border: 1px solid #2dc0ff;
	font-size: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next .carousel-control-next-icon:hover {
	text-shadow: 0 0 15px #2dc0ff;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next.disabled {
	opacity: .5;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next.disabled .icon-arrow-right:before {
	color: #ccc;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next.disabled .carousel-control-next-icon {
	border: 1px solid #ccc;
}

.review-star-rating {
	margin-top: 15px;
}

.review-star-rating .star-ratings {
	margin-top: -6px;
}

.review-star-rating .rating-val {
	color: #fafafa;
	margin-left: 5px;
}

.review-star-rating .rating-val:after {
	content: '';
	border-left: 2px solid #fff;
	width: 3px;
	height: 18px;
	margin-left: 12px;
}

.review-star-rating .reviewsCount {
	color: #fafafa;
	margin-left: 10px;
	font-weight: 700;
	margin-bottom: 18px;
}

.review-star-rating .reviewsCount:hover {
	border-bottom: 2px solid #fff;
}

.drynites-custom-popup .modal .modal-container .modal-content .modal-body .content-wrapper {
	color: #fafafa;
}

.drynites-custom-popup .modal .modal-container .modal-content .modal-body .content-wrapper .heading-text {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 48px;
}

.drynites-custom-popup .modal .modal-container .modal-content .modal-body .content-wrapper .header-description-msg {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.rating>input {
	display: none;
}

.add-review-form .star-review-rating .rating label {
	color: #fff!important;
	width: 20px;
	margin: 0 7px!important;
	top: 0;
	font-size: 30px;
}

.add-review-form .star-review-rating .rating {
	margin-bottom: 0!important;
}

.rating>label {
	position: relative;
	cursor: pointer;
}

.drynites-custom-popup .modal .modal-container .modal-content .content-wrapper.add-review .add-review-form .validation-info {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: .5px;
	color: #fff;
	float: right;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.multiple-choices .radio-label {
	direction: rtl;
}

.drynites-custom-popup .multiple-choices .radio-label:after {
	content: '';
	display: none;
}

.drynites-custom-popup .multiple-choices .radio-label .checkmark {
	height: 30px;
	width: 30px;
}

.drynites-custom-popup .multiple-choices .radio-inline {
	display: flex;
	list-style: none;
	margin-left: -10%;
}

.drynites-custom-popup .multiple-choices .radio-label {
	display: inline-flex;
	align-items: center;
	margin: 5px 0;
}

.drynites-custom-popup .multiple-choices .radio-label .checkmark {
	position: relative;
	cursor: pointer;
	margin: 0 3px;
	background-color: #003552;
}

.drynites-custom-popup .multiple-choices .radio-label [type=radio] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.drynites-custom-popup .multiple-choices .radio-label .checkmark::after,
.drynites-custom-popup .multiple-choices .radio-label .checkmark::before {
	content: '';
	box-sizing: border-box;
	display: block;
	transition: all .1s cubic-bezier(.4,0,.2,1);
}

.drynites-custom-popup .multiple-choices .radio-label .checkmark::before {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	border: 3px solid #2dc0ff;
}

.drynites-custom-popup .multiple-choices .radio-label .checkmark::after {
	position: absolute;
	top: 50%;
	left: 50%;
	height: .65em;
	width: .65em;
	border-radius: 50%;
	transform-origin: 50%,50%;
	transform: scale(0,0) translate(-50%,-50%);
	background: #2dc0ff;
}

.drynites-custom-popup .multiple-choices .radio-label [type=radio]:checked+.checkmark::after {
	transform: scale(1,1) translate(-50%,-50%);
}

.drynites-custom-popup .multiple-choices .radio-label [type=radio]:checked+.checkmark::before {
	border-color: #2dc0ff;
}

.drynites-custom-popup .multiple-choices .radio-label [type=radio]:disabled+.checkmark {
	cursor: not-allowed;
	filter: grayscale(100%);
	opacity: .6;
}

.drynites-custom-popup .multiple-choices .radio-label [type=radio]:focus+.checkmark {
	outline: #5d9dd5 solid 1px;
	box-shadow: 0 0 8px #5e9ed6;
}

.multiple-choices .radio-label input:checked~.checkmark {
	border: none;
}

.drynites-custom-popup .multiple-choices .radio-label:hover .checkmark {
	width: 30px;
	height: 30px;
	border: none;
}

.drynites-custom-popup .multiple-choices .radio-label input:checked~.checkmark {
	background-color: #003552;
	margin-right: 10px;
}

.drynites-custom-popup .btn-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 12px 32px;
	gap: 8px;
}

.drynites-custom-popup .btn-wrapper .btn-primary {
	background: #fafafa;
	border-radius: 1000px;
	color: #003552;
}

.drynites-custom-popup .btn-wrapper .btn-primary:active {
	background: #fafafa!important;
	border-radius: 1000px;
	color: #003552;
}

.drynites-custom-popup .add-review-form {
	text-align: left;
	padding: 15px 100px 0;
}

.drynites-custom-popup .add-review-form .error-info-comment,
.drynites-custom-popup .add-review-form .error-info-email,
.drynites-custom-popup .add-review-form .error-info-firstname,
.drynites-custom-popup .add-review-form .error-info-rating,
.drynites-custom-popup .add-review-form .error-info-tc,
.drynites-custom-popup .add-review-form .error-info-title {
	font-weight: 500;
	color: #f26e86;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	margin-top: 6px;
}

.icon-warning::before {
	padding-right: 10px;
}

.drynites-custom-popup .add-review-form input[type=checkbox] {
	width: 24px;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 24px;
	border: 1px solid #fff;
	border-radius: 4px;
	margin-right: 10px;
}

.drynites-custom-popup .add-review-form input[type=checkbox]:checked {
	background-color: #fff;
	margin-right: 15px;
}

.drynites-custom-popup .add-review-form input[type=checkbox]:checked:after {
	margin-left: 10px;
	margin-top: 0;
	margin-bottom: 1px;
	width: 4px;
	height: 12px;
	border: solid #003552;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	display: inline-block;
}

.drynites-custom-popup .add-review-form input[type=checkbox]:after {
	margin-left: 4px;
	margin-top: -1px;
	width: 4px;
	height: 12px;
	border: solid #fff;
	border-width: 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	display: inline-block;
}

.drynites-custom-popup .close-button {
	opacity: 1;
	z-index: 1;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 25px;
	right: 25px;
	left: unset;
	background-color: #fff!important;
	border-radius: 30px;
	line-height: 16px;
	padding: 13px 16px!important;
	-webkit-box-shadow: 0 2px 15px 0 rgba(66,76,95,.15);
	-moz-box-shadow: 0 2px 15px 0 rgba(66,76,95,.15);
	box-shadow: 0 2px 15px 0 rgba(66,76,95,.15);
	outline: 0!important;
}

.drynites-custom-popup .close-button:hover {
	opacity: 1!important;
	outline: 0!important;
}

.drynites-custom-popup .close-button:active,
.drynites-custom-popup .close-button:focus {
	outline: 0!important;
}

.drynites-custom-popup .close-button .close-icon {
	color: rgba(66,76,95,.15);
	font-size: 50px;
	font-weight: 500;
}

.icon-Close-default {
	font-size: 38px;
	color: #003552;
	display: flex;
	margin-top: -10px;
}

.divider-section {
	border: 1px solid #ffff;
	width: 100%;
	margin: 10px 10px 0 10px;
}

.star-review-rating .rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.star-review-rating .rating label {
	color: #081f2d!important;
	width: 20px;
	margin: 0 3px!important;
	top: 7px;
}

.rating>input {
	display: none;
}

.rating>label {
	position: relative;
	width: 1em;
	font-size: 6vw;
	color: #ffd600;
	cursor: pointer;
}

.rating>label::before {
	content: "\2605";
	position: absolute;
	opacity: 0;
}

.rating>label:hover:before,
.rating>label:hover~label:before {
	opacity: 1!important;
}

.rating>input:checked~label:before {
	opacity: 1;
}

.rating:hover>input:checked~label:before {
	opacity: .4;
}

.drynites-product-customer-review {
	background-color: #003552!important;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.drynites-product-customer-review .product-list-section .feature-description .title-with-reviews .heading {
	font-size: 40px;
	color: #fff;
}

.drynites-product-customer-review .product-list-section .feature-description .title-with-reviews .product-title {
	color: #fff;
	font-size: 18px;
	line-height: 18px;
}

.drynites-product-customer-review .promo-image-wrapper {
	width: 567px;
	height: 385px;
	background-color: #fff;
	border-radius: 16px;
}

.drynites-product-customer-review .promo-image-wrapper img.img-fluid.ls-is-cached.lazyloaded {
	height: 266px;
	width: 182px;
	margin-left: 34%;
	margin-top: 15%;
}

.drynites-product-customer-review .btn-section .add-review-btn .btn-primary {
	background-color: #fff;
	color: #003552;
	line-height: 22px;
	padding: 10px 20px 9px;
	text-align: center;
	font-size: 18px;
	outline: 0!important;
	border-radius: 0;
	width: 100%;
	max-width: 180px;
	font-weight: 500;
	border-radius: 1000px;
}

.drynites-product-customer-review .btn-section .add-review-btn .btn-primary:active {
	background-color: #fff!important;
}

.drynites-product-customer-review .product-item-section {
	padding: 40px 0 40px 0;
}

.drynites-readall-customers-section {
	background-color: #004974;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	overflow-x: hidden;
}

.drynites-readall-customers-section .offers-tab-section .offers-tabs {
	padding: 10px 0 20px 0!important;
	margin: 0!important;
	display: flex!important;
	justify-content: center!important;
	align-items: center!important;
	border: 0!important;
}

.drynites-readall-customers-section .tab-content.customer-reviews-tabcontent {
	background-color: #00263a;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	padding-top: 30px;
}

.drynites-readall-customers-section .customers-review-component {
	padding: 24px;
	gap: 16px;
	width: 567px;
	background: #003552;
	border-radius: 16px;
	color: #fff;
	margin: 20px 0 10px 0;
	word-break: break-word;
}

.drynites-readall-customers-section .customers-review-component .review-rating-block {
	border-left: 3px solid #2dc0ff;
	padding-left: 15px;
	margin-bottom: 10px;
}

.drynites-readall-customers-section .customers-review-component .customer-name {
	font-size: 18px;
	line-height: 24px;
}

.drynites-readall-customers-section .customers-review-component .review-rating {
	display: flex;
}

.drynites-readall-customers-section .customers-review-component .review-rating .date {
	margin-bottom: 0;
}

.drynites-readall-customers-section .customers-review-component .review-rating .date:after {
	content: '';
	border-left: 2px solid #fff;
	width: 3px;
	height: 18px;
	margin-left: 12px;
}

.drynites-readall-customers-section .customers-review-component .review-rating p.rating-val {
	margin-bottom: 0;
}

.drynites-readall-customers-section .customers-review-component .review-rating .star {
	margin-bottom: 0;
}

.drynites-readall-customers-section .customers-review-component .review-rating .star .icon-star-1,
.drynites-readall-customers-section .customers-review-component .review-rating .star .icon-star-2,
.drynites-readall-customers-section .customers-review-component .review-rating .star .icon-star-3,
.drynites-readall-customers-section .customers-review-component .review-rating .star .icon-star-4,
.drynites-readall-customers-section .customers-review-component .review-rating .star .icon-star-5 {
	font-size: 20px;
	margin-left: 5px;
	margin-top: -1px;
}

.drynites-readall-customers-section .customers-review-component .review-wrapper.read-more-less .review-title {
	font-size: 18px;
	line-height: 24px;
}

.drynites-readall-customers-section .customers-review-component .review-wrapper.read-more-less p.description.review-more {
	font-size: 18px;
	line-height: 24px;
	letter-spacing: 1.49012e-09px;
}

.drynites-readall-customers-section .offers-tab-section .offers-tabs li a.nav-link.active {
	color: #fff;
	border-bottom: 3px solid #2dc0ff;
	border-top: 0!important;
	background: 0 0!important;
}

.drynites-readall-customers-section .offers-tab-section .offers-tabs li a.nav-link {
	font-size: 18px;
	line-height: 24px;
}

.drynites-readall-customers-section .offers-tab-section .offers-tabs li a.nav-link:hover {
	border-top: 0!important;
	font-weight: 400!important;
}

.offers-tab-section .offers-tabs li a.nav-link {
	color: #fff!important;
}

.icon-star-1 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(1 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-1::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-1-5 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(1.4 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-1-5::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-2 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(2 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-2::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-2-5 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(2.4 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-2-5::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-3 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(3 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-3::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-3-5 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(3.4 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-3-5::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-4 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(4 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-4::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-4-5 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(4.4 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-4-5::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.icon-star-5 {
	--star-size: 30px;
	--star-color: #003552;
	--star-background: #FBEB50;
	--percent: calc(5 / 5 * 100%);
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
}

.icon-star-5::before {
	content: '★★★★★';
	letter-spacing: 5px;
	background: linear-gradient(90deg,var(--star-background) var(--percent),var(--star-color) var(--percent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: .5px;
	-webkit-text-stroke-color: #fbeb50;
}

.modal.show {
	overflow-x: hidden!important;
	overflow-y: auto!important;
}

.add-review-form .form-group .form-control {
	background-color: #fff!important;
}

.drynites-custom-popup .modal .modal-container .modal-content .modal-body .content-wrapper .btn-wrapper a.white-text {
	color: #003552!important;
	width: 100%!important;
	height: 100%!important;
}

.form-group {
	margin-bottom: 1rem;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: transparent;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.pt-4 {
	padding-top: 1.5rem!important;
}

.find-product-section-wrapper {
	padding: 0!important;
}

.find-product-section-wrapper.explore-article {
	background-color: #004974;
}

.find-product-section-wrapper.explore-article .find-product-section {
	width: 100%;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list {
	overflow: hidden;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .article-tab-section {
	background: #004974;
	border: 0;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type {
	width: 100%;
	padding: 0 10px;
	margin-bottom: 0;
	overflow: auto;
	margin: 0 10px;
	list-style-type: none;
	display: block;
	white-space: nowrap;
	text-align: center;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li {
	width: auto;
	padding-right: 16px;
	list-style: none;
	display: inline-block;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li a {
	white-space: nowrap;
	padding: 0;
	height: 100%;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #fafafa;
	display: inline-block;
	padding: 8px 0;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li a:hover {
	text-shadow: 0 0 15px #2dc0ff;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li a p {
	white-space: nowrap;
	border-bottom: none;
	margin: 0;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li.active p {
	font-size: 16px;
	padding-bottom: 5px;
	border-bottom: 3px solid #2dc0ff;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li:last-child {
	padding-left: 0;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-item-section {
	text-align: left;
}

.article-list-menu-carousel::-webkit-scrollbar {
	height: 0;
}

.product-listing .products-listing-section {
	background-color: #00263a;
	padding: 0 16px;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product .product-image-wrapper,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child .product-image-wrapper {
	padding: 10px 0 20px;
}

.product-listing .product-list-section-wrapper {
	width: 100%;
	padding: 16px 0 24px;
}

.product-listing .product-list-section-wrapper .product-image-wrapper {
	width: 100%;
	height: 280px;
	background: radial-gradient(118.38% 33.48% at 50.09% 88.24%,#000 0,#d7dee1 29.23%,rgba(255,255,255,0) 49.92%),#f1fbff;
	border-radius: 10px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	padding: 10px;
}

.product-listing .product-list-section-wrapper .product-image-wrapper img {
	max-width: 220px;
	max-height: 253px;
	height: auto;
	align-self: center;
}

.product-listing .product-list-section-wrapper .product-image-wrapper img.parallax {
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
	transform: translateY(0);
}

.product-listing .product-list-section-wrapper .product-image-wrapper img.parallax.reverse {
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
	transform: translateY(7%);
}

.product-listing .product-list-section-wrapper .product-description-wrapper {
	padding-top: 24px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .prod-title {
	font-size: 21px;
	line-height: 24px;
	font-weight: 700;
	color: #fafafa;
	margin-bottom: 0;
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .prod-description {
	font-size: 16px;
	line-height: 24px;
	color: #fafafa;
	font-weight: 500;
	margin-top: 10px;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .prod-description ul {
	margin-bottom: 0;
	padding: 0;
	padding-left: 17px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .btn-wrapper {
	margin-top: 24px;
	text-align: center;
	display: flex;
	flex-direction: row;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .btn-wrapper>div {
	margin-right: 24px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .btn-wrapper a {
	min-width: 142px;
}

.prod-feature-video-block {
	padding: 15px 0 10px;
	background-color: #003552;
}

.prod-feature-video-block .prod-feature-block .component-title {
	margin-bottom: 12px;
}

.prod-feature-video-block .prod-feature-block .title-border {
	border-bottom: 3px solid rgba(255,255,255,.25)!important;
	max-width: 47%;
	margin: 0 auto;
}

.prod-feature-video-block .prod-feature-block .feature-item-block {
	display: flex;
	flex-direction: column;
	padding: 0 30px;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item {
	padding-top: 32px;
	display: flex;
	flex-direction: row;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item span {
	font-size: 17px;
	line-height: 24px;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item span::before {
	color: #fafafa;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item .title,
.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item p {
	color: #fafafa;
	padding-left: 4px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.video-overlay-wrapper {
	max-width: 100%;
	padding: 25px 15px 0;
}

.video-overlay-wrapper .component-title {
	margin-bottom: 0!important;
	padding: 0;
}

.video-overlay-wrapper .component-title span {
	margin-top: 0;
}

.video-overlay-wrapper .familycare-video-container .wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.7%;
}

.video-overlay-wrapper .familycare-video-container .wrapper.video-heigth {
	width: 100%;
	height: 183px;
	margin: 0 auto;
	padding: 0;
	margin-top: 7px;
}

.video-overlay-wrapper .familycare-video-container .wrapper img {
	max-width: 100%;
	width: 100%;
	height: 100%;
}

.video-overlay-wrapper .familycare-video-container .wrapper iframe,
.video-overlay-wrapper .familycare-video-container .wrapper img {
	border-radius: 2px;
}

.video-overlay-wrapper .familycare-video-container .wrapper iframe {
	display: none;
	border-radius: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: transparent;
	border: 0;
	max-width: 65px;
	max-height: 50px;
	padding: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn:hover {
	cursor: pointer;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn:focus {
	outline: 0;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn svg {
	width: 60px;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn .icon-play-red {
	font-size: 51px;
	background-color: #fff;
	z-index: 0;
	opacity: .8;
	color: #081f2d;
	transform: scaleX(1);
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn .icon-play-red:hover {
	color: #fafafc;
}

.video-overlay-wrapper.article-detail {
	margin: 0 0 24px;
}

.video-overlay-wrapper.article-detail .video-heigth {
	margin-top: 0!important;
	border-radius: 16px;
	height: auto!important;
}

.video-overlay-wrapper.article-detail .video-heigth iframe,
.video-overlay-wrapper.article-detail .video-heigth img {
	border-radius: 16px;
	position: relative;
}

.video-overlay-wrapper.article-detail .play-btn .icon-play-circle {
	font-size: 30px;
}

.component-title {
	margin-bottom: 32px;
	text-align: center;
	padding: 0 15px;
}

.component-title h1,
.component-title h2 {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 24px;
	line-height: 32px;
	color: #fafafa;
	letter-spacing: 1.49012e-09px;
	font-weight: 500;
	margin-bottom: 0;
}

.component-title span {
	font-size: 16px;
	line-height: 24px;
	color: #fafafa;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-weight: 500;
	margin-bottom: 0;
	margin-top: 16px;
	display: block;
}

.component-title span p {
	margin-bottom: 0;
}

.heading-seo {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-weight: 500;
}

.heading-seo h1 {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 24px;
	line-height: 32px;
	color: #fafafa;
	letter-spacing: 1.49012e-09px;
	font-weight: 500;
	margin-bottom: 0;
	background: #003552;
	text-align: center;
	padding: 10px;
}

.heading-center {
	padding: 26px 0 16px;
}

.heading-center .component-title {
	margin-bottom: 0;
}

.heading-center .component-title p,
.heading-center .component-title span {
	margin-top: 26px;
	margin-bottom: 0;
}

.heading-center .btn-section {
	margin-top: 40px;
}

.text-section {
	padding: 40px 0;
}

.text-section .component-title {
	margin-bottom: 0;
}

.text-section .component-title span {
	text-align: left;
}

.text-section h2 {
	text-align: center;
}

.text-section span {
	margin-top: 40px;
	margin-bottom: 0;
}

.text-section .btn-section {
	margin-top: 40px;
}

.product-pant-features {
	background-color: #00263a;
	padding: 24px 0 0 0;
}

.product-pant-features .component-title {
	margin-bottom: 24px;
}

.product-pant-features .product-pant-description {
	margin: 24px 0 0 0;
}

.product-pant-features .feature-item {
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-animation: fadeInFromNone .5s ease-in-out;
	-moz-animation: fadeInFromNone .5s ease-in-out;
	-o-animation: fadeInFromNone .5s ease-in-out;
	animation: fadeInFromNone .5s ease-in-out;
	transform: translateX(0);
}

.product-pant-features .feature-item.reverse {
	-webkit-transition: all 10ms ease-in-out;
	-moz-transition: all 10ms ease-in-out;
	-o-transition: all 10ms ease-in-out;
	transition: all 10ms ease-in-out;
	transform: translateX(-8%);
	opacity: 0;
}

.product-pant-features .feature-lg-right .feature-item.reverse {
	transform: translateX(8%);
}

.product-pant-features .feature-image-effect {
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
	transform: translateY(0);
}

.product-pant-features .feature-image-effect.reverse {
	-webkit-transition: all 10ms linear;
	-moz-transition: all 10ms linear;
	-o-transition: all 10ms linear;
	transition: all 10ms linear;
	transform: translateY(8%);
	opacity: 0;
}

.product-pant-features .pant-feature-section {
	display: flex;
	flex-direction: column;
	padding: 13px 16px 24px;
	color: #fafafa;
	letter-spacing: 1.49012e-09px;
	line-height: 24px;
}

.product-pant-features .pant-feature-section .feature-content {
	max-width: 100%;
	text-align: center;
}

.product-pant-features .pant-feature-section .feature-content img {
	width: 227px;
	height: auto;
}

.product-pant-features .pant-feature-section .feature-content .feature-item span {
	transform: translateY(22px);
	display: block;
}

.product-pant-features .pant-feature-section span {
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 16px;
}

.product-pant-features .pant-feature-section .divider-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.product-pant-features .pant-feature-section .divider-wrapper .divider {
	border-bottom: 3px solid #fafafa;
	margin: 8px 0;
	width: 100%;
}

.product-pant-features .pant-feature-section .divider-wrapper span {
	font-size: 75px;
	transform: none!important;
}

.product-pant-features .pant-feature-section p {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-weight: 500;
	font-size: 16px;
	margin: 0 60px 0 0;
	padding-right: 15px;
	transform: translateY(-24px);
}

.product-pant-features .pant-feature-section .super-absorbent {
	margin-top: 26px;
}

.product-pant-features .pant-feature-section .stretcher-side-wrapper {
	margin-top: 26px;
}

.product-pant-features .pant-feature-section .stretcher-side-wrapper .content {
	padding-left: 86px;
	margin-right: 0;
}

.product-pant-features .pant-feature-section .feature-lg-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-pant-features .pant-feature-section .feature-lg-right span {
	transform: translateY(22px)!important;
	display: block;
}

.product-pant-features .pant-feature-section .feature-lg-right .divider-wrapper span {
	transform: none!important;
}

.product-pant-features .pant-feature-section .feature-lg-right .content {
	padding-left: 86px;
	margin-right: 0;
	transform: translateY(-24px);
}

.product-pant-features .age-weight-wrapper {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-weight: 500;
	letter-spacing: 1.49012e-09px;
}

.product-pant-features .age-weight-wrapper ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding-left: 0;
}

.product-pant-features .age-weight-wrapper ul li .nav-link {
	background-color: #003552;
	padding: 9px;
	margin-right: 16px;
	border: 3px solid transparent;
	border-radius: 8px;
	font-weight: 500;
}

.product-pant-features .age-weight-wrapper ul li .nav-link:hover {
	border: 3px solid #2dc0ff;
}

.product-pant-features .age-weight-wrapper ul li .nav-link .age {
	color: #fafafa;
	font-size: 18px;
	line-height: 24px;
	display: block;
}

.product-pant-features .age-weight-wrapper ul li .nav-link .weight {
	display: block;
	color: #ccc;
	font-size: 14px;
	line-height: 16px;
	padding-top: 4px;
}

.product-pant-features .age-weight-wrapper ul li .nav-link.active {
	border: 3px solid #2dc0ff;
}

.product-pant-features .age-weight-wrapper ul li:last-child .nav-link {
	margin-right: 0;
}

.product-pant-features .pant-diaper-image-wrapper {
	margin: 24px 66.5px 32px;
}

.product-pant-features .pant-diaper-image-wrapper img {
	width: 100%;
}

.product-pant-features .d-lg-none .feature-item {
	margin-top: 26px;
}

.product-pant-features .d-lg-none .feature-item span {
	transform: translateY(24px);
	display: block;
}

.product-pant-features .d-lg-none .feature-item:nth-child(even) .content {
	padding-left: 85px;
	margin-right: 0;
}

.ingredients-wrapper {
	background-color: #004974;
}

.product-ingredients {
	padding: 24px 0;
}

.product-ingredients .component-title {
	margin-bottom: 40px;
}

.product-ingredients table {
	padding: 0 24px;
	color: #fafafa;
	text-align: left;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
	max-width: 100%;
	margin: 0 16px;
}

.product-ingredients table td {
	vertical-align: middle;
	max-width: 50%;
}

.product-ingredients table thead {
	background-color: #003552;
	border-bottom: 4px solid #2dc0ff;
}

.product-ingredients table thead td {
	padding: 24px 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-ingredients table thead td:first-child {
	padding-left: 24px;
	padding-right: 4px;
}

.product-ingredients table thead td:last-child {
	padding-right: 24px;
	padding-left: 4px;
}

.product-ingredients table tbody {
	border-bottom: 4px solid #2dc0ff;
}

.product-ingredients table tbody td {
	padding: 16px 0;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-ingredients table tbody td:first-child {
	padding-left: 16px;
	padding-right: 4px;
}

.product-ingredients table tbody td:last-child {
	padding-left: 4px;
	padding-right: 16px;
}

.product-ingredients table tbody tr:nth-child(odd) {
	background-color: #003552;
}

.product-ingredients table tbody tr:nth-child(even) {
	background-color: #002f47;
}

.product-regulation {
	padding: 40px 0;
	background-color: #00263a;
}

.product-regulation .component-title {
	padding-bottom: 40px;
	margin-bottom: 0;
}

.product-regulation .regulation-description-wrapper {
	background-color: #003552;
	border-top: 2px solid rgba(255,255,255,.25);
	border-bottom: 2px solid rgba(255,255,255,.25);
}

.product-regulation .regulation-description-wrapper .description {
	font-size: 18px;
	line-height: 32px;
	font-weight: 500;
	padding: 24px 0;
	color: #fafafa;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-regulation .regulation-list-wrapper {
	background-color: #003552;
}

.product-regulation .regulation-list-wrapper .list-tem {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 24px;
	border-bottom: 2px solid rgba(255,255,255,.25);
}

.product-regulation .regulation-list-wrapper .list-tem .image-wrapper {
	min-width: 75px;
	max-width: 75px;
}

.product-regulation .regulation-list-wrapper .list-tem .image-wrapper img {
	max-width: 64px;
	height: auto;
}

.product-regulation .regulation-list-wrapper .list-tem .regulation-description {
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	color: #fafafa;
	padding-left: 16px;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image {
	flex-direction: column;
	align-items: flex-start;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image .image-wrapper {
	max-width: unset;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image .image-wrapper img {
	max-width: 160px;
	height: auto;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image .regulation-description {
	padding-left: 0;
	padding-top: 16px;
}

.review-star-rating .icon-star-filled {
	font-size: 20px;
}

.review-star-rating p {
	display: inline-block;
	margin-bottom: 0;
}

.review-star-rating p.rating-val {
	color: #fafafa;
	font-family: Montserrat-Light,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 12px;
	line-height: 14px;
	padding-right: 7px;
	position: relative;
	font-weight: 300;
	top: -2px;
	padding-left: 2px;
}

.review-star-rating p.rating-val::after {
	position: absolute;
	content: "";
	right: 0;
	border-left: 1px solid #fafafa;
	height: 10px;
	top: 2px;
	right: -1px;
}

.review-star-rating p.reviewsCount {
	color: #081f2d;
	font-size: 12px;
	line-height: 30px;
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	padding-left: 5px;
	font-weight: 300;
	position: relative;
	top: -2px;
}

.review-star-rating a.reviewsCount {
	color: #081f2d;
	font-size: 12px;
	line-height: 30px;
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	padding-left: 5px;
	font-weight: 300;
	position: relative;
	top: -2px;
}

.review-star-rating a.reviewsCount:focus,
.review-star-rating a.reviewsCount:hover {
	color: #fafafc;
}

.hide {
	display: none!important;
}

button.close-button img {
	background: #fff;
	padding: 16px;
	border-radius: 50%;
}

.content-header .heading-text {
	color: #fff!important;
	font-weight: 800;
}

.content-header .popup-bold-text {
	padding: 30px 0;
	color: #fff;
	font-size: 18px;
	line-height: 30px;
	font-weight: 300;
	font-family: Montserrat-Regular,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.content-header .popup-bold-text .submitted-text-user {
	color: #fff!important;
	font-family: Montserrat-Regular,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.add-review-popup-form .name-container {
	display: flex;
	padding-bottom: 25px;
}

.add-review-popup-form .name-container .small-titles.label-form {
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 0;
}

.add-review-popup-form .name-container .add-review-ratings {
	display: flex;
	justify-content: flex-end;
}

.add-review-popup-form .name-container .add-review-ratings p.date.small-titles.label-form {
	color: #fff;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating {
	display: flex;
	align-items: center;
	padding-top: 8px;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating .add-stars .jq-star {
	display: inline-block;
	cursor: pointer;
	position: relative;
	top: -3px;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating .add-stars .jq-star .jq-star-svg {
	padding-left: 3px;
	width: 100%;
	height: 100%;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating .add-stars .jq-star .jq-star-svg linearGradient stop {
	stop-color: transparent!important;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating .rate {
	display: flex;
	color: #fff;
	width: 40px;
	padding-left: 9px;
	font-size: 18px;
	line-height: 19px;
}

.add-review-popup-form .form-check .small-titles.label-form {
	line-height: 28px;
}

.add-review-popup-form .form-check .label-form {
	line-height: 22px;
	white-space: nowrap;
}

.offset-md-2 {
	margin-left: 13%!important;
}

.user-comments {
	position: relative;
}

.user-comments .small-titles.label-form {
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 0;
}

.user-comments .comments-char {
	right: 0;
	position: absolute;
	top: 0;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 0;
}

.bottom-content {
	width: 90%;
	margin: 0 auto;
}

.bottom-content .terms-text {
	color: #fff;
	padding-bottom: 56px;
	font-size: 20px;
	line-height: 26px;
}

.bottom-content .btn-submit {
	color: #003552;
	border-radius: 33px;
	font-size: 20px;
	line-height: 22px;
	font-weight: 500;
}

.bottom-content .btn-submit:hover {
	color: #fff;
}

.prod-rating {
	display: flex;
	align-items: center;
}

.prod-rating .product-star-rating {
	display: flex;
	align-items: center;
}

.prod-rating .product-star-rating .prod-buy-users-rating .jq-star {
	display: inline-block;
	cursor: default;
	position: relative;
	top: -3px;
}

.prod-rating .product-star-rating .prod-buy-users-rating .jq-star .jq-star-svg {
	padding-left: 3px;
	width: 100%;
	height: 100%;
}

.prod-rating .product-star-rating span.rate {
	color: #fff;
	width: 49px;
	text-align: right;
	font-family: Montserrat-Regular,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
}

.prod-rating .product-star-rating span.rate .live-rating {
	font-size: 18px;
	line-height: 19px;
	color: #fff;
	font-weight: 500;
}

.prod-rating .product-star-rating span.rate .carousal-live-rating {
	font-size: 18px;
	line-height: 19px;
	color: #fff;
	font-weight: 500;
}

.prod-rating .product-star-rating span.rate .total-rating {
	font-size: 18px;
	line-height: 19px;
	color: #fff;
	margin-left: 1px;
	font-weight: 500;
}

.prod-buy-container .prod-buy-section .prod-rating .prod-review-count {
	display: flex;
}

.prod-buy-container .prod-buy-section .prod-rating .prod-review-count p {
	border-left: 1px solid #fff!important;
	height: 20px;
	margin: 0 10px;
}

.prod-buy-container .prod-buy-section .prod-rating .prod-review-count a {
	color: #fff!important;
	border-bottom: 1px solid #fff!important;
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 18px;
	line-height: 19px;
	text-decoration: none;
}

.prod-review-container {
	width: 100%;
	padding: 30px 0 74px;
	background-color: #00263a;
}

.prod-review-container .new-main-heading {
	font-family: Montserrat-Bold,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 32px;
	line-height: 40px;
	min-height: 40px;
	margin: 35px 0 18px 0;
	color: #fff;
}

.prod-review-container .new-main-heading .red-heading {
	font-family: Montserrat-Light,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 60px;
	line-height: 42px;
	font-weight: 400;
	color: #fff;
	padding: 0 8px;
	display: inline-block;
	min-height: 40px;
	vertical-align: middle;
	text-transform: lowercase;
	margin-bottom: 20px;
}

.prod-review-container .read-more-link .read-more-text .icon-arrow-right {
	padding-left: 10px;
}

.prod-review-container .read-more-link .read-more-text .icon-arrow-right:before {
	font-size: 14px;
	color: #fff;
}

.prod-review-container .carousel-inner {
	width: 75%;
	margin: 0 auto;
}

.prod-review-container .carousel-inner .carousel-item {
	min-height: 200px;
}

.prod-review-container .user-review-caption {
	margin-bottom: 30px;
	font-size: 18px;
	letter-spacing: .5px;
	line-height: 24px;
	color: #fff;
}

.prod-carousal {
	background-color: #00263a;
}

.prod-carousal #userReviewCarousel {
	padding-top: 40px;
}

.prod-carousal .carousel-control-prev {
	justify-content: flex-start;
	left: -30px;
}

.prod-carousal .carousel-control-prev .carousel-control-prev-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff no-repeat center center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-size: 20px 20px;
}

.prod-carousal .carousel-control-prev .carousel-control-prev-icon.icon-arrow-left:before {
	content: "";
	color: #003552!important;
	position: relative;
	left: -1px;
}

.prod-carousal .carousel-control-next {
	justify-content: flex-end;
	right: -30px;
}

.prod-carousal .carousel-control-next .carousel-control-next-icon {
	background: #fff no-repeat center center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-size: 20px 20px;
}

.prod-carousal .carousel-control-next .carousel-control-next-icon.icon-arrow-right:before {
	content: "";
	color: #003552!important;
	position: relative;
	right: -1px;
}

.prod-carousal .user-review-carousal-header {
	margin-bottom: 20px;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper {
	display: flex;
	align-items: center;
	position: relative;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper figure {
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper figure .img-fluid {
	max-width: 100%;
	height: auto;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper .user-name {
	font-family: Montserrat-Light,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	color: #fff;
	padding-left: 10px;
}

.prod-carousal .user-review-carousal-header .user-star-review {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.prod-carousal .user-review-carousal-header .user-star-review .date {
	font-size: 12px;
	line-height: 24px;
	margin-bottom: 0;
	color: #fff;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating {
	display: flex;
	align-items: baseline;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .carousal-stars {
	padding-left: 5px;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .carousal-stars .jq-star {
	display: inline-block;
	cursor: default;
	position: relative;
	top: -3px;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .carousal-stars .jq-star .jq-star-svg {
	padding-left: 3px;
	width: 100%;
	height: 100%;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate {
	padding-left: 9px;
	text-align: right;
	color: #fff;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate .live-rating {
	font-size: 18px;
	line-height: 19px;
	color: #fff;
	width: 27px;
	margin-right: 1px;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate .carousal-live-rating {
	font-size: 18px;
	line-height: 19px;
	color: #fff;
	width: 27px;
	margin-right: 1px;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate .total-rating {
	margin-left: 1px;
}

.prod-carousal .add-review {
	padding-top: 24px;
}

.prod-carousal .add-review a.btn {
	padding: 9px 0;
	border: 2px solid #fff;
	background-color: #fff;
	color: #003552;
	text-align: center;
	border-radius: 24px;
	font-size: 18px;
	line-height: 19px;
	font-weight: 500;
	height: auto;
	min-width: 168px;
	display: inline-block;
}

.customCheckbox.customCheckboxChecked span {
	content: url(../img/checkmark.svg)!important;
	background: #fff;
	border: 2px solid #fff!important;
}

#customer-name,
#feedback {
	color: #fff;
	background-color: transparent!important;
}

#customer-name:focus,
#feedback:focus {
	color: #fff;
}

#customer-name:disabled {
	color: #bfccdd!important;
	background-color: #fff!important;
}

.no-review .heading-content-sub-text {
	color: #fff;
}

.no-review .read-more-link {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}

.prd-detail-description-block .prod-buy-section .read-more-link {
	display: flex;
	justify-content: left;
}

.read-more-text .icon-arrow-right {
	padding-left: 10px;
}

.read-more-text .icon-arrow-right:before {
	font-size: 14px;
	color: #fff;
}

.input-field-text {
	border-color: #fff!important;
}

form.was-validated .invalid-feedback {
	color: #fff;
}

.product-detail .prd-detail-description-block {
	padding-left: 30px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating {
	padding-top: 8px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating {
	padding-top: 3px;
	width: fit-content;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate {
	font-size: 16px;
	width: 30px;
	margin-bottom: -4px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .carousal-live-rating,
.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .total-rating {
	font-size: 16px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count {
	padding-top: 3px;
	width: fit-content;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count a {
	font-size: 16px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review {
	margin-left: 10px;
	width: 35%;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a {
	font-size: 16px;
	padding: 6px 10px;
	border: none;
	width: 100%;
	display: block;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a:active,
.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a:focus,
.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a:hover {
	color: #00205c;
}

@media (prefers-reduced-motion:reduce) {

.carousel-item {
	transition: none;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	transition: none;
}

.carousel-control-next,
.carousel-control-prev {
	transition: none;
}

.carousel-indicators li {
	transition: none;
}

.form-control {
	transition: none;
}

}

@media (min-width:576px) {

.form-inline label {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.form-inline .form-group {
	display: flex;
	flex: 0 0 auto;
	flex-flow: row wrap;
	align-items: center;
	margin-bottom: 0;
}

.form-inline .form-control {
	display: inline-block;
	width: auto;
	vertical-align: middle;
}

.form-inline .form-control-plaintext {
	display: inline-block;
}

.form-inline .custom-select,
.form-inline .input-group {
	width: auto;
}

.form-inline .form-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding-left: 0;
}

.form-inline .form-check-input {
	position: relative;
	flex-shrink: 0;
	margin-top: 0;
	margin-right: .25rem;
	margin-left: 0;
}

.form-inline .custom-control {
	align-items: center;
	justify-content: center;
}

.form-inline .custom-control-label {
	margin-bottom: 0;
}

button.slick-prev {
	left: -70px;
}

button.slick-next {
	right: -60px;
}

.video-overlay-wrapper .familycare-video-container .wrapper.video-heigth {
	height: unset;
}

span {
	font-size: 20px;
}

}

@media (min-width:768px) {

.slick-next,
.slick-prev {
	height: 48px;
	width: 48px;
}

.slick-next:before,
.slick-prev:before {
	font-size: 16px;
	line-height: 50px;
}

.slick-next.slick-disabled,
.slick-prev.slick-disabled {
	background: #fff;
}

.slick-next.slick-disabled::before,
.slick-prev.slick-disabled::before {
	color: #666;
}

button.slick-prev {
	left: -66px;
}

button.slick-next {
	right: -66px;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section .free-sample-btn {
	line-height: 44px;
	height: 48px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev .carousel-control-prev-icon {
	width: 32px;
	height: 32px;
	font-size: 14px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next .carousel-control-next-icon {
	width: 32px;
	height: 32px;
	font-size: 14px;
}

.offers-tab-section .offers-tabs li.nav-item {
	margin-right: 50px;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li {
	padding-right: 32px;
}

.video-overlay-wrapper {
	max-width: 1028px;
	margin: 0 auto;
	padding: 48px 0 0;
}

.component-title {
	padding: 0;
	width: 80%;
	margin: 0 auto 40px;
}

.component-title h1,
.component-title h2 {
	font-size: 40px;
	line-height: 48px;
}

.component-title span {
	font-size: 18px;
}

.heading-seo h1 {
	font-size: 40px;
	line-height: 48px;
}

.review-star-rating p.rating-val {
	font-size: 20px;
	line-height: 24px;
	padding-right: 12px;
	top: -4px;
}

.review-star-rating p.rating-val::after {
	border-left: 3px solid #fafafa;
	height: 18px;
	top: 3px;
}

.review-star-rating p.reviewsCount {
	font-size: 20px;
	line-height: 30px;
	padding-left: 8px;
	top: -4px;
}

.review-star-rating a.reviewsCount {
	font-size: 20px;
	line-height: 30px;
	padding-left: 8px;
	top: -4px;
}

.offset-md-2 {
	margin-left: 13%;
}

.prod-review-container {
	border-top: 3px solid rgba(255,255,255,.25);
}

}

@media (min-width:992px) {

.icon-play-circle:before {
	width: 50px;
	height: 50px;
}

button.slick-prev {
	left: -108px;
}

button.slick-prev:before {
	position: relative;
	right: 1px;
	top: -1px;
}

button.slick-next {
	right: -84px;
}

button.slick-next:before {
	font-size: 16px;
	position: relative;
	left: 1px;
	top: -1px;
}

.testimonial-section .testimonial-description-wrapper {
	padding-top: 40px;
}

.testimonial-section .testimonial-checkbox-wrapper ul,
.testimonial-section .testimonial-tab-wrapper ul {
	font-size: 18px;
	line-height: 24px;
	padding: 24px 0;
}

.testimonial-section .testimonial-checkbox-wrapper ul li,
.testimonial-section .testimonial-tab-wrapper ul li {
	padding-right: 40px;
}

.testimonial-section .testimonial-checkbox-wrapper {
	margin-bottom: 48px;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .icon-Checkbox_default {
	font-size: 24px;
}

.testimonial-section .testimonial-checkbox-wrapper .custom-checkbox .icon-checkbox-selected {
	font-size: 24px;
}

.testimonial-section .testimonial-checkbox-wrapper input:checked+.checkbox-label .icon-checkbox-selected {
	margin-right: 9px;
}

.testimonial-section .testimonial-checkbox-wrapper input:checked+.checkbox-label:hover .icon-checkbox-selected {
	margin-right: 9px;
}

.testimonial-section .testimonial-checkbox-wrapper .checkbox-label span.icon-Checkbox_default {
	margin-right: 10px;
}

.testimonial-section .testimonial-checkbox-wrapper input:checked+.checkbox-label .icon-checkbox-selected::before {
	font-size: 24px;
}

.testimonial-section .testimonial-section-wrapper {
	padding: 28px 26px 8px 26px;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper {
	flex-direction: row;
	margin-bottom: 40px;
	padding: 24px 32px 24px 24px;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .video-image-div {
	padding-right: 24px;
	padding-bottom: 0;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .video-image-div img {
	width: auto;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .content-wrapper h2 {
	font-size: 24px;
	line-height: 32px;
}

.testimonial-section .testimonial-section-wrapper .testimonial-img-wrapper .content-wrapper p {
	font-family: Montserrat-Medium,Arial,Verdana,Helvetica,Tahoma,Trebuchet MS;
	font-size: 18px;
	padding-top: 24px;
}

.testimonial-video-popup .modal-dialog {
	height: 90%;
}

.testimonial-video-popup .modal-content {
	padding: 20px 0 0;
}

.product-detail {
	padding: 48px 0;
}

.product-detail .prod-buy-container {
	flex-direction: row;
	justify-content: center;
}

.product-detail .prd-detail-description-block {
	width: 40.2%;
	padding-left: 40px;
	border-left: 3px solid rgba(255,255,255,.25);
}

.product-detail .prd-detail-description-block .prod-buy-section {
	padding: 0;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-title {
	line-height: 32px;
	font-size: 32px;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-description {
	font-size: 18px;
	line-height: 24px;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-description p {
	margin-top: 24px;
}

.product-detail .prd-detail-description-block .prod-buy-section .product-description ul {
	padding-left: 24px;
}

.product-detail .prd-detail-description-block .prod-buy-section .morelink {
	font-size: 18px;
	line-height: 24px;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod {
	margin-top: auto;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section {
	justify-content: start;
	margin-top: 15px;
}

.product-detail .prd-detail-description-block .prod-buy-section .buy-prod .btn-section a {
	min-width: 168px;
}

.product-detail .prd-detail-image-block {
	width: 57.5%;
	padding-right: 40px;
}

.product-detail .prd-detail-image-block .product-detail-carousel {
	border-radius: 16px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel {
	padding: 0 0 14px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner {
	padding: 56px 0 0;
	margin-bottom: 22px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner .carousel-item img {
	width: auto;
	height: 280px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-inner .carousel-item .video-image-div {
	padding-right: 24px;
	padding-bottom: 0;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators {
	padding: 0 0 72px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li {
	margin-right: 16px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-indicators li .slider-indicator-img {
	width: 72px;
	height: 72px;
	border-radius: 8px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-prev {
	margin-left: 32px;
}

.product-detail .prd-detail-image-block .product-detail-carousel #productViewCarousel .carousel-control-next {
	margin-right: 34px;
}

.star-review-rating .rating {
	margin-bottom: 15px;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type {
	padding: 0;
	width: 90%;
	margin: 0 auto;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li a {
	margin: 0;
	padding: 24px 0 20px;
	font-size: 18px;
	line-height: 24px;
}

.find-product-section-wrapper.explore-article .find-product-section .family-care-products .product-type-list .product-type li.active p {
	font-size: 18px;
}

.article-list-menu-carousel::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.article-list-menu-carousel::-webkit-scrollbar-track {
	border-radius: 10px;
}

.article-list-menu-carousel::-webkit-scrollbar-thumb {
	background: gray;
	border-radius: 10px;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product .product-image-wrapper img,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child .product-image-wrapper img {
	height: unset;
	max-height: 280px;
}

.product-listing .products-listing-section .products-list-wrapper {
	max-width: 1028px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item {
	margin: 0;
	flex: 0 0 50%;
	max-width: 50%;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item:nth-child(odd) {
	padding-right: 40px;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item:nth-child(even) {
	padding-left: 40px;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child {
	max-width: 100%;
	flex: 0 0 100%;
	padding: 0;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product .product-image-wrapper,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child .product-image-wrapper {
	padding: 15px 0 25px;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product .product-list-section-wrapper,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child .product-list-section-wrapper {
	display: flex;
	flex-direction: row;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product .product-list-section-wrapper .product-description-wrapper,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child .product-list-section-wrapper .product-description-wrapper {
	padding-top: 0;
	padding-left: 40px;
	display: flex;
	flex-direction: column;
}

.product-listing .products-listing-section .products-list-wrapper .product-list-item .single-product .product-list-section-wrapper .product-description-wrapper .btn-wrapper,
.product-listing .products-listing-section .products-list-wrapper .product-list-item:only-child .product-list-section-wrapper .product-description-wrapper .btn-wrapper {
	margin-top: auto;
}

.product-listing .product-list-section-wrapper {
	padding: 72px 0;
}

.product-listing .product-list-section-wrapper .product-image-wrapper {
	min-width: 416px;
	width: 416px;
	height: 336px;
	padding: 15px;
}

.product-listing .product-list-section-wrapper .product-image-wrapper img {
	max-width: unset;
	height: 280px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper {
	padding-top: 40px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .prod-title {
	font-size: 24px;
	line-height: 32px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .prod-description {
	font-size: 18px;
	line-height: 24px;
	margin-top: 16px;
	min-height: 120px;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .prod-description ul {
	padding-left: 20px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .btn-wrapper {
	text-align: left;
	margin-top: 40px;
}

.product-listing .product-list-section-wrapper .product-description-wrapper .btn-wrapper a {
	min-width: 168px;
}

.prod-feature-video-block {
	padding: 72px 0;
}

.prod-feature-video-block .prod-feature-block .component-title {
	margin-bottom: 24px;
}

.prod-feature-video-block .prod-feature-block .feature-item-block {
	flex-direction: row;
	max-width: 1028px;
	margin: 0 auto;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item {
	padding-top: 72px;
	padding-right: 70px;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item:last-child {
	padding-right: 0;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item span {
	font-size: 54px;
	line-height: 54px;
}

.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item .title,
.prod-feature-video-block .prod-feature-block .feature-item-block .feature-item p {
	font-size: 20px;
	line-height: 54px;
}

.video-overlay-wrapper .familycare-video-container .wrapper.video-heigth {
	width: 100%;
	height: 572px;
	margin-top: 24px;
	padding: 0 15px;
}

.video-overlay-wrapper .familycare-video-container .wrapper iframe,
.video-overlay-wrapper .familycare-video-container .wrapper img {
	border-radius: 5px;
}

.video-overlay-wrapper .familycare-video-container .wrapper iframe {
	height: 100%;
	width: 100%;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn {
	max-width: 94px;
	max-height: 72px;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn .icon-play-red {
	font-size: 73px;
}

.video-overlay-wrapper .familycare-video-container .wrapper .play-btn.two-col-video-btn .icon-Play {
	font-size: 75px;
}

.video-overlay-wrapper.article-detail {
	max-width: 1068px;
	margin: 0 auto 40px;
	padding: 0;
}

.video-overlay-wrapper.article-detail .play-btn .icon-play-circle {
	font-size: 56px;
}

.heading-center {
	padding: 40px 0;
}

.heading-center .component-title p,
.heading-center .component-title span {
	margin: 40px auto 0;
	max-width: 744px;
}

.text-section {
	padding: 96px 0;
}

.text-section .component-title {
	max-width: 816px;
	margin: 0 auto;
}

.text-section h2 {
	padding: 0 100px;
}

.product-pant-features {
	padding: 72px 0;
}

.product-pant-features .component-title {
	margin-bottom: 40px;
}

.product-pant-features .product-pant-description {
	width: 50%;
	margin: 32px auto 0 auto;
}

.product-pant-features .feature-item.reverse {
	-webkit-animation: fadeOut .1s ease-in-out;
	-moz-animation: fadeOut .1s ease-in-out;
	-o-animation: fadeOut .1s ease-in-out;
	animation: fadeOut .1s ease-in-out;
}

.product-pant-features .feature-item:not(.reverse):nth-child(2) {
	animation-delay: .75s;
	transition-delay: .75s;
}

.product-pant-features .feature-lg-right .feature-item:not(.reverse):nth-child(1) {
	animation-delay: .5s;
	transition-delay: .5s;
}

.product-pant-features .pant-feature-section {
	flex-direction: row;
	padding: 0 0 32px 0;
	justify-content: space-between;
}

.product-pant-features .pant-feature-section .feature-content {
	max-width: 495px;
	text-align: unset;
}

.product-pant-features .pant-feature-section .feature-content img {
	width: 100%;
	height: auto;
}

.product-pant-features .pant-feature-section span {
	font-size: 18px;
}

.product-pant-features .pant-feature-section .divider-wrapper .divider {
	margin: 16px 0;
}

.product-pant-features .pant-feature-section p {
	font-size: 18px;
	margin: 0 60px 0 0;
}

.product-pant-features .pant-feature-section .super-absorbent {
	margin-top: 134px;
}

.product-pant-features .pant-feature-section .stretcher-side-wrapper {
	margin-top: 0;
}

.product-pant-features .pant-feature-section .feature-lg-left {
	max-width: 325px;
}

.product-pant-features .pant-feature-section .feature-lg-left .feature-item:first-child {
	padding-bottom: 10px;
}

.product-pant-features .pant-feature-section .feature-lg-left .feature-item:last-child {
	padding-bottom: 0;
}

.product-pant-features .pant-feature-section .feature-lg-right {
	max-width: 325px;
}

.product-pant-features .age-weight-wrapper ul li .nav-link {
	padding: 16px;
	margin-right: 40px;
}

.product-pant-features .age-weight-wrapper ul li .nav-link .age {
	font-size: 20px;
}

.ingredients-wrapper {
	background-color: #00263a;
}

.product-ingredients {
	padding: 72px 0;
	border-top: 3px solid rgba(255,255,255,.25);
}

.product-ingredients table {
	max-width: 896px;
	margin: 0 auto;
}

.product-ingredients table thead td {
	font-size: 24px;
	line-height: 32px;
}

.product-ingredients table thead td:first-child {
	padding-right: 72px;
}

.product-ingredients table thead td:last-child {
	padding-left: 0;
}

.product-ingredients table tbody td {
	font-size: 18px;
	line-height: 24px;
	padding: 24px 0;
}

.product-ingredients table tbody td:first-child {
	padding-left: 24px;
	padding-right: 72px;
	width: 419px;
}

.product-ingredients table tbody td:last-child {
	padding-left: 0;
	padding-right: 24px;
	max-width: 477px;
}

.product-regulation {
	padding: 72px 0;
}

.product-regulation .regulation-description-wrapper {
	max-width: 896px;
	margin: 0 auto;
}

.product-regulation .regulation-description-wrapper .container {
	padding: 0;
}

.product-regulation .regulation-description-wrapper .description {
	padding: 24px;
}

.product-regulation .regulation-list-wrapper {
	max-width: 896px;
	margin: 0 auto;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image {
	flex-direction: row;
	align-items: center;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image .image-wrapper {
	width: 160px;
	min-width: 160px;
}

.product-regulation .regulation-list-wrapper .list-tem.long-image .regulation-description {
	padding-left: 16px;
	padding-top: 0;
}

.review-star-rating .star-ratings {
	max-width: 133px;
}

.review-star-rating p.rating-val {
	top: -6px;
}

.review-star-rating p.reviewsCount {
	top: -6px;
}

.review-star-rating a.reviewsCount {
	top: -6px;
}

}

@media (min-width:992px) and (max-width:1199.98px) {

.product-detail .prd-detail-image-block {
	width: 53.5%!important;
	padding-right: 30px!important;
}

.product-detail .prd-detail-description-block {
	padding-left: 30px!important;
	width: 46.5%!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate {
	font-size: 14px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .carousal-live-rating,
.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .total-rating {
	font-size: 14px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count a {
	font-size: 14px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review {
	width: 30%;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a {
	font-size: 14px;
}

}

@media (min-width:1200px) {

.testimonial-section .testimonial-section-wrapper {
	padding: 48px 96px 8px 96px;
}

.prod-feature-video-block .prod-feature-block .title-border {
	max-width: 1028px;
}

.video-overlay-wrapper .familycare-video-container .wrapper.video-heigth {
	padding: 0;
}

.product-detail .prd-detail-image-block {
	width: 55%!important;
}

.product-detail .prd-detail-description-block {
	width: 45%!important;
}

}

@media screen and (min-width:1366px) {

.testimonial-video-popup .modal-dialog {
	width: 1200px;
	height: 650px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate {
	font-size: 18px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .carousal-live-rating,
.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .total-rating {
	font-size: 18px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count a {
	font-size: 18px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a {
	font-size: 18px;
}

}

@media (max-width:991.98px) {

.product-pant-features .feature-item:nth-child(even).reverse {
	transform: translateX(8%);
}

.product-pant-features .pant-feature-section {
	overflow: hidden;
}

.product-pant-features .age-weight-wrapper {
	padding: 0 16px;
}

.review-star-rating {
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-review-popup-form .name-container .small-titles.label-form {
	font-size: 14px;
	line-height: 26px;
}

.add-review-popup-form .name-container .add-review-ratings p.date.small-titles.label-form {
	font-size: 14px;
	line-height: 26px;
	font-weight: 400;
}

.user-comments .small-titles.label-form {
	font-size: 14px;
	line-height: 26px;
}

.user-comments .comments-char {
	font-size: 14px;
	line-height: 26px;
}

.bottom-content {
	padding-top: 15px;
}

.bottom-content .terms-text {
	font-size: 18px;
	line-height: 24px;
	font-weight: 400;
	padding-bottom: 50px;
}

.bottom-content .btn-submit {
	font-size: 24px;
	line-height: 26px;
}

.prod-buy-container .prod-buy-section .prod-rating {
	padding-top: 10px;
}

.prod-buy-container .prod-buy-section .prod-rating .product-star-rating .rate {
	font-size: 20px;
	line-height: 40px;
}

.prod-review-container {
	padding: 20px 0 40px;
	border-bottom: 3px solid rgba(255,255,255,.25);
}

.prod-review-container .carousel-inner .carousel-item {
	min-height: 250px;
}

.prod-review-container .user-review-caption {
	font-weight: 500;
	line-height: 26px;
	font-size: 20px;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper .user-name {
	padding-left: 0;
	margin-left: 5px;
	max-width: 50%;
}

.prod-carousal .user-review-carousal-header .user-star-review {
	flex-direction: column;
	align-items: flex-end;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating {
	padding-top: 2px;
}

.prod-carousal .add-review {
	padding-top: 50px;
}

.prod-carousal .add-review a.btn {
	width: 220px;
}

.read-more-text .icon-arrow-right {
	padding-left: 5px;
}

.read-more-text .icon-arrow-right:before {
	font-size: 10px;
}

.product-detail .prd-detail-description-block {
	padding-left: 0!important;
}

}

@media only screen and (max-width:780px) {

.drynites-custom-popup .add-review-form {
	padding: 0;
}

.custom-checkbox {
	font-size: 14px;
}

.drynites-product-customer-review .product-list-section .feature-description .title-with-reviews .heading {
	margin-top: 20px;
}

.drynites-product-customer-review .promo-image-wrapper {
	width: 100%;
	height: 100%;
}

.drynites-readall-customers-section .customers-review-component {
	width: 100%;
}

.drynites-readall-customers-section .customers-review-component .review-rating {
	display: inline;
}

.drynites-readall-customers-section .customers-review-component .review-wrapper.read-more-less p.description.review-more {
	font-size: 14px;
}

}

@media (max-width:767.98px) {

ul.slick-dots li {
	width: 10px!important;
	height: 10px!important;
	margin: 0!important;
	margin-right: 24px!important;
	padding: 0;
	border: 2px solid #fafafa;
}

.drynites-custom-popup .close-button {
	top: 45px;
	right: 35px;
	padding: 0;
}

.review-star-rating .star-ratings {
	max-width: 90px;
}

#addReviewModal .container {
	max-width: 100%;
}

button.close-button img {
	padding: 10px;
}

.content-header .popup-bold-text {
	padding: 40px 0 49px;
	font-size: 18px;
	line-height: 30px;
	font-weight: 300;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating {
	height: 55px;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating .rate {
	padding-left: 5px;
	font-size: 20px;
	line-height: 40px;
}

.add-review-popup-form .form-check .label-form {
	font-size: 14px;
	line-height: 40px;
}

.user-comments .input-field-text {
	font-size: 14px;
	height: 202px;
}

.bottom-content {
	width: 100%;
}

.prod-rating .product-star-rating span.rate {
	align-self: end;
}

.prod-buy-container .prod-buy-section .prod-rating .prod-review-count {
	align-self: end;
}

.prod-review-container .new-main-heading {
	min-height: 20px;
}

.prod-review-container .new-main-heading .red-heading {
	font-size: 30px;
	line-height: 20px;
	min-height: 20px;
	padding: 0 4px;
	margin-bottom: 6px;
}

.prod-review-container .read-more-link .read-more-text .icon-arrow-right:before {
	font-size: 10px;
}

.prod-review-container .carousel-inner {
	width: 100%;
}

.prod-review-container .carousel-inner .carousel-item {
	min-height: 135px;
}

.prod-review-container .user-review-caption {
	margin-bottom: 24px;
}

.prod-carousal .carousel-control-prev {
	display: none;
}

.prod-carousal .carousel-control-next {
	display: none;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper .user-name {
	font-size: 24px!important;
	line-height: 40px!important;
}

.prod-carousal .user-review-carousal-header .user-star-review .date {
	font-size: 18px;
	line-height: 40px;
	font-weight: 500px;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate {
	padding-left: 14px;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate .live-rating {
	font-size: 18px;
	line-height: 16px;
	font-weight: 500;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate .carousal-live-rating {
	font-size: 18px;
	line-height: 16px;
	font-weight: 500;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate .total-rating {
	font-size: 18px;
	line-height: 16px;
	font-weight: 500;
}

.prod-carousal .add-review a.btn {
	font-size: 24px;
	line-height: 26px;
	border-radius: 34px;
	padding: 15px 23px 15px;
	width: 62%;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate {
	align-self: center!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count {
	align-self: center!important;
}

}

@media (max-width:575.98px) {

.product-regulation .regulation-description-wrapper {
	padding: 0 9px;
}

.content-header .popup-bold-text {
	padding: 10px 0 20px;
}

.add-review-popup-form .form-group {
	margin-bottom: 0;
}

.add-review-popup-form .name-container .small-titles.label-form {
	font-size: 10px;
	line-height: 22px;
}

.add-review-popup-form .name-container .input-field-text {
	font-size: 14px;
	height: 40px;
}

.add-review-popup-form .name-container .add-review-ratings p.date.small-titles.label-form {
	font-size: 10px;
	line-height: 22px;
	margin-bottom: 0;
}

.add-review-popup-form .name-container .add-review-ratings .add-star-review .add-review-user-star-rating .rate {
	font-size: 12px;
	line-height: 16px;
}

.add-review-popup-form .form-check .label-form {
	font-size: 10px;
	margin-left: 10px;
}

.offset-md-2 {
	margin: 0!important;
}

.user-comments .small-titles.label-form {
	font-size: 10px;
	line-height: 22px;
	margin-bottom: 0;
}

.user-comments .comments-char {
	font-size: 10px;
	white-space: nowrap;
	margin-bottom: 0;
}

.bottom-content .terms-text {
	font-size: 14px;
	line-height: 24px;
	padding-bottom: 40px;
}

.bottom-content .btn-submit {
	font-size: 14px;
	line-height: 26px;
	padding: 5px 17px;
	width: 45%;
}

.prod-rating .product-star-rating span.rate .live-rating {
	line-height: 16px!important;
}

.prod-rating .product-star-rating span.rate .carousal-live-rating {
	line-height: 16px!important;
}

.prod-rating .product-star-rating span.rate .total-rating {
	line-height: 16px!important;
}

.prod-buy-container .prod-buy-section .prod-rating {
	padding-top: 4px;
}

.prod-buy-container .prod-buy-section .prod-rating .product-star-rating {
	width: auto!important;
	align-items: stretch!important;
}

.prod-buy-container .prod-buy-section .prod-rating .product-star-rating .rate {
	font-size: 12px;
	line-height: 16px!important;
}

.prod-buy-container .prod-buy-section .prod-rating .prod-review-count {
	margin-top: -3px;
}

.prod-buy-container .prod-buy-section .prod-rating .prod-review-count a {
	font-size: 12px!important;
	line-height: 16px!important;
}

.prod-review-container {
	padding-top: 0;
	padding-bottom: 45px;
}

.prod-review-container .new-main-heading {
	font-size: 16px;
	line-height: 20px;
	font-weight: 800;
}

.prod-review-container .user-review-caption {
	font-size: 12px!important;
	line-height: 16px!important;
}

.prod-carousal #userReviewCarousel {
	padding-top: 15px;
}

.prod-carousal .user-review-carousal-header {
	margin-bottom: 14px;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper figure {
	width: 52px;
	height: 52px;
}

.prod-carousal .user-review-carousal-header .profile-img-wrapper .user-name {
	margin-left: 9px;
	word-break: break-all;
	font-size: 12px!important;
	line-height: 16px!important;
	padding-left: 0;
}

.prod-carousal .user-review-carousal-header .user-star-review .date {
	font-size: 12px!important;
	line-height: 16px!important;
}

.prod-carousal .user-review-carousal-header .user-star-review .user-review-carousal-rating .rate {
	width: auto;
}

.prod-carousal .add-review {
	padding-top: 0;
}

.prod-carousal .add-review a.btn {
	padding: 9px 0;
	width: 130px;
	font-size: 12px!important;
	line-height: 14px!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .prod-buy-users-rating .jq-star {
	width: 18px!important;
	height: 18px!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate {
	font-size: 12px;
	margin-bottom: 0;
	position: relative;
	top: -2px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .carousal-live-rating,
.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate .total-rating {
	font-size: 13px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count a {
	font-size: 12px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review a {
	font-size: 12px;
	padding: 6px;
}

}

@media only screen and (max-width:500px) {

.drynites-custom-popup .close-button {
	top: 20px;
	right: 20px;
	width: 38px;
	height: 38px;
	padding: 6px 8px!important;
}

}

@media screen and (max-width:430px) {

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating {
	width: 38%!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-star-rating .rate {
	width: 26px!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count {
	width: 33%!important;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .prod-review-count p {
	margin: 0 4px 0 6px;
}

.product-detail .prd-detail-description-block .prod-buy-section .prod-rating .product-add-review {
	width: 30%!important;
}

}

