/*Fonts path*/
/*Fonts path end*/
/*************** background opacity and gradient *******************/
/*************** Shadow *******************/
/*************** Transform *******************/
/*************** Transition *******************/
/*************** Animation *******************/
/*************** Media Query *******************/
/* Branding Theme CSS For All Themes */
.zoom:hover {
  background: #00aeef;
  background: rgba(0, 174, 239, 0.7);
}

/***** Header tag CSS *****/
.page-header {
  color: #943885;
}
.page-header h1 small {
  color: #797979 !important;
}

.page-section-header {
  color: #00aeef;
}

.page-sub-header {
  color: #00aeef;
}

.table .thead-light th, .table .thead th, .table thead th {
  color: #943885 !important;
  background: transparent;
  border-bottom-color: #943885;
  font-weight: normal;
  font-family: "Raleway-SemiBold", sans-serif;
}

/***** Anchor tag css ******/
a {
  color: #797979;
  -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: #943885;
  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;
}
.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 {
  background: #943885;
  border-color: #943885;
  color: #fff;
}
.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: #6f2a64;
  border-color: #6f2a64;
  color: #ffffff;
}
.btn-primary.disabled, .btn-primary:disabled {
  background: #943885;
  border-color: #943885;
  color: #fff;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-info {
  background: #00aeef;
  border-color: #00aeef;
}
.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: #0089bc;
  border-color: #0089bc;
  color: #ffffff;
}
.btn-info.disabled, .btn-info:disabled {
  background: #00aeef;
  border-color: #00aeef;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

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

.btn-success {
  background: #fbb034;
  border-color: #fbb034;
  color: #fff;
}
.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: #f79c05;
  border-color: #f79c05;
  color: #ffffff;
}
.btn-success.disabled, .btn-success:disabled {
  background: #fbb034;
  border-color: #fbb034;
  color: #fff;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.actionbtn.btn-primary {
  background: #943885;
  border-color: #943885;
  color: #ffffff;
}
.actionbtn.btn-primary:hover, .actionbtn.btn-primary:focus, .actionbtn.btn-primary:not(:disabled):not(.disabled):active, .actionbtn.btn-primary:not(:disabled):not(.disabled).active, .actionbtn.btn-primary:not(:disabled):not(.disabled):active:focus {
  background: #00aeef;
  border-color: #00aeef;
}

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

.btn-outline-secondary {
  background: transparent;
  border-color: #797979;
  color: #797979;
}
.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: #797979;
  color: #ffffff;
  border-color: #797979;
}

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

/***** Link Button ******/
.btn-link {
  color: #333333;
}
.btn-link:hover, .btn-link:focus {
  color: #943885;
}
.btn-link:disabled, .btn-link.disabled {
  color: #943885;
}

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

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

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

/**** loader ****/
.loading {
  border-color: transparent #00aeef;
}

#loading-text {
  color: #00aeef;
}

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

.text-info {
  color: #00aeef !important;
}

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

.bg-dark {
  background-color: #231f20 !important;
}

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

.card-title {
  color: #00aeef;
}

.card-title a.btn-link {
  color: #00aeef !important;
}
.card-title a.btn-link:hover {
  color: #943885 !important;
}

.card-title a {
  color: #333333 !important;
}
.card-title a:hover {
  color: #943885 !important;
}

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

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

.badge-info {
  background: #00aeef;
}

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

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

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

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

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

/***** Dropdown-color *****/
.dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active, .dropdown-item:active {
  background-color: #eef2f5;
  color: #00aeef !important;
}

.bootstrap-select .dropdown-menu li.active small {
  color: #00aeef !important;
}
.bootstrap-select .dropdown-toggle small {
  color: #943885 !important;
}

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

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

/***** Input border-color on focus *****/
.form-control:focus {
  border-color: #943885;
}

/**** pagination ****/
.page-item.active .page-link {
  background: #943885;
  border-color: #943885;
}

/**** search dropdown****/
.tt-dropdown-menu .tt-suggestion {
  padding: 0.3rem 1rem;
}
.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor {
  background-color: #eef2f5;
}
.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor a {
  color: #000;
}
.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor strong {
  color: #000;
}
.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: #000 !important;
}

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

.account_dashboard_box h4 {
  color: #00aeef;
}

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

/* Custom CSS Here */
/***** Fonts *****/
@font-face {
  font-family: "Raleway-Regular";
  src: url("../fonts/Raleway-Regular.eot");
  src: url("../fonts/Raleway-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-Regular.woff") format("woff"), url("../fonts/Raleway-Regular.ttf") format("truetype"), url("../fonts/Raleway-Regular.svg#Raleway-Regular") format("svg");
  font-display: fallback;
}
@font-face {
  font-family: "Raleway-Light";
  src: url("../fonts/Raleway-Light.eot");
  src: url("../fonts/Raleway-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-Light.woff") format("woff"), url("../fonts/Raleway-Light.ttf") format("truetype"), url("../fonts/Raleway-Light.svg#Raleway-Light") format("svg");
  font-display: fallback;
}
@font-face {
  font-family: "Raleway-Medium";
  src: url("../fonts/Raleway-Medium.eot");
  src: url("../fonts/Raleway-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-Medium.woff") format("woff"), url("../fonts/Raleway-Medium.ttf") format("truetype"), url("../fonts/Raleway-Medium.svg#Raleway-Medium") format("svg");
  font-display: fallback;
}
@font-face {
  font-family: "Raleway-SemiBold";
  src: url("../fonts/Raleway-SemiBold.eot");
  src: url("../fonts/Raleway-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-SemiBold.woff") format("woff"), url("../fonts/Raleway-SemiBold.ttf") format("truetype"), url("../fonts/Raleway-SemiBold.svg#Raleway-SemiBold") format("svg");
  font-display: fallback;
}
@font-face {
  font-family: "Raleway-Bold";
  src: url("../fonts/Raleway-Bold.eot");
  src: url("../fonts/Raleway-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-Bold.woff") format("woff"), url("../fonts/Raleway-Bold.ttf") format("truetype"), url("../fonts/Raleway-Bold.svg#Raleway-Bold") format("svg");
  font-display: fallback;
}
@font-face {
  font-family: "Raleway-Black";
  src: url("../fonts/Raleway-Black.eot");
  src: url("../fonts/Raleway-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Raleway-Black.woff") format("woff"), url("../fonts/Raleway-Black.ttf") format("truetype"), url("../fonts/Raleway-Black.svg#Raleway-Black") format("svg");
  font-display: fallback;
}
@font-face {
  font-family: "Tahoma";
  src: url("../fonts/Tahoma.eot");
  src: url("../fonts/Tahoma.eot?#iefix") format("embedded-opentype"), url("../fonts/Tahoma.woff") format("woff"), url("../fonts/Tahoma.ttf") format("truetype"), url("../fonts/Tahoma.svg#Tahoma") format("svg");
  font-display: fallback;
}
/***** Reset CSS *****/
body {
  font-family: "Tahoma", sans-serif;
  color: #333333;
  background-image: url(../images/body_bg.png);
  background-attachment: fixed;
  background-repeat: repeat;
  font-size: 14px;
  font-size: 0.875rem;
}
body.home_page_body .main-content {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  body.home_page_body .main-content {
    padding-bottom: 3rem;
  }
}
body.home_page_body .main-content #top-banner {
  border: 0;
  margin-bottom: 2rem;
  margin-top: 0;
}
body.home_page_body .main-content #top-banner .carousel-caption {
  right: 0.3rem;
}

