/*Fonts path*/
/*Fonts path end*/
/*************** background opacity and gradient *******************/
/*************** Shadow *******************/
/*************** Transform *******************/
/*************** Transition *******************/
/*************** Animation *******************/
/*************** Media Query *******************/
/* Branding Theme CSS For All Themes */
.zoom:hover {
  background: #233a72;
  background: rgba(35, 58, 114, 0.75);
}

/***** Header tag CSS *****/
.page-header {
  color: #0b9444;
  border-bottom: 0 !important;
  padding-bottom: 0;
}
.page-header h1 {
  padding-bottom: 0;
}
.page-header h1 small {
  color: #233a72 !important;
}
@media only screen and (min-width: 1440px) {
  .page-header .input-group .form-control {
    height: calc(2.14em + 1rem + 2px) !important;
  }
}

.page-section-header {
  color: #233a72;
}

.page-sub-header {
  color: #0b9444;
}

.table .thead-light th, .table .thead th, .table thead th {
  color: #233a72 !important;
  background: transparent;
  border-bottom-color: #233a72;
  font-weight: normal;
}

/***** Anchor tag css ******/
a {
  color: #233a72;
  -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: #0b9444;
  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;
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
}
.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.rounded {
  border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -webkit-border-radius: 25px !important;
}

.btn-primary {
  background: #233a72;
  border-color: #233a72;
}
.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: #17264b;
  border-color: #17264b;
}
.btn-primary.disabled, .btn-primary:disabled {
  background: #233a72;
  border-color: #233a72;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-info {
  background: #e6e6e6;
  border-color: #bbbbbb;
  color: #333333;
}
.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: #cdcdcd;
  border-color: #bbbbbb;
  color: #333333;
}
.btn-info.disabled, .btn-info:disabled {
  background: #e6e6e6;
  border-color: #bbbbbb;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-secondary {
  background: #8d8d8d;
  border-color: #8d8d8d;
  color: #ffffff;
}
.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: #676767;
  border-color: #676767;
  color: #ffffff;
}
.btn-secondary.disabled, .btn-secondary:disabled {
  background: #e6e6e6;
  border-color: #e6e6e6;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-success {
  background: #233a72;
  border-color: #233a72;
}
.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: #17264b;
  border-color: #17264b;
}
.btn-success.disabled, .btn-success:disabled {
  background: #233a72;
  border-color: #233a72;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/***** Outline Button ******/
.btn-outline-primary {
  background: transparent;
  border-color: #233a72;
  color: #233a72;
}
.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: #233a72;
  color: #ffffff;
  border-color: #233a72;
}

.btn-outline-secondary {
  background: transparent;
  border-color: #8d8d8d !important;
  color: #8d8d8d;
}
.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: #676767;
  color: #ffffff;
  border-color: #676767;
}

.btn-outline-info {
  background: transparent;
  border-color: #333333;
  color: #333333;
}
.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: #e6e6e6;
  color: #333333;
  border-color: #333333;
}

/***** Link Button ******/
.btn-link {
  color: #0b9444;
}
.btn-link:hover, .btn-link:focus {
  color: #1c1c1c;
}
.btn-link:disabled, .btn-link.disabled {
  color: #1c1c1c;
}

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

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

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

/**** loader ****/
.loading {
  border-color: transparent #233a72;
}

#loading-text {
  color: #233a72;
}

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

.text-info {
  color: #233a72 !important;
}

.text-secondary {
  color: #0b9444 !important;
}

.card-title {
  color: #233a72;
}

.card-title a.btn-link {
  color: #233a72 !important;
}
.card-title a.btn-link:hover {
  color: #233a72 !important;
}

.card-title a:not(.btn) {
  color: #333333 !important;
}
.card-title a:not(.btn):hover {
  color: #233a72 !important;
}

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

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

.badge-info {
  background: #e6e6e6;
  color: #333333;
}

.badge-success {
  background: #233a72;
}

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

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

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

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

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

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

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

.bootstrap-select .dropdown-menu li.active small {
  color: #0b9444 !important;
}
.bootstrap-select .dropdown-toggle small {
  color: #233a72 !important;
}
.bootstrap-select > .dropdown-toggle {
  color: #294486;
  border-color: #294486;
}
.bootstrap-select.show > .dropdown-toggle {
  border-color: #233a72;
}

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

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

/***** Input border-color on focus *****/
.form-control, .custom-select {
  border-color: #294486;
}
.form-control:focus, .custom-select:focus {
  border-color: #233a72;
}

.input-group-text {
  border-color: #294486;
}

.form-group .col-form-label {
  padding-inline: 20px;
}
@media only screen and (min-width: 1440px) {
  .form-group .col-form-label {
    top: 15px;
    padding-inline: 23px;
  }
}
.form-group .input-valid ~ .col-form-label {
  color: #233a72;
  padding-inline: 0.3rem;
}
@media only screen and (min-width: 1440px) {
  .form-group .input-valid ~ .col-form-label {
    padding-inline: 0.3rem;
  }
}

/**** pagination ****/
.page-item.active .page-link {
  background: #233a72;
  border-color: #233a72;
}
.page-item:first-child .page-link {
  border-radius: 30px 0px 0px 30px;
  -moz-border-radius: 30px 0px 0px 30px;
  -webkit-border-radius: 30px 0px 0px 30px;
}
.page-item:last-child .page-link {
  border-radius: 0px 30px 30px 0px;
  -moz-border-radius: 0px 30px 30px 0px;
  -webkit-border-radius: 0px 30px 30px 0px;
}

/**** search dropdown****/
.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor {
  background-color: #e6e6e6;
  color: #233a72;
}
.tt-dropdown-menu .tt-suggestion a {
  color: #333333 !important;
}
.tt-dropdown-menu .tt-suggestion a strong {
  color: #233a72;
}
.tt-dropdown-menu .tt-suggestion:hover strong {
  color: #233a72;
}

.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor {
  background-color: #e6e6e6;
}
.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor strong {
  color: #333333;
}
.tt-dropdown-menu .tt-suggestion a {
  color: #333333;
}
.tt-dropdown-menu .tt-suggestion a strong {
  color: #333333;
}
.tt-dropdown-menu .tt-suggestion:hover strong {
  color: #333333 !important;
}

/**** Account Page CSS ****/
.account-links a:hover {
  color: #233a72;
}
.account-links a:hover .cicon {
  color: #233a72;
}

.account_dashboard_box h4 {
  color: #e6e6e6;
}

/**** JQUERY UPLOADER START ****/
.bar {
  background-color: #233a72;
}

textarea.form-control {
  min-height: 5rem;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  padding-left: 1.4375rem;
}
textarea + .input-group-require {
  position: absolute;
  top: -5px;
  right: 0px;
}

.dropdown.bootstrap-select .btn {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  padding-inline: 1.25rem;
}
@media only screen and (min-width: 1440px) {
  .dropdown.bootstrap-select .btn {
    padding-inline: 1.6875rem;
    height: calc(2.14em + 1rem + 2px) !important;
  }
}
.dropdown.bootstrap-select .btn .filter-option .filter-option-inner, .dropdown.bootstrap-select .btn .filter-option .filter-option-inner-inner {
  height: 100%;
  align-content: center;
}
.dropdown.bootstrap-select .dropdown-menu {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding-block: 0px;
}
.dropdown.bootstrap-select .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.8rem;
}
.dropdown.bootstrap-select > .dropdown-toggle::after {
  margin-top: -1px;
  font-family: "Font Awesome 6 Pro";
  font-size: 0.9375rem;
  display: inline-block;
  top: 50%;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid rgba(0, 0, 0, 0);
  border-bottom: 0;
  border-left: 0.3em solid rgba(0, 0, 0, 0);
}

