/*Fonts path*/
/*Fonts path end*/
/*************** background opacity and gradient *******************/
/*************** Shadow *******************/
/*************** Transform *******************/
/*************** Transition *******************/
/*************** Animation *******************/
/*************** Filter *******************/
/*************** Media Query *******************/
/* Branding Theme CSS For All Themes */
.zoom:hover {
  background: #F26B2A;
  background: rgba(242, 107, 42, 0.8);
}

body .inner-banner img, body #top-banner img {
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}
body img, body .custom-select, body .btn:not(.dropdown-toggle), body .thumbnail {
  border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
}
@media only screen and (min-width: 1440px) {
  body.home_page_body .btn {
    padding-right: 30px;
    padding-left: 30px;
  }
}
body.home_page_body #footer {
  margin-top: 0 !important;
}

.page-header {
  color: #3c3c3d;
  border-bottom: none !important;
  min-height: 6.25rem;
  margin-bottom: 1.875rem !important;
  display: flex;
  justify-content: center;
  align-items: center !important;
}
@media only screen and (min-width: 768px) {
  .page-header {
    min-height: 8.125rem;
  }
}
@media only screen and (min-width: 1248px) {
  .page-header {
    min-height: 12.5rem !important;
    background-color: transparent;
  }
}
@media only screen and (min-width: 1440px) {
  .page-header {
    margin-bottom: 3.125rem !important;
  }
}
.page-header h1 {
  padding: 0 !important;
  z-index: 2;
  margin: 0 auto !important;
}
.page-header h1 small {
  color: #F26B2A !important;
  font-size: 45%;
  font-weight: 500;
}
@media only screen and (min-width: 1600px) {
  .page-header h1 small {
    font-size: 55%;
  }
}
.page-header h1 a {
  text-transform: capitalize;
}

.inner-banner {
  height: 100px;
}
@media only screen and (min-width: 768px) {
  .inner-banner {
    height: 8.125rem;
  }
}
@media only screen and (min-width: 1248px) {
  .inner-banner {
    height: 12.5rem;
  }
}
.inner-banner img {
  height: 100%;
  object-fit: cover;
}

.page-section-header {
  color: #3c3c3d;
}
.page-section-header span {
  color: #333333;
}

.page-sub-header {
  color: #3c3c3d;
}
.page-sub-header h2 {
  margin: 0 !important;
}

.table .thead-light th, .table .thead th, .table thead th {
  color: #3c3c3d !important;
  background: transparent;
  border-bottom-color: #3c3c3d;
}

/***** Anchor tag css ******/
a {
  color: #F26B2A;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  color: #dc500d;
  text-decoration: none;
}

/***** Button ******/
.btn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: normal;
}
.btn:focus, .btn.focus, .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: 0 0 0 0 #ffffff;
  -moz-box-shadow: 0 0 0 0 #ffffff;
  box-shadow: 0 0 0 0 #ffffff;
}

.btn-primary {
  border-color: #F26B2A;
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active:focus {
  background-color: #dc500d;
  border-color: #dc500d;
}
.btn-primary.disabled, .btn-primary:disabled {
  background-color: #F26B2A;
  border-color: #F26B2A;
  opacity: 0.65;
  filter: alpha(opacity=65);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: -170%;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(90deg, #F47D2C 0%, #F15928 100%);
  clip-path: ellipse(47px 14px at center);
  clip-path: ellipse(50% 18% at 50% 50%);
  transition: top 1s ease;
  z-index: -1;
}
.btn-primary:hover::after {
  top: 100%;
}
@media only screen and (min-width: 1200px) {
  .btn-primary:hover span:nth-child(1) {
    opacity: 0;
  }
  .btn-primary:hover span:nth-child(2) {
    bottom: 6px;
    opacity: 1;
  }
}
.btn-primary span {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn-primary span:nth-child(2) {
  bottom: -14px;
  left: 12px;
  right: 12px;
  opacity: 0;
}
.btn-primary span:nth-child(1) {
  opacity: 1;
}

.btn-info {
  background: #3c3c3d;
  border-color: #3c3c3d;
}
.btn-info:hover, .btn-info:focus, .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active:focus {
  background: #232323;
  border-color: #232323;
}
.btn-info.disabled, .btn-info:disabled {
  background: #3c3c3d;
  border-color: #3c3c3d;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-secondary {
  background: #4e4f50;
  border-color: #4e4f50;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active:focus {
  background: #353636;
  border-color: #353636;
}
.btn-secondary.disabled, .btn-secondary:disabled {
  background: #4e4f50;
  border-color: #4e4f50;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-success {
  background: #F26B2A;
  border-color: #F26B2A;
}
.btn-success:hover, .btn-success:focus, .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active:focus {
  background: #dc500d;
  border-color: #dc500d;
}
.btn-success.disabled, .btn-success:disabled {
  background: #F26B2A;
  border-color: #F26B2A;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-light {
  color: #3c3c3d;
  background-color: #fff;
  border-color: #fff;
}

/***** Outline Button ******/
.btn-outline-primary {
  background: transparent;
  border-color: #F26B2A;
  color: #F26B2A;
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
  background: #F26B2A;
  color: #ffffff;
  border-color: #F26B2A;
}

.btn-outline-secondary {
  background: transparent;
  border-color: #4e4f50;
  color: #4e4f50;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
  background: #4e4f50;
  color: #ffffff;
  border-color: #4e4f50;
}

.btn-outline-info {
  background: #fff;
  border-color: #3c3c3d;
  color: #3c3c3d;
}
.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active:focus {
  background: #ffffff;
  color: #F26B2A;
  border-color: #F26B2A;
}

/***** Link Button ******/
.btn-link {
  color: #616161;
  word-break: break-word;
}
.btn-link:hover, .btn-link:focus {
  color: #F26B2A !important;
}
.btn-link:disabled, .btn-link.disabled {
  color: #F26B2A;
}

/***** Border Color *****/
.border-primary {
  border-color: #F26B2A !important;
}

.border-info {
  border-color: #3c3c3d !important;
}

.border-secondary {
  border-color: #4e4f50 !important;
}

/**** loader ****/
.loading {
  border-color: transparent #3c3c3d;
}

#loading-text {
  color: #3c3c3d;
}

/***** Text Color *****/
.text-primary {
  color: #F26B2A !important;
}

.text-info {
  color: #36333c !important;
}

.text-secondary {
  color: #4e4f50 !important;
}

.text-success {
  color: #008F51 !important;
}

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

/* Badge CSS */
.badge-primary {
  background: #F26B2A;
}

.badge-info {
  background: #3c3c3d;
}

/***** Text-Color with Anchor Tag *****/
a.text-primary:hover, a.text-primary:focus {
  color: #dc500d !important;
}

a.text-info:hover, a.text-info:focus {
  color: #dc500d !important;
}

a.text-success:hover, a.text-success:focus {
  color: #dc500d !important;
}

/***** background-Color *****/
.bg-primary {
  background-color: #F26B2A !important;
}

.bg-light-primary {
  background-color: #fef1ea !important;
}

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

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

.bg-light {
  background-color: #f2f3f5 !important;
}

/***** Dropdown-color *****/
.dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active, .dropdown-item:active {
  background-Color: #fff !important;
  color: #F26B2A !important;
}

.bootstrap-select .dropdown-menu li.active small {
  color: #F26B2A !important;
}
.bootstrap-select .dropdown-toggle {
  height: 2.625rem;
  border: 1px solid #CFD2D3;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .bootstrap-select .dropdown-toggle {
    height: 3.125rem;
  }
}
.bootstrap-select .dropdown-toggle:focus {
  border-color: #F26B2A;
}
.bootstrap-select .dropdown-toggle small {
  color: #F26B2A !important;
}
.bootstrap-select .dropdown-toggle .filter-option {
  height: auto;
}
.bootstrap-select .dropdown-toggle::after {
  content: "\f078" !important;
  font-family: "Font Awesome 6 Pro" !important;
  border: 0;
}
.bootstrap-select .dropdown-toggle.btn {
  color: #8d8f90;
}
.bootstrap-select.dropup .dropdown-toggle::after {
  transform: rotate(180deg);
}

/***** Radio button color *****/
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #3c3c3d;
  border-color: #3c3c3d;
  box-shadow: none;
}

/***** Checkbox color *****/
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #3c3c3d;
  border-color: #3c3c3d;
  box-shadow: none;
}