h3, .h3, h4, .h4 {
  font-family: "Raleway-SemiBold", sans-serif;
}

h5, .h5, h6, .h6 {
  font-family: "Raleway-Regular", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

h1, .h1 {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Raleway-Bold", sans-serif;
}

h2, .h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Raleway-Bold", sans-serif;
}

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

.page-header {
  border-bottom: 2px solid #ddd;
}
.page-header h1 {
  position: relative;
  padding-bottom: 0.5rem !important;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Raleway-Regular", sans-serif;
}
.page-header h1 small {
  font-family: "Raleway-Regular", sans-serif !important;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) {
  .page-header h1:after {
    content: "";
    display: block;
    position: absolute;
    border-top: 2px solid #943885;
    width: 110px;
    height: 5px;
    top: 100%;
    z-index: 1;
  }
  .page-header h1:before {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    width: 120px;
    height: 5px;
    top: 100%;
  }
}

.page-section-header h4, .page-section-header h5, .page-section-header h6 {
  font-family: "Raleway-SemiBold", sans-serif;
}
.page-section-header h4 small, .page-section-header h5 small, .page-section-header h6 small {
  font-family: "Raleway-Regular", sans-serif;
}

.product_header {
  position: relative;
}
.product_header h2 {
  color: #000;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Raleway-Bold", sans-serif;
  position: relative;
  border-bottom: 2px solid #ddd;
}
.product_header h2:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 2px solid #943885;
  width: 110px;
  height: 5px;
  top: 100%;
  z-index: 1;
}
.product_header h2:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 120px;
  height: 5px;
  top: 100%;
}

b, strong, .text-bold, .font-weight-bold {
  font-weight: normal !important;
  font-family: "Raleway-Bold", sans-serif !important;
}

.font-extra-bold {
  font-family: "Raleway-Bold", sans-serif !important;
}

.card-title a {
  font-family: "Raleway-Regular", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

.card-header {
  background: #eef2f5;
}

.p-100 {
  padding: 3rem 0;
}
@media only screen and (min-width: 768px) {
  .p-100 {
    padding: 6.25rem 0;
  }
}

.pt-100 {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .pt-100 {
    padding-top: 6.25rem;
  }
}

.pb-100 {
  padding-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  .pb-100 {
    padding-bottom: 6.25rem;
  }
}

.pb-50 {
  padding-bottom: 3.5rem;
}

.devider {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 3.2rem;
}
.devider:after {
  content: "";
  display: block;
  position: absolute;
  width: 266px;
  background: #ccc;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.devider:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 5px solid #ccc;
  height: 21px;
  width: 21px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #eef2f5 !important;
}

/* Nav Tab CSS */
#InfoTab .nav-tabs .nav-item .nav-link {
  color: #aaaaaa;
  border: 0;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  padding: 0.8rem 1rem;
  font-family: "Raleway-Bold", sans-serif;
  border-top: 3px solid transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -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;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
#InfoTab .nav-tabs .nav-item .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 3px solid transparent;
  width: 0;
  height: 5px;
  top: 0;
  z-index: 1;
  left: -1px;
  top: -3px;
}
#InfoTab .nav-tabs .nav-item .nav-link.active, #InfoTab .nav-tabs .nav-item .nav-link:hover, #InfoTab .nav-tabs .nav-item .nav-link.show {
  color: #943885;
  background: #eef2f5;
}
#InfoTab .nav-tabs .nav-item .nav-link.active {
  background: #fff;
  color: #943885;
  border-color: #00aeef;
  border-right-color: #ddd;
  border-left-color: #ddd;
}
#InfoTab .nav-tabs .nav-item .nav-link.active:after {
  border-color: #943885;
  width: 50%;
}
#InfoTab .tab-content {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
  background: #fff;
  border-right: 1px solid #ddd;
}

.nav-customtabs .nav-item .nav-link {
  color: #aaaaaa;
  border: 0;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  padding: 0.8rem 1rem;
  font-family: "Raleway-Bold", sans-serif;
  border-top: 3px solid transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -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;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
.nav-customtabs .nav-item .nav-link:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 3px solid transparent;
  width: 0;
  height: 5px;
  top: 0;
  z-index: 1;
  left: -1px;
  top: -3px;
}
.nav-customtabs .nav-item .nav-link.active, .nav-customtabs .nav-item .nav-link:hover, .nav-customtabs .nav-item .nav-link.show {
  color: #943885;
  background: #eef2f5;
}
.nav-customtabs .nav-item .nav-link.active {
  background: #fff;
  color: #943885;
  border-color: #00aeef;
  border-right-color: #ddd;
  border-left-color: #ddd;
}
.nav-customtabs .nav-item .nav-link.active:after {
  border-color: #943885;
  width: 50%;
}

.tab-content {
  padding: 1rem 0;
}

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

/* Top Menu CSS */
.sticky-top {
  padding-bottom: 0 !important;
}
.sticky-top .navbar-brand {
  max-width: 90px;
}
@media only screen and (min-width: 768px) {
  .sticky-top .navbar .navbar-brand {
    display: none;
  }
}

.sticky-header {
  -webkit-box-shadow: 0 2px 2px 0px rgba(102, 102, 102, 0.3);
  -moz-box-shadow: 0 2px 2px 0px rgba(102, 102, 102, 0.3);
  box-shadow: 0 2px 2px 0px rgba(102, 102, 102, 0.3);
  padding-bottom: 0 !important;
}
.sticky-header .navbar {
  box-shadow: none;
}
.sticky-header .navbar .navbar-brand {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sticky-header .navbar .navbar-brand {
    display: block;
  }
}

