@import url(https://fonts.bunny.net/css?family=lato:400,700,900|quicksand:400,500,600,700);
@import url(vendors/normalize.css);
@import url(vendors/bootstrap.min.css);
@import url(vendors/uicons-regular-straight.css);
/*import plugins*/
@import url(plugins/magnific-popup.css);
@import url(plugins/slick.css);
@import url(plugins/perfect-scrollbar.css);

/* create color variable */
:root {
  --primary-color: #ff4035;
  --secondary-color: #0f2041;
  --btn-color: #ff4035;
}
/* create color variable */

/*RESET*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

thead {
  font-weight: 600;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

a {
  color: var(--btn-color);
}
a:hover {
  color: #0f2041;
}

li.hr span {
  width: 100%;
  height: 1px;
  background-color: #e4e4e4;
  margin: 20px 0;
  display: block;
}

/*--- Common Classes---------------------*/
::-moz-selection {
  background: var(--btn-color); /* WebKit/Blink Browsers */
  color: #fff;
}
::selection {
  background: var(--btn-color); /* WebKit/Blink Browsers */
  color: #fff;
}

::-moz-selection {
  background: var(--btn-color); /* Gecko Browsers */
  color: #fff;
}

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

::placeholder {
  color: #838383;
}

.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.section {
  float: left;
  width: 100%;
}

.f-right {
  float: right;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

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

.position-relative {
  position: relative;
}

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

*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none !important;
  box-shadow: none;
}

.bg-grey-9 {
  background-color: #f4f5f9;
}

.border-radius {
  border-radius: 4px;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-15 {
  border-radius: 15px;
}

.border-radius-20 {
  border-radius: 20px;
}

.img-hover-scale img {
  transition: transform 0.5s;
}
.img-hover-scale:hover img {
  transform: scale(1.05);
  transition: transform 0.5s;
}

.hover-up {
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.hover-up:hover {
  transform: translateY(-5px);
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.text-brand {
  color: var(--btn-color) !important;
}

.text-brand-2 {
  color: #0f2041 !important;
}

.text-primary {
  color: #5a97fa !important;
}

.text-warning {
  color: #ff9900 !important;
}

.text-danger {
  color: #FD6E6E !important;
}

.text-success {
  color: #81B13D !important;
}

.text-info {
  color: #2cc1d8 !important;
}

.text-grey-4 {
  color: #adadad !important;
}

.text-muted {
  color: #B6B6B6 !important;
}

.text-7 {
  color: #d77f7a !important;
}

.text-8 {
  color: #63a2c1 !important;
}

.text-white {
  color: #fff !important;
}

.text-grey-5, .text-grey-5 a, .text-hover-grey-5:hover {
  color: #a2a2a2 !important;
}

.bg-brand {
  background-color: var(--btn-color) !important;
}

.bg-primary {
  background-color: #5a97fa !important;
}

.bg-warning {
  background-color: #ff9900 !important;
}

.bg-danger {
  background-color: #FD6E6E !important;
}

.bg-success {
  background-color: #81B13D !important;
}

.bg-info {
  background-color: #2cc1d8 !important;
}

.bg-grey-4 {
  background-color: #adadad !important;
}

.bg-1 {
  background-color: #fddde4 !important;
}

.bg-2 {
  background-color: #cdebbc !important;
}

.bg-3 {
  background-color: #d1e8f2 !important;
}

.bg-4 {
  background-color: #cdd4f8 !important;
}

.bg-5 {
  background-color: #f6dbf6 !important;
}

.bg-6 {
  background-color: #fff2e5 !important;
}

.bg-7 {
  background-color: #d77f7a !important;
}

.bg-8 {
  background-color: #63a2c1 !important;
}

.bg-9 {
  background-color: #F2FCE4 !important;
}

.bg-10 {
  background-color: #FFFCEB !important;
}

.bg-11 {
  background-color: #ECFFEC !important;
}

.bg-12 {
  background-color: #FEEFEA !important;
}

.bg-13 {
  background-color: #FFF3EB !important;
}

.bg-14 {
  background-color: #FFF3FF !important;
}

.bg-15 {
  background-color: #F2FCE4 !important;
}

.bg-grey-9 {
  background-color: #f4f5f9 !important;
}

.font-xs {
  font-size: 13px;
}

.div-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.bg-grey-1 {
  background: #fafbfc;
}

.box-shadow-none {
  box-shadow: none !important;
}

.flex-horizontal-center {
  display: flex;
  align-items: center;
}

.w-36px {
  max-width: 36px;
}

.border {
  border: 1px solid #ececec !important;
}

.box-shadow-outer-6 {
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}
.box-shadow-outer-6:hover {
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
}

.box-shadow-outer-7 {
  box-shadow: 0 0 11px 0 rgba(78, 42, 222, 0.03), 0 8px 16px 0 rgba(78, 42, 222, 0.08);
}
.box-shadow-outer-7:hover {
  box-shadow: 0 0 14px 0 rgba(78, 42, 222, 0.03), 0 8px 18px 0 rgba(78, 42, 222, 0.09);
}

.box-shadow-outer-3, .box-hover-shadow-outer-3:hover {
  box-shadow: 0 5px 16px 0 rgba(118, 126, 173, 0.09);
}

/*****************************
*********  BORDER  *****
******************************/
.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-solid {
  border-style: solid !important;
}

.border-double {
  border-style: double !important;
}

.border-dashed {
  border-style: dashed !important;
}

.border-brand {
  border-color: var(--btn-color) !important;
}

.border-muted {
  border-color: #f7f8f9;
}

.section-border {
  border-top: 1px solid #e6e9ec;
  border-bottom: 1px solid #e6e9ec;
}

.border-color-1 {
  border-color: #e0dede;
}

.list-insider li {
  list-style: inside;
}

a,
button,
img,
input,
span,
h4 {
  transition: all 0.3s ease 0s;
}

@keyframes slideleft {
  10% {
    opacity: 0;
    transform: scale(0);
    right: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 0;
    transform: scale(0);
    right: 100%;
  }
}
[data-loader=spinner] {
  width: 35px;
  height: 35px;
  display: inline-block;
  animation: spinner 1.2s infinite ease-in-out;
  background: url(../imgs/favicon.html);
  box-shadow: 0 0 10px #fff;
}
@keyframes spinner {
  0% {
    transform: perspective(120px) rotateX(0) rotateY(0);
  }
  50% {
    transform: perspective(120px) rotateX(-180deg) rotateY(0);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.8);
  }
  100% {
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
  }
}
@keyframes shadow-pulse-big {
  0% {
    box-shadow: 0 0 0 0px rgba(239, 63, 72, 0.1);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes jump {
  0% {
    transform: translate3d(0, 20%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.jump {
  transform-origin: 0;
  animation: jump 0.5s linear alternate infinite;
}

/*TYPOGRAPHY*/
body {
  color: #7E7E7E;
  font-family: "Albert Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-style: normal;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
.display-1,
.display-2,
.heading-sm-1 {
  font-family: "Albert Sans", sans-serif;
  /* font-family: "Rubik", sans-serif; */
  color: #253D4E;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

.display-1 {
  font-size: 96px;
  line-height: 1;
}

.display-2 {
  font-size: 72px;
  line-height: 1;
}

.heading-sm-1 {
  font-size: 14px;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 5px;
  color: #7E7E7E;
}

.text-heading {
  color: #253D4E;
}

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

.font-weight-bold {
  font-weight: 700;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

b {
  font-weight: 500;
}

strong,
.fw-600 {
  font-weight: 600;
}

.fw-900 {
  font-weight: 900;
}

.fw-300 {
  font-weight: 300;
}

.section-title {
  display: flex;
  align-items: end;
  margin-bottom: 15px;
  position: relative;
  justify-content: space-between;
}
.section-title .title {
  display: flex;
  flex-flow: row;
  align-items: flex-end;
}
.section-title h3 {
  font-weight: 700;
  font-size: 32px;
  margin-right: 30px;
}
.section-title a.show-all {
  font-size: 16px;
  color: #7E7E7E;
}
.section-title a.show-all:hover {
  color: var(--btn-color);
}
.section-title a.show-all i {
  font-size: 12px;
  margin-left: 5px;
}
.section-title.style-1 {
  position: relative;
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  font-size: 24px;
}
.section-title.style-1::after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0f2041;
}
.section-title span {
  color: var(--btn-color);
}

h5.widget-title {
  font-size: 18px;
  font-weight: 600;
}

.title.style-3 {
  background-image: url(../imgs/theme/wave.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-bottom: 25px;
}

.text-body {
  color: #555 !important;
}

.font-xxs {
  font-size: 12px;
}

.font-xs {
  font-size: 13px;
}

.font-sm {
  font-size: 14px;
}

.font-md {
  font-size: 16px;
}

.font-lg {
  font-size: 17px;
}

.font-xl {
  font-size: 19px;
}

.font-xxl {
  font-size: 58px;
}

.text-hot {
  color: #f74b81;
}

.text-new {
  color: #55bb90;
}

.text-sale {
  color: #67bcee;
}

.text-best {
  color: #f59758;
}

.text-style-1 {
  position: relative;
}
.text-style-1::after {
  content: "";
  background-color: #ffdabf;
  height: 20%;
  width: 110%;
  display: block;
  position: absolute;
  bottom: 20%;
  left: -5%;
  z-index: -1;
  opacity: 0.8;
  transition: transform 0.5s;
}
.text-style-1:hover::after {
  height: 30%;
  transition: transform 0.5s;
}

.fw-700 {
  font-weight: 700;
}

/*COMPONENTS -> BUTTONS*/
.btn-default {
  color: #fff;
  background-color: var(--btn-color);
  border-radius: 50px;
  padding: 13px 28px;
  font-family: "Albert Sans", sans-serif;
}
.btn-default i {
  font-weight: 400;
  font-size: 12px;
  margin-left: 10px;
  transition-duration: 0.2s;
}
.btn-default:hover i {
  margin-left: 15px;
  transition-duration: 0.2s;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px !important;
  font-size: 12px;
}

.btn-md {
  padding: 10px 24px !important;
  font-size: 12px;
}

.btn-outline {
  background-color: transparent !important;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn {
  font-family: "Albert Sans", sans-serif;
}
.btn:hover {
  color: #fff;
}

.btn-shadow-brand {
  box-shadow: 0 2px 6px 0 rgba(88, 151, 251, 0.16);
  border: 1px solid #f7f8f9;
}
.btn-shadow-brand:hover {
  border: 1px solid var(--btn-color);
}

.btn-brand {
  background-color: var(--btn-color);
  border-color: var(--btn-color);
}

.btn-heading, button.btn-heading[type=submit] {
  background-color: #253D4E;
  border-color: #253D4E;
  font-weight: 700;
  border: 0;
}

button.submit, button[type=submit] {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  color: #ffffff;
  border: none;
  background-color: var(--btn-color);
  border-radius: 5px;
}

button.submit:hover, button[type=submit]:hover {
  background-color: #0f2041 !important;
}

.btn-brand:hover {
  background-color: #0f2041 !important;
}

.btn-login {
  font-weight: 13px;
}
.btn-login .btn {
  min-width: unset;
}
.btn-login li {
  margin: 0px 5px 0;
  display: inline-block;
}
.btn-login li a {
  border-radius: 5px;
  padding: 15px 25px;
  color: #fff;
  display: block;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
}

.btn, .button {
  display: inline-block;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid transparent;
  background-color: var(--btn-color);
  cursor: pointer;
  transition: all 300ms linear 0s;
  letter-spacing: 0.5px;
}
.btn:hover, .button:hover {
  background-color: #0f2041;
}
.btn.btn-sm, .button.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
  text-transform: none;
  line-height: 1.8;
}
.btn.btn-xs, .button.btn-xs {
  padding: 7px 8px 7px 12px;
  font-size: 12px;
  text-transform: none;
  display: inline-flex;
  flex-wrap: wrap;
  line-height: 1.3;
}
.btn.btn-xs i, .button.btn-xs i {
  font-size: 14px !important;
  line-height: 0;
}
.btn.btn-rounded, .button.btn-rounded {
  border-radius: 50px;
}
.btn.btn-secondary, .button.btn-secondary {
  background-color: #3e5379;
  border-color: #3e5379;
}
.btn.btn-facebook, .button.btn-facebook {
  background: #3b5998;
  border-color: #3b5998;
}
.btn.btn-google, .button.btn-google {
  background: #d85040;
  border-color: #d85040;
}
.btn.btn-brush, .button.btn-brush {
  background-color: transparent;
  color: var(--btn-color);
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  font-family: "Albert Sans", sans-serif;
}
.btn.btn-brush i, .button.btn-brush i {
  margin: 3px 0 0 5px;
}
.btn.btn-brush.btn-brush-1, .button.btn-brush.btn-brush-1 {
  background-image: url(../imgs/theme/btn-brush-bg-1.html);
}
.btn.btn-brush.btn-brush-2, .button.btn-brush.btn-brush-2 {
  background-image: url(../imgs/theme/btn-brush-bg-2.html);
}
.btn.btn-brush.btn-brush-3, .button.btn-brush.btn-brush-3 {
  background-image: url(../imgs/theme/btn-brush-bg-3.html);
}

.comments-area .btn-reply {
  display: flex !important;
  align-content: center;
  align-items: center;
}
.comments-area .btn-reply i {
  margin-left: 5px;
  font-size: 12px;
}

.tags .btn, .tags .button {
  border-radius: 4px;
  float: left;
}

/*COMPONENTS -> FORM*/
input:-moz-placeholder,
textarea:-moz-placeholder {
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  background: transparent;
  border: 1px solid #0f2041;
}
input.square {
  border-radius: 0;
}
input.coupon {
  height: 47px;
}

select {
  width: 100%;
  background: transparent;
  border: 0px solid #ececec;
  box-shadow: none;
  font-size: 16px;
  color: #7E7E7E;
}

option {
  background: #fff;
  border: 0px solid #626262;
  padding-left: 10px;
  font-size: 16px;
}

textarea {
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 50px;
  box-shadow: none;
  padding: 10px 10px 10px 20px;
  font-size: 16px;
  width: 100%;
  min-height: 200px;
}
textarea:focus {
  background: transparent;
  border: 1px solid #0f2041;
}

/*contact form*/
.contact-from-area .contact-form-style button {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 40px;
  color: #ffffff;
  border: none;
  background-color: #253D4E;
  border-radius: 5px;
  font-family: "Albert Sans", sans-serif;
}
.contact-from-area .contact-form-style button:hover {
  background-color: var(--btn-color) !important;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group input {
  background: #fff;
  border: 1px solid #ececec;
  height: 45px;
  box-shadow: none;
  padding-left: 10px;
  font-size: 15px;
  width: 100%;
}
.form-group input:focus {
  background: transparent;
  border-color: #0f2041;
}

.security-code {
  display: inline-block;
  border-radius: 10px;
  height: 64px;
  line-height: 64px;
  padding: 0 40px;
  font-size: 24px;
  font-weight: bold;
  background: #0f2041;
}
.security-code b {
  font-size: 24px;
  font-weight: bold;
}

.custome-radio .form-check-label,
.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
}

.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  color: #687188;
  padding: 0;
  vertical-align: middle;
}
.custome-checkbox .form-check-label::before {
  content: "";
  border: 2px solid #ced4da;
  height: 17px;
  width: 17px;
  margin: 0px 8px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
}
.custome-checkbox .form-check-label span {
  vertical-align: middle;
}
.custome-checkbox input[type=checkbox]:checked + .form-check-label::after {
  opacity: 1;
}
.custome-checkbox input[type=checkbox] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 50%;
  left: 3px;
  opacity: 0;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(-45deg);
}

.custome-radio .form-check-input,
.custome-checkbox .form-check-input {
  display: none;
}

.login_footer {
  margin-bottom: 20px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.custome-checkbox input[type=checkbox]:checked + .form-check-label::before {
  background-color: var(--btn-color);
  border-color: var(--btn-color);
}
.custome-checkbox input[type=checkbox]:checked + .form-check-label::after {
  opacity: 1;
}

.divider-text-center {
  text-align: center;
  position: relative;
}
.divider-text-center::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  border-top: 1px solid #ddd;
  transform: translateY(-50%);
}
.divider-text-center span {
  background-color: #fff;
  padding: 0 15px;
  position: relative;
  text-transform: uppercase;
}

/*comment*/
.comments-area {
  background: transparent;
  border-top: 1px solid #ececec;
  padding: 45px 0;
  margin-top: 50px;
}
.comments-area h5 {
  font-size: 16px;
  margin-bottom: 0px;
}
.comments-area .comment-list {
  padding-bottom: 48px;
}
.comments-area .comment-list:last-child {
  padding-bottom: 0px;
}
.comments-area .comment-list.left-padding {
  padding-left: 25px;
}
.comments-area .comment-list .single-comment {
  margin: 0 0 15px 0;
  border: 1px solid #f2f2f2;
  border-radius: 15px;
  padding: 20px;
  transition: 0.2s;
}
.comments-area .comment-list .single-comment:not(:last-child) {
  border-bottom: 1px solid #ececec;
}
.comments-area .comment-list .single-comment img {
  min-width: 80px;
  max-width: 80px;
}
.comments-area .comment-list .single-comment .reply {
  opacity: 0;
  transition: 0.2s;
}
.comments-area .comment-list .single-comment:hover {
  transform: translateY(-5px);
  transition: 0.2s;
}
.comments-area .comment-list .single-comment:hover .reply {
  opacity: 1;
  transition: 0.2s;
}
.comments-area p {
  font-size: 16px !important;
}
.comments-area .thumb {
  margin-right: 20px;
}
.comments-area .thumb img {
  width: 70px;
  border-radius: 50%;
}
.comments-area .date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 0;
  margin-left: 20px;
}
.comments-area .comment {
  margin-bottom: 10px;
  color: #777777;
  font-size: 15px;
}
.comments-area .btn-reply {
  background-color: transparent;
  color: #888888;
  padding: 5px 18px;
  font-size: 14px;
  display: block;
  font-weight: 400;
}
.comments-area.style-2 {
  border: 0;
  margin-top: 0;
  padding: 25px 0;
}

.comments-area h4 {
  margin-bottom: 35px;
  color: #2a2a2a;
  font-size: 18px;
}

.comment-form .email {
  padding-right: 0px;
}

.form-control {
  border: 1px solid #f0e9ff;
  border-radius: 5px;
  height: 48px;
  padding-left: 18px;
  font-size: 16px;
  background: transparent;
}

.comment-form {
  padding-top: 45px;
  margin-bottom: 20px;
}
.comment-form .form-group {
  margin-bottom: 20px;
}
.comment-form textarea {
  min-height: 200px;
  padding-top: 15px;
}
.comment-form textarea:focus {
  background: transparent;
  outline: none !important;
  box-shadow: none;
  border-color: #0f2041;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  font-weight: 300;
  color: #999999;
  color: #777777;
}
.form-control::placeholder {
  font-weight: 300;
  color: #999999;
  color: #777777;
}

.nice-select .list {
  width: 100%;
}

.button-contactForm {
  background: var(--btn-color);
  color: #fff;
  border-color: var(--btn-color);
  padding: 12px 25px;
}

.search-form form {
  position: relative;
}
.search-form form input {
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-form form button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-size: 20px;
  height: 100%;
  padding: 0 24px;
  background-color: transparent;
  color: #242424;
}
.search-form form button:hover {
  color: #fff;
}

input.qty-val {
  border: 0;
  border-radius: 0;
  height: unset;
  padding: 0 !important;
  text-align: center;
  width: 100%;
}

/*COMPONENTS -> SLIDER*/
.single-animation-wrap.slick-active .slider-animated-1 h1 {
  animation-delay: 1.4s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1 h2 {
  animation-delay: 1.2s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1 h3 {
  animation-delay: 1s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1 h4 {
  animation-delay: 1s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1 span {
  animation-delay: 0.5s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1 p {
  animation-delay: 1.7s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1 a.btn {
  animation-delay: 2s;
  animation-name: fadeInUp;
}
.single-animation-wrap.slick-active .slider-animated-1.slider-product-price {
  animation-delay: 1.2s;
  animation-name: flipInY;
}
.single-animation-wrap.slick-active .slider-animated-1 .single-slider-img img {
  animation-delay: 1.5s;
  animation-name: fadeInUp;
}

.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap,
.single-animation-wrap.slick-active .slider-animated-1 .slider-product-offer-wrap-2 {
  animation-delay: 1s;
  animation-name: fadeInUp;
}

.hero-slider-1 {
  position: relative;
}
.hero-slider-1 .single-hero-slider {
  height: 538px;
  border-radius: 30px;
  background-size: cover;
  background-position: center center;
}
.hero-slider-1 .single-hero-slider.rectangle {
  border-radius: 0;
}
.hero-slider-1 .single-hero-slider.rectangle .slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.hero-slider-1 .single-hero-slider.rectangle .slider-content form {
  margin: 0 auto;
}
.hero-slider-1 img {
  max-height: 538px;
  border-radius: 30px;
}
.hero-slider-1 .slider-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}
.hero-slider-1 .slider-content p {
  font-size: 30px;
}
.hero-slider-1 .slider-content form {
  background-color: #fff;
  max-width: 450px;
  border-radius: 50px;
}
.hero-slider-1 .slider-content form input {
  border: 0;
  border-radius: 50px 0 0 50px;
  padding-left: 58px;
  background: url(../imgs/theme/icons/icon-plane.png) no-repeat 25px center;
}
.hero-slider-1 .slider-content form button {
  border: 0;
  border-radius: 50px;
}
.hero-slider-1 .single-slider-img-1 {
  height: 538px;
  position: relative;
}
.hero-slider-1 .single-slider-img-1 .slider-1-1 {
  position: absolute;
  bottom: 30px;
  right: 0;
}
.hero-slider-1 .single-slider-img-1 .slider-1-2 {
  position: absolute;
  bottom: 20px;
  right: 0;
}
.hero-slider-1 .single-slider-img-1 .slider-1-3 {
  position: absolute;
  bottom: 30px;
  right: 0;
}
.hero-slider-1.style-5 .display-2 {
  font-size: 40px;
}
.hero-slider-1.style-5 .slider-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #4e4d4d;
}
.hero-slider-1.style-5 img {
  border-radius: 10px;
}
.hero-slider-1.style-5 .single-hero-slider {
  border-radius: 10px;
}

.dot-style-1 ul {
  display: flex;
}
.dot-style-1 ul li {
  margin: 0 3px;
}
.dot-style-1 ul li button {
  width: 15px;
  height: 15px;
  border-radius: 30px;
  border: 1px solid;
  padding: 0;
  font-size: 0px;
  border-color: #253D4E;
  background: none;
  transition: all 0.3s linear;
}
.dot-style-1 ul li button:hover {
  background: #0f2041;
}
.dot-style-1 ul li.slick-active button {
  background: var(--btn-color);
  border-color: var(--btn-color);
}
.dot-style-1.dot-style-1-position-1 ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
}
.dot-style-1.dot-style-1-position-2 ul {
  position: absolute;
  left: 6%;
  bottom: 15px;
}
.dot-style-1.dot-style-1-center ul {
  justify-content: center;
}
.dot-style-1.dot-style-1-mt1 ul {
  margin-top: 30px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
}
.slider-arrow .slider-btn {
  cursor: pointer;
  background: #F2F3F4;
  width: 45px;
  height: 45px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%;
  transition: all 0.2s ease-out;
  text-align: center;
  line-height: 52px;
  font-size: 16px;
  color: #7E7E7E;
}
.slider-arrow .slider-btn.slider-prev {
  left: 20px;
}
.slider-arrow .slider-btn.slider-prev i {
  margin-right: 2px;
  font-size: 20px;
}
.slider-arrow .slider-btn.slider-next {
  right: 20px;
}
.slider-arrow .slider-btn.slider-next i {
  margin-left: 2px;
  font-size: 20px;
}
.slider-arrow .slider-btn:hover {
  background-color: var(--btn-color);
  color: #fff;
  border-color: var(--btn-color);
}
.slider-arrow.slider-arrow-2 .slider-btn {
  width: 40px;
  height: 40px;
  line-height: 44px;
  font-size: 24px;
}
.slider-arrow.slider-arrow-2.flex-right {
  display: flex;
  position: relative;
  max-width: 200px;
  justify-content: flex-end;
  top: unset;
  transform: unset;
}
.slider-arrow.slider-arrow-2.flex-right .slider-btn {
  position: relative;
  left: unset;
  right: unset;
}
.slider-arrow.slider-arrow-2.flex-right .slider-btn.slider-prev {
  margin-right: 10px;
}
.slider-arrow.slider-arrow-3 .slider-btn {
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 12px;
  margin-top: -15px;
}
.slider-arrow.style-3 .slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #dcdeed;
  line-height: 40px;
  font-size: 12px;
  margin-top: -20px;
}

.home-slide-cover {
  position: relative;
}
.home-slide-cover .slider-arrow {
  left: 0;
}
.home-slide-cover .hero-slider-content-2 {
  padding-left: 50px;
}

/*Carausel*/
.carausel-8-columns-cover .carausel-8-columns {
  overflow: hidden;
  margin: 0 -12px;
}
.carausel-8-columns-cover .carausel-8-columns .card-1 {
  margin-right: 12px;
  margin-left: 12px;
}
.carausel-8-columns-cover .product-img {
  border: 1px solid #cce7d0;
}
.carausel-8-columns-cover .slider-arrow {
  top: -80px;
}
.carausel-8-columns-cover .slider-arrow .slider-btn.slider-next {
  right: 0;
}
.carausel-8-columns-cover .slider-arrow .slider-btn.slider-prev {
  right: 48px;
  left: unset;
}
.carausel-8-columns-cover.arrow-center .slider-arrow {
  top: 50%;
  transform: translateY(-50%);
  margin-top: -50px;
}
.carausel-8-columns-cover.arrow-center .slider-arrow .slider-btn.slider-next {
  right: -30px;
}
.carausel-8-columns-cover.arrow-center .slider-arrow .slider-btn.slider-prev {
  left: -30px;
}
.carausel-8-columns-cover.arrow-center .slider-arrow.slider-arrow-3 {
  margin-top: 0;
}

.carausel-10-columns-cover .carausel-10-columns {
  overflow: hidden;
  margin: 0 -12px;
}
.carausel-10-columns-cover .carausel-10-columns .card-2 {
  margin-right: 12px;
  margin-left: 12px;
}

.carausel-4-columns-cover .carausel-4-columns {
  overflow: hidden;
  margin: 0 -12px;
}
.carausel-4-columns-cover .carausel-4-columns .product-cart-wrap {
  margin-right: 12px;
  margin-left: 12px;
}
.carausel-4-columns-cover .carausel-4-columns-arrow {
  margin-top: -100px;
}
.carausel-4-columns-cover .product-cart-wrap {
  margin-bottom: 20px;
}

.carausel-4-columns-cover .product-cart-wrap:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-grey-10 {
  background-color: #d0f3ec;
}

.home-slider .slider-arrow {
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.home-slider:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}
.home-slider.style-2 {
  background: url(../imgs/banner/banner-12.png) no-repeat center bottom;
  background-size: cover;
  width: 100%;
  padding: 50px 0;
}

.carausel-3-columns-cover {
  position: relative;
}
.carausel-3-columns-cover .carausel-3-columns {
  overflow: hidden;
  margin: 0 -12px;
}
.carausel-3-columns-cover .carausel-3-columns img {
  margin-right: 12px;
  margin-left: 12px;
}
.carausel-3-columns-cover #carausel-3-columns-arrows {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  z-index: 3;
}
.carausel-3-columns-cover .slider-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 44px;
  text-align: center;
  background: #F2F3F4;
  font-size: 27px;
  color: var(--btn-color);
  position: absolute;
}
.carausel-3-columns-cover .slider-btn.slider-prev {
  left: -20px;
}
.carausel-3-columns-cover .slider-btn.slider-next {
  right: -20px;
}
.carausel-3-columns-cover .slider-btn:hover {
  background: var(--btn-color);
  color: #fff;
}

/*COMPONENTS -> CARD*/
.card-1 {
  position: relative;
  background: #F4F6FA;
  text-align: center;
  border: 1px solid #F4F6FA;
  border-radius: 10px;
  padding: 40px 30px 28px 30px;
  margin-bottom: 20px;
  min-height: 215px;
  transition: 0.2s;
}
.card-1:hover {
  background: #fff;
  border: 1px solid #0f2041;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.card-1 figure {
  text-align: center;
  margin-bottom: 20px;
}
.card-1 figure img {
  border-radius: 10px;
  display: inline-block;
  max-width: 80px;
}
.card-1 h6 {
  margin: 0;
}
.card-1 h6 a {
  color: #253D4E;
}
.card-1:hover a {
  color: var(--btn-color);
}

.card-2 {
  position: relative;
  background: #F4F6FA;
  text-align: center;
  border: 1px solid #F4F6FA;
  border-radius: 10px;
  padding: 20px 0px 18px 0px;
  margin-bottom: 20px;
  min-height: 150px;
  transition: 0.2s;
}
.card-2:hover {
  background: #fff;
  border: 1px solid var(--btn-color);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.card-2 figure {
  text-align: center;
  margin-bottom: 10px;
}
.card-2 figure img {
  border-radius: 10px;
  display: inline-block;
  max-width: 60px;
}
.card-2 h6 {
  margin: 0;
}
.card-2 h6 a {
  color: #253D4E;
  font-size: 13px;
}
.card-2:hover a {
  color: var(--btn-color);
}

.hero-card {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}
.hero-card:hover {
  border: 1px solid var(--btn-color);
}
.hero-card .hero-card-icon {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.hero-card .hero-card-icon.icon-left {
  width: 135px;
  align-items: start;
}
.hero-card .hero-card-icon.icon-left-2 {
  width: 265px;
  align-items: start;
}
.hero-card .hero-card-icon i {
  font-size: 25px;
  color: #6143f7;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #ececec;
  border-radius: 0.25rem;
}
.card .card-header {
  padding: 1rem;
  margin-bottom: 0;
  background-color: #f7f8f9;
  border-bottom: 1px solid #ececec;
}

.featured-card {
  padding: 50px 30px;
  border-radius: 15px;
  border: 1px solid #ececec;
  background: #fff;
}
.featured-card img {
  margin-bottom: 30px;
  width: 100px;
}
.featured-card h4 {
  margin-bottom: 30px;
}
.featured-card p {
  font-size: 17px;
  margin-bottom: 30px;
}
.featured-card a {
  font-size: 16px;
}
.featured-card:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card {
    position: relative;
    border: 1px solid #ddd;
    padding: 70px 15px;
    border-radius: 10px;
}
.team-card img {
  border-radius: 15px;
  z-index: 1;
}
.team-card:hover .content {
  transform: translateY(-95px);
  transition: 0.2s;
}
.team-card .content {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background: #fff;
  padding: 30px;
  max-width: 80%;
  position: relative;
  z-index: 2;
  transform: translateY(-90px);
  margin-left: auto;
  margin-right: auto;
  transition: 0.2s;
}
.team-card .content span {
  font-size: 17px;
}
.team-card .content .social-network a {
  display: inline-block;
  padding: 0 5px;
}
.team-card .content .social-network a img {
  max-width: 30px;
  min-width: 20px;
}

.account .card {
  border: 0;
}
.account .card .card-header {
  border: 0;
  background: none;
}
.account .card table td, .account .card table th {
  border: 0;
}
.account .card .table > thead {
  font-family: "Albert Sans", sans-serif;
  font-size: 17px;
}

.card-login {
  padding: 50px;
  border-radius: 15px;
  border: 1px solid #ececec;
  margin-left: 30px;
}
.card-login .social-login {
  font-size: 20px;
  font-weight: 700;
  font-family: "Albert Sans", sans-serif;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.card-login .social-login img {
  min-width: 28px;
  max-width: 28px;
  margin-right: 15px;
}
.card-login .social-login.facebook-login {
  background-color: #1877F2;
  color: #fff;
}
.card-login .social-login.google-login {
  background-color: #fff;
  color: #7E7E7E;
  border: 1px solid #F2F3F4;
}
.card-login .social-login.apple-login {
  background-color: #000000;
  color: #fff;
  margin-bottom: 0;
}
.card-login .social-login:hover {
  transform: translateY(-3px);
  transition: 0.3s;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

/*COMPONENTS -> TABS*/
.nav-tabs {
  border: 0;
  margin-bottom: 4px;
  align-items: center;
}
.nav-tabs .nav-link {
  background-color: rgb(238, 238, 238);
  font-size: 15px;
  margin: 0 10px;
  margin-left: 10px;
  color: #444;
  border-radius: 4px;
  padding: 15px 24px;
  transition: 0.2s;
  border: 0;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
}
.nav-tabs .nav-link.active {
  color: var(--btn-color);
  background-color: #fde1bd;
}
.nav-tabs .nav-link:hover {
  color: var(--btn-color);
  background-color: #fde1bd;
  transform: translateY(-3px);
  transition: 0.2s;
}
.nav-tabs .nav-link:first-child {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.nav-tabs.links .nav-link {
  padding: 0 10px;
  background: none;
  font-size: 16px;
  color: #253D4E;
}
.nav-tabs.links .nav-link:hover, .nav-tabs.links .nav-link.active {
  color: var(--btn-color);
  text-decoration: underline;
}
.nav-tabs.no-border {
  border: none;
}
.nav-tabs.right .nav-item:last-child .nav-link {
  margin-right: 0;
}

.nav.right {
  justify-content: end;
}

.dashboard-menu ul {
  padding: 0;
  margin: 0;
}
.dashboard-menu ul li {
  position: relative;
  border-radius: 0px;
}
.dashboard-menu ul li a {
    font-size: 16px;
    color: #7E7E7E;
    padding: 12px 30px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 600;
  }
.dashboard-menu ul li a i {
  color: #7E7E7E;
  font-size: 19px;
  opacity: 0.6;
}
.dashboard-menu ul li a.active {
  color: #fff;
  background-color: var(--btn-color);
  border-radius: 0px;
}
.dashboard-menu ul li a.active i {
  color: #fff;
}
.dashboard-menu ul li:last-child {
  margin-bottom: 10px;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tab-header .view-more {
  font-family: "Albert Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  border-bottom: 2px solid #cce7d0;
  margin-bottom: 20px;
}
.tab-header .view-more i {
  margin-left: 5px;
  margin-top: 5px;
  transition: 0.5s;
}
.tab-header .view-more:hover i {
  transform: translateX(5px);
  transition: 0.5s;
}

/*COMPONENTS -> MISC*/
/*Countdown*/
.deals-countdown .countdown-section {
  position: relative;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  padding: 20px 5px 30px 5px;
  margin-left: 7px;
  margin-right: 7px;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  margin-bottom: 2rem;
}
.deals-countdown .countdown-section .countdown-amount {
  display: inline-block;
  color: var(--btn-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
}
.deals-countdown .countdown-section .countdown-period {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 10px;
  display: block;
  color: #7E7E7E;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  font-size: 16px;
  text-transform: capitalize;
}

.img-grey-hover {
  opacity: 0.5;
  filter: grayscale(1);
  transition-duration: 0.3s;
}
.img-grey-hover:hover {
  filter: none;
  opacity: 1;
  transition-duration: 0.3s;
}

.brand-logo img {
  width: auto;
  display: inline-block;
  padding: 10px 0;
}

/*Heading tab*/
.heading-tab {
  align-items: center;
  flex-direction: row;
  text-align: left;
  justify-content: space-between;
}

/*page loading*/
.preloader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  transition: 0.6s;
  margin: 0 auto;
}

.preloader img.jump {
  max-height: 100px;
}

/*custom amine*/
.loader,
.bar {
  width: 100px;
  height: 20px;
}

.bar {
  position: absolute;
  display: flex;
  align-items: center;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background: var(--btn-color);
  opacity: 0;
  border-radius: 10px;
  animation: slideleft 3s ease-in-out infinite;
}

.bar1::before {
  animation-delay: 0s;
}

.bar1::after {
  animation-delay: 0.3s;
}

.bar2::before {
  animation-delay: 0.6s;
}

.bar2::after {
  animation-delay: 0.9s;
}

.bar3::before {
  animation-delay: 1.2s;
}

.bar3::after {
  animation-delay: 1.5s;
}

/*page header*/
.page-header .page-title {
  font-weight: 900;
  font-size: 4rem;
}
.page-header.breadcrumb-wrap {
  padding: 20px;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  font-family: "Albert Sans", sans-serif;
}


/*****************************
*********  SOCIAL NETWORKS  **********
******************************/
.text-center.social-icons ul {
  display: inline-block;
}

.social-icons li {
  float: left;
  list-style: none;
}

.social-icons li a {
  float: left;
  font-size: 16px;
  text-align: center;
  margin: 0 4px 4px 0;
  border-radius: 4px;
  border: 0;
  background: 0 0;
  color: #333;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dark .social-icons li a {
  color: #fff;
}

.social-icons.social-icons-colored a,
.social-icons.social-icons-colored-hover a:hover {
  color: #fff !important;
  border: 0;
}

.social-icons.social-icons-colored .social-rss a,
.social-icons.social-icons-colored-hover .social-rss a:hover,
.social-icons.social-icons-colored .social-snapchat a,
.social-icons.social-icons-colored-hover .social-snapchat a:hover {
  background-color: #faa33d;
}

.social-icons.social-icons-colored .social-facebook a,
.social-icons.social-icons-colored-hover .social-facebook a:hover {
  background-color: #5d82d1;
}

.social-icons.social-icons-colored .social-twitter a,
.social-icons.social-icons-colored-hover .social-twitter a:hover {
  background-color: #40bff5;
}

.social-icons.social-icons-colored .social-vimeo a,
.social-icons.social-icons-colored-hover .social-vimeo a:hover {
  background-color: #35c6ea;
}

.social-icons.social-icons-colored .social-myspace a,
.social-icons.social-icons-colored-hover .social-myspace a:hover {
  background-color: #008dde;
}

.social-icons.social-icons-colored .social-youtube a,
.social-icons.social-icons-colored-hover .social-youtube a:hover {
  background-color: #ef4e41;
}

.social-icons.social-icons-colored .social-instagram a,
.social-icons.social-icons-colored-hover .social-instagram a:hover {
  background-color: #e53d00;
}

.social-icons.social-icons-colored .social-gplus a,
.social-icons.social-icons-colored-hover .social-gplus a:hover {
  background-color: #d68400;
}

.social-icons.social-icons-colored .social-stumbleupon a,
.social-icons.social-icons-colored-hover .social-stumbleupon a:hover {
  background-color: #ff5c30;
}

.social-icons.social-icons-colored .social-lastfm a,
.social-icons.social-icons-colored-hover .social-lastfm a:hover {
  background-color: #f34320;
}

.social-icons.social-icons-colored .social-pinterest a,
.social-icons.social-icons-colored-hover .social-pinterest a:hover {
  background-color: #e13138;
}

.social-icons.social-icons-colored .social-google a,
.social-icons.social-icons-colored-hover .social-google a:hover {
  background-color: #eb5e4c;
}

.social-icons.social-icons-colored .social-evernote a,
.social-icons.social-icons-colored-hover .social-evernote a:hover {
  background-color: #9acf4f;
}

.social-icons.social-icons-colored .social-dribbble a,
.social-icons.social-icons-colored-hover .social-dribbble a:hover {
  background-color: #f7659c;
}

.social-icons.social-icons-colored .social-skype a,
.social-icons.social-icons-colored-hover .social-skype a:hover {
  background-color: #13c1f3;
}

.social-icons.social-icons-colored .social-forrst a,
.social-icons.social-icons-colored-hover .social-forrst a:hover {
  background-color: #45ad76;
}

.social-icons.social-icons-colored .social-linkedin a,
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
  background-color: #238cc8;
}

.social-icons.social-icons-colored .social-wordpress a,
.social-icons.social-icons-colored-hover .social-wordpress a:hover {
  background-color: #2592c3;
}

.social-icons.social-icons-colored .social-grooveshark a,
.social-icons.social-icons-colored-hover .social-grooveshark a:hover {
  background-color: #ffb21d;
}

.social-icons.social-icons-colored .social-delicious a,
.social-icons.social-icons-colored-hover .social-delicious a:hover {
  background-color: #377bda;
}

.social-icons.social-icons-colored .social-behance a,
.social-icons.social-icons-colored-hover .social-behance a:hover {
  background-color: #1879fd;
}

.social-icons.social-icons-colored .social-dropbox a,
.social-icons.social-icons-colored-hover .social-dropbox a:hover {
  background-color: #17a3eb;
}

.social-icons.social-icons-colored .social-soundcloud a,
.social-icons.social-icons-colored-hover .social-soundcloud a:hover {
  background-color: #ff7e30;
}

.social-icons.social-icons-colored .social-deviantart a,
.social-icons.social-icons-colored-hover .social-deviantart a:hover {
  background-color: #6a8a7b;
}

.social-icons.social-icons-colored .social-yahoo a,
.social-icons.social-icons-colored-hover .social-yahoo a:hover {
  background-color: #ab47ac;
}

.social-icons.social-icons-colored .social-flickr a,
.social-icons.social-icons-colored-hover .social-flickr a:hover {
  background-color: #ff48a3;
}

.social-icons.social-icons-colored .social-digg a,
.social-icons.social-icons-colored-hover .social-digg a:hover {
  background-color: #75788d;
}

.social-icons.social-icons-colored .social-blogger a,
.social-icons.social-icons-colored-hover .social-blogger a:hover {
  background-color: #ff9233;
}

.social-icons.social-icons-colored .social-tumblr a,
.social-icons.social-icons-colored-hover .social-tumblr a:hover {
  background-color: #426d9b;
}

.social-icons.social-icons-colored .social-quora a,
.social-icons.social-icons-colored-hover .social-quora a:hover {
  background-color: #ea3d23;
}

.social-icons.social-icons-colored .social-github a,
.social-icons.social-icons-colored-hover .social-github a:hover {
  background-color: #3f91cb;
}

.social-icons.social-icons-colored .social-amazon a,
.social-icons.social-icons-colored-hover .social-amazon a:hover {
  background-color: #ff8e2e;
}

.social-icons.social-icons-colored .social-xing a,
.social-icons.social-icons-colored-hover .social-xing a:hover {
  background-color: #1a8e8c;
}

.social-icons.social-icons-colored .social-wikipedia a,
.social-icons.social-icons-colored-hover .social-wikipedia a:hover {
  background-color: #b3b5b8;
}

.social-icons.social-icons-border li a {
  border: 1px solid #d7d7d7;
  background: 0 0;
  color: #333;
}

.dark .social-icons.social-icons-border li a {
  border: 1px solid #333 !important;
}

.dark .social-icons li a .social-icons.social-icons-dark li a {
  background: #888;
  color: #fff;
}

.social-icons.social-icons-light li a {
  background: #fff;
  color: #333;
  border: 1px solid #ececec;
}

.social-icons.social-icons-rounded li a {
  border-radius: 50%;
}

.social-icons.social-icons-square li a {
  border-radius: 0;
}

.social-icons.social-icons-xs li a {
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 12px;
}

.social-icons.social-icons-sm li a {
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 13px;
}

.social-icons.social-icons-md li a {
  height: 38px;
  width: 38px;
  line-height: 38px;
  font-size: 16px;
}

.social-icons.social-icons-lg li a {
  height: 42px;
  width: 42px;
  line-height: 42px;
  font-size: 18px;
}

.social-icons.social-icons-xl li a {
  height: 48px;
  width: 48px;
  line-height: 48px;
  font-size: 18px;
}

.dark .social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
  background-color: #1f1f1f;
}

.social-icons li:hover i {
  animation: toTopFromBottom 0.2s forwards;
}

/*Map*/
.leaflet-map {
  height: 350px;
  width: 83%;
  margin: 0 auto;
}

/*table*/
table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
  vertical-align: middle;
}
table td, table th {
  padding: 10px 20px;
  border: 1px solid #ececec;
  vertical-align: middle;
}
table thead > tr > th {
  vertical-align: middle;
  border-bottom: 0;
}
table p {
  margin-bottom: 0;
}
table.clean td, table.clean th {
  border: 0;
  border-top: 1px solid #ececec;
}
table .product-thumbnail img {
  max-width: 80px;
}

/*divider*/
.divider {
  position: relative;
  overflow: hidden;
  height: 4px;
  z-index: 9;
}
.divider.center_icon {
  text-align: center;
  height: auto;
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0px;
  height: 0;
  border-top: 1px solid #ececec;
  transform: translateY(-50%);
}
.divider::before {
  margin-top: -1px;
}
.divider::after {
  margin-top: 1px;
}
.divider i {
  background-color: #fff;
  color: #aaa;
  position: relative;
  z-index: 1;
  font-size: 20px;
  padding: 0 20px;
  line-height: 1;
}

.divider-2 {
  width: 100%;
  height: 1px;
  background-color: #ececec;
}

.bg-square {
  position: absolute;
  left: auto;
  top: 150px;
  right: 0%;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-height: 70%;
  max-width: 45%;
  min-width: 300px;
  background-color: #f3fbf5;
  z-index: -1;
  max-height: 1200px;
}

.mobile-promotion {
  display: none;
}

.bg-green {
  background-color: #cee8e0;
}

/*modal*/
.custom-modal .modal-dialog {
  max-width: 888px !important;
  border-radius: 0px;
  overflow: hidden;
  border: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%) !important;
}
.custom-modal .modal-dialog .modal-content {
  border-radius: 25px;
  padding: 40px;
  border: 1px solid #0f2041;
}
.custom-modal .modal-dialog .btn-close {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
}

.zoomContainer, .zoomWindow {
  z-index: 9999;
}

.single-product .zoomContainer, .single-product .zoomWindow {
  z-index: 99;
}

/*COMPONENTS -> BANNERS*/
.banner-left-icon {
  position: relative;
  background: #F4F6FA;
  padding: 20px;
  border-radius: 10px;
}
.banner-left-icon:hover .banner-icon {
  transform: translateY(-5px);
  transition-duration: 0.3s;
}
.banner-left-icon .banner-icon {
  max-width: 60px;
  margin-right: 20px;
  transition-duration: 0.3s;
}
.banner-left-icon .banner-text h3 {
  color: #242424;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.banner-left-icon .banner-text p {
  margin-bottom: 0;
  color: #adadad;
}
.banner-left-icon.style-2 {
  position: relative;
  border: 1px solid #ececec;
  padding: 20px;
}

.banner-img {
  position: relative;
  clear: both;
  border-radius: 10px;
  overflow: hidden;
  height: 257px;
}

.banner-img img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    height: 257px;
}

.item-right-side img {
    height: 200px;
    object-fit: contain;
}

.left-side-banner img {
    height: 200px;
    object-fit: contain;
}

.main-banner-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1 !important;
  position: absolute;
  top: 0;
  background: rgb(255 255 255 / 0%);
}
.main-banner-img img {
  height: 250px;
  position: relative;
}
.main-banner-img  {
  position: relative;
}
.banner-title-limit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; 
  -webkit-box-orient: vertical;
}
.banner-img:hover img {
  opacity: 0.9;
}
.banner-img.banner-1 .banner-text {
  top: 30%;
}
.banner-img.banner-1.home-3 {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  max-height: 348px;
}
.banner-img.banner-2 .banner-text {
  right: 10px;
}
.banner-img .banner-text {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  padding: 0 30px;
}
.banner-img .banner-text span {
  color: #adadad;
}
.banner-img .banner-text h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-shadow: 2px 1px 5px #bbbbbb;
  width: 70%;
}
.banner-img .banner-text:hover h4 {
  transform: translateY(-5px);
}
.banner-img .banner-text a i {
  margin-left: 5px;
  transition-duration: 0.3s;
  font-size: 10px;
}
.banner-img .banner-text a:hover i {
  margin-left: 10px;
  transition-duration: 0.3s;
}
.banner-img.style-2 {
  border-radius: 15px;
  overflow: hidden;
  height: 500px;
  background-size: cover;
  width: 100%;
}
.placeholder-deals-best-sell{
  margin-top: 10px;
  margin-right: 10px;
}
.banner-img.style-2 .banner-text {
  top: 50px;
  transform: none;
}
.banner-img.style-3 {
  border-radius: 15px;
  overflow: hidden;
  height: 538px;
  background: url(../imgs/banner/banner-11.png) no-repeat center bottom;
  background-size: cover;
  width: 100%;
}
.banner-img.style-3 .banner-text {
  top: 50px;
  transform: none;
}
.banner-img.style-5 .banner-text {
  right: 0;
  padding: 0 30px;
  gap: 10px;
}
.banner-img.style-6 .banner-text {
  right: 0;
  padding: 0 20px 0 0;
}
.banner-img.style-6 .banner-text h6 {
  font-size: 16px;
}

.banner-big .btn {
  background: var(--btn-color) !important;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  padding: 10px 22px;
  border: 0;
}
.banner-big .btn:hover {
  background: #0f2041 !important;
}

/*Deal banners*/
.deal {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  background-color: #fff;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 420px;
}
.deal > div {
  width: 100%;
}
.deal h2 {
  color: #FD6E6E;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.deal h5 {
  color: #242424;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 20px;
  max-width: 240px;
}
.deal .deal-content {
  align-self: center;
}
.deal .product-title {
  max-width: 57%;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1.23;
}
.deal .product-title a {
  color: #253D4E;
}
.deal .btn {
  background: var(--btn-color);
  border: 0;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  padding: 10px 24px;
}
.deal .btn i {
  margin-left: 5px;
  transition-duration: 0.3s;
  font-size: 12px;
}
.deal .btn:hover i {
  margin-left: 10px;
  transition-duration: 0.3s;
}
.deal .deal-bottom {
  align-self: flex-end;
}
.deal .deal-bottom .deals-countdown {
  margin-left: -12px;
  margin-bottom: 20px;
}
.deal .deal-bottom .deals-countdown .countdown-section {
  border: 2px solid var(--btn-color);
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}

.banner-bg {
  background-position: center;
  background-size: cover;
  padding: 50px;
}

.banner-features {
  text-align: center;
  padding: 25px 15px;
  border-radius: 4px;
  border: 1px solid #ececec;
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}
.banner-features:hover {
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.05);
}
.banner-features img {
  display: inline-block;
  margin-bottom: 15px;
}
.banner-features h4 {
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: var(--btn-color);
}

/*Page > About*/
.hero-2 {
  padding: 160px 0 100px;
  min-height: 640px;
}

.hero-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: content;
  flex-direction: column;
  background: url(../imgs/page/home-6-bg.jpg) no-repeat center center;
  background-size: cover;
  height: 330px;
}
.hero-3 form {
  background-color: #fff;
  max-width: 520px;
  border-radius: 50px;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}
.hero-3 form input {
  border: 0;
  border-radius: 50px 0 0 50px;
  padding-left: 58px;
  background: url(../imgs/theme/icons/icon-search.png) no-repeat 25px center;
}
.hero-3 form button {
  border: 0;
  border-radius: 50px;
}
.hero-3 .nav-link {
  font-size: 14px !important;
}

.parallax-wrapper {
  position: absolute;
  z-index: 3;
  width: 100%;
}
.parallax-wrapper .parallax-img-area {
  display: flex;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.parallax-wrapper .parallax-img-area .parallax-img {
  position: absolute;
  z-index: 2;
  text-align: right;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-1 {
  right: 0;
  width: 52%;
  z-index: 2;
  top: 100px;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-2 {
  right: 220px;
  width: 52%;
  top: 40px;
  z-index: 3;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-3 {
  opacity: 0.1 !important;
  left: -210px;
  width: 320px;
  top: 193px;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-4 {
  opacity: 0.08 !important;
  width: 180px;
  left: 50%;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-5 {
  right: 0;
  width: 12%;
  z-index: 2;
  opacity: 0.3;
  bottom: 20%;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-6 {
  width: 25%;
  z-index: 3;
  opacity: 0.2;
  bottom: 0;
  left: -150px;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-7 {
  opacity: 0.2 !important;
  width: 16%;
  top: 10%;
  left: 10%;
}
.parallax-wrapper .parallax-img-area .parallax-img.img-8 {
  opacity: 0.2 !important;
  width: 10%;
  bottom: 40%;
  left: 50%;
}

.hero-content {
  position: absolute;
  z-index: 4;
  width: 100%;
}
.hero-content h1 {
  line-height: 1.1;
}

.about-count {
  z-index: 100;
  position: relative;
  color: #fff;
  background: url(../imgs/page/about-9.png) no-repeat center center;
  border-radius: 15px;
  padding: 100px 0;
  overflow: hidden;
}
.about-count::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #4B675A;
  z-index: 2;
  opacity: 0.8;
}
.about-count h1 {
  font-size: 72px;
  color: #fff;
}
.about-count h4 {
  color: #fff;
}
.about-count .text-center {
  z-index: 3;
  position: relative;
}

.hero-card-icon {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.hero-card-icon.icon-left {
  width: 165px;
  align-items: start;
}

.single-content > ol {
  list-style-type: decimal;
  margin-bottom: 30px;
  padding-left: 1em;
}
.single-content > ol li:not(:last-child) {
  margin-bottom: 16px;
}
.single-content > ol ol {
  list-style-type: lower-alpha;
  margin: 20px 0 30px;
  padding-left: 25px;
}
.single-content > ol ol ol {
  list-style-type: lower-roman;
}

/*page 404*/
.page-404 {
  background-color: #fff;
}
.page-404 img {
  max-width: 300px;
}
.page-404 img.logo {
  max-width: 150px;
}
.page-404 .search-form {
  max-width: 400px;
  margin: 0 auto;
}

/*SHOP*/
.product-cart-wrap {
  position: relative;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
}
.product-cart-wrap:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--btn-color);
  transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
}
.product-cart-wrap .product-img-action-wrap {
  position: relative;
  background-color: #fff;
  overflow: hidden;
  max-height: 320px;
  padding: 25px 25px 0 25px;
}
.product-cart-wrap .product-img-action-wrap .product-action-1 {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 1px 4px 5px #ddd;
  padding: 0px 10px;
}
.product-cart-wrap .product-img-action-wrap .product-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #f3f3f3;
}
.product-cart-wrap .product-img-action-wrap .product-img a {
  overflow: hidden;
  display: flex;
}
.product-cart-wrap .product-img-action-wrap .product-img a img {
  width: 100%;
}
.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  opacity: 0;
  background-color: #fff;
  visibility: hidden;
  transition: 0.25s opacity, 0.25s visibility, transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
  transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}
.product-cart-wrap .product-action-1 {
  position: absolute;
  left: 50%;
  top: 90%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  z-index: 9;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}
.product-cart-wrap .product-action-1.show {
  visibility: visible;
  opacity: 1;
  bottom: 26px;
  left: unset;
  right: 20px;
  top: unset;
  transform: none;
}
.product-cart-wrap .product-action-1 button, .product-cart-wrap .product-action-1 a.action-btn {
  width: 30px;
  height: 34px;
  line-height: 40px;
  text-align: center;
  position: relative;
  display: inline-block;  
}
.product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
  border: none;
}
.product-cart-wrap .product-action-1 button.small, .product-cart-wrap .product-action-1 a.action-btn.small {
  width: 32px;
  height: 32px;
  line-height: 42px;
}
.product-cart-wrap .product-action-1 button.small i, .product-cart-wrap .product-action-1 a.action-btn.small i {
  font-size: 16px;
}
.product-cart-wrap .product-action-1 button:after, .product-cart-wrap .product-action-1 a.action-btn:after {
  bottom: 100%;
  left: 50%;
  position: absolute;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 11px;
  padding: 7px 10px;
  color: #ffffff;
  background-color: var(--btn-color);
  content: attr(aria-label);
  line-height: 1.3;
  transition-delay: 0.1s;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0px);
}
.product-cart-wrap .product-action-1 button:before, .product-cart-wrap .product-action-1 a.action-btn:before {
  content: "";
  position: absolute;
  left: calc(50% - 7px);
  bottom: 100%;
  transition-delay: 0.1s;
  border: 7px solid transparent;
  border-top-color: var(--btn-color);
  z-index: 9;
  margin-bottom: -13px;
  transition-delay: 0.1s;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  opacity: 0;
  visibility: hidden;
}
.product-cart-wrap .product-action-1 button:last-child, .product-cart-wrap .product-action-1 a.action-btn:last-child {
  margin-right: 0;
}
.product-cart-wrap .product-action-1 button i, .product-cart-wrap .product-action-1 a.action-btn i {
  font-size: 15px;
  margin-left: 1px;
}
.product-cart-wrap .product-action-1 button:hover, .product-cart-wrap .product-action-1 a.action-btn:hover {
  color: #0f2041;
}
.product-cart-wrap .product-action-1 button:hover:after, .product-cart-wrap .product-action-1 a.action-btn:hover:after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}
.product-cart-wrap .product-action-1 button:hover:before, .product-cart-wrap .product-action-1 a.action-btn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-8px);
}
.product-cart-wrap .product-action-1 button:hover i, .product-cart-wrap .product-action-1 a.action-btn:hover i {
  color: var(--btn-color);
  font-weight: 500;
}
.product-cart-wrap .product-badges {
  display: flex;
}
.product-cart-wrap .product-badges.product-badges-mrg {
  margin: 0 0 10px;
}
.product-cart-wrap .product-badges.product-badges-position {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 9;
  font-weight: 500;
}
.product-cart-wrap .product-badges span {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  border-radius: 15px 0 20px 0;
  color: #fff;
  padding: 9px 20px 10px 20px;
}
.product-cart-wrap .product-badges span:last-child {
  margin-right: 0px;
}
.product-cart-wrap .product-badges span.hot {
  background-color: var(--btn-color);
}
.product-cart-wrap .product-badges span.new {
  background-color: #0f2041;
}
.product-cart-wrap .product-badges span.sale {
  background-color: #0f2041;
}
.product-cart-wrap .product-badges span.best {
  background-color: var(--btn-color);
}
.product-cart-wrap .product-content-wrap {
  padding: 0 15px 15px 15px;
}
.product-cart-wrap .product-content-wrap .product-category {
  margin-bottom: 5px;
  margin-top: 10px;
}
.product-cart-wrap .product-content-wrap .product-category a {
  color: #454c5a;
  font-size: 12px;
  font-weight: 500;
}
.product-cart-wrap .product-content-wrap .product-category a:hover {
  color: var(--btn-color);
}
.product-cart-wrap .product-content-wrap h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.product-cart-wrap .product-content-wrap h2 a {
  color: #253D4E;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-cart-wrap .product-content-wrap h2 a:hover {
  color: var(--btn-color);
}
.product-cart-wrap .product-content-wrap .product-price {
  padding-top: 5px;
  position: relative;
}
.product-cart-wrap .product-content-wrap .product-price span {
  font-size: 18px;
  font-weight: bold;
  color: var(--btn-color);
}
.product-cart-wrap .product-content-wrap .product-price span.new-price {
  color: var(--btn-color);
}
.product-cart-wrap .product-content-wrap .product-price span.old-price {
  font-size: 14px;
  color: #adadad;
  margin: 0 0 0 7px;
  text-decoration: line-through;
  position: absolute;
}
.product-cart-wrap .product-content-wrap .rating-result {
  display: flex;
}
.product-cart-wrap .product-content-wrap .rating-result > span {
  display: block;
  overflow: hidden;
  margin-left: 5px;
}
.product-cart-wrap .product-content-wrap .rating-result::before {
  font-family: "uicons-regular-straight" !important;
  font-size: 11px;
  letter-spacing: 2px;
  content: "\f225" "\f225" "\f225" "\f225" "\f225";
  color: #ff9900;
}
.product-cart-wrap .product-content-wrap .add-to-cart {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 5px;
  background-color: #f5f5f5;
  text-align: center;
  display: block;
  color: #253D4E;
  font-size: 16px;
  position: absolute;
  bottom: 25px;
  right: 20px;
  font-weight: 300;
}
.product-cart-wrap .product-content-wrap .add-to-cart:hover {
  background-color: var(--btn-color);
  color: #fff;
}
.product-cart-wrap .product-content-wrap .add-to-cart img {
  width: 20px;
  display: inline-block;
  margin-top: 11px;
}
.product-cart-wrap .product-card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 5px;
}
.product-cart-wrap .product-card-bottom .add-cart {
  cursor: pointer;
}
.product-cart-wrap .product-card-bottom .add-cart .add {
  position: relative;
  display: inline-block;
  padding: 6px 20px 6px 20px;
  border-radius: 4px;
  background-color: var(--btn-color);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.product-cart-wrap .product-card-bottom .add-cart .add:hover {
  background-color: #0F2041;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.product-cart-wrap .product-stock .status-bar {
  background-color: #ededed;
  margin: 0px 0 10px;
  border-radius: 5px;
}
.product-cart-wrap .product-stock .status-bar .sold-bar {
  background-image: linear-gradient(235deg, var(--btn-color) 0%, #77ccfd 100%);
  border-radius: 4px;
  height: 8px;
}
.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-33 {
  width: 33.3333333333%;
}
.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-10 {
  width: 10%;
}
.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-40 {
  width: 40%;
}
.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-6 {
  width: 6.6666666667%;
}
.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-42 {
  width: 42.8571428571%;
}
.product-cart-wrap .product-stock .product-stock-status {
  display: flex;
  flex-wrap: wrap;
}
.product-cart-wrap .product-stock .product-stock-status .sold {
  flex-grow: 1;
  margin-right: 20px;
}
.product-cart-wrap .product-stock .product-stock-status .available {
  flex-shrink: 0;
}
.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span {
  font-size: 15px;
}
.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.label {
  color: #253D4E;
}
.product-cart-wrap .product-stock .product-stock-status .stock-status-same-style span.value {
  font-weight: 700;
  color: #333;
}
.product-cart-wrap .progress {
  height: 5px;
}
.product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {
  opacity: 1;
  visibility: visible;
}
.product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
  opacity: 1;
  visibility: visible;
}
.product-cart-wrap:hover .product-img-zoom a img {
  transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}
.product-cart-wrap.small {
  border: 0;
  text-align: center;
}
.product-cart-wrap.small .rating-result {
  justify-content: center;
}
.product-cart-wrap.small .product-content-wrap {
  padding: 5px 15px 0 15px;
}
.product-cart-wrap.small .product-price {
  padding-top: 0;
}
.product-cart-wrap.small:hover {
  box-shadow: none;
}
.product-cart-wrap.small h2 {
  border-bottom: 0;
  padding: 0;
  margin-bottom: 0;
}
.product-cart-wrap.small .product-badges span {
  font-size: 10px;
}
.product-cart-wrap.style-2 {
  border: 0;
  padding-bottom: 25px;
}
.product-cart-wrap.style-2:hover {
  border: 0;
  box-shadow: none;
}
.product-cart-wrap.style-2 .product-img-action-wrap {
  padding: 0;
  position: relative;
  z-index: 1;
  max-height: unset;
}
.product-cart-wrap.style-2 .product-img-action-wrap img {
  border-radius: 15px;
}
.product-cart-wrap.style-2 .product-content-wrap {
  position: relative;
  margin-top: -90px;
  z-index: 3;
  padding: 0;
  max-width: 86%;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}
.product-cart-wrap.style-2 .product-content-wrap .deals-content {
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 15px;
}
.product-cart-wrap.style-2 .product-content-wrap .deals-countdown-wrap {
  position: absolute;
  top: -80px;
  width: 100%;
  text-align: center;
}
.product-cart-wrap.style-2:hover .product-content-wrap {
  transform: translateY(-5px);
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
}

.product-price {
  font-family: "Albert Sans", sans-serif;
}

.product-list-small article:not(:last-child) {
  margin-bottom: 20px;
}

.product-list-small h6 a {
  color: #253D4E;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-list-small h6 a:hover {
  color: var(--btn-color);
}
.product-list-small figure img {
  border-radius: 10px;
}
.product-list-small .product-price {
  color: var(--btn-color);
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}
.product-list-small .product-price span.old-price {
  font-size: 14px;
  color: #adadad;
  margin: 0 0 0 7px;
  text-decoration: line-through;
}

.range .list-group-item {
  position: relative;
  display: block;
  padding: 0;
  background: none;
  border: 0;
}
.range .checkbox {
  font-size: 0.8em;
}
.range .price-filter {
  display: block;
  margin-top: 20px;
}
.range #slider-range {
  box-shadow: none;
  border: none;
  height: 4px;
  border-radius: 0px;
  background: var(--btn-color);
  color: var(--btn-color);
}
.range #slider-range .ui-slider-range {
  box-shadow: none;
  background: #222;
  border-radius: 0px;
  border: none;
}
.range .ui-slider-handle.ui-state-default.ui-corner-all {
  width: 14px;
  height: 14px;
  line-height: 10px;
  background: var(--btn-color);
  border: none;
  border-radius: 100%;
  top: -5px;
}
.range .label-input {
  margin-top: 15px;
}
.range .label-input span {
  margin-right: 5px;
  color: #282828;
}
.range .label-input input {
  border: none;
  margin: 0;
  height: unset;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
  padding-left: 0;
}
.range .check-box-list {
  margin-top: 15px;
}
.range .check-box-list li {
  margin-bottom: 5px;
}
.range .check-box-list li:last-child {
  margin: 0;
}
.range .check-box-list li label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
}
.range .check-box-list li label input {
  display: inline-block;
  margin-right: 6px;
  position: relative;
  top: 1px;
}
.range .check-box-list .count {
  margin-left: 5px;
  color: #666;
}