/***** Input border-color on focus *****/
.form-control {
  border: 1px solid #CFD2D3;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.form-control:focus {
  border-color: #1D1D1E;
}
.form-control::placeholder {
  color: #4e4f50 !important;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.input-group-text {
  border: 1px solid rgba(80, 80, 80, 0.4);
  border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.form-control, .custom-select {
  height: 2.625rem;
  font-size: 1rem;
  color: #8d8f90;
}
@media only screen and (min-width: 768px) {
  .form-control, .custom-select {
    height: 3.125rem;
  }
}

.form-control:focus + .input-group-append .input-group-text {
  border-color: #1D1D1E;
}

.custom-select:focus + .input-group-append .input-group-text {
  border-color: #1D1D1E;
}

.form-group .input-valid ~ .col-form-label {
  color: #3c3c3d;
}
.form-group .col-form-label {
  top: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .form-group .col-form-label {
    top: 0.9375rem;
  }
}

.col-form-label {
  color: #86878A;
}

/**** pagination ****/
.page-item.active .page-link {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
  border-color: #F26B2A;
}

/**** Account Page CSS ****/
.navbar-text .dropdown-toggle::after {
  position: static !important;
}
.navbar-text .dropdown-menu {
  position: absolute;
}

/**** JQUERY UPLOADER START ****/
.alert-info {
  color: #817a8e;
  background-color: #FEF6EE;
  border-color: #fbcfba;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.alert-danger {
  color: #fff;
  background-color: #E43B3E;
  border-color: #E43B3E;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #3c3c3d;
  background-color: #3c3c3d;
}

.card-title a.btn-link {
  color: #3c3c3d !important;
}
.card-title a.btn-link:hover {
  color: #F26B2A !important;
}
.card-title a:not(.btn) {
  color: #3c3c3d !important;
}
.card-title a:not(.btn):hover {
  color: #F26B2A !important;
}

.f-button {
  border: 0.0625rem solid #bbbbbd !important;
  width: 2.75rem !important;
  height: 2.75rem !important;
  background-color: #fff !important;
  margin: 0;
  border-radius: 50% !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
.f-button::before {
  font-family: "Font Awesome 6 Pro" !important;
  color: #F26B2A !important;
  opacity: 1 !important;
  top: unset !important;
  right: unset !important;
  left: unset !important;
  bottom: unset !important;
  font-size: 20px;
}
.f-button.is-prev::before {
  content: "\f053" !important;
}
.f-button.is-next::before {
  content: "\f054" !important;
}
.f-button.is-close-btn {
  width: 2rem !important;
  height: 2rem !important;
  font-size: 16px;
}
.f-button.is-close-btn::before {
  content: "\f00d" !important;
}
.f-button.slick-arrow:hover {
  border: 0.0625rem solid #bbbbbd !important;
}
.f-button svg {
  display: none;
}

/***** Fonts *****/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ops";
  src: url("../fonts/ops.woff2") format("woff2"), url("../fonts/ops.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "firesprint-Ico";
  src: url("../fonts/firesprint-Ico.eot?fm89lf");
  src: url("../fonts/firesprint-Ico.eot?fm89lf#iefix") format("embedded-opentype"), url("../fonts/firesprint-Ico.ttf?fm89lf") format("truetype"), url("../fonts/firesprint-Ico.woff?fm89lf") format("woff"), url("../fonts/firesprint-Ico.svg?fm89lf#firesprint-Ico") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=fs-], [class*=" fs-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "firesprint-Ico" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fs-digital-printer:before {
  content: "\e901";
}

.fs-blind-ship:before {
  content: "\e904";
}

.fs-list-orders:before {
  content: "\e909";
}

.fs-delivery-truck:before {
  content: "\e90b";
}

.fs-edit:before {
  content: "\e90e";
  color: #f26b2a;
}

.fs-cart {
  font-size: 48px;
  font-size: 3rem;
}
.fs-cart::before {
  content: "\e90f";
}

.fs-upload:before {
  content: "\e910";
}

.fs-mail {
  font-size: 22px;
  font-size: 1.375rem;
}
.fs-mail::before {
  content: "\e90c";
}

.fs-phone_in_talk {
  font-size: 22px;
  font-size: 1.375rem;
}
.fs-phone_in_talk::before {
  content: "\e90d";
}

.fs-stickers:before {
  content: "\e900";
}

.fs-secure-pay:before {
  content: "\e901";
}

.fs-offset-print:before {
  content: "\e902";
}

.fs-home:before {
  content: "\e903";
}

.fs-printer:before {
  content: "\e905";
}

.fs-checked:before {
  content: "\e906";
  color: #86878a;
}

.fs-chart:before {
  content: "\e907";
}

.fs-calender:before {
  content: "\e908";
}

.fs-best-offer:before {
  content: "\e909";
}

.fs-wide-print:before {
  content: "\e90a";
}

/***** Reset CSS *****/
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #3c3c3d;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}

.home_page_body h1, .home_page_body .h1 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .home_page_body h1, .home_page_body .h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1440px) {
  .home_page_body h1, .home_page_body .h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .home_page_body h1, .home_page_body .h1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

.display-1 {
  font-size: 50px !important;
  font-size: 3.125rem;
}
@media only screen and (min-width: 1248px) {
  .display-1 {
    font-size: 80px !important;
    font-size: 5rem;
  }
}
@media only screen and (min-width: 1440px) {
  .display-1 {
    font-size: 100px !important;
    font-size: 6.25rem;
  }
}

.display-4 {
  font-size: 36px !important;
  font-size: 2.25rem;
}
@media only screen and (min-width: 1440px) {
  .display-4 {
    font-size: 60px !important;
    font-size: 3.75rem;
  }
}

h1, .h1 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1440px) {
  h1, .h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
}
@media only screen and (min-width: 1440px) {
  h2, .h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1600px) {
  h2, .h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

h3, .h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  h3, .h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h4, .h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
}

h5, .h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  h5, .h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p {
  font-size: 16px;
  font-size: 1rem;
}

b, strong, .text-bold, .font-weight-bold {
  font-weight: normal !important;
  font-weight: 700 !important;
}

.text-normal {
  font-weight: 400 !important;
}

.text-medium {
  font-weight: 500 !important;
}

.text-semi-bold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700 !important;
}

.rounded-5 {
  border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
}

.underlined {
  text-decoration: underline;
}

@media only screen and (min-width: 576px) {
  .m-x-15 {
    margin: 0 -0.9375rem !important;
  }
}

@media only screen and (min-width: 576px) {
  .overflow-sm-normal {
    overflow: unset !important;
  }
}

.text-ellips {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/***** other content CSS *****/
.cta-section {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
}
.cta-section p {
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 768px) {
  .cta-section p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.container {
  max-width: auto;
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 74.9375rem;
  }
}
@media only screen and (min-width: 1440px) {
  .container {
    max-width: 87.5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 97.5rem;
  }
}

.section-spacing-top {
  padding-top: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .section-spacing-top {
    padding-top: 3.125rem;
  }
}
@media only screen and (min-width: 1440px) {
  .section-spacing-top {
    padding-top: 3.75rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-spacing-top {
    padding-top: 4.25rem;
  }
}

.section-spacing-bottom {
  padding-bottom: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .section-spacing-bottom {
    padding-bottom: 3.125rem;
  }
}
@media only screen and (min-width: 1440px) {
  .section-spacing-bottom {
    padding-bottom: 3.75rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-spacing-bottom {
    padding-bottom: 4.25rem;
  }
}

.border-right {
  border-right: 0.0625rem solid #F0ECF6 !important;
}

.print-section .nav-pills {
  overflow-x: scroll;
}
@media only screen and (min-width: 992px) {
  .print-section .nav-pills {
    overflow-x: unset;
  }
}
.print-section .nav-pills::-webkit-scrollbar {
  height: 0 !important;
}
.print-section .nav-pills .nav-item .nav-link {
  white-space: nowrap;
  color: #4e4f50;
  font-weight: 500;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  padding-top: 0;
  padding: 0 1.875rem 0 0;
  margin-bottom: 0.9375rem;
}
@media only screen and (min-width: 992px) {
  .print-section .nav-pills .nav-item .nav-link {
    padding: 0;
    margin-bottom: 1.5625rem;
    white-space: normal;
  }
}
.print-section .nav-pills .nav-item .nav-link span {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .print-section .nav-pills .nav-item .nav-link span {
    padding-right: 0.5rem;
  }
}
.print-section .nav-pills .nav-item .nav-link span:before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  background: #f47d2c;
  height: 0.0625rem;
  width: 100%;
  bottom: -0.75rem;
  background-color: #F26B2A;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.print-section .nav-pills .nav-item .nav-link span:after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -0.875rem;
  right: -0.375rem;
  height: 0.375rem;
  width: 0.375rem;
  background-color: #F26B2A;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.print-section .nav-pills .nav-item .nav-link.active, .print-section .nav-pills .nav-item .nav-link:hover, .print-section .nav-pills .nav-item .nav-link:focus {
  background-color: transparent;
  color: #F26B2A;
}
.print-section .nav-pills .nav-item .nav-link.active span:before, .print-section .nav-pills .nav-item .nav-link:hover span:before, .print-section .nav-pills .nav-item .nav-link:focus span:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
.print-section .nav-pills .nav-item .nav-link.active span:after, .print-section .nav-pills .nav-item .nav-link:hover span:after, .print-section .nav-pills .nav-item .nav-link:focus span:after {
  opacity: 1;
  filter: alpha(opacity=100);
}
.print-section .card {
  -webkit-box-shadow: 0rem 0.0625rem 0.5rem 0rem rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0rem 0.0625rem 0.5rem 0rem rgba(0, 0, 0, 0.25);
  box-shadow: 0rem 0.0625rem 0.5rem 0rem rgba(0, 0, 0, 0.25);
}
.print-section .card a:hover img {
  transform: scale(1.1);
}
.print-section .card h3 {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 500;
}
.print-section .card:hover p {
  color: #F26B2A !important;
}
.print-section .card img {
  width: 100%;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.print-section .card .card-title .text-ellips {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}

.our-best-service #material_slider {
  width: 100% !important;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .our-best-service #material_slider {
    overflow: hidden;
  }
}
.our-best-service #material_slider .slick-list {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}
.our-best-service #material_slider .slick-list .slick-track {
  display: flex !important;
}
.our-best-service #material_slider .slick-list .slick-slide {
  margin: 0 0.625rem;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.our-best-service .slick-arrows {
  top: 50%;
  right: 0;
}
.our-best-service .slick-arrows .slick-prev {
  left: 1.375rem !important;
}
.our-best-service .slick-arrows .slick-next {
  right: 1.375rem !important;
}
.our-best-service .slick-dots {
  right: 0;
  left: 0;
  bottom: 0 !important;
}