.navbar {
  z-index: 100;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.navbar .navbar-toggler:focus, .navbar .navbar-toggler:active, .navbar .navbar-toggler:hover {
  outline: none;
  color: #00aeef !important;
}
@media only screen and (min-width: 768px) {
  .navbar {
    background: #943885;
  }
}
@media only screen and (min-width: 768px) {
  .navbar .nav-cart {
    position: relative;
  }
}
.navbar .nav-cart .btn-link {
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .navbar .nav-cart .btn-link {
    color: #ffffff;
  }
}
.navbar .nav-cart .btn-link i {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: unset;
}
.navbar .nav-cart .btn-link .badge {
  top: 5px;
  right: 7px;
  color: #fff;
  background: #fbb034;
}
.navbar .nav-cart .btn-link:hover {
  color: #fbb034;
}
.navbar .nav-cart .search-toggle {
  background: #00aeef;
  padding: 0.0625rem;
}
@media only screen and (min-width: 768px) {
  .navbar .nav-cart .search-toggle {
    width: 300px;
    left: auto;
  }
}
.navbar .nav-cart .search-toggle .header-search span {
  background-color: #fafafa;
}
.navbar .nav-cart .search-toggle .header-search span.twitter-typeahead {
  width: 100%;
}
.navbar .nav-cart .search-toggle .header-search span.twitter-typeahead:after {
  font-size: 14px;
  font-size: 0.875rem;
}
.navbar .nav-cart .search-toggle .header-search span input {
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #fff !important;
  padding: 0.2rem 0.75rem;
  height: 40px;
}
.navbar .nav-cart .search-toggle .header-search span input:focus, .navbar .nav-cart .search-toggle .header-search span input:active {
  border-color: #00aeef;
}
.navbar .navbar-collapse .navbar-nav {
  margin-left: 0 !important;
}
.navbar .navbar-collapse .navbar-nav .scroll-up, .navbar .navbar-collapse .navbar-nav .scroll-down {
  position: absolute;
  display: none;
  visibility: hidden;
  height: 20px;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .scroll-up .scroll-up-arrow, .navbar .navbar-collapse .navbar-nav .scroll-up .scroll-down-arrow, .navbar .navbar-collapse .navbar-nav .scroll-down .scroll-up-arrow, .navbar .navbar-collapse .navbar-nav .scroll-down .scroll-down-arrow {
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  overflow: hidden;
  border-top: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid;
  border-left: 7px solid transparent;
}
.navbar .navbar-collapse .navbar-nav .scroll-up .scroll-down-arrow, .navbar .navbar-collapse .navbar-nav .scroll-down .scroll-down-arrow {
  top: 6px;
  border-top: 7px solid;
  border-right: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.8rem 0.5rem;
  border: 0;
  color: #333333 !important;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  border-top: 3px solid transparent;
  margin-right: 0.1rem;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #ffffff !important;
  }
}
@media only screen and (min-width: 1024px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.8rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #943885;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 0;
  -moz-transform: translateX(20px);
  -o-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.has-submenu:after {
  position: absolute;
  top: 20px;
  right: 15px;
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid #fff;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.has-submenu:after {
    position: static;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.show .nav-link, .navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link, .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link {
  background: #eef2f5;
  color: #943885 !important;
  border-top-color: #943885;
  border-color: #00aeef;
}
.navbar .navbar-collapse .navbar-nav .nav-item.show .nav-link:before, .navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link:before, .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link:before {
  opacity: 1;
  -moz-transform: translateX(0px);
  -o-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  width: 50%;
  border-top: 3px solid #fbb034;
  top: -3px;
}
.navbar .navbar-collapse .navbar-nav .nav-item.show .nav-link.has-submenu:after, .navbar .navbar-collapse .navbar-nav .nav-item.active .nav-link.has-submenu:after, .navbar .navbar-collapse .navbar-nav .nav-item:hover .nav-link.has-submenu:after {
  border-top: 0.3em solid #943885;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu {
  background: #eef2f5;
  width: 280px !important;
  /*.dropdown-menu{left:100%; top:0;}*/
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a {
  color: #000000;
  padding: 0.35rem 1.5rem 0.35rem 0.5rem;
  border-color: #d6d6d6 !important;
  position: relative;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:not(.imgPlaceHolder):before {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 1px solid transparent;
  width: 0;
  z-index: 1;
  left: 0px;
  bottom: -1px;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  top: auto;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a strong {
  color: #000000;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li a:after {
  color: #000000;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .has-submenu:after {
  position: absolute;
  top: 15px;
  right: 10px;
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-left: 0.3em solid #000;
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li .has-submenu span > img {
  margin-right: 0.5rem;
  filter: grayscale(1);
  -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 .dropdown-menu li.active > a, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li:hover > a {
  color: #943885 !important;
  border-color: transparent !important;
  background: #fff;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li.active > a:after, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li:hover > a:after {
  color: #943885;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li.active > a:before, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li:hover > a:before {
  width: 100%;
  border-color: #943885;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li.active .has-submenu:after, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li:hover .has-submenu:after {
  border-left: 0.3em solid #943885;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li.active .has-submenu span > img, .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu li:hover .has-submenu span > img {
  filter: grayscale(0);
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-menu li {
  background: transparent;
  padding-left: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-menu li a {
  padding-left: 2rem;
  white-space: normal;
}
@media only screen and (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .dropdown-menu li a {
    padding-left: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .card {
  background: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .card .card-body .nav li a {
  padding: 0.2rem 0.5rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu .card .card-body .nav li:hover a {
  color: #e3b5dc !important;
  background: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item .dropdown-menu.login {
  background: #ffffff;
  left: auto;
  right: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu {
  background: #ffffff !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body {
  background: transparent;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li a {
  color: #333333;
  padding: 0.2rem 1rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li a strong {
  color: #333333;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li a:before {
  display: none;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li:hover a {
  color: #943885 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li:hover a strong {
  color: #943885;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu {
  background: #ffffff !important;
  -webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a {
  background: #eef2f5;
  color: #000000;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a:after {
  color: #000000;
}
.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: #943885 !important;
  background: #fff;
  border-color: #fff !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: #943885 !important;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu {
  box-shadow: none;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li a {
  color: #333 !important;
  background: transparent !important;
  padding: 0.3rem 0.5rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li a:before {
  display: none;
}
.navbar .navbar-collapse .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li:hover > a {
  color: #943885 !important;
}
.navbar .navbar-collapse .navbar-nav .scroll-down {
  top: 100% !important;
}
.navbar .navbar-collapse .navbar-nav .dropdown-submenu .scroll-down {
  top: auto !important;
}

.header-search .twitter-typeahead .form-control {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .header-search .twitter-typeahead .form-control {
    height: 35px;
  }
}
.header-search .twitter-typeahead:after {
  background: #fbb034;
  color: #ffffff;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .header-search .twitter-typeahead:after {
    line-height: 2.5;
  }
}

.navbar-brand {
  border: 0;
  max-width: 230px;
}
@media only screen and (min-width: 1248px) {
  .navbar-brand {
    max-width: 320px;
  }
}

/* Top Header CSS */
.top-header .contact_info ul li {
  margin-right: 0.9rem;
  font-family: "Tahoma", sans-serif;
}
.top-header .contact_info ul li a {
  color: #333333;
  -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;
}
.top-header .contact_info ul li a i {
  vertical-align: middle;
  color: #943885;
  font-size: 28.8px;
  font-size: 1.8rem;
  -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;
}
.top-header .contact_info ul li a span {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.top-header .contact_info ul li a:hover {
  color: #000;
}
.top-header .contact_info ul li a:hover i {
  color: #000;
}
.top-header .top-links li {
  margin: 0;
  margin-right: 0.8rem;
}
.top-header .top-links li a {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  background: #fff;
  padding: 0.49rem 0.8rem;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -webkit-box-shadow: 1px 4px 10px 2px rgba(88, 88, 88, 0.07);
  -moz-box-shadow: 1px 4px 10px 2px rgba(88, 88, 88, 0.07);
  box-shadow: 1px 4px 10px 2px rgba(88, 88, 88, 0.07);
}
.top-header .top-links li a:hover {
  background: #943885;
  color: #fff;
}
.top-header .top-links li a i {
  font-weight: 400;
  margin-right: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
}
.top-header .top-links li a .badge-primary {
  background-color: #00aeef;
}
.top-header .top-links li .navbar-text a {
  background: transparent;
  box-shadow: none;
  padding: 0.49rem 0.4rem;
}
.top-header .top-links li .navbar-text a:hover {
  color: #943885;
}
.top-header .bootstrap-select .dropdown-menu {
  z-index: 9999 !important;
}
.top-header .bootstrap-select > .dropdown-toggle {
  max-height: 34px;
  line-height: 2rem;
  height: 34px;
}

/*****Produsct Category CSS *****/
#templatelist > .row > .col-md-4 .card {
  background: transparent !important;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
#templatelist > .row > .col-md-4 .card .card-header {
  background: transparent !important;
  border: 0;
  position: relative;
}
#templatelist > .row > .col-md-4 .card .card-header .card-title {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #ddd;
  font-family: "Raleway-SemiBold", sans-serif;
}
#templatelist > .row > .col-md-4 .card .card-header .card-title:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 2px solid #943885;
  width: 70px;
  top: 100%;
  z-index: 1;
}
#templatelist > .row > .col-md-4 .card .card-header .card-title:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 80px;
  height: 5px;
  top: 100%;
}
#templatelist > .row > .col-md-4 .card .card-body {
  padding-top: 0 !important;
}
#templatelist > .row > .col-md-4 .card .card-body .custom-control {
  margin-left: 0.3rem;
  padding: 0 0 0.5rem 1.5rem;
}
#templatelist > .row > .col-md-4 .card .card-body .custom-control .custom-control-label:after, #templatelist > .row > .col-md-4 .card .card-body .custom-control .custom-control-label:before {
  top: 0.1rem;
}

.sidebar {
  z-index: 998;
}
.sidebar .card {
  background: fff !important;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.sidebar .card .card-header {
  background: transparent !important;
  border: 0;
  position: relative;
}
.sidebar .card .card-header .card-title {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #ddd;
  font-family: "Raleway-SemiBold", sans-serif;
}
.sidebar .card .card-header .card-title:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 2px solid #943885;
  width: 70px;
  top: 100%;
  z-index: 1;
}
.sidebar .card .card-header .card-title:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 80px;
  height: 5px;
  top: 100%;
}
.sidebar .card .card-body {
  padding: 0.5rem 1.25rem 0.8rem !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item, .sidebar .card .card-body .accordion .list-group-item {
  border-style: dashed;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a, .sidebar .card .card-body .accordion .list-group-item > a {
  position: relative;
  color: #333333 !important;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 0 !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a:after, .sidebar .card .card-body .accordion .list-group-item > a:after {
  content: "\f107";
  display: inline-block;
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  right: 0.6rem;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a[aria-expanded=true], .sidebar .card .card-body .accordion .list-group-item > a[aria-expanded=true] {
  color: #943885 !important;
}
.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: "\f106";
}
.sidebar .card .card-body .accordion-menu .list-group-item > a:hover, .sidebar .card .card-body .accordion .list-group-item > a:hover {
  color: #943885 !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item:first-child > a, .sidebar .card .card-body .accordion .list-group-item:first-child > a {
  padding-top: 0 !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled, .sidebar .card .card-body .accordion .list-group-item .list-unstyled {
  padding-left: 0.8rem !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-left: 0.8rem !important;
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
  color: #5a5a5a !important;
  font-size: 100%;
}
.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 {
  top: 4px;
}
.sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled li .list-group-item > a:before, .sidebar .card .card-body .accordion .list-group-item .list-unstyled li .list-group-item > a:before {
  top: 3px;
}
.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: #943885 !important;
}
.sidebar .card .card-body #cssmenu .list-group-item {
  border-style: dashed;
}
.sidebar .card .card-body #cssmenu .list-group-item > a {
  color: #000 !important;
  padding-left: 0 !important;
}
.sidebar .card .card-body #cssmenu .list-group-item:hover > a {
  background: #943885;
  color: #ffffff !important;
  padding-left: 1rem !important;
}
.sidebar .card .card-body #cssmenu .list-group-item .list-unstyled {
  border: 0;
  background: #943885;
  margin-top: 0px;
}
.sidebar .card .card-body #cssmenu .list-group-item .list-unstyled li {
  background: transparent;
}
.sidebar .card .card-body #cssmenu .list-group-item .list-unstyled li a {
  border-bottom-style: dashed;
  color: #ffffff !important;
}
.sidebar .card .card-body #cssmenu .list-group-item .list-unstyled li:hover > a, .sidebar .card .card-body #cssmenu .list-group-item .list-unstyled li.active > a {
  background: #b946a6;
  padding-left: 1.5rem !important;
}
.sidebar .card .card-body #straightmenu .list-group {
  margin-left: 0px !important;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item {
  padding-left: 0;
  border-style: dashed;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item > a {
  font-size: 16px;
  font-size: 1rem;
  color: #943885 !important;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item > a:hover {
  color: #00aeef !important;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item .list-unstyled li a {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item .list-unstyled li.active > a, .sidebar .card .card-body #straightmenu .list-group .list-group-item .list-unstyled li:hover > a {
  color: #943885 !important;
}
.sidebar .card .card-body .without_cat .list-group .list-group-item > a {
  padding: 0.5rem !important;
  padding-left: 0 !important;
}
.sidebar .card#straightmenu .list-group .list-group-item {
  padding-left: 0 !important;
}
.sidebar .card#straightmenu .list-group .list-group-item:first-child {
  padding-top: 0;
}
.sidebar .card#straightmenu .list-group .list-group-item > a {
  padding-right: 0 !important;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  color: #5a5a5a !important;
  font-size: 14px;
  font-size: 0.875rem;
}
.sidebar .card#straightmenu .list-group .list-group-item > a:before {
  top: 3px;
}
.sidebar .card#straightmenu .list-group .list-group-item > a:hover {
  color: #943885 !important;
}
.sidebar .card#straightmenu .list-group .list-group-item > a.all-product {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Raleway-SemiBold", sans-serif;
}
.sidebar .card#straightmenu .list-group .list-group-item .list-unstyled {
  padding-left: 0.5rem;
}
.sidebar .card#straightmenu .list-group .list-group-item .list-unstyled li:hover a, .sidebar .card#straightmenu .list-group .list-group-item .list-unstyled li.active a {
  color: #943885 !important;
}
.sidebar #straightmenu .card .card-body .list-group .list-group-item > a {
  padding-right: 0 !important;
  font-size: 16px;
  font-size: 1rem;
  color: #333333 !important;
  padding-left: 0 !important;
}
.sidebar #straightmenu .card .card-body .list-group .list-group-item > a:hover {
  color: #943885 !important;
}
.sidebar #straightmenu .card .card-body .list-group .list-group-item .list-unstyled li a {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  color: #5a5a5a !important;
  font-size: 100%;
}
.sidebar #straightmenu .card .card-body .list-group .list-group-item .list-unstyled li a:before {
  top: 3px;
}
.sidebar #straightmenu .card .card-body .list-group .list-group-item .list-unstyled li.active a, .sidebar #straightmenu .card .card-body .list-group .list-group-item .list-unstyled li:hover a {
  color: #943885 !important;
}

