@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
	font-family: "Noto Sans", sans-serif;
	margin: 0;
}
ul {
	padding: 0px;
	margin: 0px;
}
li {
	list-style: none;
}
.container-div {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0px 15px;
}
.row-d {
	display: flex;
	margin-right: -15px;
	margin-left: -15px;
}
.col-div6 {
	width: 50%;/*padding-right: 15px;
	padding-left: 15px;*/ 
}
.col-sm-div2 {
	width: 16%;
	float: left;
	padding: 10px 11px;
}
.col-sm-div3 {
	width: 25%;
	padding: 10px 11px;
}
.col-sm-div1 {
	width: 8.333333%;
	float: left;
}
.cart-items-wrapper .table-header, .cart-items-wrapper .table-row {
	width: 100%;
}
.btn-remove-cart-item {
	font-size: 27px;
	cursor: pointer;
	color: #333;
}
/*.cart-section .row-d {
	padding: 0px 78px;
}*/
a {
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
.product-detail-section {
	margin-top: 50px;
	margin-bottom: 50px;
}
.tp-product-details-title {
	font-size: 30px;
	line-height: 44px;
	margin-bottom: 20px;
	color: #707070;
	border-bottom: solid 1px #31a6d1;
	padding-bottom: 13px;
	font-weight: 600;
}
.tp-product-details-query-item {
	margin-bottom: 20px;
	color: #262626;
	border-bottom: solid 1px #31a6d1;
	padding-bottom: 13px;
}
.tp-product-details-query-item span {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}
.tp-product-details-price {
	font-size: 22px;
	font-weight: bold;
	color: #000;
}
.thumbs .slick-list {
	margin: 0 -12px;
}
.thumbs .slick-slide {
	margin: 0 6px;
	max-width: 30%;
}
.slick-slide img {
	display: block;
	height: auto;
	width: 100%;
}
.thumbs .slick-list {
	margin: 0 -12px;
	margin-top: 18px;
}
.product-counter {
	display: flex;
}
.product-counter .minus-div, .product-counter .plus-div {
	width: 38px;
	height: 38px;
	background: #00b2b4;
	border-radius: 100px;
	color: #fff;
	border: none;
	font-size: 24px;
	line-height: 17px;
	cursor: pointer;
}
.tp-product-add-to-cart-btn:hover {
	background: #009b9d;
}
.checkout-btn:hover, .cart-footer .continue-btn:hover {
	background: #009b9d !important;
}
.product-counter .quantity-div {
	width: 84px;
	margin: 0px 8px;
	text-align: center;
	border: none;
	background: #eff1f5;
	outline: none;
	height: 43px;
	font-size: 16px;
}
.tp-increment-decrement {
	display: flex;
	align-items: center;
}
.tp-product-add-to-cart {
	margin-left: 15px;
}
.tp-product-add-to-cart-btn {
	background: #00b2b4;
	border: none;
	padding: 14px 31px;
	color: #fff;
	cursor: pointer;
	outline: 0;
	font-weight: 600;
	font-size: 15px;
}
.tp-product-details-price-wrapper {
	margin-bottom: 28px;
}
.quantity-row {
	margin-bottom: 18px;
}
.quantity-row .quantity {
	color: #000;
	font-size: 16px;
}
.slick-prev:before, .slick-next:before {
	font-size: 40px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.slick-next:before {
	content: '→';
}
.slick-prev:before, .slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: white;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.slick-arrow {
	transition: opacity 0.5s ease-out;
}
.slick-prev, .slick-next {
	width: 50px;
	height: 50px;
	z-index: 1;
}
.slick-prev, .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}
/*----------------------------------------*/
/*          open-cart Right Side css
/*----------------------------------------*/
.col-div12 {
	width: 100%;
}
/* Button */
.open-cart-btn {
	padding: 10px 15px;
	cursor: pointer;
}
/* Overlay */
.cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	display: none;
	z-index: 9998;
}
/* Cart Drawer */
.cart-drawer {
	position: fixed;
	top: 0;
	right: -400px;
	width: 360px;
	height: 100%;
	background: #fff;
	box-shadow: -4px 0 15px rgba(0,0,0,.2);
	transition: right 0.4s ease;
	z-index: 9999;
	display: flex;
	flex-direction: column;
}
.cart-drawer.active {
	right: 0;
}
/* Header */
.cart-header {
	padding: 15px;
	border-bottom: 1px solid #d7d7d7;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #d6f4ff;
}
.close-cart {
	font-size: 22px;
	cursor: pointer;
}
/* Item */
.cart-item {
	display: flex;
	border-bottom: 1px solid #eee;
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
}
.cart-item img {
	width: 118px;
}
.item-info-title {
	font-size: 21px;
	color: #33B2B0;
	font-weight: 600;
}
.item-info {
	margin-left: 10px;
}
.remove-item {
	position: absolute;
	right: 10px;
	top: 15px;
	background: red;
	color: #fff;
	border: none;
	cursor: pointer;
	padding: 1px 6px;
	border-radius: 5px;
}
/* Footer */
.cart-footer {
	margin-top: auto;
	padding: 15px;
	background: #e0ffff;
}
.subtotal {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}
.cart-subtotal-row .checkout-btn {
	width: 100%;
	padding: 12px;
	background: #33B2B0;
	color: #fff;
	border: none;
	margin-bottom: 10px;
	cursor: pointer;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
}
.cart-footer .continue-btn {
	width: 100%;
	padding: 12px;
	background: #00b2b4;
	color: #fff;
	border: none;
	cursor: pointer;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
}
.cart-drawer .item-info p {
	margin-bottom: 0px;
	font-size: 15px;
	color: #707070;
}
.cart-drawer .item-info .qty {
	background: #33B2B0;
	display: inline-block;
	padding: 1px 7px;
	color: #fff;
	font-size: 15px;
}
.qty-row {
	margin-top: 5px;
}
.cart-drawer .item-info strong {
	display: inline-block;
	width: 100%;
	font-size: 14px;
}
.cart-row-r {
	padding: 0px 15px;
}
.cart-subtotal-row {
	padding-top: 20px;
}
/*-------------------------------*/
/*        Cart Page css
/*-------------------------------*/
.cart-section {
	padding-top: 50px;
}
.section-header {
	padding: 7px 15px;
	font-weight: 500;
	background-color: #F6F6F6;
	line-height: 26px;
}
.shopping-cart {
	border-radius: 0px;
	border: 1px solid #EDEDED;
	margin-bottom: 30px;
	background-color: white;
}
.shopping-cart .row {
	margin: 0;
}
.shopping-cart .table-row {
	border-top: 1px solid #EDEDED;
	padding: 10px 0px;
}
.text-center {
	text-align: center;
}
.shopping-cart .table-header {
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
}
.shopping-cart .product-image {
	width: 60px;
	height: 60px;
	float: left;
	margin-right: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.cart-promotion-lables p {
	font-size: 15px;
	color: #000;
	line-height: 21px;
	margin-bottom: 0px;
}
.cart-promotions-content {
	display: block;
}
.cart-promotions {
	display: table;
	width: 100%;
}
.cart-promotions .cart-promotions-content {
	padding: 13px 15px;
}
.promotion-title {
	display: flex;
	justify-content: space-between;
}
.promotion-title .cart-promotion-item-link {
	color: #000;
	text-decoration: underline;
	font-size: 15px;
}
.cart-promotions-content .promotion-title span {
	font-size: 13px;
	color: #333;
}
.cart-promotions .badge .untriggered {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 5px;
}
.cart-promotions .badge {
	width: 150px;
	max-width: 150px;
	border-radius: 0;
	font-weight: 400;
	font-size: 11px;
	background-color: #F3F3F3;
	padding: 7px 8px;
}
.promotion {
	display: flex;
}
.description {
	margin-left: 14px;
	font-size: 15px;
	color: #000;
}
.promotion .description .untriggered-hint {
	color: #00b2b4;
}
.alert-ask-for-login {
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	border-radius: 0px;
	border: 1px solid #EDEDED;
	background-color: white;
	padding: 19px 15px;
}
.alert-ask-for-login a.login-btn-r {
	background: #00b2b4;
	color: #fff;
	padding: 8px 24px;
	text-decoration: none;
}
/*-------------------------------*/
/*        Login Page css
/*-------------------------------*/
.width-div {
	max-width: 437px;
	margin: 0px auto;
	padding: 22px;
	display: flex;
	border: solid 1px #e6e6e6;
	padding-bottom: 39px;
}
.form-group {
	margin-bottom: 10px;
}
.signup-login-row {
	padding-top: 98px;
	margin-bottom: 98px;
}
.input-div {
	width: 100%;
	height: 48px;
	border-bottom: 1px solid #e6e6e6 !important;
	border: none;
	outline: 0;
	-webkit-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
	-o-transition: 1.2s cubic-bezier(.17, .85, .438, .99);
	transition: 1.2s cubic-bezier(.17, .85, .438, .99);
	font-size: 15px;
	color: #707070;
}
.facebook-subscription-btn {
	margin-top: 11px;
	margin-bottom: 16px;
}
.input-div:focus {
	border-bottom: 1px solid #00b2b4 !important;
}
.form-group .submit-b {
	background: #00b2b4;
	border: none;
	padding: 11px 23px;
	color: #fff;
	cursor: pointer;
	outline: 0;
	width: 100%;
	font-size: 15px;
	font-weight: bold;
}
.form-t {
	font-size: 28px;
	margin-bottom: 26px;
	color: #33B2B0;
	font-weight: bold;
}
.forgot {
	margin-top: 27px;
	margin-bottom: 15px;
}
.psforgt {
	font-size: 14px;
	color: #00b2b4;
}
.outline-btn {
	border: solid 1px #00b2b4;
	width: 100%;
	height: 40px;
	background: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: bold;
}
.form-wrapper {
	width: 100%;
	float: left;
}
.full-row .col-m4 {
	width: 33.333%;
	float: left;
}
.full-row .colm-div {
	padding: 0px 15px;
}
/*-------------------------------*/
/*       Sign-up Page css
/*-------------------------------*/
/*.phone-wrapper {
	display: flex;
	width: 350px;
	border-bottom: 1px solid #ddd;
}*/
.phone-wrapper .iti {
	width: 100%;
}
.country-select {
	position: relative;
	width: 120px;
}
.selected {
	cursor: pointer;
	padding: 10px;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.arrow {
	font-size: 10px;
}
.country-list {
	position: absolute;
	top: 100%;
	left: 0;
	width: 250px;
	max-height: 200px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #ddd;
	display: none;
	z-index: 10;
}
.country-list li {
	padding: 10px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
}
.country-list li:hover, .country-list li.active {
	background: #f5f5f5;
}
.phone-wrapper input {
	border: none;
	outline: none;
	padding: 10px;
	flex: 1;
	font-size: 14px;
}
.checkbox-row input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.checkbox-row label {
	position: relative;
	cursor: pointer;
}
.checkbox-row label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 2px solid #dddddd;
	/* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05); */
	padding: 8px;
	display: inline-block;
	position: absolute;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 0px;
	left: 0px;
}
.checkbox-row input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 7px;
	width: 5px;
	height: 9px;
	border: solid #00b2b4;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.checkbox-row .form-group {
	display: flex;
}
.checkbox-row label {
	position: relative;
	cursor: pointer;
	padding-left: 27px;
	font-size: 12px;
	line-height: 19px;
	color: #707070;
}
.checkbox-row {
	margin-top: 20px;
	margin-bottom: 19px;
}
.checkbox-row a {
	font-size: 12px;
	color: #000;
}
.outline-btn:hover {
	background: #00b2b4;
	color: #fff;
}
.checkbox-row p {
	margin-bottom: 0;
	font-size: 12px;
	color: #000;
	margin-top: 0;
}
.checkbox-row a {
	font-size: 12px;
	color: #000;
	text-decoration: underline;
	font-weight: 600;
	margin: 0px 3px;
}
.form-group .submit-b[disabled] {
	background: #d3d3d3;
	cursor: not-allowed;
}
/*-------------------------------*/
/*  Sign-up Last Step Page css
/*-------------------------------*/
.row.full-row {
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
}
button.facebook-b {
	display: flex;
	align-items: center;
	flex-flow: unset;
	border: solid 1px #e3e3e3;
	padding: 7px 15px;
	background: none;
	color: #1877f2;
	font-weight: 600;
	font-size: 12px;
	cursor: pointer;
	margin: 0px auto;
}
.facebook-b svg {
	display: inline-block;
	width: 17px;
	margin-right: 7px;
}
.subscribe-p p {
	font-size: 13px;
	color: #707070;
	margin-bottom: 0;
}
.subscribe-p {
	margin-top: 16px;
	margin-bottom: 20px;
}
.form-group .submit-b:hover {
	background: #009b9d;
}
.back-btn-row {
	text-align: center;
	margin-top: 24px;
}
.back-btn-row .back-btn {
	background: none;
	border: none;
	color: #00b2b4;
	font-size: 13px;
	cursor: pointer;
}
.cart-header-title {
	font-size: 18px;
	background: url(../images/shopping-cart-icon.png) no-repeat left;
	padding-left: 32px;
	background-size: contain;
	font-weight: 500;
	color: #1a1a1a;
}
.tp-product-details-content p {
	color: #707070;
	font-size: 16px;
	line-height: 24px;
}
.product-detail-section-new {
	padding-top: 98px;
	padding-bottom: 98px;
}
.form-wr {
	display: inline-block;
	width: 100%;
	margin-top: 12px;
	text-align: center;
}
.form-wr .form-t {
	margin-bottom: 21px;
}
/*---------------------------------------------*/
/*             1 Multi-Step Form css
/*---------------------------------------------*/
/*#container {
	max-width: 550px;
}*/
.step-container {
	position: relative;
	text-align: center;
	transform: translateY(-43%);
}
.step-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #00b2b4;
	border: 2px solid #00b2b4;
	line-height: 30px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	cursor: pointer;
	color: #ffffff;
}
.step-line {
	position: absolute;
	top: 16px;
	left: 50px;
	width: calc(100% - 100px);
	height: 2px;
	background-color: #007bff;
	z-index: -1;
}
#multi-step-form {
	overflow-x: hidden;
}
.multi-step-wrapper .progress {
	background: #e9ecef;
	overflow: hidden;
	display: flex;
}
.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: var(--bs-progress-bar-color);
	text-align: center;
	white-space: nowrap;
	background-color: #00b2b4;
	transition: var(--bs-progress-bar-transition);
}
.justify-content-between {
	justify-content: space-between!important;
}
.multi-step-wrapper .d-flex {
	display: flex!important;
}
.container-multi-step {
	padding: 0px 50px;
}
.multi-step-div-d {
	max-width: 520px;
	margin: 0px auto;
	margin-bottom: 22px;
}
.col-div8 {
	width: 70%;
}
.col-div4 {
	width: 30%;
}
.order-summary-section {
	border: 1px solid #EDEDED;
}
.ti-header {
	background: #F6F6F6;
	padding: 10px 15px;
	font-weight: 600;
	color: #343434;
}
.header-div1 .ti-header1, .header-div1 .pull-right {
	font-weight: 600;
	color: #343434;
}
.section-body-div {
	padding: 12px;
}
.section-body-div .subtotal {
	margin-bottom: 0px;
}
.section-body-div .cart-coupon {
	margin-bottom: 13px;
	margin-top: 12px;
}
.section-body-div .cart-coupon a {
	color: #00b2b4;
	font-size: 15px;
	text-decoration: none;
}
.dynamic-hint {
	background: #e0ffff;
	padding: 14px 7px;
	font-size: 13px;
	text-align: center;
	border: solid 1px #acffff;
	border-radius: 6px;
	color: #00b2b4;
}
.order-submit-btn {
	margin-top: 10px;
}
.order-submit-btn .submit-b {
	background: #00b2b4;
	border: none;
	padding: 13px 31px;
	color: #fff;
	cursor: pointer;
	outline: 0;
	font-weight: 600;
	font-size: 15px;
	width: 100%;
	border-radius: 6px;
}
.payment-methods-section {
	border: 1px solid #EDEDED;
}
.box-body-div {
	padding: 12px;
}
.input-d-new {
	/* width: 100%; */
	height: 40px;
	border: solid 1px #e6e6e6;
	font-size: 15px;
	color: #707070;
	padding: 0px 8px;
	outline: 0;
}
.form-group-div-row {
	margin-top: 10px;
}
.form-group-div label {
	font-size: 15px;
	color: #707070;
}
.multi-step-wrapper {
	padding-bottom: 68px;
}
.form-group-div p {
	color: #707070;
	font-size: 14px;
	line-height: 25px;
}
.box-body-div .form-group-div {
	margin-bottom: 14px;
}
/*---------------------------------------------*/
/*             2 Multi-Step Form css
/*---------------------------------------------*/
.submit-class-div {
	background: #00b2b4;
	border: none;
	padding: 13px 31px;
	color: #fff;
	cursor: pointer;
	outline: 0;
	font-weight: 600;
	font-size: 15px;
	width: 100%;
	border-radius: 6px;
}
.form-group-div-row {
	display: flex;
	flex-flow: column;
}
p.help-block {
	margin-top: 5px;
	margin-bottom: 0px;
}
.payment-methods-section {
	margin-bottom: 20px;
}
.form-group-div-row textarea {
	height: 60px;
	padding: 8px;
}
.header-div1 {
	background: #F6F6F6;
	padding: 10px 15px;
	display: flex;
	justify-content: space-between;
}
.two-div {
	display: flex;
	margin-left: -9px;
	margin-right: -9px;
}
.two-div .form-group-div {
	width: 50%;
	padding: 0px 9px;
}
.date-wrapper {
	position: relative;
}
.calendar-icon {
	position: absolute;
	right: 10px;
	top: 7px;
	cursor: pointer;
}
.calendar-icon .img-r {
	max-width: 100%;
	height: auto;
}
.calendar-input-div {
	width: 93%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: 0;
	border-right: solid 1px #e6e6e6;
}
.ui-datepicker td span, .ui-datepicker td a {
	text-align: center !important;
	border: none !important;
	background: none !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	background: #31a6d1 !important;
	color: #fff !important;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
	background: #31a6d1;
	border: none;
	border-radius: 0px;
}
.ui-datepicker-calendar th {
	color: #000 !important;
	font-size: 13px !important;
	font-weight: bold !important;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
	border: solid 1px #2aa1cd;
	height: 24px;
	font-size: 13px !important;
	outline: 0;
	font-weight: bold;
}
.term-t p {
	font-size: 12px;
	line-height: 20px;
}
/* jQuery Datepicker Custom Style */
.ui-datepicker {
/*padding: 12px;
	border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
}
.ui-datepicker-header {
	background: #fff;
	border: none;
	font-weight: 600;
}
.ui-datepicker-prev, .ui-datepicker-next {
	cursor: pointer;
}
.ui-datepicker-calendar th {
	color: #777;
	font-size: 12px;
}
.ui-datepicker-calendar td a {
	text-align: center;
	padding: 6px;
	border-radius: 4px;
}
.ui-datepicker-calendar .ui-state-active {
	background: #2b6cb0 !important;
	color: #fff !important;
}
.ui-datepicker-calendar .ui-state-hover {
	background: #edf2f7;
}
.checkout-footer-container {
	border: 1px solid #EDEDED;
}
.checkout-footer-container .box-body-div1 {
	width: 46%;
	margin-left: auto;
}
.checkout-footer-container .checkbox-row {
	margin-top: 6px;
	margin-bottom: 0;
}
.checkout-footer-container .box-body-div .form-group {
	width: 100%;
}
.checkout-footer-container .dynamic-hint {
	width: 100%;
}
.checkout-footer-container .order-submit-btn {
	width: 100%;
	margin-top: 0px;
}
.checkout-footer-container .box-body-div {
	border-bottom: solid 1px #EDEDED;
}
.box-body-checkbox-l {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.box-body-checkbox-l .cart-btn-ro {
	width: 50%;
}
.box-body-checkbox-l .checkbox-row {
	width: 46%;
}
.cart-btn-ro a.cart-btn {
	color: #00b2b4;
	text-decoration: none;
	font-size: 16px;
}
.alert.alert-ask-for-login {
	margin-bottom: 25px;
}
#cart-wrapper-box-new {
	background: #ccc;
	overflow: hidden;
	transition: height 200ms;
}
.panel-header-cart {
	border: 1px solid #EDEDED;
	background-color: white;
	padding: 13px;
}
.panel-header-cart-box {
	text-align: center;
}
.panel-header-cart-box .total-price-div {
	font-size: 18px;
	color: #242424;
	font-weight: 600;
}
.panel-header-cart-box #button1 {
	font-size: 18px;
	margin-top: 5px;
	color: #242424;
	cursor: pointer;
}
.row-top {
	margin-top: 30px;
}
.table-header.hidden-mobile-view {
	padding-top: 0px;
	padding-bottom: 0px;
}
.total-box-div-n {
	width: 38%;
	margin-left: auto;
}
.total-box-div-n .subtotal span {
	margin-bottom: 12px;
	color: #707070;
}
.total-box-div-n .subtotal strong {
	color: #000;
}
.panel-header-cart-box #button1.active img {
	transform: rotate(180deg);
}
.cart-promotion-lables p {
	color: #707070;
}
span.price-label, .item-quantity-no {
	color: #707070;
}
.total-box-div-n .subtotal strong {
	color: #404040;
	font-weight: 500;
}
.padding-left-right {
	padding: 0px 15px;
}
.box-div-row {
	border-bottom: solid 1px #EDEDED;
}
.box-body-div .box-div-row:last-child {
	border-bottom: none;
}
button.prev-step {
	background: #00b2b4;
	border: none;
	padding: 13px 31px;
	color: #fff;
	cursor: pointer;
	outline: 0;
	font-weight: 600;
	font-size: 15px;
	border-radius: 6px;
}
.phone-wrapper.input-d-new {
	padding-left: 0px;
}
.phone-wrapper.input-d-new input {
	width: 100%;
	height: 40px;
}
.cart-section-form {
	padding-top: 98px;
}





/******* Mobile Layout *******/
@media only screen and (max-width: 767px) {
.calendar-icon {
	right: 3px;
	top: 7px;
	text-align: center;
}
.panel-header-cart-box {
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.panel-header-cart-box #button1 span {
	display: none;
}
.panel-header-cart-box #button1 {
	margin-top: 0;
}
.hidden-mobile-view {
	display: none !important;
}
.shopping-cart .table-row .col-xs12 {
	width: 100% !important;
}
.shopping-cart .table-row {
	display: inline-block;
}
.shopping-cart .table-row .col-xs12.item-quantity {
	width: 160px !important;
}
.shopping-cart .table-row .col-xs12.item-total {
	float: right;
	width: auto !important;
	padding-top: 24px;
}
.shopping-cart .table-row .col-xs12.item-information .description {
	padding-right: 50px;
}
.shopping-cart .table-row .col-xs12.item-action {
	width: 34px !important;
	position: absolute;
	right: 1px;
	top: 17px;
}
.shopping-cart .table-row .col-xs12.item-price {
	text-align: right;
	padding-top: 0px;
	padding-bottom: 0px;
}
.shopping-cart .table-row .col-xs12.item-price span.price-label {
	padding: 0px 0px;
	margin-right: 23px;
}
.shopping-cart .table-row .col-xs12.item-promotion {
	padding: 0px;
}
.alert.alert-ask-for-login {
	flex-flow: column;
}
.alert-ask-for-login .login-btn-wrapper {
	display: inline-block;
	margin-top: 21px;
}
.promotion {
	display: inline-block;
	margin-top: 9px;
}
.description {
	margin-left: 0;
	font-size: 14px;
	margin-top: 11px;
	line-height: 23px;
}
.checkout-footer-container .box-body-div1 {
	width: 100%;
}
.container-multi-step {
	padding: 0px 0px;
}
.item-quantity-no {
	text-align: left;
}
.total-box-div-n {
	width: 100%;
}
.col-div8 {
	width: 100%;
}
.col-div4 {
	width: 100%;
}
.form-t {
	font-size: 20px;
	margin-top: 21px;
	display: inline-block;
}
.form-wr .form-t {
	margin-bottom: 0px;
}
.form-group.terms {
	display: inline-block;
	width: 100%;
}
.row-d {
	display: block;
}
.col-div6 {
	width: 100%;
}
.container-div {
	max-width: 100%;
}
.product-details-slider-r {
	margin-top: 29px;
	padding: 0px 15px;
}
.tp-product-details-title {
	font-size: 25px;
	line-height: 42px;
}
.tp-product-add-to-cart-btn {
	padding: 14px 16px;
}
.product-details-slider-r .slick-carousel.thumbs {
	padding: 0px 15px;
}
.product-details-slider-r .slick-carousel.thumbs button.slick-prev {
	left: -8px;
}
.product-details-slider-r .slick-carousel.thumbs button.slick-next {
	right: -8px;
}
.signup-login-row {
	padding-top: 60px;
	padding-bottom: 60px;
	display: inline-block;
	margin: 0px auto;
	width: 100%;
}
.width-div {
	padding: 18px;
	padding-bottom: 31px;
}
.form-wr {
	margin-top: 0px;
	width: 100%;
}
}


/******* Tablet Layout *******/
@media only screen and (min-width: 768px) and (max-width: 991px) {
.container-multi-step {
	padding: 0px 0px;
}
}
 @media (max-width: 991px) {
.container-div {
	max-width: 100%;
}
}