.slick-slider .slick-list {
  margin: 0 -0.9375rem;
}
.slick-slider .slick-list .slick-track {
  margin: 0 !important;
}
.slick-slider .slick-list .slick-track .slick-slide {
  margin: 0 0.9375rem;
}
.slick-slider .slick-prev {
  left: 0 !important;
}
.slick-slider .slick-prev::before {
  content: "\f053" !important;
  color: #F26B2A;
  font-family: "Font Awesome 6 Pro" !important;
}
.slick-slider .slick-next {
  right: 0 !important;
}
.slick-slider .slick-next::before {
  content: "\f054" !important;
  color: #F26B2A;
  font-family: "Font Awesome 6 Pro" !important;
}

.slick-prev, .slick-next {
  font-size: 0 !important;
  font-size: 0;
  border: 0.0625rem solid #bbbbbd !important;
  width: 2.35rem !important;
  height: 2.35rem !important;
  background-color: #fff !important;
  margin: 0;
  border-radius: 50% !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .slick-prev, .slick-next {
    width: 2.75rem !important;
    height: 2.75rem !important;
  }
}
.slick-prev::before, .slick-next::before {
  font-family: "Font Awesome 6 Pro" !important;
  color: #F26B2A !important;
  opacity: 1 !important;
}
.slick-prev.slick-arrow:hover, .slick-next.slick-arrow:hover {
  border: 0.0625rem solid #bbbbbd !important;
}

.slick-prev::before {
  content: "\f053" !important;
}

.slick-next {
  right: 0 !important;
}
@media only screen and (min-width: 992px) {
  .slick-next {
    right: 0 !important;
  }
}
.slick-next::before {
  content: "\f054" !important;
}

.large-collection-slider:not(.slick-initialized), #material_slider:not(.slick-initialized), #related-product:not(.slick-initialized) {
  visibility: hidden;
}

.slick-dots {
  right: 0;
  left: 0;
  display: flex !important;
  bottom: -1.875rem !important;
}
.slick-dots li {
  height: 0.1875rem !important;
  width: 100% !important;
  margin: 0 !important;
}
.slick-dots li button {
  padding: 0 !important;
}
.slick-dots li button::before {
  opacity: 0.3 !important;
  width: 100% !important;
  height: 100% !important;
  background: #ABBCDA !important;
  font-size: 0 !important;
  transition: width 0.4s ease, opacity 0.4s ease;
}
.slick-dots li.slick-active button::before {
  opacity: 1 !important;
  border-radius: 100px;
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%) !important;
}

.our_services .service_box h2, .our_services .service_box .h2 {
  font-size: 20px;
  font-size: 1.25rem;
}
.our_services .service_box p {
  color: rgba(54, 51, 60, 0.7);
}
.our_services .service_box span {
  font-size: 56px;
  font-size: 3.5rem;
}
.our_services .service_box span::before {
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
  display: inline-block;
  -moz-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  z-index: 1;
  position: relative;
}
.our_services .service_box span[class^=fs-] {
  display: inline-block;
  animation: icon-scale 3s infinite;
}
.our_services .service_box span[class^=fs-]::after {
  content: "";
  height: 2.6875rem;
  width: 2.6875rem;
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
  opacity: 0.5;
  display: block;
  position: absolute;
  border-radius: 50%;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  top: -1rem;
  right: -0.1375rem;
  z-index: 0;
}

.nav-customtabs li .nav-link {
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .nav-customtabs li .nav-link {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.nav-customtabs li .nav-link.active, .nav-customtabs li .nav-link:hover {
  color: #f47d2c;
}
.nav-customtabs li .nav-link.active:after, .nav-customtabs li .nav-link:hover:after {
  background: #f47d2c;
}
.nav-customtabs li:first-child .nav-link {
  padding-left: 0 !important;
}

#shareProductLinkModal .modal-title {
  font-size: 24px !important;
  font-size: 1.5rem;
}

#shopping-cart .btn-link:hover, #shopping-cart .change_card:hover {
  color: #F26B2A !important;
}

.btn-title-text {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  .btn-title-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.btn-title-text.upload_design {
  background-color: #F26B2A !important;
  border-color: #F26B2A !important;
}
.btn-title-text.upload_design:hover {
  box-shadow: none;
}
.btn-title-text.upload_design:hover a span, .btn-title-text.upload_design:hover a i {
  color: #F26B2A !important;
}

.quality-faq p {
  color: #6B6C6F;
}
.quality-faq #accordion .card .card-header .btn {
  padding-bottom: 0.75rem !important;
}
.quality-faq #accordion .card .card-header .btn.collapsed {
  padding-bottom: 0 !important;
}
.quality-faq #accordion .card .card-header .btn.collapsed span::after {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
}
.quality-faq #accordion .card .card-header .btn span::after {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
}
.quality-faq #accordion .card .card-header .btn::before {
  content: "\e906";
  font-family: "firesprint-Ico";
  font-weight: 400;
  position: absolute;
  left: 0;
}
.quality-faq #accordion svg {
  position: absolute;
  top: 0.3125rem;
  left: 0;
}

.discount-slider #discountSliderCarousel .carousel-item {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
}
.discount-slider #discountSliderCarousel .carousel-item .discount-slider-left span p {
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1440px) {
  .discount-slider #discountSliderCarousel .carousel-item .discount-slider-left span p {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.discount-slider #discountSliderCarousel .carousel-item .logo-shape {
  right: 0.9375rem;
  bottom: -2.5rem;
}