.custom-select {
  border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  padding-inline: 1.25rem;
}
@media only screen and (min-width: 1440px) {
  .custom-select {
    padding-inline: 1.6875rem;
    height: calc(2.14em + 1rem + 2px) !important;
  }
}

input[type=text].form-control, input[type=search].form-control {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  padding-inline: 1.25rem;
}
@media only screen and (min-width: 1440px) {
  input[type=text].form-control, input[type=search].form-control {
    height: calc(2.14em + 1rem + 2px);
    padding-inline: 1.6875rem;
  }
}

.input-group .input-group-append .btn {
  border-radius: 0px 30px 30px 0px;
  -moz-border-radius: 0px 30px 30px 0px;
  -webkit-border-radius: 0px 30px 30px 0px;
}
.input-group .input-group-append .search_btn {
  width: 2.8125rem;
  border-radius: 0px 30px 30px 0px !important;
  -moz-border-radius: 0px 30px 30px 0px !important;
  -webkit-border-radius: 0px 30px 30px 0px !important;
}
.input-group .input-group-append .search_btn i {
  padding-right: 0 !important;
}
.input-group:has(.input-group-append) .search_txt {
  border-radius: 30px 0px 0px 30px;
  -moz-border-radius: 30px 0px 0px 30px;
  -webkit-border-radius: 30px 0px 0px 30px;
}
.input-group:has(.input-group-append) .input-group-text {
  border-radius: 0px 30px 30px 0px !important;
  -moz-border-radius: 0px 30px 30px 0px !important;
  -webkit-border-radius: 0px 30px 30px 0px !important;
}
.input-group:has(.input-group-append) .input-group-text .close_card {
  border-radius: 0px 30px 30px 0px !important;
  -moz-border-radius: 0px 30px 30px 0px !important;
  -webkit-border-radius: 0px 30px 30px 0px !important;
}
.input-group:has(.input-group-prepend) .close_card {
  border-radius: 0px 30px 30px 0px !important;
  -moz-border-radius: 0px 30px 30px 0px !important;
  -webkit-border-radius: 0px 30px 30px 0px !important;
}
.input-group > input[type=text].form-control {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
@media only screen and (min-width: 1440px) {
  .input-group > input[type=text].form-control {
    height: calc(2.14em + 1rem + 2px) !important;
  }
}
.input-group > #shareLink.form-control {
  border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
}
.input-group .col-form-label {
  top: 0.9375rem;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #bbb !important;
}

input, button, select, optgroup, textarea {
  font-family: "Poppins-Regular", sans-serif !important;
}

.form-control {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
@media only screen and (min-width: 1440px) {
  .form-control {
    height: calc(2.14em + 1rem + 2px);
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #233a72;
  background-color: #233a72;
}
.custom-switch .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: #6080ce;
  border-color: #6080ce;
}
.custom-switch .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #bbb !important;
}

.font-weight-bold {
  font-weight: normal !important;
}

/* Custom CSS Here */
::-webkit-scrollbar {
  height: 5px; /* Height of the horizontal scrollbar */
}

/***** Fonts *****/
@font-face {
  font-family: "Helvetica_neue35_thin";
  src: url("../fonts/helveticaneue-thin_gdi-webfont.woff2") format("woff2"), url("../fonts/helveticaneue-thin_gdi-webfont.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-ExtraBold";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "ops";
  src: url("../fonts/ops.eot?4z85jk");
  src: url("../fonts/ops.eot?4z85jk#iefix") format("embedded-opentype"), url("../fonts/ops.ttf?4z85jk") format("truetype"), url("../fonts/ops.woff?4z85jk") format("woff"), url("../fonts/ops.svg?4z85jk#ops") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=ops-], [class*=" ops-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ops" !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;
}

.ops-account_circle:before {
  content: "\e900";
}

.ops-creat_design:before {
  content: "\e901";
}

.ops-fast_truck:before {
  content: "\e902";
}

.ops-headphone:before {
  content: "\e903";
}

.ops-mail:before {
  content: "\e904";
}

.ops-offer_tag:before {
  content: "\e905";
}

.ops-phone_in_talk:before {
  content: "\e906";
}

.ops-pickup_point:before {
  content: "\e907";
}

.ops-search_icon:before {
  content: "\e908";
}

.ops-securepayment:before {
  content: "\e909";
}

.ops-shipping_truck:before {
  content: "\e90a";
}

.ops-shopping_cart:before {
  content: "\e90b";
}

/***** Reset CSS *****/
body {
  color: #888888;
  background: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Poppins-Regular", "sans-serif";
}

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

h1, .h1, h2, .h2, h3, .h3 {
  font-family: "Poppins-SemiBold", "sans-serif";
  color: #233a72;
}

b, strong {
  font-weight: normal;
}

.h1 {
  letter-spacing: 1px;
  font-size: 30px;
  font-size: 1.875rem;
}
@media only screen and (min-width: 1024px) {
  .h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1248px) {
  .h1 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.h2 {
  font-size: 22px;
  font-size: 1.375rem;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1024px) {
  .h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1248px) {
  .h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

.h3 {
  font-size: 18px;
  font-size: 1.125rem;
}

h4,
.h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Poppins-Regular", "sans-serif";
}

h1 {
  font-size: 28px;
  font-size: 1.75rem;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (min-width: 1248px) {
  h1 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
h1 small {
  font-family: "Poppins-Regular", "sans-serif";
}

h2 {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1248px) {
  h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

h3 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media only screen and (min-width: 1024px) {
  h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.card-title a {
  font-family: "Poppins-Regular", "sans-serif";
  font-size: 14px;
  font-size: 0.875rem;
}
.card-title a span.btn-outline-secondary {
  letter-spacing: 0;
  font-size: 13px;
  font-size: 0.8125rem;
}

.page-header h1 {
  font-size: 30px;
  font-size: 1.875rem;
}
@media only screen and (min-width: 1248px) {
  .page-header h1 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}

/* Nav Tab CSS */
#InfoTab .nav-tabs {
  border-bottom-color: #cccccc;
}
#InfoTab .nav-tabs .nav-item .nav-link {
  color: #888;
  border-width: 0px 0px 2px 0px;
}
#InfoTab .nav-tabs .nav-item .nav-link.active, #InfoTab .nav-tabs .nav-item .nav-link:hover {
  color: #0b9444;
  background: transparent;
  border-color: #cccccc;
  border-color: #0b9444;
}
#InfoTab .tab-content {
  border: 0;
  padding: 1rem;
}
#InfoTab .tab-content strong {
  color: #333;
}

.nav-tabs .nav-item .nav-link {
  margin-right: 0.3125rem;
}

.nav-customtabs .nav-item .nav-link {
  position: relative;
  color: #0b9444;
}
.nav-customtabs .nav-item .nav-link.active, .nav-customtabs .nav-item .nav-link:hover {
  color: #233a72;
  background: transparent;
}
.nav-customtabs .nav-item .nav-link.active:after, .nav-customtabs .nav-item .nav-link:hover:after {
  background: #233a72;
}
.nav-customtabs .nav-item .nav-link:after {
  background: transparent;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  bottom: -1px;
}

.tab-content {
  padding: 1rem 0;
}
.tab-content strong {
  color: #333;
}
.tab-content #product-description p {
  color: #333;
}

/* Date Picker CSS */
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background: #233a72;
}