#myaccount_menu li a {
  color: #5a5a5a !important;
  font-size: 14px;
  font-size: 0.875rem;
}
#myaccount_menu li:hover a, #myaccount_menu li.active a {
  color: #943885 !important;
}

/* Action Button CSS */
.browse_design, .upload_design, .custom_design, .hire_designer, .ico_quote_design, .quote_product {
  border-color: #777777 !important;
  position: relative;
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  padding: 1.1rem 1rem !important;
}
.browse_design:after, .upload_design:after, .custom_design:after, .hire_designer:after, .ico_quote_design:after, .quote_product:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  border-top: 3px solid transparent;
  border-left: 3px solid transparent;
  height: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.browse_design:before, .upload_design:before, .custom_design:before, .hire_designer:before, .ico_quote_design:before, .quote_product:before {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0;
  border-bottom: 3px solid transparent;
  border-right: 3px solid transparent;
  height: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
.browse_design .btn-img-text, .upload_design .btn-img-text, .custom_design .btn-img-text, .hire_designer .btn-img-text, .ico_quote_design .btn-img-text, .quote_product .btn-img-text {
  color: #777777 !important;
  z-index: 1;
  position: relative;
}
.browse_design .btn-img-text span .h4, .upload_design .btn-img-text span .h4, .custom_design .btn-img-text span .h4, .hire_designer .btn-img-text span .h4, .ico_quote_design .btn-img-text span .h4, .quote_product .btn-img-text span .h4 {
  color: #777777;
}
.browse_design .btn-img-text i, .upload_design .btn-img-text i, .custom_design .btn-img-text i, .hire_designer .btn-img-text i, .ico_quote_design .btn-img-text i, .quote_product .btn-img-text i {
  color: #777777 !important;
}
.browse_design:hover, .upload_design:hover, .custom_design:hover, .hire_designer:hover, .ico_quote_design:hover, .quote_product:hover {
  border-color: transparent !important;
}
.browse_design:hover:after, .upload_design:hover:after, .custom_design:hover:after, .hire_designer:hover:after, .ico_quote_design:hover:after, .quote_product:hover:after {
  width: 100%;
  border-left-color: #943885;
  border-top-color: #00aeef;
  height: 100%;
}
.browse_design:hover:before, .upload_design:hover:before, .custom_design:hover:before, .hire_designer:hover:before, .ico_quote_design:hover:before, .quote_product:hover:before {
  width: 100%;
  border-right-color: #00aeef;
  border-bottom-color: #943885;
  height: 100%;
}
.browse_design:hover .btn-img-text span .h4, .upload_design:hover .btn-img-text span .h4, .custom_design:hover .btn-img-text span .h4, .hire_designer:hover .btn-img-text span .h4, .ico_quote_design:hover .btn-img-text span .h4, .quote_product:hover .btn-img-text span .h4 {
  color: #943885;
}
.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, .ico_quote_design:hover .btn-img-text i, .quote_product:hover .btn-img-text i {
  color: #943885 !important;
}

.btn-title-text {
  padding: 0 !important;
}
.btn-title-text .h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
.btn-title-text a {
  z-index: 1;
  position: relative;
}
.btn-title-text.browse_design {
  background: #00aeef !important;
  border-color: #00aeef !important;
}
.btn-title-text.browse_design a .h4, .btn-title-text.browse_design a i {
  color: #ffffff !important;
}
.btn-title-text.browse_design:hover {
  background: transparent !important;
  border-color: transparent !important;
}
.btn-title-text.browse_design:hover a .h4, .btn-title-text.browse_design:hover a i {
  color: #00aeef !important;
}
.btn-title-text.upload_design {
  background: #943885 !important;
  border-color: #943885 !important;
}
.btn-title-text.upload_design a .h4, .btn-title-text.upload_design a i {
  color: #ffffff !important;
}
.btn-title-text.upload_design:hover {
  background: transparent !important;
  border-color: transparent !important;
}
.btn-title-text.upload_design:hover a .h4, .btn-title-text.upload_design:hover a i {
  color: #943885 !important;
}
.btn-title-text.custom_design {
  background: #943885 !important;
  border-color: #943885 !important;
}
.btn-title-text.custom_design a .h4, .btn-title-text.custom_design a i {
  color: #ffffff !important;
}
.btn-title-text.custom_design:hover {
  background: transparent !important;
  border-color: transparent !important;
}
.btn-title-text.custom_design:hover a .h4, .btn-title-text.custom_design:hover a i {
  color: #943885 !important;
}
.btn-title-text.hire_designer {
  background: #00aeef !important;
  border-color: #00aeef !important;
}
.btn-title-text.hire_designer a .h4, .btn-title-text.hire_designer a i {
  color: #ffffff !important;
}
.btn-title-text.hire_designer:hover {
  background: transparent !important;
  border-color: transparent !important;
}
.btn-title-text.hire_designer:hover a .h4, .btn-title-text.hire_designer:hover a i {
  color: #00aeef !important;
}
.btn-title-text.quote_product {
  background: #fbb034 !important;
  border-color: #fbb034 !important;
}
.btn-title-text.quote_product a .h4 {
  color: #ffffff !important;
}
.btn-title-text.quote_product:hover {
  background: transparent !important;
  border-color: transparent !important;
}
.btn-title-text.quote_product:hover a .h4 {
  color: #fbb034 !important;
}
.btn-title-text:hover {
  -webkit-box-shadow: 0 0 0 0 #ffffff !important;
  -moz-box-shadow: 0 0 0 0 #ffffff !important;
  box-shadow: 0 0 0 0 #ffffff !important;
}

/***** CMS Header CSS *****/
.header-content .about-us h2 {
  font-size: 30px;
  font-size: 1.875rem;
  color: #000;
  font-family: "Raleway-Bold", sans-serif;
}
.header-content .about-us p {
  font-size: 18px;
  font-size: 1.125rem;
  color: #666666;
}
.header-content .services .service-tag {
  -webkit-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.08);
  color: #333;
}
.header-content .services .service-tag span {
  position: absolute;
  display: block;
  font-family: "Raleway-Bold", sans-serif;
  font-size: 25px;
  font-size: 1.5625rem;
  bottom: 15px;
  left: 0;
  right: 0;
}
.header-content .services .service-tag:hover {
  -webkit-box-shadow: 0 24px 44px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 24px 44px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 44px 1px rgba(0, 0, 0, 0.08);
}
@media only screen and (min-width: 768px) {
  .header-content .services .service-tag:hover {
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.header-content .business-grow h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Raleway-Bold", sans-serif;
}
.header-content .business-grow h2 {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Raleway-SemiBold", sans-serif;
}
@media only screen and (min-width: 768px) {
  .header-content .business-grow h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1248px) {
  .header-content .business-grow h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
.header-content .business-grow .btn-info {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 0.4rem 1.87rem;
  font-family: "Raleway-SemiBold", sans-serif;
}

/* Middle Footer CSS */
.middle-footer-content .card {
  border: 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  margin: 0 !important;
  background: transparent;
  min-height: 328px;
}
.middle-footer-content .card .card-header {
  padding: 0;
  background: transparent;
  border: 0;
  margin-bottom: 0.5rem;
}
.middle-footer-content .card .card-header .card-title {
  padding-bottom: 1.3rem;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Raleway-Bold", sans-serif;
  color: #000;
}
.middle-footer-content .card .card-body {
  padding: 0;
}
.middle-footer-content .card .card-body blockquote small {
  font-family: "Raleway-Bold", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #943885;
  position: relative;
}
.middle-footer-content .card .card-body blockquote small:before {
  content: "-";
  margin-right: 0.3rem;
}
.middle-footer-content .card .card-body blockquote p {
  font-size: 16.76px;
  font-size: 1.0475rem;
  color: #666666;
  line-height: 1.8rem;
}
.middle-footer-content .card .card-body blockquote br {
  display: none;
}
.middle-footer-content .card .card-footer {
  border: 0;
  background: transparent;
  position: relative;
  margin-top: 5rem;
}
.middle-footer-content .card .card-footer span {
  display: flex;
  justify-content: center;
  padding-left: 1rem;
}
.middle-footer-content .card .card-footer span .carousel-control-prev, .middle-footer-content .card .card-footer span .carousel-control-next {
  width: 30px;
  display: block;
  position: relative;
  left: auto;
}
.middle-footer-content .card .card-footer .float-right {
  display: none;
}
.middle-footer-content .card .card-footer:after {
  content: "";
  display: block;
  position: absolute;
  width: 266px;
  background: #ccc;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -3rem;
}
.middle-footer-content .card .card-footer:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 5px solid #ccc;
  height: 21px;
  width: 21px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -3.6rem;
  z-index: 1;
}

/***** footer-content CSS *****/
.footer-content {
  text-align: center;
}
.footer-content .subscribe_section {
  background: #00aeef;
}
.footer-content .subscribe_section .row, .footer-content .subscribe_section .form-row {
  align-items: center;
}
.footer-content .subscribe_section h3 {
  font-size: 22px;
  font-size: 1.375rem;
  color: #ffffff;
  font-family: "Raleway-Bold", sans-serif;
}
.footer-content .subscribe_section h3 p {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Raleway-Regular", sans-serif;
}
.footer-content .subscribe_section .input-group {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}
.footer-content .subscribe_section .input-group .form-control {
  border-color: #fff;
}
.footer-content .subscribe_section .input-group .input-group-append .btn {
  background: #fff;
  border-color: #fff;
  font-size: 0px;
  font-size: 0rem;
  line-height: 0;
  color: #00aeef;
  border-radius: 0 0.25rem 0.25rem 0;
  -moz-border-radius: 0 0.25rem 0.25rem 0;
  -webkit-border-radius: 0 0.25rem 0.25rem 0;
}
.footer-content .subscribe_section .input-group .input-group-append .btn:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-size: 32px;
  font-size: 2rem;
  line-height: 31px;
  font-weight: 300;
}
.footer-content .subscribe_section .input-group .input-group-append .btn:hover, .footer-content .subscribe_section .input-group .input-group-append .btn:focus, .footer-content .subscribe_section .input-group .input-group-append .btn:active {
  background: #943885;
  color: #ffffff;
}
.footer-content .footer-bottom {
  color: #999999;
}
.footer-content .footer-bottom h3 {
  font-family: "Raleway-Bold", sans-serif;
}
.footer-content .footer-bottom ul {
  padding: 0;
  margin: 0;
}
.footer-content .footer-bottom ul li {
  list-style-type: none;
  display: block;
  padding: 0;
  margin: 0;
}
.footer-content .footer-bottom ul li a {
  color: #999999;
  padding: 0.2rem 0;
  display: inline-block;
  position: relative;
  -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;
}
.footer-content .footer-bottom ul li a:hover {
  color: #ffffff;
}
.footer-content .footer-bottom ul li a.active {
  color: #ffffff;
}
.footer-content .footer-bottom .list-unstyled > li {
  float: none;
  width: 100%;
}
.footer-content .footer-bottom .list-unstyled > li > a {
  color: #cccccc;
}
.footer-content .footer-bottom .list-unstyled > li ul {
  padding-left: 1rem;
}
.footer-content .footer-bottom .list-unstyled > li ul li > a:after {
  content: normal;
}
@media only screen and (min-width: 640px) {
  .footer-content .footer-bottom .list-unstyled > li ul li > a:after {
    content: "-";
    display: inline-block;
    position: absolute;
    left: -15px;
    -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;
  }
}
.footer-content .footer-bottom .list-unstyled > li ul li > a:hover:after {
  color: #ffffff;
}
@media only screen and (min-width: 640px) {
  .footer-content .footer-bottom .list-unstyled > li {
    float: left;
    width: 50%;
  }
}
.footer-content .footer-bottom .bottom-menu {
  text-align: center;
}
@media only screen and (min-width: 640px) {
  .footer-content .footer-bottom .bottom-menu {
    text-align: left;
  }
}
.footer-content .border-top {
  border-color: #2b2b2b !important;
}
.footer-content .payment_social h3 {
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  font-family: "Raleway-Bold", sans-serif;
  margin: 0;
}
.footer-content .payment_social .social_icon ul {
  padding: 0;
  margin: 0;
}
.footer-content .payment_social .social_icon ul li {
  display: inline-block;
  margin-left: 0.4rem;
}
.footer-content .payment_social .social_icon ul li a {
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  background: #ccc;
  color: #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
.footer-content .payment_social .social_icon ul li a.fb {
  background: #39599f;
}
.footer-content .payment_social .social_icon ul li a.fb:hover {
  background: #fff;
  color: #39599f;
}
.footer-content .payment_social .social_icon ul li a.twit {
  background: #45b0e3;
}
.footer-content .payment_social .social_icon ul li a.twit:hover {
  background: #fff;
  color: #45b0e3;
}
.footer-content .payment_social .social_icon ul li a.yt {
  background: #e9483e;
}
.footer-content .payment_social .social_icon ul li a.yt:hover {
  background: #fff;
  color: #e9483e;
}
.footer-content .payment_social .social_icon ul li a.pt {
  background: #d0212b;
}
.footer-content .payment_social .social_icon ul li a.pt:hover {
  background: #fff;
  color: #d0212b;
}
.footer-content .payment_social .social_icon ul li a.inst {
  background: #2a5b83;
}
.footer-content .payment_social .social_icon ul li a.inst:hover {
  background: #fff;
  color: #2a5b83;
}
@media only screen and (min-width: 640px) {
  .footer-content {
    text-align: left;
  }
}

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

/*Product Hover Effect CSS */
.product-box .card {
  background: #fff;
  border-color: #eeeeee;
}
.product-box .card .card-body .card-title {
  color: #943885 !important;
}
.product-box .card.slide-hover .card-body .card-title, .product-box .card.triangle-slide-overlay .card-body .card-title {
  color: #ffffff !important;
}
.product-box .card.slide-hover .card-body .card-text, .product-box .card.triangle-slide-overlay .card-body .card-text {
  color: #ffffff;
}
.product-box .card.slide-hover .card-body .card-text strong, .product-box .card.triangle-slide-overlay .card-body .card-text strong {
  color: #ffffff;
}
.product-box .card.slide-hover .card-body .btn-info, .product-box .card.triangle-slide-overlay .card-body .btn-info {
  background: #943885;
  border-color: #943885;
  color: #fff;
}
.product-box .card.slide-hover .card-body .btn-info:hover, .product-box .card.slide-hover .card-body .btn-info:focus, .product-box .card.slide-hover .card-body .btn-info:not(:disabled):not(.disabled):active, .product-box .card.slide-hover .card-body .btn-info:not(:disabled):not(.disabled).active, .product-box .card.slide-hover .card-body .btn-info:not(:disabled):not(.disabled):active:focus, .product-box .card.triangle-slide-overlay .card-body .btn-info:hover, .product-box .card.triangle-slide-overlay .card-body .btn-info:focus, .product-box .card.triangle-slide-overlay .card-body .btn-info:not(:disabled):not(.disabled):active, .product-box .card.triangle-slide-overlay .card-body .btn-info:not(:disabled):not(.disabled).active, .product-box .card.triangle-slide-overlay .card-body .btn-info:not(:disabled):not(.disabled):active:focus {
  background: #6f2a64;
  border-color: #6f2a64;
  color: #ffffff;
}
.product-box .card.slide-hover:before {
  content: "";
  display: block;
  position: absolute;
  background-color: black 0%;
  background: linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.8;
  z-index: 1;
}
.product-box .card.slide-hover .card-body .card-title {
  background: transparent !important;
  padding: 1rem !important;
  color: #fff !important;
  z-index: 2;
  padding-right: 3rem !important;
}
.product-box .card.slide-hover .card-body .card-title:after {
  content: "\f178";
  background: transparent !important;
  padding: 0 1rem;
  top: 10px;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 300;
  line-height: unset;
  color: #943885;
}
.product-box .card.slide-hover .card-body .card-text {
  z-index: 3;
  background: #00aeef;
  background: rgba(0, 174, 239, 0.8);
}
.product-box .card.slide-hover .card-body .card-text .btn-info {
  background: #943885;
  border-color: #943885;
  color: #fff;
}
.product-box .card.slide-hover .card-body .card-text .btn-info:hover, .product-box .card.slide-hover .card-body .card-text .btn-info:focus, .product-box .card.slide-hover .card-body .card-text .btn-info:not(:disabled):not(.disabled):active, .product-box .card.slide-hover .card-body .card-text .btn-info:not(:disabled):not(.disabled).active, .product-box .card.slide-hover .card-body .card-text .btn-info:not(:disabled):not(.disabled):active:focus {
  background: #6f2a64;
  border-color: #6f2a64;
  color: #ffffff;
}
.product-box .card.slide-hover:hover .card-title {
  opacity: 0;
}
.product-box .card.slideup .card-body {
  background: #943885 !important;
}
.product-box .card.slideup .card-body .card-title {
  color: #ffffff !important;
}
.product-box .card.flip3d .card-header {
  background: #943885 !important;
}
.product-box .card.flip3d .card-header .card-title {
  color: #ffffff !important;
}
.product-box .card.flip3d .card-header .card-title:hover {
  color: rgba(255, 255, 255, 0.7) !important;
}

.slide-hover .card-title {
  color: #ffffff !important;
}

.hover-box-shadow .card-title {
  color: #333333 !important;
}

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

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

#category_list a:hover, #category_list a.act {
  color: #943885;
}