.free-shipping {
  background-image: url(/themes/firesprint/images/navigate-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.free-shipping p {
  color: #6B6C6F;
}
.free-shipping .transit-time span:nth-of-type(1) {
  background-color: #F26B2A;
}
.free-shipping .transit-time span:nth-of-type(2) {
  background-color: #45B5FC;
}
.free-shipping .transit-time span:nth-of-type(3) {
  background-color: #F5CB2A;
}
.free-shipping .transit-time span:nth-of-type(4) {
  background-color: #45CF63;
}

.learning-videos .col-xl-3:nth-of-type(1) .video-container > a .play-btn, .learning-videos .col-xl-3:nth-of-type(3) .video-container > a .play-btn {
  width: 3rem;
  height: 3rem;
}
.learning-videos .col-xl-3:nth-of-type(1) .video-container > a .wave-effect, .learning-videos .col-xl-3:nth-of-type(3) .video-container > a .wave-effect {
  width: 3.2rem;
  height: 3.2rem;
}
.learning-videos .video-container > a .play-btn {
  width: 3rem;
  height: 3rem;
}
@media only screen and (min-width: 1200px) {
  .learning-videos .video-container > a .play-btn {
    width: 5.375rem;
    height: 5.375rem;
  }
}
.learning-videos .video-container > a .wave-effect {
  width: 3.2rem;
  height: 3.2rem;
}
@media only screen and (min-width: 1200px) {
  .learning-videos .video-container > a .wave-effect {
    width: 5rem;
    height: 5rem;
  }
}

.testimonial {
  background-image: url(/themes/firesprint/images/testimonial-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.testimonial .marquee-wrapper .marquee-content {
  display: flex;
  width: fit-content;
  animation-direction: normal;
  animation: scroll-rtl 40s linear infinite;
}
.testimonial .marquee-wrapper .marquee-content:hover {
  animation-play-state: paused;
}
.testimonial .marquee-wrapper .marquee-content:nth-of-type(2) {
  animation-direction: reverse;
}
.testimonial .marquee-wrapper .marquee-content .card {
  flex: 0 0 31.25rem;
}
.testimonial .marquee-wrapper .marquee-content .card p {
  color: #4e4f50;
}
.testimonial .marquee-wrapper .marquee-content .card .reviewer-info {
  gap: 0.75rem;
}
.testimonial .marquee-wrapper .marquee-content .card:hover {
  animation-play-state: paused;
}
.testimonial .marquee-wrapper .marquee-content .card:hover {
  transition: all 0.3s;
  transform: translateY(-5px);
  box-shadow: 0 0.3125rem 1.25rem 0.1875rem rgba(0, 0, 0, 0.2);
}
.testimonial #testimonial_multi_sidebar .carousel-controls .carousel-control-prev-icon, .testimonial #testimonial_multi_sidebar .carousel-controls .carousel-control-next-icon {
  background-image: none;
}
.testimonial #testimonial_multi_sidebar .carousel-controls .carousel-control-next {
  left: unset;
  right: 1.5625rem;
}
.testimonial #testimonial_multi_sidebar .carousel-controls .carousel-control-prev {
  right: 4.6875rem;
  left: unset;
}
.testimonial .testimonial-panel {
  margin: 0 -15px;
}
.testimonial .testimonial-panel .carousel-item {
  padding: 0 15px;
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.carousel-control-prev, .carousel-control-next {
  font-size: 0 !important;
  font-size: 0;
  border: 0.0625rem solid #bbbbbd !important;
  width: 2.75rem !important;
  height: 2.75rem !important;
  border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
  opacity: 1;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-control-next-icon::after, .carousel-control-prev-icon::after {
  font-size: 20px;
  font-size: 1.25rem;
  color: #4e4f50;
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  font-family: "Font Awesome 6 Pro" !important;
  color: #F26B2A !important;
}

.carousel-control-next-icon:after {
  content: "\f054";
}

.carousel-control-prev-icon:after {
  content: "\f053";
}

#top-banner .carousel-indicators li.active {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
}
#top-banner img {
  width: 100%;
}
#top-banner .carousel-caption {
  transform: translateY(-50%) !important;
  top: 50% !important;
  left: 0;
  right: unset;
  bottom: unset;
  width: 100%;
}
#top-banner .carousel-caption .banner_inr_text {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #top-banner .carousel-caption .banner_inr_text {
    width: 80%;
  }
}
@media only screen and (min-width: 1600px) {
  #top-banner .carousel-caption .banner_inr_text {
    width: 60%;
  }
}
@media only screen and (min-width: 1200px) {
  #top-banner .carousel-caption .btn-primary {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}
@media only screen and (min-width: 1200px) {
  #top-banner .carousel-caption .btn-primary:hover span:nth-child(2) {
    bottom: 12px;
    opacity: 1;
  }
}
#top-banner .carousel-control-prev, #top-banner .carousel-control-next {
  top: 50%;
  z-index: 99;
  width: 0;
  height: 0;
  background: transparent;
  border: none !important;
}
#top-banner .carousel-control-prev span::after, #top-banner .carousel-control-next span::after {
  font-size: 2.25rem;
}
#top-banner .carousel-control-prev {
  left: 1%;
}
#top-banner .carousel-control-next {
  right: 1%;
}
#top-banner .carousel-item:nth-child(2) .carousel-caption {
  top: 30% !important;
}
@media only screen and (min-width: 768px) {
  #top-banner .carousel-item:nth-child(2) .carousel-caption {
    top: 50% !important;
  }
}

.carousel-indicators li {
  border: 0;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  width: 1.125rem;
}

.breadcrumb_container .breadcrumb li::before {
  font-size: 12px;
  font-size: 0.75rem;
  color: #f69d72 !important;
}
.breadcrumb_container .breadcrumb li:not(.active) a:hover, .breadcrumb_container .breadcrumb li:not(.active) .a:hover {
  color: #F26B2A;
}
.breadcrumb_container .breadcrumb li a, .breadcrumb_container .breadcrumb li .a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #6B6C6F;
}

.product-box .card {
  border: none;
}
.product-box .card .card-body {
  padding: 1.4375rem 0.4375rem 0 0.4375rem;
}
.product-box .card .card-body .card-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500 !important;
}
@media only screen and (min-width: 1248px) {
  .product-box .card .card-body .card-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.product-box .card .card-body .card-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #808284;
}
@media only screen and (min-width: 1248px) {
  .product-box .card .card-body .card-text {
    font-size: 16px;
    font-size: 1rem;
  }
}

#category_product_list .product-box .card-footer, #product_category .product-box .card-footer {
  display: none !important;
}

#login_sidebar .modal-dialog {
  max-width: 48rem;
}
@media only screen and (min-width: 1200px) {
  #login_sidebar .modal-dialog {
    max-width: 68.75rem;
  }
}
@media only screen and (min-width: 1600px) {
  #login_sidebar .modal-dialog {
    max-width: 74.75rem;
  }
}
#login_sidebar .modal-dialog .close {
  width: 1.75rem;
  height: 1.75rem;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 1;
}

.media-filter li a {
  border-color: #4e4f50;
  color: #4e4f50;
}
.media-filter li a:hover, .media-filter li a.selected {
  background: #4e4f50 !important;
  color: #ffffff !important;
}
.media-filter .media-boxes-drop-down-header {
  border: 0.0625rem solid #4e4f50;
}

#user_signup .position-sticky {
  top: 6.25rem;
}