/* Top Menu CSS */
.navbar {
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .navbar {
    background-color: #DADEE0;
  }
}
.navbar .navbar-collapse {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  justify-content: space-between;
}
.navbar .navbar-collapse .navbar-nav {
  margin-left: 0 !important;
  padding: 0;
}
.navbar .navbar-collapse .navbar-nav .badge-info {
  background: #233a72;
  color: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  padding: 0.8rem 0.8rem;
  color: #333333;
  font-family: "Poppins-Medium", "sans-serif";
}
@media only screen and (min-width: 1600px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.85rem 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  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-collapse .navbar-nav .nav-item.active .nav-link, .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link, .navbar .navbar-collapse .navbar-nav .nav-item:focus .nav-link {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link:before, .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link:before, .navbar .navbar-collapse .navbar-nav .nav-item:focus .nav-link:before {
  width: 100%;
  background: #233a72;
}
.navbar .navbar-collapse .navbar-nav .nav-item.show > .nav-link {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.show > .nav-link:before {
  width: 100%;
  background: #233a72;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary {
  border: none;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary {
    -webkit-box-shadow: 0px 63px 75px 0px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 63px 75px 0px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 63px 75px 0px rgba(0, 0, 0, 0.17);
    border-radius: 0px 0px 19px 19px !important;
    -moz-border-radius: 0px 0px 19px 19px !important;
    -webkit-border-radius: 0px 0px 19px 19px !important;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li {
  background: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li a {
  color: #000;
  border: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li a:after {
  color: #000;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li:last-child > a {
    border-radius: 0px 0px 19px 19px !important;
    -moz-border-radius: 0px 0px 19px 19px !important;
    -webkit-border-radius: 0px 0px 19px 19px !important;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li:hover > .dropdown-item {
  color: #233a72 !important;
  background: #f3f3f3;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li:hover > .dropdown-item:after {
  color: #233a72;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li .dropdown-menu {
  border-radius: 0px 0px 19px 19px;
  -moz-border-radius: 0px 0px 19px 19px;
  -webkit-border-radius: 0px 0px 19px 19px;
  margin: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li .dropdown-menu li {
  background: transparent;
  padding-left: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li .dropdown-menu li a {
  color: #000;
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-primary li .dropdown-menu li a {
    padding-left: 0.8rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover strong {
  color: #233a72;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .nav li a {
  color: #000;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .nav li a strong {
  color: #000;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .nav li:hover a {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .nav li:hover a:hover strong {
  color: #233a72;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show .card {
  background: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show .list-unstyled .dropdown-submenu.active > .dropdown-item, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show .list-unstyled .dropdown-submenu:hover > .dropdown-item {
  color: #000;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show .list-unstyled .dropdown-submenu .dropdown-menu .list-unstyled > li > a {
  color: #000 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show .list-unstyled .dropdown-submenu .dropdown-menu .list-unstyled > li > a:hover {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.show .list-unstyled .dropdown-submenu .card .list-unstyled .dropdown-submenu > a {
  color: #000;
  background: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.login .card {
  background: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu {
  background: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu {
  background: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a {
  color: #000;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a:after {
  color: #000;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu:hover > a, .navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu.active > a {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu:hover > a:after, .navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu.active > a:after {
  color: #233a72;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li > a {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li > a:hover {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled .dropdown-submenu > a {
  color: #233a72 !important;
  background-color: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled .dropdown-submenu > a:hover {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled .dropdown-submenu .list-unstyled > li > a {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled .dropdown-submenu .list-unstyled > li > a:hover {
  color: #233a72 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu img {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    padding: 0;
  }
}
.navbar .navbar-nav .nav-item.show .nav-link {
  color: #233a72;
}
.navbar .dropdown-menu .dropdown-submenu > a::after {
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  .navbar .dropdown-menu .dropdown-submenu > a::after {
    right: 0.625rem;
  }
}

nav .dropdown-menu .dropdown-submenu > a::after {
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  nav .dropdown-menu .dropdown-submenu > a::after {
    right: 0.625rem;
  }
}

@media only screen and (min-width: 1024px) {
  .top-header .header-search .twitter-typeahead {
    width: 388px;
  }
}
.top-header .header-search .twitter-typeahead:after {
  padding: 0 1.3rem;
  background: #fff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  height: 38px;
  content: "\e908";
  font-family: "ops" !important;
  line-height: 2.2;
  color: #233a72;
  font-size: 17px;
  font-size: 1.0625rem;
}
.top-header .header-search .twitter-typeahead::before {
  content: "";
  display: block;
  position: absolute;
  display: block;
  height: 28px;
  width: 1px;
  background-color: #BDB9C7;
  opacity: 0.4;
  filter: alpha(opacity=40);
  right: 3.3rem;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
}
.top-header .header-search .form-control {
  padding: 0.375rem 1rem;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  height: calc(1.5em + 1.1rem);
  border: 1px solid #BDB9C7;
}
.top-header .header-search .form-control::placeholder {
  color: rgba(54, 51, 60, 0.6);
}
.top-header .bootstrap-select {
  margin-left: 0.5rem !important;
  margin-right: 0rem !important;
}
.top-header .bootstrap-select .dropdown-menu {
  z-index: 9999 !important;
}
.top-header .bootstrap-select > .dropdown-toggle {
  padding: 0 0.75rem;
  height: calc(1em + 1rem + 2px) !important;
  max-height: unset !important;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.top-header .bootstrap-select > .dropdown-toggle .filter-option {
  position: relative;
}
.top-header .top-links li {
  margin: 0;
  margin-left: 1.2rem;
}
.top-header .top-links li a {
  padding: 0 0.5rem;
}
@media only screen and (min-width: 768px) {
  .top-header .top-links li a {
    padding-right: 0.5rem;
  }
}
.top-header .top-links li a {
  padding-inline: 0 !important;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .top-header .top-links li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1248px) {
  .top-header .top-links li a i {
    margin-right: 0.1rem;
  }
  .top-header .top-links li a .badge-primary {
    background-color: #000;
  }
}
.top-header .top-links li a:hover {
  color: #233a72;
}
.top-header .top-links li a:hover .badge-primary {
  background-color: #233a72;
}

.navbar .top-nav-cms a span.ops {
  display: block;
}
@media only screen and (min-width: 1248px) {
  .navbar .top-nav-cms a span.ops {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.navbar .top-nav-cms a .badge {
  top: -6px;
  right: -6px;
  font-size: 60%;
}

/* Sidebar CSS */
.sidebar .facebook_login {
  margin-bottom: 1rem;
}
.sidebar .card {
  background: transparent;
}
.sidebar .card .card-body .accordion-menu .list-group-item,
.sidebar .card .card-body .accordion .list-group-item {
  border: 0;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a,
.sidebar .card .card-body .accordion .list-group-item > a {
  color: #0b9444 !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a:after,
.sidebar .card .card-body .accordion .list-group-item > a:after {
  position: absolute;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  right: 10px;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a[aria-expanded=true]:after,
.sidebar .card .card-body .accordion .list-group-item > a[aria-expanded=true]:after {
  content: "\f068";
}
.sidebar .card .card-body .accordion-menu .list-group-item > a:hover, .sidebar .card .card-body .accordion-menu .list-group-item > a[aria-expanded=true],
.sidebar .card .card-body .accordion .list-group-item > a:hover,
.sidebar .card .card-body .accordion .list-group-item > a[aria-expanded=true] {
  color: #233a72 !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item:hover > a,
.sidebar .card .card-body .accordion .list-group-item:hover > a {
  color: #233a72 !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled li a,
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li a {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled li a:before,
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li a:before {
  display: none;
}
.sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled li:hover a, .sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled li.active a,
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li:hover a,
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li.active a {
  color: #233a72 !important;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item {
  background: transparent;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item > a {
  color: #0b9444 !important;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item:hover > a {
  background: #0b9444;
  color: #ffffff !important;
  padding-left: 1.5rem !important;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item .list-unstyled {
  background: #0b9444;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item .list-unstyled li {
  background: transparent;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item .list-unstyled li a {
  color: #ffffff !important;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item .list-unstyled li:hover > a, .sidebar .card .card-body #cssmenu .list-group .list-group-item .list-unstyled li.active > a {
  color: #ffffff !important;
  padding-left: 1.5rem !important;
  background: #0fc35a;
}
.sidebar .card .card-body #cssmenu.without_cat .list-group-item {
  padding: 0 !important;
}
.sidebar .card .card-body #cssmenu.without_cat .list-group-item > a {
  padding: 0.5rem 0.8rem !important;
}
.sidebar .card .card-body .accordion .list-group-item > a {
  color: #0b9444 !important;
  font-family: "Helvetica_neue35_thin", sans-serif;
}
.sidebar .card .card-body .accordion .list-group-item .list-unstyled {
  margin-left: 0.5rem;
}
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li a {
  padding: 0.2rem;
}
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li a:before {
  top: 5px;
}
.sidebar .card .card-body .accordion .list-group-item .list-unstyled li.active a, .sidebar .card .card-body .accordion .list-group-item .list-unstyled li:hover a {
  color: #233a72 !important;
}
.sidebar #straightmenu .list-group .list-group-item > a {
  color: #0b9444 !important;
}
.sidebar #straightmenu .list-group .list-group-item > a:hover, .sidebar #straightmenu .list-group .list-group-item > a.active {
  color: #233a72 !important;
}
.sidebar #straightmenu .list-group .list-group-item .list-unstyled {
  padding-left: 0.8rem;
}
.sidebar #straightmenu .list-group .list-group-item .list-unstyled li a {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.sidebar #straightmenu .list-group .list-group-item .list-unstyled li:hover a, .sidebar #straightmenu .list-group .list-group-item .list-unstyled li.active a {
  color: #233a72 !important;
}
.sidebar #myaccount_menu li:hover a, .sidebar #myaccount_menu li.active a {
  color: #233a72 !important;
}
.sidebar .card-header h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

/* Action Button CSS */
.browse_design,
.upload_design,
.custom_design,
.hire_designer,
.quote_product {
  padding: 1rem 0.5rem;
  border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  -webkit-border-radius: 50px !important;
  -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;
}
.browse_design .btn-img-text,
.upload_design .btn-img-text,
.custom_design .btn-img-text,
.hire_designer .btn-img-text,
.quote_product .btn-img-text {
  color: #ffffff !important;
}
.browse_design .btn-img-text .short-disc,
.upload_design .btn-img-text .short-disc,
.custom_design .btn-img-text .short-disc,
.hire_designer .btn-img-text .short-disc,
.quote_product .btn-img-text .short-disc {
  color: #ffffff !important;
}
.browse_design .btn-img-text i,
.upload_design .btn-img-text i,
.custom_design .btn-img-text i,
.hire_designer .btn-img-text i,
.quote_product .btn-img-text i {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.browse_design:hover,
.upload_design:hover,
.custom_design:hover,
.hire_designer:hover,
.quote_product:hover {
  -webkit-box-shadow: 0 0 5px 1px #73797D;
  -moz-box-shadow: 0 0 5px 1px #73797D;
  box-shadow: 0 0 5px 1px #73797D;
}
.browse_design:hover .btn-img-text,
.upload_design:hover .btn-img-text,
.custom_design:hover .btn-img-text,
.hire_designer:hover .btn-img-text,
.quote_product:hover .btn-img-text {
  color: #ffffff !important;
}
.browse_design:hover .btn-img-text i,
.upload_design:hover .btn-img-text i,
.custom_design:hover .btn-img-text i,
.hire_designer:hover .btn-img-text i,
.quote_product:hover .btn-img-text i {
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.browse_design {
  border-color: #233a72 !important;
  background: #233a72;
}
.browse_design:hover {
  border-color: #17264b !important;
  background: #17264b;
}

.upload_design {
  border-color: #0b9444 !important;
  background: #0b9444;
}
.upload_design:hover {
  border-color: #0dac4f !important;
  background: #0dac4f;
}

.custom_design {
  border-color: #deefe4 !important;
  background: #deefe4;
}
.custom_design .btn-img-text {
  color: #233a72 !important;
}
.custom_design .btn-img-text .short-disc {
  color: #233a72 !important;
}
.custom_design:hover .btn-img-text {
  color: #233a72 !important;
}
.custom_design:hover {
  border-color: #bcdec8 !important;
  background: #bcdec8;
}

.hire_designer {
  border-color: #233a72 !important;
  background: #233a72;
}
.hire_designer:hover {
  border-color: #17264b !important;
  background: #17264b;
}

.quote_product {
  border-color: #233a72 !important;
  background: #233a72;
}
.quote_product:hover {
  border-color: #17264b !important;
  background: #17264b;
}

#action-btn .btn-title-text {
  padding: 0;
  border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  -webkit-border-radius: 25px !important;
}
#action-btn .btn-title-text .h4 {
  font-size: 18px;
  font-size: 1.125rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-flow: row-reverse;
  gap: 0.625rem;
}
#action-btn .btn-title-text.browse_design {
  background: #233a72 !important;
  border-color: #233a72 !important;
}
#action-btn .btn-title-text.browse_design a .h4,
#action-btn .btn-title-text.browse_design a i {
  color: #ffffff !important;
}
#action-btn .btn-title-text.browse_design:hover {
  background: transparent !important;
}
#action-btn .btn-title-text.browse_design:hover a .h4,
#action-btn .btn-title-text.browse_design:hover a i {
  color: #233a72 !important;
}
#action-btn .btn-title-text.upload_design {
  background: #0b9444 !important;
  border-color: #0b9444 !important;
}
#action-btn .btn-title-text.upload_design a .h4,
#action-btn .btn-title-text.upload_design a i {
  color: #ffffff !important;
}
#action-btn .btn-title-text.upload_design:hover {
  background: transparent !important;
}
#action-btn .btn-title-text.upload_design:hover a .h4,
#action-btn .btn-title-text.upload_design:hover a i {
  color: #0b9444 !important;
}
#action-btn .btn-title-text.custom_design {
  background: #deefe4 !important;
  border-color: #deefe4 !important;
}
#action-btn .btn-title-text.custom_design a .h4,
#action-btn .btn-title-text.custom_design a i {
  color: #233a72 !important;
}
#action-btn .btn-title-text.custom_design:hover {
  background: transparent !important;
}
#action-btn .btn-title-text.custom_design:hover a .h4,
#action-btn .btn-title-text.custom_design:hover a i {
  color: #0b9444 !important;
}
#action-btn .btn-title-text.hire_designer {
  background: #233a72 !important;
  border-color: #233a72 !important;
}
#action-btn .btn-title-text.hire_designer a .h4,
#action-btn .btn-title-text.hire_designer a i {
  color: #ffffff !important;
}
#action-btn .btn-title-text.hire_designer:hover {
  background: transparent !important;
}
#action-btn .btn-title-text.hire_designer:hover a .h4,
#action-btn .btn-title-text.hire_designer:hover a i {
  color: #233a72 !important;
}
#action-btn .btn-title-text.quote_product {
  background: #233a72 !important;
  border-color: #233a72 !important;
}
#action-btn .btn-title-text.quote_product a .h4 {
  color: #ffffff !important;
}
#action-btn .btn-title-text.quote_product:hover {
  background: transparent !important;
}
#action-btn .btn-title-text.quote_product:hover a .h4 {
  color: #233a72 !important;
}

/* CMS Header CSS */
.header-content .media {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: 0 0 3px 0 #e5e5e5;
  -moz-box-shadow: 0 0 3px 0 #e5e5e5;
  box-shadow: 0 0 3px 0 #e5e5e5;
}
.header-content .media .icon {
  font-size: 35px;
  font-size: 2.1875rem;
}
.header-content .media .icon i {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.header-content .media h2 {
  font-size: 20px;
  font-size: 1.25rem;
  -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;
}
.header-content .media p {
  -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;
}
.header-content .media:hover i {
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
  color: #233a72;
}
.header-content .media:hover h2,
.header-content .media:hover p {
  color: #233a72;
}

/* Product Hover Effact CSS */
.product-box .card {
  border: none;
}
@media only screen and (min-width: 768px) {
  .product-box .card {
    text-align: center;
  }
}
.product-box .card .card-title {
  color: #233a72;
}
.product-box .card .card-body .card-text strong {
  display: none;
}
.product-box .card .card-footer {
  display: none !important;
}
.product-box .card .thumbnail, .product-box .card img {
  -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;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.product-box .card .corner-triangle {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.product-box .card.flip3d .card-header {
  text-align: left;
  border-bottom-color: #0b9444;
}
.product-box .card.flip3d .card-header .card-title {
  color: #0b9444 !important;
}
.product-box .card.flip3d .card-header .card-title h3 {
  font-size: 18px;
  font-size: 1.125rem;
}
.product-box .card.flip3d .card-body {
  text-align: left;
}
.product-box .card.flip3d .card-body .face.back {
  background: #f3f3f3;
}
.product-box .card.slideup .card-body {
  background: #0b9444 !important;
}
.product-box .card.slideup .card-body .card-title {
  color: #ffffff !important;
}
.product-box .card.slide-hover .card-title {
  background: #e6e6e6 !important;
  text-align: left;
}
.product-box .card.slide-hover .card-title:after {
  background: #cdcdcd;
}
.product-box .card.slide-hover .card-text {
  color: #fff;
}
.product-box .card.slide-hover .card-text > a {
  color: #0b9444;
}
.product-box .card.slide-hover .card-body .card-text strong,
.product-box .card.slide-hover .card-body .card-text p {
  color: #ffffff;
}
.product-box .card:hover .thumbnail {
  box-shadow: 0 1px 3px 2px #dbdbdb;
}
.product-box .card.title-top {
  background-color: #e6e6e6;
}
.product-box .card.title-top .thumbnail {
  box-shadow: none;
}

/* Middle Footer CSS */
.middle-footer-content .media .media-body h3 {
  font-size: 26px;
  font-size: 1.625rem;
}
@media only screen and (min-width: 768px) {
  .middle-footer-content .media .media-body h3 {
    font-size: 32px;
    font-size: 2rem;
  }
}
.middle-footer-content .desc p {
  font-size: 18px;
  font-size: 1.125rem;
}
.middle-footer-content #categoryTabContent {
  padding: 0rem 0;
}
@media only screen and (min-width: 768px) {
  .middle-footer-content #categoryTabContent {
    padding: 1rem 0;
  }
}

/* Footer CSS */
.footer-content {
  border-color: rgba(144, 148, 152, 0.5) !important;
}
.footer-content .list-unstyled {
  margin: 0;
}
.footer-content .list-unstyled > li {
  float: none;
  width: 100%;
  padding: 0.3rem 0rem;
}
.footer-content .list-unstyled > li a {
  color: rgba(54, 51, 60, 0.7);
  padding: 0.3rem 0rem;
}
.footer-content .list-unstyled > li a:hover {
  color: #233a72;
}
.footer-content .list-unstyled > li ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  padding: 0.3rem 0rem;
}
.footer-content .list-unstyled > li ul li .badge-info {
  background: #233a72;
  color: #ffffff;
}
.footer-content .list-unstyled > li ul li a {
  display: block;
  padding: 0.3rem 0rem;
  color: rgba(54, 51, 60, 0.7);
}
.footer-content .list-unstyled > li ul li a:hover {
  color: #233a72;
}
.footer-content .social ul {
  padding: 0;
}
.footer-content .social ul li {
  display: inline-block;
  margin: 0 0.2rem;
}
.footer-content .social ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  text-align: center;
  line-height: 2;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.footer-content .social ul li a.rss {
  background: #e57c2a;
}
.footer-content .social ul li a.facebook {
  background: #395498;
}
.footer-content .social ul li a.g-plus {
  background: #d54836;
}
.footer-content .social ul li a.twitter {
  background: #1ca6d6;
}
.footer-content .social ul li a.pinterest {
  background: #b7081b;
}
.footer-content .social ul li a:hover {
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.footer-content h3 {
  margin-bottom: 0.8rem !important;
  color: #233a72;
}
.footer-content .card {
  border: 0;
  background: transparent;
  margin: 0 !important;
}
.footer-content .card .card-header {
  border: 0;
  background: transparent;
  padding: 0;
}
.footer-content .card .card-body {
  padding: 0;
}
.footer-content .bottom-links li {
  display: block;
  padding-left: 0;
}
.footer-content .bottom-links li a {
  color: rgba(54, 51, 60, 0.7);
}
.footer-content .bottom-links li a:hover {
  color: #233a72;
}
.footer-content a {
  color: #888888 !important;
}
.footer-content a i {
  color: #233a72;
  -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;
}
.footer-content a:hover {
  color: #233a72 !important;
}
.footer-content a:hover i {
  color: #233a72;
}

footer.border-top {
  border-color: rgba(144, 148, 152, 0.5) !important;
}
footer .bottom-links {
  order: 1;
  margin-bottom: 1rem !important;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  footer .bottom-links {
    text-align: center;
    order: 2;
    margin-bottom: 0 !important;
  }
}
footer .bottom-links .list-inline-item {
  padding: 0;
  margin: 0;
  display: inline-block;
}
footer .bottom-links .list-inline-item a {
  padding: 0.2rem 0.5rem;
  border-right: 0;
  color: #333333;
  display: inline-block;
}
footer .bottom-links .list-inline-item a:hover, footer .bottom-links .list-inline-item a.active {
  color: #233a72;
}
footer .bottom-links .list-inline-item:not(:last-child) {
  margin-right: 0.5rem !important;
}
@media only screen and (min-width: 768px) {
  footer .bottom-links .list-inline-item:not(:last-child) a {
    border-right: 1px solid #bbbbbb;
  }
}
footer .text-muted {
  order: 2;
  font-size: 14px;
  font-size: 0.875rem;
  color: #5A5A5A !important;
}
footer .list-inline-item {
  margin-right: 0.75rem !important;
}

/* Common CSS */
.media-filter li a {
  background: #e6e6e6;
  border-color: #e6e6e6;
  color: #333333;
}
.media-filter li a:hover, .media-filter li a.selected {
  background: #cdcdcd;
  border-color: #bbbbbb;
  color: #333333 !important;
}
.media-filter .media-boxes-drop-down-header {
  border: 1px solid #e6e6e6;
}

.treeview li .act {
  color: #233a72 !important;
}
.treeview li a:hover {
  color: #233a72 !important;
}

#category_list a:hover, #category_list a.act {
  color: #233a72;
}
#category_list .card {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#category_list .card .card-header {
  padding: 0.9rem 1.4rem;
}
#category_list .card .card-header h4 {
  font-family: "Poppins-SemiBold", "sans-serif";
  font-size: 20px;
  font-size: 1.25rem;
}
#category_list .card .card-body {
  padding-block: 0.7rem 1.4rem !important;
}

/* Date Picker CSS */
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background: #233a72;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  font-size: 12px;
  font-size: 0.75rem;
}