.btn.btn-small {
  line-height: 1;
  padding: 10px 15px;
  min-width: unset;
  display: table;
  border-radius: 3px;
}

.product-sidebar .single-post {
  position: relative;
}
.product-sidebar .single-post:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
  padding-bottom: 10px;
}
.product-sidebar .single-post .content {
  padding-left: 95px;
}
.product-sidebar .single-post i {
  font-size: 12px;
}
.product-sidebar .image {
  height: 80px;
  width: 80px;
  float: left;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 5px;
}

.shop-product-fillter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
}
.shop-product-fillter.style-2 {
  padding-bottom: 20px;
  border-bottom: 1px solid #ececec;
}
.shop-product-fillter .sort-by-product-area {
  position: relative;
  display: flex;
}
.shop-product-fillter .sort-by-product-area .sort-by-cover {
  position: relative;
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #f7f8f9;
  color: #777;
  padding: 9px 16px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  border: 1px solid #ececec;
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by {
  margin-right: 5px;
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by i {
  margin-right: 10px;
  font-size: 14px;
  color: #ababab;
  position: relative;
  top: 2px;
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by span {
  font-size: 13px;
  font-weight: 500;
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span {
  font-size: 13px;
  font-weight: 500;
  color: #7E7E7E;
}
.shop-product-fillter .sort-by-product-area .sort-by-product-wrap .sort-by-dropdown-wrap span i {
  font-size: 15px;
  color: #7E7E7E;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.sort-by-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  right: 0;
  padding: 16px 0 21px;
  background: #fff;
  border: 0;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  min-width: 100%;
  box-shadow: 0 -3px 23px rgba(0, 0, 0, 0.06);
  color: #7E7E7E;
  font-weight: 500;
}
.sort-by-dropdown.show {
  opacity: 1;
  visibility: visible;
}
.sort-by-dropdown ul li {
  display: block;
}
.sort-by-dropdown ul li a {
  font-weight: 500;
  font-size: 13px;
  padding: 5px 30px;
  display: block;
  position: relative;
  color: #7E7E7E;
}
.sort-by-dropdown ul li a.active::before {
  content: "\f143";
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 12px;
  color: var(--btn-color);
  font-family: "uicons-regular-straight" !important;
  font-weight: 900;
}
.sort-by-dropdown ul li a.active:hover::before {
  color: #fff;
}
.sort-by-dropdown ul li a:hover {
  background-color: var(--btn-color);
  color: #ffffff;
}

/*Product list*/
.product-list {
  position: relative;
}
.product-list .product-cart-wrap {
  border: 0;
  border-radius: 0;
  overflow: unset;
  display: flex;
  align-content: center;
  align-items: center;
}
.product-list .product-cart-wrap:not(:last-child) {
  margin-bottom: 30px;
}
.product-list .product-cart-wrap:hover {
  box-shadow: none;
}
.product-list .product-cart-wrap:hover .product-img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.product-list .product-cart-wrap .product-badges.product-badges-position {
  left: 0;
  top: 0;
}
.product-list .product-cart-wrap .product-img-action-wrap {
  max-width: 28%;
  position: relative;
  padding: 0;
  max-height: unset;
}
.product-list .product-cart-wrap .product-img-action-wrap .product-img {
  border: 1px solid #ececec;
  border-radius: 15px;
}
.product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner {
  overflow: hidden;
  padding: 10px;
}
.product-list .product-cart-wrap .product-img-action-wrap .product-img .product-img-inner a img {
  height: auto;
}
.product-list .product-cart-wrap h2 {
  font-size: 32px;
}
.product-list .product-cart-wrap .product-content-wrap .product-category a {
  font-size: 16px;
  margin-top: 15px;
  display: block;
}
.product-list .product-cart-wrap .product-content-wrap .product-price span {
  font-size: 32px;
}
.product-list .product-cart-wrap .product-content-wrap .product-price span.old-price {
  font-size: 20px;
}
.product-list .product-cart-wrap .product-content-wrap .product-action-1 {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: unset;
  padding: 0 20px;
  margin-top: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.product-list .product-cart-wrap .product-content-wrap .product-action-1 a.action-btn {
  border: none;
  width: auto;
  border-radius: 50px;
  background-color: var(--btn-color);
  color: #fff;
  text-align: center;
  margin-right: 0;
  position: relative;
  display: inline-block;
  padding: 0px 23px;
  height: 44px;
  font-weight: 500;
}
.product-list .product-cart-wrap .product-content-wrap .product-action-1 a.action-btn i {
  margin-right: 8px;
  color: #fff;
}

/*PRODUCT DETAILS*/
.detail-gallery {
  position: relative;
}

.detail-gallery .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 22px;
  opacity: 0.6;
}

.slider-nav-thumbnails .slick-list {
  margin: 0 -10px;
}

.slider-nav-thumbnails .slick-slide {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.slider-nav-thumbnails .slick-slide img {
  border-radius: 10px;
  padding: 5px;
  height: 100px;
  width: 100px;
  object-fit: cover;
}


.slider-nav-thumbnails .slick-slide.slick-current::before {
  border-bottom: 5px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  top: -6px;
  width: 0;
}

.slider-nav-thumbnails div.slick-slide {
  margin: 0 10px;
}

.slider-nav-thumbnails button {
  opacity: 0;
}

.slider-nav-thumbnails button.slick-arrow {
  margin: 0;
  border: 0;
  background: #F2F3F4;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  line-height: 44px;
  font-size: 24px;
  z-index: 9;
  color: #7E7E7E;
}

.slider-nav-thumbnails button.slick-arrow:hover {
  color: #fff;
  background-color: var(--btn-color);
}

.slider-nav-thumbnails button.slick-arrow.slick-prev {
  left: -20px;
}

.slider-nav-thumbnails button.slick-arrow.slick-next {
  right: -20px;
}
.slider-nav-thumbnails:hover button {
  opacity: 1;
}

.slider-nav-thumbnails .slick-prev,
.slider-nav-thumbnails .slick-next {
  font-size: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.product-rate {
  background-image: url("../imgs/theme/rating-stars.png");
  background-position: 0 -12px;
  background-repeat: repeat-x;
  height: 12px;
  width: 60px;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.product-rating {
  height: 12px;
  background-repeat: repeat-x;
  background-image: url("../imgs/theme/rating-stars.png");
  background-position: 0 0;
}

.list-filter {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-filter li {
  display: inline-block;
}

.list-filter li a {
  color: #555;
  display: block;
  min-width: 30px;
  text-align: center;
  position: relative;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}

.color-filter.list-filter a span {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 40px;
}

.color-filter.list-filter a span.product-color-white {
  border: 1px solid #ddd;
}
.color-filter.list-filter li.active a::before {
  content: "";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  right: 3px;
  top: -3px;
  background: #4cd964;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.size-filter.list-filter a {
  border-radius: 5px;
  padding: 0 9px;
  background: #fff;
}
.size-filter.list-filter li a {
  color: #7E7E7E;
  height: 32px;
  line-height: 32px;
  min-width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 5px 0px;
}

.size-filter.list-filter li a:hover,
.size-filter.list-filter li.active a {
  color: #fff;
  background-color: var(--btn-color);
  border-color: var(--btn-color);
}

.detail-qty {
  max-width: 80px;
  padding: 9px 20px;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.detail-qty > a {
  font-size: 16px;
  position: absolute;
  right: 8px;
  color: var(--btn-color);
}
.detail-qty > a:hover {
  color: #29A56C;
}
.detail-qty > a.qty-up {
  top: 0;
}
.detail-qty > a.qty-down {
  bottom: -4px;
}

.attr-detail .select-box select {
  height: 40px;
  width: 100%;
}
.attr-detail.attr-brand {
  margin-top: 23px;
}
.attr-detail.attr-brand .select-box {
  display: block;
  margin-bottom: 20px;
}
.attr-detail.attr-color table {
  margin-bottom: 15px;
}

.detail-extralink > div {
  display: inline-block;
  vertical-align: top;
}
.detail-extralink .detail-qty {
  background: #fff;
  border: 2px solid var(--btn-color) !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-color);
  border-radius: 5px;
  max-width: 70px;
}

.stock-status {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: "Albert Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.stock-status.in-stock {
  background: #DEF9EC;
  color: var(--btn-color);
}
.stock-status.out-stock {
  color: #f74b81;
  background: #fde0e9;
}

.detail-info .product-price-cover {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-info .product-price-cover .product-price {
  line-height: 1;
}
.detail-info .product-price {
  display: flex;
  align-items: center;
  margin: 15px 0 30px 0;
}
.detail-info .product-price .current-price {
  font-size: 30px;
  text-decoration: none;
  font-weight: 600;
}
.detail-info .product-price .old-price {
  text-decoration: line-through;
  color: #B6B6B6;
  margin-left: 20px;
  font-size: 20px;
  font-weight: 500;
  display: block;
}
.detail-info .product-price .save-price {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #0f2041;
}
.detail-info .product-meta {
  border-top: 1px solid #ececec;
  padding-top: 15px;
}

.button.button-add-to-cart {
  padding: 8px 40px;
}

.product-extra-link2 a {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #f1f1f1;
  color: #333;
  border-radius: 5px;
  display: inline-block;
  height: 47px;
  line-height: 55px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: 50px;
  margin: 0 5px;
  transition: all 0.5s ease-out 0s;
  -webkit-transition: all 0.5s ease-out 0s;
}
.product-extra-link2 a:hover {
  background-color: var(--btn-color);
  color: #fff;
}
.product-extra-link2 a:hover i {
  opacity: 1;
  color: #0f2041;
}
.product-extra-link2 a i {
  font-size: 18px;
  opacity: 0.6;
}
.product-extra-link2 .button.button-add-to-cart {
  position: relative;
  padding: 0px 20px;
  border-radius: 5px;
  border: 0;
  height: 47px;
  line-height: 47px;
  font-weight: 700;
  font-size: 16px;
  font-family: "Albert Sans", sans-serif;
  display: flex;
  align-items: center;
}
.product-extra-link2 .button.button-add-to-cart i {
  margin-right: 10px;
}

.product-info {
  border: 1px solid #ececec;
  border-radius: 15px;
  padding: 40px 50px;
}

.tab-style3 .nav-tabs .nav-item a.active, .tab-style3 .nav-tabs .nav-item a:hover {
  color: var(--btn-color);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.tab-style3 .nav-tabs li.nav-item a {
  display: block;
  padding: 13px 24px !important;
  text-align: center;
  font-weight: 700;
  font-family: "Albert Sans", sans-serif;
  text-transform: none;
  font-size: 17px;
  border-radius: 30px;
  border: 1px solid #ececec;
  background: #fff;
  color: #7E7E7E;
}

.tab-content.shop_info_tab {
  margin-top: 40px;
}

.tab-pane .comments-area {
  padding-top: 0;
  border: 0;
}

.product-color-red {
  background: #ff596d;
}
.product-color-yellow {
  background: #ffdb33;
}
.product-color-white {
  background: #ffffff;
}
.product-color-orange {
  background: #ffbb51;
}
.product-color-cyan {
  background: #80e6ff;
}
.product-color-green {
  background: #38cf46;
}
.product-color-purple {
  background: #ff8ff8;
}

.detail-gallery .product-image-slider {
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 15px;
  border: 1px solid #ececec;
  overflow: hidden;
}
.detail-gallery .product-image-slider img {
  opacity: 1;
  border-radius: 16px;
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.detail-gallery .product-image-slider.slider-nav-thumbnails {
  background: none;
  border-radius: 0;
}
.detail-gallery .product-image-slider button.slick-arrow {
  background: none;
  border: 0;
  padding: 0;
  font-size: 14px;
}
.detail-gallery .product-image-slider button.slick-arrow i {
  color: #adadad;
}

.mail-to-friend {
  color: #adadad;
  font-size: 12px;
}
.mail-to-friend i {
  margin-right: 5px;
}

.attr-color, .attr-size {
  display: flex;
  align-items: center;
}

.product-detail-rating {
  display: flex;
  align-items: center;
  padding: 15px 0;
  justify-content: space-between;
}

.product-detail .section-title.style-1 {
  font-size: 22px;
}

.product-more-infor {
  padding: 0 0 0px 14px;
}
.product-more-infor li {
  display: flex;
  margin: 0 0 10px;
  position: relative;
}
.product-more-infor li ::before {
  position: absolute;
  left: -14px;
  top: 9px;
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #9b9b9b;
}
.product-more-infor li span {
  flex: 0 0 165px;
  display: inline-block;
}
.product-more-infor li:last-child {
  margin: 0 0 0;
}

.progress + .progress {
  margin-top: 1rem;
}
.progress span {
  line-height: 16px;
  background: #fff;
  padding-right: 10px;
  width: 45px;
}

.progress-bar {
  background-color: var(--btn-color);
}

.shop-filter-toogle {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 30px;
  border: 1px solid #ececec;
  font-size: 17px;
  font-weight: 700;
  font-family: "Albert Sans", sans-serif;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
}
.shop-filter-toogle i {
  margin-left: 5px;
  color: #B6B6B6;
}
.shop-filter-toogle i.angle-down {
  opacity: 0;
  visibility: hidden;
  display: none;
}
.shop-filter-toogle .fi-rs-filter {
  font-size: 14px;
  color: #B6B6B6;
}
.shop-filter-toogle.active i.angle-down {
  opacity: 1;
  visibility: visible;
  display: inline-block;
}
.shop-filter-toogle.active i.angle-up {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.shop-product-fillter-header .card {
  border: 1px solid #ececec;
  border-radius: 20px;
  margin-bottom: 50px;
  padding: 30px 40px;
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}
.shop-product-fillter-header .categor-list li {
  font-size: 12px;
}
.shop-product-fillter-header .categor-list li + li {
  border-top: 1px solid #f7f8f9;
  padding-top: 5px;
  margin-top: 5px;
}
.shop-product-fillter-header .categor-list li a {
  font-size: 14px;
  color: #7E7E7E;
  margin-right: 10px;
}
.shop-product-fillter-header .categor-list li a:hover {
  color: var(--btn-color);
}
.shop-product-fillter-header .color-filter {
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.shop-product-fillter-header .product-rate-cover + .product-rate-cover {
  margin-top: 15px;
}

.shopping-summery table > :not(caption) > * > * {
  padding: 15px 0;
}
.shopping-summery table td, .shopping-summery table th, .shopping-summery table thead {
  border: 0;
}
.shopping-summery table thead th {
  background-color: #ececec;
  padding: 18px 0;
  font-family: "Albert Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #253D4E;
}
.shopping-summery table tbody tr img {
  max-width: 120px;
  border: 1px solid #ececec;
  border-radius: 15px;
}

table.no-border td, table.no-border th, table.no-border thead {
  border: 0;
}

.cart-totals {
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 40px;
}

.order_review {
  border: 1px solid #ececec;
  padding: 30px;
  border-radius: 10px;
}

.toggle_info {
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ececec;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.login_form .panel-body, .coupon_form .panel-body {
  border: 1px solid #ececec;
  padding: 30px;
  margin-top: 30px;
  border-radius: 10px;
}

.payment_option .custome-radio {
  margin-bottom: 10px;
}

.payment_option .custome-radio .form-check-label {
  color: #292b2c;
  font-weight: 600;
}

.custome-radio .form-check-label::before {
  content: "";
  border: 1px solid #908f8f;
  height: 16px;
  width: 16px;
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 8px;
}

.custome-radio input[type=radio] + .form-check-label::after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 3px;
  opacity: 0;
}

.custome-radio input[type=radio]:checked + .form-check-label::after {
  opacity: 1;
  background-color: var(--btn-color);
}

.related-products .product-img-action-wrap {
  padding: 0;
  margin-bottom: 15px;
}

.col-lg-4-5 .product-cart-wrap .product-action-1 a.action-btn {
  width: 25px;
  height: 30px;
}
.col-lg-4-5 .countdown-section .countdown-amount {
  width: 38px;
}

.zoomWindow {
  border-radius: 15px;
  overflow: hidden;
}

.table-wishlist {
  border: 0;
}

.apply-coupon {
  display: flex;
}
.apply-coupon input {
  height: 51px;
  border-radius: 10px 0 0 10px;
  background-image: url("../imgs/theme/icons/coupon.png");
  background-position: 20px center;
  background-repeat: no-repeat;
  padding-left: 50px;
}
.apply-coupon button {
  min-width: 150px;
  height: 51px;
  border-radius: 0 10px 10px 0;
  background-color: #253D4E;
}
.apply-coupon button:hover {
  background-color: var(--btn-color);
}

.order_table table .product-thumbnail img {
  border-radius: 10px;
  border: 1px solid #ececec;
  padding: 5px;
}
.order_table table .w-160 {
  max-width: 160px;
}

.table.table-compare {
  border-radius: 15px;
}
.table.table-compare > :not(caption) > * > * {
  padding: 30px 50px;
}

.row_img img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.mw-200 {
  min-width: 200px;
}

/*BLOG*/
.archive-header {
  background: url(../imgs/blog/header-bg.png) no-repeat center center;
  border-radius: 20px;
  padding: 70px 80px;
  background-size: cover;
}

.tags-list li {
  display: inline-block;
  margin: 0 15px 0 0;
}
.tags-list li a {
  background-color: #fff;
  display: inline-block;
  border-radius: 30px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  border: 1px solid #ececec;
  font-family: "Albert Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.tags-list li a i {
  color: #B6B6B6;
  font-size: 10px;
}
.tags-list li.active a {
  color: #253D4E;
}

.post-list article:not(:last-child) {
  margin-bottom: 20px;
}
.post-list .post-thumb {
  max-width: 221px;
  overflow: hidden;
}
.post-list .post-thumb a {
  margin-bottom: 0;
}
.post-list .post-title {
  font-weight: 500;
}
.post-list .post-title a {
  color: #253D4E;
}

.single-content {
  text-rendering: optimizeLegibility;
  color: #253D4E;
  font-size: 17px;
}
.single-content h1 {
  font-size: 56px;
  line-height: 72px;
  margin-bottom: 32px;
}
.single-content h2 {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 30px;
}
.single-content h3 {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 28px;
}
.single-content h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 26px;
}
.single-content h5 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 24px;
}
.single-content h6 {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.single-content p {
  margin-bottom: 1.2em;
  font-weight: 400;
}
.single-content ul {
  list-style: circle;
  padding-left: 1rem;
  font-size: 1rem;
}
.single-content ul li {
  position: relative;
  margin-bottom: 7px;
}
.single-content ol li {
  font-size: 1rem;
}
.single-content .single-excerpt {
  font-size: 24px;
  line-height: 32px;
}
.single-content p {
  color: #253D4E;
  font-size: 17px;
}
.single-content blockquote {
  background-color: #F4F6FA;
  padding: 40px 60px;
  border-radius: 15px;
  margin: 30px auto;
  font-size: 24px;
  max-width: 80%;
}
.single-content blockquote p {
  font-size: 24px;
  line-height: 32px;
  color: #7E7E7E;
  margin-bottom: 0;
}

.single-header {
  margin-bottom: 30px;
}
.single-header .entry-meta.meta-1 {
  display: flex;
  align-content: center;
  align-self: center;
  align-items: center;
}
.single-header .single-header-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-header .single-header-meta .social-icons ul {
  margin-top: 15px;
}

.single-thumbnail {
  margin-bottom: 30px;
}
.single-thumbnail img {
  border-radius: 15px;
  overflow: hidden;
}

.entry-bottom {
  border-top: 1px solid #ececec;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.entry-bottom .social-icons ul {
  margin-top: 15px;
}
.entry-bottom .social-icons ul img {
  width: 20px;
  opacity: 0.6;
}

.author-bio {
  border-radius: 15px;
  border: 1px solid #ececec;
}
.author-bio .author-image {
  display: flex;
  justify-content: start;
  align-content: center;
  align-items: center;
}
.author-bio .author-image img {
  margin-right: 10px;
}
.author-bio .author-image p {
  font-size: 14px;
}

/*Entry meta*/
.entry-meta {
  line-height: 1;
}
.entry-meta.meta-2 .author-img img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.entry-meta.meta-2 .author-name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 5px;
}
.entry-meta.meta-2 a.btn {
  display: flex;
  align-items: center;
  align-self: center;
}
.entry-meta .author-add {
  font-size: 12px;
}
.entry-meta.meta-1 span {
  margin-right: 10px;
}
.entry-meta.meta-1 a.text-brand {
  display: flex;
  align-items: center;
}
.entry-meta.meta-1 a.text-brand i {
  margin-left: 5px;
}
.entry-meta.meta-0 span {
  padding: 4px 10px 4px 19px;
  font-size: 11px;
  letter-spacing: 0.8px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  position: relative;
  margin-left: -5px;
}
.entry-meta.meta-0 span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: none;
  margin-right: 3px;
  border-radius: 5px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -3px;
  border: 1px solid var(--btn-color);
}
.entry-meta .author-avatar img {
  max-width: 30px;
  margin-right: 5px;
}

span.has-dot {
  position: relative;
  padding-left: 10px;
}
span.has-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #d2d2d2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  display: block;
  left: -2px;
}

h6.post-title {
  font-size: 14px;
}

.post-title a {
  color: #253D4E;
}
.post-title a:hover {
  color: var(--btn-color);
}

.post-thumb {
  overflow: hidden;
  position: relative;
}
.post-thumb.border-radius-5 img {
  border-radius: 5px;
}
.post-thumb a {
  line-height: 1;
}
.post-thumb .entry-meta {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.post-thumb .entry-meta a {
  display: inline-block;
  color: #fff !important;
  background-color: #0f2041;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 35px;
}

/*Loop Grid*/
.loop-grid {
  position: relative;
}
.loop-grid article {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.loop-grid .entry-content {
  padding: 30px;
}
.loop-grid .entry-content-2 {
  padding: 20px 30px;
}
.loop-grid.loop-list {
  position: relative;
}
.loop-grid.loop-list article {
  display: flex;
  align-items: center;
  border: 1px solid #ececec;
  border-radius: 15px;
}
.loop-grid.loop-list article:not(:last-child) {
  margin-bottom: 30px;
}
.loop-grid.loop-list article .post-thumb {
  min-height: 366px;
  min-width: 438px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.img-hover-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 280px;
  overflow: hidden;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.top-right-icon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  z-index: 3;
  color: #fff;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition-duration: 0.4s;
  -ms-transition: all 0.4s ease;
}

.top-left-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  display: inline-block;
  color: #fff !important;
  background-color: #0f2041;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 35px;
}

.entry-meta.meta-1, .entry-meta.meta-2 {
  display: flex;
  justify-content: space-between;
}
.entry-meta.meta-1.meta-3, .entry-meta.meta-2.meta-3 {
  justify-content: start;
}
.entry-meta a.read-more {
  font-size: 12px;
  border-radius: 30px;
  border: 1px solid #abd7ab;
  padding: 10px 15px;
  color: #98ca98;
  font-weight: 600;
  display: inline-block;
}

/** Print **/
@media print {
  .back-top-home {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  .invoice-header, .invoice-top, .invoice-center, .invoice-bottom, .invoice-banner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .invoice-top .col-sm-9, .invoice-top .col-sm-3 {
    width: 50%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .text-end {
    text-align: right !important;
  }
  .invoice-1 {
    padding: 0;
    background: #fff;
  }
  .invoice-1 .invoice-inner {
    background: #f8f8f8;
  }
  .invoice-1 .container {
    padding: 0px;
  }
  .invoice-1 .invoice-info {
    box-shadow: none;
    margin: 0px;
  }
}
.invoice-content .invoice-header-1 {
  text-transform: uppercase;
  font-weight: 700;
}
.invoice-content .invoice-header-2 {
  text-transform: uppercase;
  font-weight: 600;
}
.invoice-content .invoice-title-1 {
  font-size: 18px;
}
.invoice-content .invoice-addr-1 {
  font-size: 15px;
  margin-bottom: 20px;
}
.invoice-content .item-desc-1 {
  text-align: left;
}
.invoice-content .item-desc-1 span {
  display: block;
}
.invoice-content .item-desc-1 small {
  display: block;
}
.invoice-content .important-notes-list-1 {
  font-size: 13px !important;
  padding-left: 15px;
  margin-bottom: 15px;
  list-style: disc;
}
.invoice-content .important-notes-list-1 li {
  margin-bottom: 5px;
}
.invoice-content .bank-transfer-list-1 {
  font-size: 13px !important;
  padding-left: 0px;
}
.invoice-content .important-notes {
  font-size: 12px !important;
}
.invoice-content .invoice-btn-section {
  text-align: center;
  margin-top: 30px;
}
.invoice-content .btn-lg {
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  padding: 0 35px;
  line-height: 50px;
  border-radius: 3px;
  color: #ffffff;
  border: none;
  margin: 3px;
  display: inline-block;
  vertical-align: middle;
  text-transform: capitalize;
  transition: all 0.3s linear;
  z-index: 1;
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
}
.invoice-content .btn-check:focus + .btn,
.invoice-content .btn:focus {
  outline: 0;
  box-shadow: none;
}
.invoice-content .btn-download {
  background: var(--btn-color);
}
.invoice-content .btn-download:after {
  background: #29A56C;
}
.invoice-content .btn-print {
  background: #253D4E;
}
.invoice-content .btn-print:after {
  background: #242424;
}
.invoice-content .invoice-content .invoice-table th:first-child,
.invoice-content .invoice-content .invoice-table td:first-child {
  text-align: left;
}
.invoice-content .btn-custom {
  border: none;
  z-index: 1;
}
.invoice-content .btn-custom img {
  max-height: 14px;
  margin-right: 5px;
}
.invoice-content .btn-custom:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.1), 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.invoice-content .btn-custom:hover {
  color: #fff;
}
.invoice-content .btn-custom:hover:after {
  left: 0;
  width: 100%;
}
.invoice-content .btn-custom:active {
  top: 2px;
}
.invoice-content table thead {
  font-family: "Albert Sans", sans-serif;
  color: #253D4E;
  font-weight: 700;
}
.invoice-content .f-w-600 {
  font-weight: 600;
}
.invoice-content .mobile-social-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
}
.invoice-content .mobile-social-icon h6 {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 0;
}
.invoice-content .mobile-social-icon a {
  text-align: center;
  font-size: 14px;
  margin-right: 5px;
  transition-duration: 0.5s;
  height: 30px;
  width: 30px;
  display: inline-flex;
  background: var(--btn-color);
  border-radius: 30px;
  line-height: 1;
  align-content: center;
  justify-content: center;
}
.invoice-content .mobile-social-icon a img {
  max-width: 16px;
}
.invoice-content .mobile-social-icon a img:hover {
  opacity: 0.8;
}
.invoice-content .mobile-social-icon a:hover {
  transform: translateY(-2px);
  transition-duration: 0.5s;
  margin-top: -2px;
}
.invoice-content .mobile-social-icon a:last-child {
  margin-right: 0;
}

/** Invoice 1 **/
.invoice {
  padding: 50px 0;
  background: #F2F3F4;
}
.invoice .invoice-info {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 20px 20px 54px rgba(0, 0, 0, 0.03);
}
.invoice .invoice-inner {
  max-width: 1296px;
  margin: 0 auto;
}
.invoice .item-desc-1 small {
  font-size: 14px;
}
.invoice .item-desc-1 span {
  font-size: 14px;
  font-weight: 600;
}
.invoice .invoice-header {
  padding: 80px 150px;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.invoice .table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgb(255 255 255 / 5%);
  color: var(--bs-table-striped-color);
}
.invoice .invoice-top {
  padding: 40px 150px 25px 150px;
  font-size: 15px;
  border-bottom: 1px solid #ececec;
  margin-bottom: 50px;
}
.invoice .invoice-center {
  padding: 0 150px 40px;
}
.invoice .invoice-center .table {
  margin-bottom: 0;
}
.invoice .table-section {
  text-align: center;
}
.invoice .table > :not(caption) > * > * {
  padding: 15px 20px;
}
.invoice .table td {
  font-size: 15px;
  font-weight: 400;
}
.invoice table th {
  font-size: 15px;
}
.invoice .caption-top {
  caption-side: top;
  text-align: right;
  margin-bottom: 0;
}
.invoice .invoice-bottom {
  padding: 0 150px 25px;
}
.invoice .invoice-bottom .amount {
  text-align: right;
}
.invoice .invoice-bottom h3 {
  margin-bottom: 15px;
}
.invoice .bg-active {
  background: #f3f3f3;
  color: #535353 !important;
}
.invoice .invoice-contact {
  padding: 70px 150px 40px;
}
.invoice .social-list {
  float: left;
}
.invoice .social-list span {
  margin-right: 5px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.invoice .social-list a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  background: #fff;
  margin: 0 2px 2px 0;
  color: #25cc7e;
  border-radius: 50%;
}
.invoice .social-list a:hover {
  background: #fff6f6;
}

.invoice-top .float-end p {
  margin-bottom: 0;
}

.invoice-1 .invoice-info-buttom .table .invoice-1 .invoice-info-buttom .table tr,
.table tr {
  border: 1px solid #e9ecef;
}

.table > :not(caption) > * > * {
  background-color: var(--bs-table-bg);
  border-bottom-width: 0;
}

.invoice-1 .table td,
.invoice-1 .table th {
  vertical-align: middle;
  border: none !important;
}

.invoice-1 .invoice-header {
  background: rgba(0, 0, 0, 0.04) url(../imgs/invoice/header-bg-1.png) top left repeat;
}

.invoice-2 .invoice-info {
  border-radius: 0;
}
.invoice-2 .invoice-header {
  border-bottom: 1px solid #ececec;
}

.invoice-3 .invoice-header {
  background: url(../imgs/invoice/header-bg-2.jpg) top left no-repeat;
  background-size: cover;
  padding: 50px 150px;
  color: #fff;
}
.invoice-3 .invoice-table thead {
  color: #fff !important;
  background-color: var(--btn-color);
}

.invoice-4 .invoice-info {
  border-radius: 5px;
}
.invoice-4 .invoice-header {
  border-bottom: 1px solid #ececec;
  padding: 50px 150px 30px 150px;
  margin-bottom: 50px;
}
.invoice-4 .invoice-bottom .hr {
  width: 100%;
  height: 1px;
  background-color: #ececec;
}

.invoice-5 .invoice-info {
  border-radius: 0;
}
.invoice-5 .invoice-header {
  padding: 50px 150px;
}
.invoice-5 .invoice-banner {
  padding: 0 150px 50px 150px;
}
.invoice-5 .invoice-bottom .hr {
  width: 100%;
  height: 1px;
  background-color: #ececec;
}

.invoice-6.invoice {
  background-color: #fff;
}
.invoice-6 .invoice-info {
  border-radius: 10px;
  border: 1px solid #0f2041;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.invoice-6 .hr {
  width: 100%;
  height: 1px;
  background-color: var(--btn-color);
}
.invoice-6 .invoice-header {
  background-color: #f7f8f9;
  padding: 80px 150px 50px 150px;
  margin-bottom: 50px;
  border-radius: 10px 10px 0 0;
}
.invoice-6 .invoice-icon {
  border-radius: 0 10px 0 0;
}

.invoice-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-color);
}
.invoice-icon img {
  width: 30px;
}
.header-style-1 .main-categori-wrap > a {
  border: 1px solid var(--btn-color);
}
.header-style-1 .main-categori-wrap > a:hover {
  border: 1px solid var(--btn-color);
}
.header-style-1 .search-style-2 form {
  border: 1px solid #d3d3d5;
  border-radius: 10px;
  max-width: 700px;
  background-color: #fff;
}
.contact-infor {
  font-size: 15px;
  color: #253D4E;
  margin-top: 10px;
}

.cart-dropdown-wrap .shopping-cart-footer .shopping-cart-button a {
  font-weight: 500;
}

.title-detail {
  font-size: 25px;
  font-weight: 500;
}

.short-desc p {
  font-size: 15px !important;
}

.qty-minus {
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ddd;
}
.qty-minus:hover {
  border: 1px solid #ddd;
}
.qty-minus a {
  color: #0F2041;
}
.qty-plus {
  border: 1px solid #ddd;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #ddd;
}
.qty-plus:hover {
  border: 1px solid #ddd;
}

.qty-plus a {
  color: #0F2041;
}

.checkout-radio-button {
  cursor: pointer;
}

.checkout-radio-button .form-check {
  border: 1px solid #ddd;
  width: 100%;
  border-radius: 5px;
  padding: 11px 32px;
  height: 45px;
}

.checkout-radio-button .form-check i {
  margin-left: 5px;
}

.footer-link-widget {
  flex-basis: 100%;
}

.detail-extralink {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
}

.quick-view-buy-now {
  background: #1a3567;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.quick-view-buy-now:hover {
  color: #fff !important;
}