@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline {
    margin-left: 0 !important;
  }
}
.fsp-story-timeline .fsp-timeline:before {
  content: "";
  position: absolute;
  top: 3.125rem;
  bottom: 7.5rem;
  left: 0.4375rem;
  width: 0.125rem;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-size: 0.1875rem 100%, 100% 0.1875rem, 0.1875rem 100%, 100% 0.1875rem;
  background-repeat: no-repeat;
  background-image: repeating-linear-gradient(0deg, #cfcfd1, #cfcfd1 0.625rem, transparent 0.625rem, transparent 1.25rem);
  z-index: -2;
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline:before {
    left: 50%;
    margin-left: -0.0625rem;
    top: 3.125rem;
    bottom: 3.125rem;
  }
}
@media only screen and (min-width: 1440px) {
  .fsp-story-timeline .fsp-timeline:before {
    top: 3.125rem;
    bottom: 3.125rem;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item {
    padding-left: 0 !important;
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item:last-child {
  margin-bottom: 0 !important;
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item::after {
  content: "";
  display: table;
  clear: both;
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint {
  height: 0;
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::after {
  width: 1.75rem;
  height: 1.75rem;
  background-color: #fff;
  border: 0.125rem solid #fbcfba;
  left: -0.375rem;
  top: 0.5625rem;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::after {
    margin-left: -0.875rem;
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::before {
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 0.9375rem;
  background-color: #F26B2A;
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::before {
    margin-left: -0.5rem;
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::after, .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::after, .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-midpoint::before {
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content {
  margin-left: 1.25rem;
  height: 100%;
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text {
  border-left: 0.125rem solid #F26B2A;
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text br {
  display: none;
}
@media only screen and (min-width: 1440px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text br {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text {
    display: inline-block;
  }
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text::before, .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text::after {
    content: "";
    margin: auto;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text::before {
    left: -0.844rem;
    border-right: 0.75rem solid #F26B2A;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    margin-left: 0.0625rem;
  }
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-content-text::after {
    left: -0.5rem;
    border-right: 0.75rem solid #f2f3f5;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    margin-left: -0.125rem;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content {
    width: 45%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-left {
    display: flex;
    justify-content: end;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-left .fsp-timeline-content-text {
    border-right: 0.125rem solid #F26B2A;
    border-left: unset;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-left .fsp-timeline-content-text::before {
    right: -0.844rem;
    width: 0;
    height: 0;
    border-left: 0.75rem solid #F26B2A;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    margin-right: 0.0625rem;
    margin-right: 0.0625rem;
    left: unset;
    border-right: unset;
    margin-left: unset;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-left .fsp-timeline-content-text::after {
    right: -0.5rem;
    width: 0;
    height: 0;
    border-left: 0.75rem solid #f2f3f5;
    border-top: 0.75rem solid transparent;
    border-bottom: 0.75rem solid transparent;
    margin-right: -0.125rem;
    left: unset;
    border-right: unset;
    margin-left: unset;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-left .fsp-timeline-year {
    left: 123%;
  }
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-right {
    float: right;
  }
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content.fsp-timeline-content-right .fsp-timeline-year {
    right: 123%;
    text-align: right;
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-year {
  padding-top: 0.375rem;
  color: #F26B2A;
  text-align: left;
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-year {
    line-height: 0.8;
    position: absolute;
    width: 55%;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-year small {
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  .fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-timeline-content .fsp-timeline-text-left {
    text-align: right;
  }
}
.fsp-story-timeline .fsp-timeline .fsp-timeline-item .fsp-more-content {
  display: none;
}

.our-team .card {
  box-shadow: 0.0625rem 0.125rem 0.375rem 0rem rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media only screen and (min-width: 1440px) {
  .our-team .card .card-body {
    padding: 2.75rem !important;
  }
}
.our-team .card .team-name-title {
  bottom: 1.3125rem;
  left: 1.3125rem;
  border: 0.1px solid #f8ae8a;
}
.our-team .card .team-name-title.text-ellips {
  max-width: 87%;
}

.who_we_are [class^=fs-] {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}
.who_we_are ul li::before {
  content: "\e906";
  color: #86878a;
  font-family: "firesprint-Ico";
  font-weight: 400;
  position: absolute;
  left: 0;
}

#login_sidebar:has(.modal) {
  padding: 0 !important;
  border: 0 !important;
  min-height: unset !important;
  height: 0 !important;
}
#login_sidebar:has(.modal) .card-body {
  padding: 0 !important;
}

.popup_page_inner .page-header, .fancybox__content .page-header {
  min-height: unset !important;
  margin-bottom: 1rem !important;
  border-bottom: 0.0625rem dashed #3c3c3d !important;
}
.popup_page_inner .page-header h1, .fancybox__content .page-header h1 {
  margin: 0 !important;
  font-size: 24px;
  font-size: 1.5rem;
}

.cust-scroll ::-webkit-scrollbar {
  height: 0.1875rem !important;
  border-radius: 0.625rem !important;
}
.cust-scroll ::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%) !important;
  border-radius: 0.625rem !important;
}

.fancybox__container .f-button:hover:not([disabled]) {
  color: #36333c !important;
}

.slide-bx {
  border: 0.0625rem solid transparent;
}
.slide-bx img {
  width: 100%;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.slide-bx .service-loop-title, .slide-bx .caption {
  border: 0.1px solid #f8ae8a;
  position: absolute;
  bottom: 0.9375rem;
  left: 0.9375rem;
  right: unset;
  z-index: 1;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .slide-bx .service-loop-title, .slide-bx .caption {
    bottom: 1.3125rem;
    left: 1.3125rem;
  }
}
@media only screen and (min-width: 1248px) {
  .slide-bx .service-loop-title, .slide-bx .caption {
    left: 1.5625rem;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.slide-bx .service-loop-title.text-ellips, .slide-bx .caption.text-ellips {
  max-width: 85%;
}
.slide-bx:hover {
  border-color: #f8ae8a;
}
.slide-bx:hover img {
  transform: scale(1.1);
}

#shopping-cart .sticky-top {
  top: 6.25rem;
}

#cms_page .page-header h1, #cms_page .page-header .h1 {
  font-size: 28px;
  font-size: 1.75rem;
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  #cms_page .page-header h1, #cms_page .page-header .h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1440px) {
  #cms_page .page-header h1, #cms_page .page-header .h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
#cms_page h1, #cms_page .h1 {
  font-size: 28px;
  font-size: 1.75rem;
  margin-bottom: 12px;
  border-bottom: 1px dashed #3c3c3d;
}

.watch-tour .video-container > a .wave-effect::after, .watch-tour .video-container > a .wave-effect::before {
  border: 4px solid rgba(98, 98, 98, 0.3);
}

.steps ul li {
  opacity: 1 !important;
}
.steps ul li.disabled a {
  color: #4e4f50;
}

#product-info .video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
}

#product-info .video-container iframe {
  max-width: unset;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 0;
}

.upload_preview picture {
  height: 100%;
}

#user_order .thumbnail img, #user_order_info .thumbnail img {
  width: unset;
  height: unset;
}

#user_order .thumbnail, #user_order_info .thumbnail {
  width: unset;
  height: unset;
}

.fancybox__slide.has-image > .fancybox__content {
  background: #ffffff !important;
}

.fancy_redio {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.fancy_redio input {
  cursor: pointer;
  margin-right: 5px;
}
.fancy_redio input[type=radio] {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #bbbbbb;
  border-radius: 50%;
  outline: none;
  background-color: #eeeeee;
  cursor: pointer;
}
.fancy_redio input[type=radio]:checked {
  background-color: #3c3c3d;
}
.fancy_redio input[type=radio]:checked::before {
  content: "";
  background: #fff;
  width: 6px;
  height: 6px;
  border-radius: 50px;
  display: block;
  top: 0;
  position: absolute;
  left: 0;
  top: 10px;
  left: 5px;
}
@media only screen and (min-width: 1200px) {
  .fancy_redio input[type=radio]:checked::before {
    top: 10px;
  }
}

.awesome-bar {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%) !important;
}
.awesome-bar .awesome-bar_container {
  padding: 5px 0;
}
.awesome-bar .awesome-bar_container p {
  font-size: 14px;
  font-size: 0.875rem;
}
.awesome-bar .awesome-bar_close {
  top: 5px;
}

.top-header {
  z-index: 1000;
}
.top-header.sticky-header {
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.top-header .contact-top a, .top-header .contact-top p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1D1D1E;
}
.top-header .top-links > li {
  margin-right: 0;
  margin-left: 15px;
}
@media only screen and (min-width: 1440px) {
  .top-header .top-links > li {
    margin-left: 30px;
  }
}
.top-header .top-links > li a {
  font-weight: 500;
}
.top-header .top-links > li:nth-child(2) a {
  background-color: #3c3c3d;
  color: #fff !important;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0.3125rem 0.9375rem;
}
@media only screen and (min-width: 1440px) {
  .top-header .top-links > li:nth-child(2) a {
    padding: 0.625rem 1.875rem;
  }
}
.top-header .top-links > li:nth-child(2) a:hover {
  background-color: #F26B2A;
}
.top-header .top-links .logout-dropdown {
  display: none;
  border: none !important;
}
.top-header .top-links .logout-dropdown.show {
  display: block;
}
.top-header .bootstrap-select .dropdown-toggle .filter-option {
  line-height: inherit;
}
.top-header .btn-link i {
  position: relative;
}
.top-header .btn-link i:hover {
  color: #F26B2A !important;
}
.top-header .btn-link.cart_link {
  min-width: 4.125rem;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.top-header .btn-link .badge {
  border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  height: 1.3125rem;
  min-width: 1.3125rem;
  width: auto;
  position: absolute;
  right: 0.925rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  bottom: 0;
  top: 0;
  font-weight: normal;
}
.top-header .btn-link .badge span {
  display: inline-block;
  animation: bounceNumber 2s ease-in-out infinite;
}
.top-header .btn-link::before {
  content: "";
}
@media only screen and (min-width: 768px) {
  .top-header .search_dynamic {
    padding: 0 20px;
  }
}
.top-header .search_dynamic .header-search {
  width: 100%;
  max-width: 550px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  margin: auto;
}
.top-header .search_dynamic .header-search .twitter-typeahead {
  width: 100%;
}
.top-header .search_dynamic .header-search .twitter-typeahead::after {
  right: unset;
  left: 12px;
  line-height: 2.7;
  font-size: 16px;
  font-size: 1rem;
}
.top-header .search_dynamic .header-search .twitter-typeahead #top_search {
  padding-left: 50px;
  height: 2.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}
.top-header .contact-top .contact-icon {
  display: inline-block;
  background-color: #EBEBEB;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  text-align: center;
}
.top-header .contact-top a span:first-child, .top-header .contact-top p span:first-child {
  font-weight: 500;
}

@keyframes bounceNumber {
  0%, 100% {
    transform: translateY(20px);
  }
  25% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(0);
  }
}
.advance-search {
  left: 0;
  margin: auto;
}
.advance-search .search-history > div:not(:last-child):before {
  content: none;
}
.advance-search .search-history .d-flex {
  background-color: #FEF6EE;
  border: 1px solid #FBD0AD;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  opacity: 0.7;
}
.advance-search .search-history .d-flex span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #3c3c3d;
}
.advance-search .search-history:not(:has(.d-flex)) {
  padding: 0 !important;
  border: 0 !important;
}
.advance-search .search-history a {
  color: #1D1D1E;
}
.advance-search .search-result h4, .advance-search .modal-search-result-content h4 {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 992px) {
  .advance-search .search-result h4, .advance-search .modal-search-result-content h4 {
    padding: 0 1.1875rem;
  }
}
.advance-search .search-result a, .advance-search .modal-search-result-content a {
  color: #1D1D1E;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.advance-search .search-result a:hover, .advance-search .modal-search-result-content a:hover {
  color: #F26B2A;
}
.advance-search .search-result .searchable-img img, .advance-search .modal-search-result-content .searchable-img img {
  object-fit: cover;
}
@media only screen and (min-width: 992px) {
  .advance-search .search-result .categories-list li, .advance-search .modal-search-result-content .categories-list li {
    margin-bottom: 0 !important;
  }
}
@media only screen and (min-width: 992px) {
  .advance-search .search-result .categories-list li > a, .advance-search .modal-search-result-content .categories-list li > a {
    color: #4e4f50;
    padding: 0.8125rem 1.1875rem;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .advance-search .search-result .categories-list li > a .fa-angle-right, .advance-search .modal-search-result-content .categories-list li > a .fa-angle-right {
    margin: 0 !important;
  }
  .advance-search .search-result .categories-list li > a .fa-angle-right::before, .advance-search .modal-search-result-content .categories-list li > a .fa-angle-right::before {
    content: "\f061";
    position: absolute;
    right: 10%;
    visibility: hidden;
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease;
    color: #F26B2A !important;
  }
}
@media only screen and (min-width: 992px) {
  .advance-search .search-result .categories-list li:hover > a, .advance-search .modal-search-result-content .categories-list li:hover > a {
    color: #F26B2A;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .advance-search .search-result .categories-list li:hover > a .fa-angle-right::before, .advance-search .modal-search-result-content .categories-list li:hover > a .fa-angle-right::before {
    right: 5%;
    visibility: visible;
    opacity: 1;
    top: 1.1875rem;
  }
}
@media only screen and (min-width: 1600px) {
  .advance-search.advance-search-dropdown {
    width: 75.875rem;
  }
}

.navbar {
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 768px) {
  .navbar {
    position: relative;
  }
}
.navbar .navbar-nav {
  margin-left: unset !important;
  margin-right: auto !important;
}
.navbar .navbar-nav #login_signup_popup .btn-link {
  z-index: 0;
}
@media only screen and (min-width: 1600px) {
  .navbar .navbar-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}
.navbar .navbar-nav .nav-item {
  margin-right: 0 !important;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 0.75rem !important;
  }
}
@media only screen and (min-width: 992px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 1rem !important;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 1.7rem !important;
  }
}
@media only screen and (min-width: 1440px) {
  .navbar .navbar-nav .nav-item {
    margin-right: 3.5625rem !important;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  line-height: 20px;
  font-size: 16px !important;
  font-size: 1rem;
  color: #1D1D1E;
  position: relative;
  border-bottom: 0;
  padding: 0.8rem 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 1.5625rem 0 !important;
    font-size: 13px !important;
    font-size: 0.8125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px !important;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item .nav-link:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.625rem;
    left: 0;
    right: 0;
    height: 1px;
    width: 4px;
    background: transparent;
    margin: 0 auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.navbar .navbar-nav .nav-item .nav-link sup {
  color: #F26B2A;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item .nav-link sup {
    top: 0.4rem;
    position: absolute;
    right: 0.9375rem;
    padding: 0.5rem 0.25rem;
    background: #F26B2A;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-weight: 400;
    font-size: 12px;
    font-size: 0.75rem;
    color: #fff;
  }
}
.navbar .navbar-nav .nav-item .nav-link:focus-visible {
  outline: none;
}
.navbar .navbar-nav .nav-item:hover > .nav-link, .navbar .navbar-nav .nav-item.active > .nav-link {
  color: #F26B2A !important;
}
.navbar .navbar-nav .nav-item:hover > .nav-link:after, .navbar .navbar-nav .nav-item.active > .nav-link:after {
  color: #F26B2A !important;
}
.navbar .navbar-nav .nav-item:hover > .nav-link:before, .navbar .navbar-nav .nav-item.active > .nav-link:before {
  width: 100%;
  background: #F26B2A;
}
.navbar .navbar-nav .nav-item.show > .nav-link {
  color: #F26B2A !important;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li > a {
  color: #4e4f50;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li:hover > a, .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li.active > a {
  color: #F26B2A;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li:hover > a:after, .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li.active > a:after {
  color: #F26B2A !important;
  left: 90%;
  opacity: 1;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li:first-child > a {
  background: transparent;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li:first-child > a::after {
  content: none;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li .dropdown-menu li:not(:first-child) a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 85%;
  top: 4px;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .list-unstyled > li .dropdown-menu li:not(:first-child) a:hover::after {
  opacity: 1;
  left: 95%;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a::after {
  content: "\f061";
  top: 0.5rem;
  transition: left 0.3s ease, opacity 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a::after {
    opacity: 0;
    top: 0.6rem;
    left: 80%;
  }
}
@media only screen and (min-width: 1440px) {
  .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a::after {
    top: 0.9375rem;
  }
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a:hover:after {
  color: #F26B2A !important;
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: auto;
  background-color: #F5F5F6;
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 992px) {
  .navbar .navbar-nav .nav-item.megamenu > .dropdown-menu {
    min-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item.megamenu > .dropdown-menu {
    min-width: 46.6rem;
  }
}
@media only screen and (min-width: 1248px) {
  .navbar .navbar-nav .nav-item.megamenu > .dropdown-menu {
    min-width: 63.0625rem;
    min-height: 41.875rem;
  }
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu {
  width: 30%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu.active {
  background-color: white;
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu.active a {
  background-color: white;
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu:first-child {
  padding: 1.125rem 1rem 0 1rem;
}
@media only screen and (min-width: 1024px) {
  .navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu:first-child {
    padding: 1.125rem 0 0 0;
  }
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu:first-child a:hover {
  background-color: transparent !important;
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu:first-child.active {
  background-color: #F5F5F6;
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu:last-child {
  margin: 0 0 1.125rem 0;
}
@media only screen and (min-width: 1024px) {
  .navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu:last-child {
    margin: 0 0 1.125rem 0;
  }
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu > .all-product {
  width: 100%;
  padding: 0.5125rem 1.1875rem;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1440px) {
  .navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu > .all-product {
    padding: 0.8125rem 2.9875rem;
  }
}
.navbar .navbar-nav .nav-item.megamenu > .dropdown-menu .dropdown-submenu > .dropdown-menu {
  width: 70%;
  overflow-y: auto;
  height: 100%;
  overflow-x: hidden;
  background-color: #fff;
  padding: 1.875rem;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item .dropdown-menu {
    min-width: 300px;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li {
  background-color: transparent;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-submenu::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #F26B2A;
    top: 5px;
    right: 22px;
    position: absolute;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-submenu:hover {
  font-weight: 600;
}
.navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-submenu:hover::after {
  opacity: 1;
  right: 10px;
}
.navbar .navbar-nav .nav-item .dropdown-menu li.dropdown-submenu:hover > .dropdown-item {
  color: #F26B2A;
  background: transparent;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
}
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  border: none !important;
  position: relative;
}
.navbar .navbar-nav .nav-item.show .nav-link:after, .navbar .navbar-nav .nav-item:active .nav-link:after {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.navbar .btn-link {
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .navbar .btn-link {
    z-index: -1;
  }
}
.navbar .cart_link .badge {
  font-size: 10px !important;
  font-size: 0.625rem;
  border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  height: 1rem;
  width: 1rem;
  position: absolute;
  right: 5px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  bottom: 0;
  top: -0.125rem;
}
.navbar .navbar-collapse {
  position: absolute;
  top: 100%;
  width: 100vw;
  height: 100% !important;
  background-color: #fff;
  height: calc(100vh - 60.19px) !important;
  -moz-transform: rotateX(-90deg);
  -o-transform: rotateX(-90deg);
  -ms-transform: rotateX(-90deg);
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}
.navbar .navbar-collapse .navbar-nav {
  width: 100vw;
  height: 100%;
}
.navbar .navbar-collapse.show {
  -moz-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}
.navbar .navbar-collapse.show .nav-link {
  color: #1d1d1e !important;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse {
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    height: auto !important;
    position: static;
    background: transparent;
    -webkit-transform-style: unset;
    -moz-transform-style: unset;
    -ms-transform-style: unset;
    transform-style: unset;
    width: auto;
  }
  .navbar .navbar-collapse .navbar-nav {
    width: auto;
    margin-left: auto;
    background: transparent;
    overflow-y: inherit;
    overflow-x: inherit;
  }
}
.navbar .navbar-collapse .border-dash::before {
  content: "";
  width: 95%;
  height: 2px;
  border-top: 2px dashed #cecece;
  display: block;
  margin: 12px auto;
}
.navbar .text-light {
  display: flex;
  align-items: center;
}
.navbar .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
}
.navbar .navbar-toggler span {
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #3c3c3d;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: absolute;
}
.navbar .navbar-toggler span:nth-child(1) {
  top: 10px;
}
.navbar .navbar-toggler span:nth-child(2) {
  top: 18px;
}
.navbar .navbar-toggler span:nth-child(3) {
  top: 26px;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}

.megamenu_desc {
  position: sticky;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.megamenu_desc ul {
  padding-left: 1.5625rem;
  list-style: disc !important;
}
.megamenu_desc ul li {
  display: list-item !important;
  width: 100% !important;
}

footer {
  background-color: #F2F3F5;
  color: #4e4f50;
}
footer .fotter_bottom ul li {
  margin-bottom: 0.5rem;
}
footer .fotter_bottom .social-icons a {
  width: 1.875rem;
  height: 1.875rem;
}
@media only screen and (min-width: 768px) {
  footer .fotter_bottom .accordion .collapse.d-md-block {
    height: 100% !important;
  }
}
footer .fotter_bottom .accordion .btn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  footer .fotter_bottom .accordion .btn {
    cursor: auto;
  }
}
footer .fotter_bottom .accordion .btn:not(.collapsed) .fa-chevron-down {
  transform: rotate(180deg);
}
footer .copyright {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  footer .copyright {
    border-top: 1px solid #cfcfd1;
  }
}
footer .copyright .bottom-links .list-inline-item {
  display: inline-block !important;
  position: relative;
  padding: 0;
}
footer .copyright .bottom-links .list-inline-item:not(:last-child) {
  padding: 0 0.625rem 0 0;
  margin: 0 0.625rem 0 0;
}
footer .copyright .bottom-links .list-inline-item:not(:last-child)::after {
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background-color: #3c3c3d;
  display: block;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
}
footer a {
  color: #4e4f50;
}
footer a:hover {
  color: #F26B2A;
}

.scroll-top {
  height: 2.2rem;
  width: 2.2rem;
  background: #fff !important;
  border: 0.125rem solid #F26B2A !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  bottom: 5rem;
}
.scroll-top .fa-angle-up {
  color: #F26B2A;
}

.video-container > a .wave-effect {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: rgba(54, 51, 60, 0.7);
}
@media only screen and (min-width: 768px) {
  .video-container > a .wave-effect {
    width: 4rem;
    height: 4rem;
  }
}
.video-container > a .wave-effect::after, .video-container > a .wave-effect::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: wave-animation 1.5s infinite;
}
.video-container > a .wave-effect::before {
  animation-delay: 0.5s;
}
.video-container > a .wave-effect::after {
  animation-delay: 1s;
}
.video-container > a .play-btn {
  width: 3.375rem;
  height: 3.375rem;
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .video-container > a .play-btn {
    width: 4.375rem;
    height: 4.375rem;
  }
}

@keyframes wave-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .account_page .page-header {
    margin-right: 299.75px;
  }
}
@media only screen and (min-width: 1440px) {
  .account_page .page-header {
    margin-right: 350px;
  }
}
@media only screen and (min-width: 1600px) {
  .account_page .page-header {
    margin-right: 382.5px;
  }
}
.account_page .breadcrumb_container {
  position: unset !important;
  max-width: 100%;
}
.account_page .breadcrumb_container .breadcrumb {
  margin-bottom: 0.5rem !important;
  padding: 0 !important;
}
.account_page .breadcrumb_container .breadcrumb li a {
  color: #333 !important;
}
.account_page .form-control {
  border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
}
.account_page .form-group .custom-select {
  width: 150px;
}
@media only screen and (min-width: 768px) {
  .account_page .form-group .custom-select {
    width: 100%;
  }
}

.myAccountSidebar > .position-sticky, #sidebar-left > .position-sticky {
  top: 6.25rem;
}
.myAccountSidebar #myaccount_menu li.active a, .myAccountSidebar #myaccount_menu li:hover a, #sidebar-left #myaccount_menu li.active a, #sidebar-left #myaccount_menu li:hover a {
  color: #F26B2A !important;
}

.myAccountSidebar, #sidebar-left {
  margin-top: 160px !important;
}
@media only screen and (min-width: 1248px) {
  .myAccountSidebar, #sidebar-left {
    margin-top: 230px !important;
  }
}
@media only screen and (min-width: 1440px) {
  .myAccountSidebar, #sidebar-left {
    margin-top: 250px !important;
  }
}

#normalcalc .form-group {
  margin-bottom: 20px;
}
#normalcalc .form-group label {
  color: #4e4f50;
  font-weight: 500;
  margin-bottom: 0.625rem !important;
}
#normalcalc .form-group:not(.visualcal) .element_class .custom-control-label {
  background: white;
  padding: 10px 28px;
  white-space: normal;
  word-break: break-word !important;
  word-wrap: break-word !important;
  border: 1px solid #cfcfd1;
}
@media only screen and (min-width: 1200px) {
  #normalcalc .form-group:not(.visualcal) .element_class .custom-control-label {
    padding: 10px 50px;
  }
}
#normalcalc .option_offset {
  margin-left: 0;
}
#normalcalc .custom-control {
  padding: 0;
}
#normalcalc .custom-control .custom-control-label {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #3c3c3d;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 400;
}
#normalcalc .custom-control .custom-control-label::before {
  content: none;
}
#normalcalc .custom-control .custom-control-label:after {
  top: 0.5rem !important;
  right: 0.5rem !important;
  left: unset;
  height: 1.125rem !important;
  width: 1.125rem !important;
  background: none;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
#normalcalc .custom-control .custom-control-label img {
  border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
}
#normalcalc .custom-control .custom-control-input:checked ~ .custom-control-label {
  border: 1px solid #F26B2A !important;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(27, 46, 60, 0.3);
  -moz-box-shadow: 0px 2px 6px 0px rgba(27, 46, 60, 0.3);
  box-shadow: 0px 2px 6px 0px rgba(27, 46, 60, 0.3);
}
#normalcalc .custom-control .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") !important;
  background-size: 0.625rem !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background: #008F51;
}
#normalcalc .custom-control span {
  color: #747577;
}

#product_info #price_calculator {
  background: rgba(242, 243, 245, 0.8);
  padding: 0.9375rem;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
@media only screen and (min-width: 1024px) {
  #product_info #price_calculator {
    padding: 1.5625rem 1.875rem;
  }
}
#product_info #price_calculator .form-control, #product_info #price_calculator .dropdown-toggle, #product_info #price_calculator .custom-control-label {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 1px solid #cfcfd1;
  color: #747577;
}
#product_info #price_calculator .form-control, #product_info #price_calculator .dropdown-toggle {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}
#product_info .alert-info {
  padding: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
  #product_info .alert-info {
    padding: 0.75rem 1.5rem;
  }
}
#product_info .alert-info .alert-link {
  font-weight: 400;
  font-weight: normal;
}
@media only screen and (min-width: 1024px) {
  #product_info .alert-info .alert-link {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#product_info #shippricecalulate #shippingcalc .card-title .accordion-toggle {
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  #product_info #shippricecalulate #shippingcalc .card-title .accordion-toggle {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#product_info #shippricecalulate #shippingcalc .card-title .accordion-toggle:not(.collapsed) .fa-chevron-down {
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  #product_info #shippricecalulate #shippingcalc #shipping_detail .form-group {
    margin: 0;
  }
}
#product_info #shippricecalulate #shippingcalc #shipping_detail > .row, #product_info #shippricecalulate #shippingcalc #shipping_detail #shiptypesdetail {
  align-items: center;
  margin-bottom: 1rem;
}

#productpricetotal {
  padding: 0.5rem 1rem !important;
  background: #E6E6E7 !important;
}
@media only screen and (min-width: 1248px) {
  #productpricetotal {
    padding: 0.5rem 1rem !important;
  }
}
#productpricetotal #producttotalprice {
  align-items: center !important;
  display: flex !important;
  color: #36333c;
}
#productpricetotal.floating-price {
  margin: 0 -15px;
}
@media only screen and (min-width: 1024px) {
  #productpricetotal.floating-price {
    margin: 0 -30px;
  }
}