/*Breadcrumb CSS*/
.breadcrumb_container .breadcrumb {
  padding: 0;
}
.breadcrumb_container .breadcrumb li a {
  color: #333;
}
.breadcrumb_container .breadcrumb li a span {
  letter-spacing: 1px;
}
.breadcrumb_container .breadcrumb li a:hover {
  color: #233a72;
}
.breadcrumb_container .breadcrumb li.active .a {
  color: #233a72;
}

#designer_template_category li a:hover, #designer_template_category li a.p_act {
  color: #233a72;
}

.form-control:focus + .input-group-append .input-group-text {
  border-color: #233a72;
}
.form-control:focus ~ .col-form-label {
  color: #233a72;
}

/***** Container Width *****/
@media only screen and (min-width: 1248px) {
  .container {
    max-width: 1310px;
  }
}
.container:has(#top-banner) {
  max-width: 100%;
  padding-inline: 0;
}

#sitemap ul li a:hover {
  color: #233a72;
}

#product_help_template .tab-content a {
  color: #233a72;
}
#product_help_template .tab-content a:hover {
  color: #233a72;
}

.account-links a {
  color: #999999;
}
.account-links a .cicon {
  color: #999999;
}
.account-links a:hover {
  color: #233a72;
}
.account-links a:hover .cicon {
  color: #233a72;
}