/***** other content CSS *****/
.body-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

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

/*Breadcrumb CSS*/
.breadcrumb_container .breadcrumb li a:hover {
  color: #943885;
}
.breadcrumb_container .breadcrumb li.active .a {
  color: #943885;
}

/***** Container Width *****/
@media only screen and (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

.popover.show {
  max-width: 290px !important;
}
@media only screen and (min-width: 768px) {
  .popover.show {
    max-width: 350px !important;
  }
}

#sitemap ul li a:hover {
  color: #943885;
}

#request_quote_listing .requote:focus {
  color: #333333;
}

#home_page {
  position: relative;
}
#home_page .pager {
  position: absolute !important;
  right: 0;
  top: -67px;
}
#home_page .pager li {
  margin-right: 0;
}
#home_page .pager li a {
  background: transparent;
  border: 0;
}
#home_page .pager li a span {
  background-image: none;
}
#home_page .pager li a span:after {
  color: #888;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#home_page .pager li:first-child .carousel-control-prev-icon:after {
  content: "\f137";
}
#home_page .pager li:last-child .carousel-control-next-icon:after {
  content: "\f138";
}
#home_page .pager li:hover a .carousel-control-prev-icon:after, #home_page .pager li:hover a .carousel-control-next-icon:after {
  color: #943885;
  font-weight: bold;
}