#product_info .carousel .carouselimages .carousel-control-prev {
  left: 15px;
}
#product_info .carousel .carouselimages .carousel-control-next {
  right: 15px;
}
#product_info #product_images.thumb_vertical .carouselimages, #product_info .kit_product_info.thumb_vertical .carouselimages {
  max-width: unset;
}
@media only screen and (min-width: 1248px) {
  #product_info #product_images.thumb_vertical .carouselimages, #product_info .kit_product_info.thumb_vertical .carouselimages {
    flex: 0 0 calc(100% - 130px);
  }
}
#product_info #product_images.thumb_vertical .carouselimages .carousel-item img, #product_info .kit_product_info.thumb_vertical .carouselimages .carousel-item img {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#product_info #product_images.thumb_vertical .carousel-thumbs, #product_info .kit_product_info.thumb_vertical .carousel-thumbs {
  margin-right: 10px;
}
@media only screen and (min-width: 768px) {
  #product_info #product_images.thumb_vertical .carousel-thumbs, #product_info .kit_product_info.thumb_vertical .carousel-thumbs {
    flex: 0 0 100px;
  }
}
@media only screen and (min-width: 1248px) {
  #product_info #product_images.thumb_vertical .carousel-thumbs, #product_info .kit_product_info.thumb_vertical .carousel-thumbs {
    margin-right: 30px;
  }
}
#product_info #product_images.thumb_vertical .carousel-thumbs a, #product_info .kit_product_info.thumb_vertical .carousel-thumbs a {
  margin-bottom: 10px !important;
  margin-right: 10px !important;
  border: 1px solid transparent;
  padding: 0.25rem;
}
@media only screen and (min-width: 1200px) {
  #product_info #product_images.thumb_vertical .carousel-thumbs a, #product_info .kit_product_info.thumb_vertical .carousel-thumbs a {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 1200px) {
  #product_info #product_images.thumb_vertical .carousel-thumbs a:not(:last-child), #product_info .kit_product_info.thumb_vertical .carousel-thumbs a:not(:last-child) {
    margin-bottom: 22px !important;
    margin-right: 0 !important;
  }
}
#product_info #product_images.thumb_vertical .carousel-thumbs a.active, #product_info .kit_product_info.thumb_vertical .carousel-thumbs a.active {
  border-color: #fbcfba;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#product_info #product_images.thumb_vertical .carousel-thumbs .carousel-thumb, #product_info .kit_product_info.thumb_vertical .carousel-thumbs .carousel-thumb {
  width: 100px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#product_info #product_images.thumb_vertical .carousel-thumbs::-webkit-scrollbar, #product_info .kit_product_info.thumb_vertical .carousel-thumbs::-webkit-scrollbar {
  border-radius: 10px !important;
  width: 3px !important;
  height: 3px !important;
}
#product_info #product_images.thumb_vertical .carousel-thumbs::-webkit-scrollbar-thumb, #product_info .kit_product_info.thumb_vertical .carousel-thumbs::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #F15928 0%, #F47D2C 100%) !important;
  border-radius: 10px !important;
}