.HomePage_Title h1 {
  font-size: 32px;
  font-size: 2rem;
  color: #233a72;
  text-align: left;
}

.navbar-collapse .navbar-nav .nav-item.all-category-menu .dropdown-menu li a {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.triangle-slide-overlay .card-body .card-title {
  color: #ffffff !important;
}
.triangle-slide-overlay .card-body .card-text p,
.triangle-slide-overlay .card-body .card-text strong {
  color: #ffffff !important;
}

#top-banner .carousel-indicators li {
  background-color: #fff;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  opacity: 1;
  position: relative;
  margin-right: 0.5rem;
}
#top-banner .carousel-indicators li.active {
  background-color: #233a72;
}
#top-banner .carousel-indicators li.active:after {
  content: "";
  display: block absolute "";
  position: absolute;
  height: 16px;
  width: 16px;
  border: 1px solid #233a72;
  top: -2px;
  left: -2px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
#top-banner .carousel-control-next {
  right: 20px;
}
#top-banner .carousel-control-prev {
  left: 20px;
}

.carousel-control-prev, .carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  background: #DADEE0;
  margin: auto;
  opacity: 1;
}
.carousel-control-prev .carousel-control-next-icon, .carousel-control-next .carousel-control-next-icon {
  background-image: none;
  display: flex;
  align-items: center;
  color: #626262;
  justify-content: center;
}
.carousel-control-prev .carousel-control-next-icon:before, .carousel-control-next .carousel-control-next-icon:before {
  content: "\f054";
  display: block;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
}
.carousel-control-prev .carousel-control-prev-icon, .carousel-control-next .carousel-control-prev-icon {
  background-image: none;
  display: flex;
  align-items: center;
  color: #233a72;
  justify-content: center;
}
.carousel-control-prev .carousel-control-prev-icon:before, .carousel-control-next .carousel-control-prev-icon:before {
  content: "\f053";
  display: block;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
}