#top-banner .carousel-control-prev, #top-banner .carousel-control-next {
  z-index: 99;
}
#top-banner .carousel-inner img {
  width: 100%;
}
#top-banner .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  right: 0.5%;
  left: auto;
}
@media only screen and (min-width: 1024px) {
  #top-banner .carousel-inner .carousel-item .carousel-caption {
    right: 5%;
  }
}
#top-banner .carousel-inner .carousel-item .carousel-caption .d-flex p {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #fff;
  font-family: "Raleway-SemiBold", sans-serif;
  line-height: 20px;
}
@media only screen and (min-width: 1248px) {
  #top-banner .carousel-inner .carousel-item .carousel-caption .d-flex p {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 28px;
  }
}
#top-banner .carousel-inner .carousel-item .carousel-caption .d-flex h2 {
  font-family: "Raleway-Bold", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1248px) {
  #top-banner .carousel-inner .carousel-item .carousel-caption .d-flex h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
#top-banner .carousel-inner .carousel-item .carousel-caption .d-flex .btn {
  padding: 0.3rem 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 1248px) {
  #top-banner .carousel-inner .carousel-item .carousel-caption .d-flex .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
  }
}

#shopping_accordion .card-title a, #price_calculator .card-title a {
  font-family: "Raleway-SemiBold", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
}