.sticky-on-scroll {
  position: sticky;
  top: 100px;
}

/***** Nav Tabs CSS *****/
#InfoTab .nav-tabs {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#InfoTab .nav-tabs .nav-item {
  padding-bottom: 12px;
}
#InfoTab .nav-tabs .nav-item .nav-link {
  padding: 0;
  position: relative;
  border: none;
  margin-right: 1.5rem;
  color: #666;
  font-size: 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 1440px) {
  #InfoTab .nav-tabs .nav-item .nav-link {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1600px) {
  #InfoTab .nav-tabs .nav-item .nav-link {
    margin-right: 2.0625rem;
  }
}
#InfoTab .nav-tabs .nav-item .nav-link::before {
  left: 0;
  right: 0;
  content: "";
  display: block;
  position: absolute;
  height: 2px !important;
  background: transparent;
  bottom: -11px;
}
#InfoTab .nav-tabs .nav-item .nav-link.active, #InfoTab .nav-tabs .nav-item .nav-link:hover {
  color: #F26B2A;
  border: 0;
}
#InfoTab .nav-tabs .nav-item .nav-link.active::before, #InfoTab .nav-tabs .nav-item .nav-link:hover::before {
  background-color: #F26B2A;
}
#InfoTab .nav-tabs .nav-item .nav-link.active {
  font-weight: 600;
}