.awesome-bar {
  position: relative !important;
}
.awesome-bar .carousel-control-prev, .awesome-bar .carousel-control-next {
  width: 25px;
  height: 25px;
}
.awesome-bar .awesome-bar_close {
  top: 50%;
  transform: translateY(-50%);
}

.uppy-Dashboard-inner {
  border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
}

#product_images .carousel-control-next {
  right: 20px;
}
#product_images .carousel-control-prev {
  left: 20px;
}
#product_images img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#product_images.thumb_vertical .carousel-thumbs a {
  margin-bottom: 1rem !important;
}

.slick-arrow {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  background: #e6e6e6 !important;
  z-index: 9 !important;
}
.slick-arrow.slick-prev {
  display: flex;
  align-items: center;
  color: #233a72;
  justify-content: center;
}
.slick-arrow.slick-prev:before {
  content: "\f053";
  display: block;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
}
.slick-arrow.slick-next {
  display: flex;
  align-items: center;
  color: #233a72;
  justify-content: center;
}
.slick-arrow.slick-next:before {
  content: "\f054";
  display: block;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
}

.section-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media only screen and (min-width: 1248px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 1600px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.section_heading {
  color: #233a72;
  line-height: 32px;
}
@media only screen and (min-width: 1024px) {
  .section_heading {
    line-height: 45px;
  }
}

.our_services .service_box h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Poppins-SemiBold", "sans-serif";
  color: #233a72;
}
.our_services .service_box p {
  color: rgba(54, 51, 60, 0.7);
}
.our_services .service_box span {
  font-size: 56px;
  font-size: 3.5rem;
  color: #000;
}
.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);
}
.our_services .service_box:hover span::before {
  color: #233a72;
}
.our_services .right_arrow {
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.our_services .right_arrow svg {
  -webkit-transition: ease 0.5s all;
  -moz-transition: ease 0.5s all;
  -ms-transition: ease 0.5s all;
  -o-transition: ease 0.5s all;
  transition: ease 0.5s all;
}
@media only screen and (min-width: 768px) {
  .our_services .right_arrow {
    -moz-transform: unset;
    -o-transform: unset;
    -ms-transform: unset;
    -webkit-transform: unset;
    transform: unset;
  }
}
@media only screen and (min-width: 1024px) {
  .our_services .right_arrow {
    position: absolute;
    right: -25px;
    top: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .our_services .right_arrow.free_delivery {
    position: absolute;
    right: -25px;
    top: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .our_services .right_arrow.secure_payment {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .our_services .right_arrow.secure_payment {
    -moz-transform: unset;
    -o-transform: unset;
    -ms-transform: unset;
    -webkit-transform: unset;
    transform: unset;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .our_services .right_arrow.Best_offer {
    position: absolute;
    -moz-transform: unset;
    -o-transform: unset;
    -ms-transform: unset;
    -webkit-transform: unset;
    transform: unset;
    right: -25px;
    top: 25px;
    left: unset;
  }
}
.our_services .service_box svg {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
}
.our_services .service_box:hover .right_arrow svg {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
  fill: #233a72;
}
.our_services .service_box:hover .right_arrow svg circle {
  -webkit-transition: all 2s ease;
  -moz-transition: all 2s ease;
  -ms-transition: all 2s ease;
  -o-transition: all 2s ease;
  transition: all 2s ease;
  fill: #233a72;
}
.our_services .service_box:hover .right_arrow svg path {
  stroke: #fff;
}

.Login_Popup .card-body .dropdown-item-text {
  margin-top: 1rem;
  padding-top: 1rem !important;
  border-top: 1px solid #e9ecef;
}

.offer_section .packaging_product_box {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
}
.offer_section .packaging_product_box small {
  letter-spacing: 2px;
}
@media only screen and (min-width: 1024px) {
  .offer_section .packaging_product_box h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.offer_section .packaging_product_box:after {
  content: "";
  display: block;
  position: absolute;
  height: 308px;
  width: 338px;
  background-color: #939db5;
  right: -20px;
  bottom: -150px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  .offer_section .packaging_product_box:after {
    right: -120px;
  }
}
@media only screen and (min-width: 1248px) {
  .offer_section .packaging_product_box:after {
    right: -20px;
  }
}
.offer_section .packaging_product_box .packaging_img {
  position: relative;
  z-index: 1;
}
.offer_section .packaging_product_box .packaging_img img {
  max-width: 80%;
}
@media only screen and (min-width: 1024px) {
  .offer_section .packaging_product_box .packaging_img {
    position: absolute;
    right: 0;
    bottom: 20px;
  }
  .offer_section .packaging_product_box .packaging_img img {
    max-width: 80%;
  }
}
@media only screen and (min-width: 1248px) {
  .offer_section .packaging_product_box .packaging_img img {
    max-width: 100%;
  }
}
.offer_section .packaging_product_box .mug {
  right: 0;
  top: unset;
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .offer_section .packaging_product_box .mug {
    right: -40px;
  }
}
@media only screen and (min-width: 1248px) {
  .offer_section .packaging_product_box .mug {
    right: 0px;
  }
}

.product-category {
  background-image: url(../images/product_cat_background.jpg);
  background-position: top center;
  background-size: cover;
}
.product-category > .container > .row > div:last-child {
  display: flex;
  justify-content: end;
}
.product-category #categoryTab {
  overflow-X: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  border-bottom: 0;
}
.product-category #categoryTab li {
  -webkit-transition: ease 0.3s all;
  -moz-transition: ease 0.3s all;
  -ms-transition: ease 0.3s all;
  -o-transition: ease 0.3s all;
  transition: ease 0.3s all;
}
.product-category #categoryTab li a {
  -webkit-transition: ease 0.3s all;
  -moz-transition: ease 0.3s all;
  -ms-transition: ease 0.3s all;
  -o-transition: ease 0.3s all;
  transition: ease 0.3s all;
  color: #333;
  white-space: nowrap;
}
.product-category #categoryTab li a.active, .product-category #categoryTab li a:hover {
  -webkit-transition: ease 0.3s all;
  -moz-transition: ease 0.3s all;
  -ms-transition: ease 0.3s all;
  -o-transition: ease 0.3s all;
  transition: ease 0.3s all;
  background-color: transparent;
  color: #233a72;
}
.product-category #categoryTab li a.active::after, .product-category #categoryTab li a:hover::after {
  width: 50%;
}
.product-category #categoryTab li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  background: #233a72;
  transition: width 0.3s;
  left: 0;
  right: 0;
  margin-inline: auto;
  bottom: 2px;
}
.product-category #categoryTabContent .card {
  background-color: transparent;
}
.product-category #categoryTabContent .card .thumbnail {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.product-category #categoryTabContent .card h3 {
  color: #233a72;
}