.content-box {
  font-family: "Raleway-SemiBold", sans-serif;
}

.scroll-top {
  line-height: 30px;
}

#product_price_with_category .card-title .btn-link {
  color: #943885 !important;
}
#product_price_with_category .card-title .btn-link:hover {
  color: #000 !important;
}

.navbar-collapse ~ .navbar-bg-outside {
  z-index: 1;
}

/*.shipping_payment_section{
	.page-sub-header{color:$brand-primary;}
}*/
.our_service h4 {
  font-size: 24px;
  font-size: 1.5rem;
}
.our_service ul {
  padding: 0.5rem 1.5rem;
  margin: 0;
}
.our_service ul li {
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1248px) {
  .our_service ul li {
    display: inline-block;
    width: 50%;
  }
}
.our_service ul li a {
  display: inline-block;
  color: #943885;
  padding: 0.2rem 0;
}
.our_service ul li a:hover {
  color: #00aeef;
}

#top-banner {
  display: block !important;
}

.mob-header .twitter-typeahead {
  width: 100%;
}

.child_block {
  max-width: 1280px;
  margin: 0 auto;
  background: #fff;
}
@media only screen and (max-width: 1439px) {
  .child_block {
    max-width: 1100px;
  }
}
@media only screen and (max-width: 1247px) {
  .child_block {
    max-width: 950px;
  }
}
@media only screen and (max-width: 799px) {
  .child_block {
    max-width: 720px;
  }
}
@media only screen and (max-width: 639px) {
  .child_block {
    max-width: 100%;
  }
}