#product_design_upload {
  position: relative;
}
#product_design_upload .custom-select {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#product_design_upload .custom-select.disabled {
  background: rgba(238, 239, 241, 0.7);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
  border: none;
  height: 4.0625rem !important;
}
#product_design_upload .custom-select.disabled + .input-group-append {
  position: absolute;
  right: 0.625rem;
  top: 50%;
  border: 0;
  margin: auto;
  transform: translateY(-50%);
}
#product_design_upload .custom-select.sizehtml, #product_design_upload .form-control.sizehtml {
  height: 2.625rem;
}
@media only screen and (min-width: 1200px) {
  #product_design_upload .custom-select.sizehtml, #product_design_upload .form-control.sizehtml {
    height: 3.125rem;
  }
}
#product_design_upload .custom_size_cls .dimension-label {
  position: absolute;
  left: 28px;
  top: 52%;
  transform: translateY(-50%);
  color: #666;
  z-index: 1;
}
#product_design_upload .custom_size_cls .dimension-label::after {
  content: "";
  height: 100%;
  display: block;
  width: 1px;
  background-color: #cccccc;
  position: absolute;
  right: -9px;
  top: 0;
}
#product_design_upload .custom_size_cls .sizehtml {
  padding: 8px 12px 8px 45px;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-header {
  background: rgba(238, 239, 241, 0.6980392157);
  padding: 18px 22px;
  border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-header label {
  color: #6B6C6F;
  font-weight: 500 !important;
}
@media only screen and (min-width: 768px) {
  #product_design_upload #standard_upload_block .standard_form_div .card .card-header label {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-header .form-control {
  color: #6B6C6F;
  border: 0;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 2.8125rem;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-header .collapseblock:not(.collapsed) .fa-chevron-down {
  transform: rotate(180deg);
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body {
  background: #EEEFF1;
  border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  padding: 30px;
  margin-top: 2px;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops.uppy-Root {
  width: 100%;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner {
  height: 12.8rem !important;
  border: 0;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles-title strong.mb-1 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500 !important;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title p {
  font-size: 14px;
  font-size: 0.875rem;
  width: 50%;
}
@media only screen and (min-width: 1200px) {
  #product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title p {
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  #product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title p {
    width: 70%;
  }
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title small, #product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title .pdf_size_diff {
  font-size: 10px;
  font-size: 0.625rem;
  word-break: unset;
  white-space: nowrap;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title small, #product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_pord_img_title .prd_size_diff {
  font-size: 10px;
  font-size: 0.625rem;
  word-break: unset;
  white-space: nowrap;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .upload_delete_icon {
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1rem;
  width: 1rem;
  top: -0.25rem;
  right: -0.25rem;
}
#product_design_upload #standard_upload_block .standard_form_div .card .card-body .front-uploader-ops .uppy-Dashboard-inner .uppy-Dashboard-AddFiles .allshowuploadfile .adjust_div button {
  height: 1.75rem;
  width: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #b4b5b6 !important;
}
#product_design_upload #desc ul {
  padding-left: 1.25rem;
  margin-bottom: 0.25rem;
}
#product_design_upload #desc ul li {
  margin-bottom: 0.25rem;
}
#product_design_upload #desc ul li::marker {
  color: #008F51;
}
#product_design_upload #desc a {
  font-size: 14px;
  font-size: 0.875rem;
}

.desc li::marker {
  color: #008F51;
}

.uploader_fancybox .fancybox__carousel {
  background: #F0F2F4 !important;
}
.uploader_fancybox .fancybox__carousel .fancybox__viewport .product_size_success {
  position: absolute;
  top: 24px;
  left: 26px;
}
.uploader_fancybox .fancybox__carousel .fancybox__viewport .fancybox__content img {
  box-shadow: none !important;
}
@media only screen and (min-width: 768px) {
  .uploader_fancybox .fancybox__slide {
    padding: 45px !important;
  }
}

.canvas_iframe {
  position: relative;
  text-align: center;
}
.canvas_iframe .width-top {
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  text-align: center;
  background: #fff;
  border-right: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.canvas_iframe .width-top::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #cccccc;
  height: 1px;
}
.canvas_iframe .width-top span {
  background: #ffffff;
  padding: 0 0.5rem;
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
}
.canvas_iframe .width-top span small {
  padding-left: 0.2rem;
}
.canvas_iframe .height-right {
  position: absolute;
  bottom: 0;
  right: -30px;
  top: 0;
  text-align: center;
  background: #fff;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  width: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
}
.canvas_iframe .height-right::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #cccccc;
  width: 1px;
}
.canvas_iframe .height-right span {
  background: #ffffff;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
}
.canvas_iframe .height-right span small {
  padding-top: 0.2rem;
}

[id^=file_upload_] {
  position: relative;
}
[id^=file_upload_] .upload-mark {
  position: absolute;
  z-index: 9;
  top: 6px;
  left: 6px;
  font-size: 14px;
  font-size: 0.875rem;
}

.media-box-container .product-box .thumbnail {
  height: unset;
}

.upload_mark_danger.alert-danger {
  background: rgba(228, 59, 62, 0.2);
  color: #E43B3E;
  border-color: transparent;
}

#related_products .card {
  border: none !important;
}
#related_products .card .card-body a {
  display: flex !important;
  flex-direction: column-reverse;
}
#related_products .card:hover .card-body a .caption {
  background-color: #e2e6ea;
}
#related_products .slick-next, #related_products .slick-prev {
  margin: 0;
}
#related_products .text-ellips {
  max-width: 80%;
}

/*# sourceMappingURL=theme.css.map */