.video_section .ops-pickup_point, .video_section .ops-creat_design, .video_section .ops-shipping_truck {
  font-size: 36px;
  font-size: 2.25rem;
  max-width: 45px;
  width: 100%;
}
.video_section .pickup_content h4, .video_section .creat_design h4, .video_section .shipping_you h4 {
  font-family: "Poppins-SemiBold", "sans-serif";
  color: #233a72;
}
.video_section .play-btn-icon {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}

.social_media_icons li {
  position: relative;
}
.social_media_icons li a {
  height: 2rem;
  width: 2rem;
  border: 1px solid rgba(35, 57, 114, 0.5);
  -webkit-transition: 0.6s ease all;
  -moz-transition: 0.6s ease all;
  -ms-transition: 0.6s ease all;
  -o-transition: 0.6s ease all;
  transition: 0.6s ease all;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.social_media_icons li a i {
  font-size: 14px;
  font-size: 0.875rem;
  color: #233a72;
  -webkit-transition: 0.6s ease all;
  -moz-transition: 0.6s ease all;
  -ms-transition: 0.6s ease all;
  -o-transition: 0.6s ease all;
  transition: 0.6s ease all;
}
.social_media_icons li:hover a {
  color: #233a72;
  border-color: #233a72;
}
.social_media_icons li:hover a i {
  color: #233a72;
}

#footersubscribe_sidebar .card-header .card-title {
  font-size: 16px;
  font-size: 1rem;
  color: rgba(54, 51, 60, 0.7);
  margin-bottom: 1.5rem !important;
}
#footersubscribe_sidebar .card-body .input-group .col-form-label {
  padding-left: 1rem;
}
#footersubscribe_sidebar .card-body .form-group .form-control:focus ~ .col-form-label {
  padding-left: 0.3rem;
}
#footersubscribe_sidebar .help-block {
  display: none;
}
#footersubscribe_sidebar .form-group.email .input-group {
  height: calc(2em + 1rem + 2px) !important;
}
#footersubscribe_sidebar .form-group.email .input-group .form-control {
  height: auto !important;
}
#footersubscribe_sidebar .form-group.email .fa-envelope::before {
  content: "\f061" !important;
}

.price_calculator .slick-track .slick-slide .custom-control .custom-control-label {
  border: 1px solid rgba(0, 0, 0, 0.25);
  margin-bottom: 0.5rem;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 0.5rem;
}
.price_calculator .slick-track .slick-slide .custom-radio .custom-control-input:checked ~ .custom-control-label {
  border-color: #233a72;
}
.price_calculator .slick-track .slick-slide .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #233a72;
}
.price_calculator .slick-track .slick-slide .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  height: 1rem;
  width: 1rem;
}
.price_calculator #shippingcalc .page-section-header {
  border-bottom: none !important;
  border-top: 1px solid #dee2e6 !important;
  padding-top: 1rem;
  margin-bottom: 0 !important;
}
.price_calculator #shippingcalc .page-section-header h4 a {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  font-family: "Poppins-Semibold", "sans-serif !important";
}
.price_calculator #shippingcalc #shipping_detail {
  padding-top: 1rem !important;
}

#productpricetotal {
  -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;
}
#productpricetotal .sub-total {
  align-items: center;
}
#productpricetotal .sub-total .pr-1 {
  font-family: "Poppins-Regular", "sans-serif";
  font-size: 20px;
  font-size: 1.25rem;
  color: #294486;
}
#productpricetotal .sub-total span {
  color: #233a72;
  font-family: "Poppins-Semibold", "sans-serif";
}
@media only screen and (min-width: 768px) {
  #productpricetotal .sub-total span {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
#productpricetotal.floating-price {
  -webkit-box-shadow: 0px 0px 10px 1px #e8edf8;
  -moz-box-shadow: 0px 0px 10px 1px #e8edf8;
  box-shadow: 0px 0px 10px 1px #e8edf8;
  padding: 0.3rem 1rem;
}

.fa-share::before {
  content: "\f1e0" !important;
  font-weight: initial;
  font-size: 18px;
  font-size: 1.125rem;
  color: #233a72;
}

#price_calculator .card-header .card-title .row > .col-6 {
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Poppins-SemiBold", "sans-serif";
}
#price_calculator #generate_link {
  color: #233a72 !important;
  font-size: 16px;
  font-size: 1rem;
}
#price_calculator #generate_link i {
  margin-right: 0.5rem !important;
}

#normalcalc label {
  font-family: "Poppins-Semibold", "sans-serif";
  color: #233a72;
}
#normalcalc .custom-control-label {
  font-family: "Poppins-Regular", "sans-serif";
  color: #888;
}
#normalcalc .slick-slider label {
  font-family: "Poppins-Regular", "sans-serif";
  color: #888;
}

#shipping_detail #shipzipcode .form-control {
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
}
#shipping_detail #shipzipcode .col-form-label {
  padding-left: 1rem;
}
#shipping_detail #shipzipcode .form-group .form-control.input-valid ~ .col-form-label {
  padding-left: 0.3rem;
}
#shipping_detail #calculate_button #btncalcship {
  background-color: #233a72;
  border-color: #233a72;
}
@media only screen and (min-width: 1440px) {
  #shipping_detail #calculate_button #btncalcship {
    height: calc(2em + 1rem + 2px) !important;
  }
}