.navbar-nav .user-info {
  background: #943885 !important;
}

.popup_page_outer .popup_page_inner {
  background: #fff;
}
.popup_page_outer .popup_page_inner #forgate_password_popup {
  position: relative;
}
.popup_page_outer .popup_page_inner #forgate_password_popup:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  background: #ffffff;
}

form#pricecalulate .readonlyDrpdwn {
  border: none !important;
  cursor: pointer;
}

form#pricecalulate .readonlyDrpdwn::after {
  content: "" !important;
  border: none !important;
}

.navbar-nav .dropdown-menu {
  top: 100% !important;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
  top: auto !important;
}

#user_order .user_select {
  max-width: 180px !important;
}
#user_order .user_select .bootstrap-select {
  width: 100%;
}

.custom-select .dropdown-menu.inner {
  max-height: 250px !important;
  overflow: auto;
}

.navbar .navbar-collapse .navbar-nav > .nav-item > .scroll-up {
  margin-top: -208.406px !important;
}

.sticky-header .navbar .navbar-collapse .navbar-nav > .nav-item > .scroll-up {
  margin-top: -36px !important;
}

.navbar-text .logout-dropdown {
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  left: -80px !important;
}
.navbar-text .logout-dropdown a {
  padding: 0.3rem 1rem !important;
}
.navbar-text .logout-dropdown a:hover {
  color: #943885 !important;
}
.navbar-text .logout-dropdown > a:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.navbar-text .logout-dropdown a {
  background-color: #eef2f5 !important;
}
.navbar-text .logout-dropdown a:hover {
  background-color: transparent !important;
}

.bootstrap-select > .disabled {
  cursor: not-allowed;
  border: unset !important;
}
.bootstrap-select > .disabled::after {
  display: none;
}

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