#calculate_button button {
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
}

#shipestimatetotalprice {
  align-items: center;
}
#shipestimatetotalprice #shipping_total {
  font-family: "Poppins-Semibold", "sans-serif";
}
@media only screen and (min-width: 768px) {
  #shipestimatetotalprice #shipping_total {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
#shipestimatetotalprice .pr-1 {
  color: #4c70c8;
}
#shipestimatetotalprice #disp_total_price {
  font-family: "Poppins-Semibold", "sans-serif";
  font-size: 26px;
  font-size: 1.625rem;
  color: #233a72;
}

.ops-shopping_cart::before {
  font-size: 24px;
  font-size: 1.5rem;
}

.testimonial_home {
  background-image: url(../images/testimonial_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.testimonial_home .score > label {
  text-shadow: none !important;
}

#testimonial_sidebar {
  border: none;
  background-color: transparent;
}
#testimonial_sidebar .card-header {
  border: none;
  background-color: transparent;
  text-align: left;
  padding-left: 0;
}
#testimonial_sidebar .card-header h4 {
  font-family: "Poppins-Semibold", "sans-serif";
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (min-width: 1024px) {
  #testimonial_sidebar .card-header h4 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1248px) {
  #testimonial_sidebar .card-header h4 {
    font-size: 32px;
    font-size: 2rem;
  }
}
#testimonial_sidebar .card-footer {
  background-color: transparent;
  border: none;
}
#testimonial_sidebar .card-footer .carousel-control-prev, #testimonial_sidebar .card-footer .carousel-control-next {
  height: 44px;
  width: 44px;
  background: #DADEE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#testimonial_sidebar .card-footer .carousel-control-next {
  right: unset;
  left: 53px;
}
#testimonial_sidebar .star-list {
  float: unset !important;
}
#testimonial_sidebar .star-list .score {
  float: unset !important;
}
#testimonial_sidebar .star-list .score label {
  float: unset !important;
}

#testimonial_multi_sidebar {
  border: none;
  background: transparent;
  margin-bottom: 0 !important;
}
#testimonial_multi_sidebar:has(.carousel-item > .row > .col-md-4:nth-child(4)) .carousel-controls {
  display: block;
}
#testimonial_multi_sidebar > .card-header {
  text-align: left;
  border: none;
  background: transparent;
  padding: 0 0 1.875rem;
}
#testimonial_multi_sidebar > .card-header .card-title {
  font-family: "Poppins-SemiBold", "sans-serif";
  color: #233a72;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media only screen and (min-width: 1024px) {
  #testimonial_multi_sidebar > .card-header .card-title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1248px) {
  #testimonial_multi_sidebar > .card-header .card-title {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
#testimonial_multi_sidebar > .card-body {
  padding: 0;
}
#testimonial_multi_sidebar > .card-body .carousel-inner .carousel-item > .row .card {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border: none;
  text-align: left;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.01);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.01);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.01);
}
#testimonial_multi_sidebar > .card-body .carousel-inner .carousel-item > .row .card .card-body blockquote {
  margin-bottom: 0;
}
#testimonial_multi_sidebar > .card-body .carousel-inner .carousel-item > .row .card .card-body blockquote small {
  color: #233a72;
  font-family: "Poppins-SemiBold", "sans-serif";
  font-size: 100%;
}
#testimonial_multi_sidebar > .card-body .carousel-inner .carousel-item > .row .card .card-body blockquote small span {
  font-size: 80%;
}
#testimonial_multi_sidebar > .card-body .carousel-indicators {
  display: none;
}
#testimonial_multi_sidebar > .card-footer {
  position: static;
  border: none;
  background: transparent;
  padding-bottom: 0;
}
#testimonial_multi_sidebar > .card-footer .carousel-controls {
  top: 0;
  position: absolute;
  right: 0;
}
#testimonial_multi_sidebar > .card-footer .carousel-controls .carousel-control-prev, #testimonial_multi_sidebar > .card-footer .carousel-controls .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 0;
  bottom: auto;
}
#testimonial_multi_sidebar > .card-footer .carousel-controls .carousel-control-prev {
  right: 59px;
  left: auto;
}
#testimonial_multi_sidebar > .card-footer .carousel-controls .carousel-control-next {
  right: 0;
  left: auto;
}
#testimonial_multi_sidebar .score {
  margin-top: 1.3rem !important;
  margin-bottom: 0.5rem;
}
#testimonial_multi_sidebar .score > label {
  padding-left: 0;
}

#avatar {
  background-color: #cdcdcd !important;
}

#frm_search_tmp .input-group .input-group-append #srch {
  padding: 0.25rem 0.75rem;
}

#portfolio_search .input-group .input-group-append .search_btn {
  padding: 0.25rem 0.75rem;
}

#shopping-cart .order-details .d-flex.qty-col {
  align-items: flex-start;
}

.middle_inner_section .product-box .card .card-body .card-title {
  font-size: 20px;
  font-size: 1.25rem;
}

#templates_listing_area .templatebox .card {
  border: none;
}
#templates_listing_area .templatebox .card .thumbnail {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
#templates_listing_area .templatebox .card .thumbnail:hover {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
#templates_listing_area .templatebox .card .card-footer .card-title {
  font-family: "Poppins-SemiBold", "sans-serif";
  font-size: 20px;
  font-size: 1.25rem;
}

.myAccountSidebar .user-profile .profile-name {
  font-size: 25px;
  font-size: 1.5625rem;
}

#related-product .product-box .card .card-body .caption {
  -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: #233a72;
  font-family: "Poppins-SemiBold", "sans-serif";
}
#related-product .product-box:hover .caption {
  color: #233a72 !important;
}

.user-info {
  align-items: center;
}
.user-info p {
  margin-bottom: 0 !important;
}

.success-block {
  z-index: 5;
}

.fancybox__container {
  padding: 1rem !important;
}

#shipping #div_shipping_type_options span {
  color: #233a72;
}
#shipping #shipping_address address b {
  color: #233a72;
}

#product_design_upload .page-header .btn {
  display: flex;
  align-items: center;
}
#product_design_upload .uppy-Root .uploader-spinner {
  border-radius: 30px !important;
}
#product_design_upload .uppy-Root .uppy-StatusBar {
  border-radius: 0 0 30px 30px !important;
}

.checkoutRightSide .btn-info {
  background-color: #233a72 !important;
  color: #fff;
}
.checkoutRightSide .btn-info:hover {
  background-color: #111c37 !important;
}

#shareProductLinkModal h2 {
  font-size: 24px;
  font-size: 1.5rem;
}

#actionButtonsModal h2 {
  font-size: 28px;
  font-size: 1.75rem;
}

.breadcrumb_container + script + .page-header, .page-header + .breadcrumb_container, .page-header h1 + div ul {
  margin-bottom: 2rem !important;
}

.navbar .dropdown-menu .dropdown-submenu:not(:first-child) .dropdown-menu {
  border-radius: 19px !important;
  -moz-border-radius: 19px !important;
  -webkit-border-radius: 19px !important;
}

#togglemenu_sidebar0 .search-icon:after {
  top: 5px;
  right: 10px;
}
#togglemenu_sidebar0 .search-icon input {
  border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
}

.uppy-Dashboard-browse:hover, .uppy-Dashboard-browse:focus {
  border-bottom: 1px solid #233a72 !important;
}

.thank-you-title, .order-placed {
  font-weight: normal !important;
}

.thank-you-container #user_dashboard .account_dashboard_box {
  text-align: left;
}

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