@charset "UTF-8";
/*Fonts path*/
/*Fonts path end*/
/*************** background opacity and gradient *******************/
/*************** Shadow *******************/
/*************** Transform *******************/
/*************** Transition *******************/
/*************** Animation *******************/
/*************** Media Query *******************/
/* Branding Theme CSS For All Themes */
.zoom:hover {
  background: #505050;
  background: rgba(80, 80, 80, 0.75);
}

/***** Header tag CSS *****/
.page-header {
  color: #8dc63f;
}
.page-header h1 small, .page-header h2 small {
  color: #505050 !important;
}

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

.page-sub-header {
  color: #505050;
}

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

/***** Anchor tag css ******/
a {
  color: #505050;
  -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: #8dc63f;
  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: #00aeef;
  border-color: #00aeef;
  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: #0089bc;
  border-color: #0089bc;
  color: #fff;
}
.btn-primary.disabled, .btn-primary:disabled {
  background: #00aeef;
  border-color: #00aeef;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-info {
  background: #8dc63f;
  border-color: #8dc63f;
}
.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: #72a230;
  border-color: #72a230;
}
.btn-info.disabled, .btn-info:disabled {
  background: #8dc63f;
  border-color: #8dc63f;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

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

.btn-success {
  background: #8dc63f;
  border-color: #8dc63f;
}
.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: #72a230;
  border-color: #72a230;
}
.btn-success.disabled, .btn-success:disabled {
  background: #8dc63f;
  border-color: #8dc63f;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

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

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

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

/***** Link Button ******/
.btn-link {
  color: #8dc63f;
}
.btn-link:hover {
  color: #00aeef;
}
.btn-link:disabled, .btn-link.disabled {
  color: #dddddd;
}

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

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

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

/**** loader ****/
.loading {
  border-color: transparent #8dc63f;
}

#loading-text {
  color: #8dc63f;
}

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

.text-info {
  color: #8dc63f !important;
}

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

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

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

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

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

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

.badge-info {
  background: #8dc63f;
}

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

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

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

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

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

.bg-success {
  background-color: #8dc63f !important;
}

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

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

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

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

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

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

/**** search dropdown****/
.tt-dropdown-menu .tt-suggestion.tt-is-under-cursor {
  background-color: #8dc63f;
}
.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: #ffffff !important;
}

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

.account_dashboard_box h4 {
  color: #8dc63f;
}

/* Total Price Box CSS */
.content-box .content-small-box-content {
  color: #8dc63f !important;
}
.content-box .content-small-box-lable {
  color: #333333 !important;
}

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

/* Custom CSS Here */
/***** Fonts *****/
@font-face {
  font-family: "latoregular";
  src: url("../fonts/lato-regular-webfont.eot");
  src: url("../fonts/lato-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-regular-webfont.woff") format("woff"), url("../fonts/lato-regular-webfont.ttf") format("truetype"), url("../fonts/lato-regular-webfont.svg#latoregular") format("svg");
}
@font-face {
  font-family: "latomedium";
  src: url("../fonts/lato-medium-webfont.eot");
  src: url("../fonts/lato-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-medium-webfont.woff") format("woff"), url("../fonts/lato-medium-webfont.ttf") format("truetype"), url("../fonts/lato-medium-webfont.svg#latomedium") format("svg");
}
@font-face {
  font-family: "latolight";
  src: url("../fonts/lato-light-webfont.eot");
  src: url("../fonts/lato-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-light-webfont.woff") format("woff"), url("../fonts/lato-light-webfont.ttf") format("truetype"), url("../fonts/lato-light-webfont.svg#latolight") format("svg");
}
@font-face {
  font-family: "latoheavy";
  src: url("../fonts/lato-heavy-webfont.eot");
  src: url("../fonts/lato-heavy-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-heavy-webfont.woff") format("woff"), url("../fonts/lato-heavy-webfont.ttf") format("truetype"), url("../fonts/lato-heavy-webfont.svg#latoheavy") format("svg");
}
@font-face {
  font-family: "latobold";
  src: url("../fonts/lato-bold-webfont.eot");
  src: url("../fonts/lato-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-bold-webfont.woff") format("woff"), url("../fonts/lato-bold-webfont.ttf") format("truetype"), url("../fonts/lato-bold-webfont.svg#latobold") format("svg");
}
@font-face {
  font-family: "latoblack";
  src: url("../fonts/lato-black-webfont.eot");
  src: url("../fonts/lato-black-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/lato-black-webfont.woff") format("woff"), url("../fonts/lato-black-webfont.ttf") format("truetype"), url("../fonts/lato-black-webfont.svg#latoblack") format("svg");
}
/***** Reset CSS *****/
body {
  font-family: "latoregular", sans-serif;
  color: #666666;
  background: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
}

body.home_page_body {
  background: #eeeeee;
}

h2, h3, h4, h5, h6, .h2, .h3, .h4, .h5, .h6 {
  font-family: "latomedium", sans-serif;
}

h1, .h1 {
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "latobold", sans-serif;
}

h2, .h2 {
  font-size: 23px;
  font-size: 1.4375rem;
}

h3, .h3 {
  font-size: 20px;
  font-size: 1.25rem;
}

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

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

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

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

strong, b {
  color: #333333;
}

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

.btn-primary, .btn-info, .btn-success, btn-secondary {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}

.btn-primary {
  color: #fff;
}

.page-header h1, .page-header h2 {
  position: relative;
  padding-bottom: 0.8rem !important;
  margin: 0;
}
.page-header h1 small, .page-header h2 small {
  font-family: "OpenSans-SemiBold", sans-serif;
}
.page-header h1:after, .page-header h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  height: 3px;
  background: #00aeef;
  left: 0;
  right: 0;
  bottom: -2px;
}

.top-header .bootstrap-select .btn {
  padding: 0 0.75rem;
}
.top-header .header-search .form-control {
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
.top-header .header-search .twitter-typeahead:after {
  color: #fff;
  padding: 0 0.9rem;
  background: #00aeef;
  border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
}
.top-header .customer_service {
  font-size: 16px;
  font-size: 1rem;
}
.top-header .customer_service a {
  color: #8dc63f !important;
}
.top-header .customer_service a:hover {
  color: #00aeef !important;
}

/* Nav Tab CSS */
#InfoTab .nav-tabs {
  border: 1px solid #ddd;
}
#InfoTab .nav-tabs .nav-item .nav-link {
  border: 0;
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  padding: 0.8rem 1.2rem;
  font-family: "latomedium", sans-serif;
  color: #555555;
}
#InfoTab .nav-tabs .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 2px;
  left: 0;
  right: 0;
  background: transparent;
  margin: 0 auto;
  -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;
}
#InfoTab .nav-tabs .nav-item .nav-link.active, #InfoTab .nav-tabs .nav-item .nav-link:hover {
  background: transparent;
  color: #00aeef;
}
#InfoTab .nav-tabs .nav-item .nav-link.active:before, #InfoTab .nav-tabs .nav-item .nav-link:hover:before {
  background: #00aeef;
}
#InfoTab .tab-content {
  padding: 1rem;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
}

.nav-customtabs .nav-item .nav-link {
  border: 0;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "latomedium", sans-serif;
  color: #555555;
}
.nav-customtabs .nav-item .nav-link.active, .nav-customtabs .nav-item .nav-link:hover {
  color: #00aeef;
  background: transparent;
}
.nav-customtabs .nav-item .nav-link.active:after, .nav-customtabs .nav-item .nav-link:hover:after {
  background: #00aeef;
}

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

/***** Top menu CSS******/
.navbar-brand {
  max-width: 250px;
}

.navbar {
  z-index: 999;
  background: #ffffff;
}
.navbar .navbar-nav {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.navbar .navbar-nav .nav-item > .nav-link {
  color: #ffffff;
  padding: 0.8rem 1rem;
  font-family: "latomedium", sans-serif;
  position: relative;
}
.navbar .navbar-nav .nav-item:hover > .nav-link, .navbar .navbar-nav .nav-item.active > .nav-link {
  color: #ffffff;
  background: #00aeef;
}
.navbar .navbar-nav .nav-item.show > .nav-link {
  color: #ffffff;
  background: #00aeef;
}
.navbar .navbar-nav .nav-item .dropdown-menu {
  border: 0;
  -webkit-box-shadow: 0 1px 1px 1px #e0dede;
  -moz-box-shadow: 0 1px 1px 1px #e0dede;
  box-shadow: 0 1px 1px 1px #e0dede;
  margin-top: 0 !important;
  background: #00aeef;
}
.navbar .navbar-nav .nav-item .dropdown-menu.login {
  left: 0;
  right: auto;
}
@media only screen and (min-width: 1024px) {
  .navbar .navbar-nav .nav-item .dropdown-menu.login {
    left: auto;
    right: 0;
  }
}
.navbar .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover > .dropdown-item {
  color: #ffffff !important;
  background: #009bd6;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover > .dropdown-item:after {
  color: #555555;
}
.navbar .navbar-nav .nav-item .dropdown-menu li:hover > .dropdown-item:hover strong {
  color: #ffffff;
}
.navbar .navbar-nav .nav-item .dropdown-menu .list-unstyled > li.active > a {
  color: #555555 !important;
  background: #009bd6;
}
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-menu {
  background: #00aeef;
}
.navbar .navbar-nav .nav-item .dropdown-menu .dropdown-menu li {
  background: transparent;
}
.navbar .navbar-nav .nav-item.position-static .dropdown-menu {
  background: #ffffff !important;
}
.navbar .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body {
  background: transparent;
}
.navbar .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li a {
  color: #333333;
  padding: 0.2rem 1rem;
  background: transparent;
}
.navbar .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li a strong {
  color: #333333;
}
.navbar .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li:hover a {
  color: #00aeef !important;
}
.navbar .navbar-nav .nav-item.position-static .dropdown-menu .card .card-body .nav li:hover a strong {
  color: #00aeef;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu {
  background: #ffffff !important;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a {
  background: #00aeef;
  color: #ffffff;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu > a:after {
  color: #fff;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu:hover > a, .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu.active > a {
  color: #00aeef !important;
  background: #fff;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu:hover > a:after, .navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu.active > a:after {
  color: #00aeef !important;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li a {
  color: #333 !important;
  background: transparent !important;
}
.navbar .navbar-nav .nav-item.megamenu .dropdown-menu .dropdown-submenu .dropdown-menu .list-unstyled > li:hover > a {
  color: #00aeef !important;
}
@media only screen and (min-width: 768px) {
  .navbar {
    background-color: #8dc63f;
  }
}

/* Sidebar CSS */
.sidebar .card {
  background: transparent;
}
.sidebar .card .card-header {
  background-color: #00aeef;
}
.sidebar .card .card-header .card-title {
  color: #fff;
}
.sidebar .card .card-body .without_cat .list-group li a {
  color: #333 !important;
}
.sidebar .card .card-body .without_cat .list-group li:hover a {
  color: #8dc63f !important;
}
.sidebar .card .card-body #straightmenu .list-group {
  margin-left: 0 !important;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item {
  padding: 0.9rem !important;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item .text-info {
  font-size: 16px;
  font-size: 1rem;
  color: #8dc63f !important;
  border-bottom: 1px dashed #ccc;
  padding-left: 0 !important;
  padding-bottom: 0.5rem !important;
  margin-bottom: 0.5rem;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item .text-info:before {
  display: none;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item .all-product {
  font-size: 15px;
  font-size: 0.9375rem;
  padding-left: 0;
  color: #333 !important;
}
.sidebar .card .card-body #straightmenu .list-group .list-group-item .all-product:before {
  display: none;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a, .sidebar .card .card-body .accordion .list-group-item > a {
  position: relative;
  font-family: "latomedium", sans-serif;
  font-size: 15px;
  font-size: 0.9375rem;
}
.sidebar .card .card-body .accordion-menu .list-group-item > a:after, .sidebar .card .card-body .accordion .list-group-item > a:after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 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: "";
}
.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: #8dc63f !important;
}
.sidebar .card .card-body .accordion-menu .list-group-item .list-unstyled, .sidebar .card .card-body .accordion .list-group-item .list-unstyled {
  margin-left: 0.5rem;
}
.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.2rem;
  padding-bottom: 0.2rem;
}
.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: 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: #8dc63f !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: #555555 !important;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item:hover > a {
  background: #8dc63f;
  color: #ffffff !important;
  padding-left: 1.5rem !important;
}
.sidebar .card .card-body #cssmenu .list-group .list-group-item .list-unstyled {
  background: #8dc63f;
}
.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: #8dc63f !important;
  padding-left: 1.5rem !important;
}
.sidebar #myaccount_menu li:hover a, .sidebar #myaccount_menu li.active a {
  color: #8dc63f !important;
}
.sidebar .without_cat .list-group .list-group-item {
  padding: 0 !important;
}
.sidebar .without_cat .list-group .list-group-item > a {
  padding: 0.5rem 0.9rem;
}
.sidebar .without_cat .list-group .list-group-item ul {
  margin-bottom: 0.9rem;
}
.sidebar .without_cat .list-group .list-group-item ul li:hover a, .sidebar .without_cat .list-group .list-group-item ul li.active a {
  color: #8dc63f !important;
}
.sidebar #straightmenu .list-group .list-group-item > a.all-product {
  font-size: 16px;
  font-size: 1rem;
  color: #8dc63f;
}
.sidebar #straightmenu .list-group .list-group-item > a.all-product:before {
  display: none;
}
.sidebar #straightmenu .list-group .list-group-item > a:not(.all-product) {
  padding: 0.2rem 0 0.2rem 1.1rem !important;
}
.sidebar #straightmenu .list-group .list-group-item > a:not(.all-product):before {
  display: block;
}
.sidebar #straightmenu .list-group .list-group-item > a:hover {
  color: #8dc63f !important;
}
.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 > a:before {
  top: 3px;
}
.sidebar #straightmenu .list-group .list-group-item .list-unstyled li > a:hover {
  color: #8dc63f !important;
}
.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: #8dc63f !important;
}
.sidebar #straightmenu .without_cat .list-unstyled {
  padding-left: 0.9rem;
}

/* Action Button CSS */
.browse_design:hover, .upload_design:hover, .custom_design:hover, .hire_designer:hover, .ico_quote_design: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 {
  border-color: #8dc63f !important;
}
.browse_design .btn-img-text {
  color: #8dc63f !important;
}
.browse_design:hover .btn-img-text {
  color: #72a230 !important;
}

.upload_design {
  border-color: #00aeef !important;
}
.upload_design .btn-img-text {
  color: #00aeef !important;
}
.upload_design:hover .btn-img-text {
  color: #0089bc !important;
}

.custom_design {
  border-color: #505050 !important;
}
.custom_design .btn-img-text {
  color: #505050 !important;
}
.custom_design:hover .btn-img-text {
  color: #373737 !important;
}

.hire_designer {
  border-color: #8dc63f !important;
}
.hire_designer .btn-img-text {
  color: #8dc63f !important;
}
.hire_designer:hover .btn-img-text {
  color: #72a230 !important;
}

.ico_quote_design {
  border-color: #00aeef !important;
}
.ico_quote_design .btn-img-text {
  color: #00aeef !important;
}
.ico_quote_design:hover .btn-img-text {
  color: #0089bc !important;
}

.btn-title-text .h4 {
  font-size: 18px;
  font-size: 1.125rem;
}
.btn-title-text.browse_design {
  background: #8dc63f !important;
  border-color: #8dc63f !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;
}
.btn-title-text.browse_design:hover a .h4, .btn-title-text.browse_design:hover a i {
  color: #8dc63f !important;
}
.btn-title-text.upload_design {
  background: #00aeef !important;
  border-color: #00aeef !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;
}
.btn-title-text.upload_design:hover a .h4, .btn-title-text.upload_design:hover a i {
  color: #00aeef !important;
}
.btn-title-text.custom_design {
  background: #505050 !important;
  border-color: #505050 !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;
}
.btn-title-text.custom_design:hover a .h4, .btn-title-text.custom_design:hover a i {
  color: #505050 !important;
}
.btn-title-text.hire_designer {
  background: #8dc63f !important;
  border-color: #8dc63f !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;
}
.btn-title-text.hire_designer:hover a .h4, .btn-title-text.hire_designer:hover a i {
  color: #8dc63f !important;
}
.btn-title-text.quote_product {
  background: #00aeef !important;
  border-color: #00aeef !important;
}
.btn-title-text.quote_product a .h4 {
  color: #ffffff !important;
}
.btn-title-text.quote_product:hover {
  background: transparent !important;
}
.btn-title-text.quote_product:hover a .h4 {
  color: #00aeef !important;
}

/*Top Header CSS*/
.customer_service p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 0.3rem;
}
.customer_service p a {
  color: #8dc63f;
}
.customer_service p a:hover {
  color: #333333;
}

@media only screen and (min-width: 768px) {
  .navbar-brand {
    margin-right: auto;
  }
}

.top-links li {
  margin: 0;
}
.top-links li a {
  font-size: 16px;
  font-size: 1rem;
  font-family: "latolight", sans-serif;
  padding: 0 0.5rem;
}

@media only screen and (min-width: 768px) {
  .header-search .twitter-typeahead {
    width: 330px;
  }
}
.header-search .twitter-typeahead input {
  border-radius: 30px 0 0 30px;
  -moz-border-radius: 30px 0 0 30px;
  -webkit-border-radius: 30px 0 0 30px;
  border-color: #00aeef !important;
}
.header-search .input-group-append span {
  border-radius: 0 30px 30px 0;
  -moz-border-radius: 0 30px 30px 0;
  -webkit-border-radius: 0 30px 30px 0;
  cursor: pointer;
  border-color: #00aeef !important;
  background-color: #00aeef !important;
  color: #333333;
}
.header-search .input-group-append span i {
  font-weight: bold;
}

/* Top Banner CSS */
#top-banner .carousel-indicators {
  bottom: 70px;
  margin: 0;
}

/* Header CMS CSS */
.block_text {
  position: static;
}
@media only screen and (min-width: 768px) {
  .block_text {
    position: relative;
    top: -50px;
  }
}
.block_text a {
  border-right: 0;
  border-bottom: 1px solid #dddddd;
  text-align: left;
  display: table !important;
  width: 100%;
}
.block_text a * {
  display: table-cell !important;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .block_text a {
    border-right: 1px solid #dddddd;
    border-bottom: 0;
  }
}
.block_text a img {
  max-width: 50px;
  display: inline-block;
  margin: 0 auto;
}
@media only screen and (min-width: 1248px) {
  .block_text a img {
    max-width: 90px;
  }
}
@media only screen and (min-width: 1024px) {
  .block_text a img {
    display: inline-block;
  }
}
.block_text a span {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "latomedium", sans-serif;
}

.prod_cat .card {
  -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;
}
.prod_cat .card .card-title, .prod_cat .card .card-text {
  -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;
}
.prod_cat .card:hover {
  background-color: #8dc63f;
}
.prod_cat .card:hover .card-title, .prod_cat .card:hover .card-text {
  color: #ffffff;
}

.discount-box {
  border: 3px solid #acacac;
  max-width: 400px;
  margin: 1rem auto;
  padding: 2rem;
  -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;
}
@media only screen and (min-width: 768px) {
  .discount-box {
    margin: 0 auto;
  }
}
.discount-box p {
  font-size: 24px;
  font-size: 1.5rem;
}
@media only screen and (min-width: 480px) {
  .discount-box p {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.discount-box .off {
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 160px;
  font-family: "latomedium", sans-serif;
}
@media only screen and (min-width: 480px) {
  .discount-box .off {
    font-size: 150px;
    font-size: 9.375rem;
  }
}
.discount-box .off sup {
  font-size: 60px;
  font-size: 3.75rem;
  vertical-align: middle;
}
.discount-box .off sub {
  font-size: 60px;
  font-size: 3.75rem;
  vertical-align: middle;
  left: -30px;
}
.discount-box:hover {
  background-color: #8dc63f;
  border-color: #8dc63f;
}
.discount-box:hover p, .discount-box:hover .off {
  color: #ffffff;
}

/* Product Hover Effact */
.product-box .card {
  background: #f7f7f7;
  border: 0;
}
.product-box .card h3 {
  font-size: 18px;
  font-size: 1.125rem;
  color: #505050 !important;
  text-align: center;
}
.product-box .card .card-footer {
  display: none;
}

.flip3d {
  border-color: #8dc63f;
}
.flip3d .card-header {
  background: #8dc63f !important;
}
.flip3d .card-header .card-title {
  color: #ffffff;
}
.flip3d .card-header .card-title:hover {
  color: #00aeef;
}

.slideup .card-body {
  background: #505050 !important;
}

.slide-hover .card-title {
  background: #8dc63f !important;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
}
.slide-hover .card-title:after {
  background: #72a230;
}

/* Middle CMS CSS */
.subscribe_section h3 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #ffffff;
}
.subscribe_section input {
  height: 50px;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}
.subscribe_section button {
  border-radius: 0 30px 30px 0 !important;
  -moz-border-radius: 0 30px 30px 0 !important;
  -webkit-border-radius: 0 30px 30px 0 !important;
}

/* Footer CSS */
.fotter_bottom h3 {
  font-family: "latobold", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  color: #ffffff;
}
.fotter_bottom ul {
  padding: 0;
  margin: 0;
}
.fotter_bottom ul li {
  display: block;
}
.fotter_bottom ul li a {
  color: #ffffff;
  display: inline-block;
  padding: 0.2rem 0 0.2rem 0.8rem;
  position: relative;
}
.fotter_bottom ul li a:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
}
.fotter_bottom ul li a b {
  color: #00aeef;
}
.fotter_bottom ul li a:after {
  background: #ffffff;
}
.fotter_bottom ul li a:hover {
  color: #00aeef;
}
.fotter_bottom ul li a:hover:after {
  background: #00aeef;
}
.fotter_bottom ul li .badgeonproducttitle {
  color: #00aeef;
}
.fotter_bottom ul.list-unstyled > li {
  width: 100%;
  float: left;
}
@media only screen and (min-width: 480px) {
  .fotter_bottom ul.list-unstyled > li {
    width: 50%;
  }
}
.fotter_bottom ul.list-unstyled > li > a:after {
  background: #00aeef;
}
.fotter_bottom .contact_us ul li a {
  padding: 0.2rem 0;
}
.fotter_bottom .contact_us ul li a:after {
  content: normal;
}
.fotter_bottom .contact_us ul li a i {
  display: inline-block;
  margin-right: 0.3rem;
}
.fotter_bottom .contact_us .customer_service a {
  color: #00aeef;
  display: block;
  font-size: 32px;
  font-size: 2rem;
  font-family: "latoblack", sans-serif;
  letter-spacing: 2px;
}
.fotter_bottom .contact_us .customer_service a:hover {
  color: #ffffff;
}
.fotter_bottom .contact_us p {
  color: #ffffff;
}
.fotter_bottom .social_media li {
  display: inline-block;
  margin: 0 0.3rem;
}
.fotter_bottom .social_media li a {
  display: inline-block;
  text-align: center;
}
.fotter_bottom .social_media li a i {
  background: transparent;
  color: #ffffff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #ffffff;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  margin: 0;
  -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;
}
.fotter_bottom .social_media li a i:hover {
  color: #333333;
  background: #00aeef;
  border-color: #00aeef;
}

.bottom-links li a {
  color: #ffffff;
}
.bottom-links li a:hover {
  color: #00aeef;
}

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

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

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

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

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

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

.templatebox .card .card-body {
  margin: 0 auto;
}

#user_signup a {
  font-family: "latobold", sans-serif;
}

/***** Media Query *****/
.facebook_login, .google_login, .btnlogin {
  padding: 0.25rem 0.5rem;
}
@media only screen and (min-width: 800px) {
  .facebook_login, .google_login, .btnlogin {
    padding: 0.25rem 0.3rem;
  }
}

.footer-content, footer {
  background-color: #323232 !important;
}
.footer-content .card, footer .card {
  background-color: #323232 !important;
  border: 0px;
  margin-bottom: 0.5rem;
  padding: 0;
}
.footer-content .card .card-header, footer .card .card-header {
  background-color: #323232;
  border-bottom: 0px;
  padding: 0;
  margin-bottom: 0.4rem;
}
.footer-content .card .card-header .card-title, footer .card .card-header .card-title {
  color: #fff !important;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0.6rem 0 !important;
  padding: 0;
}
.footer-content .card .card-body, footer .card .card-body {
  padding: 0;
  color: #fff !important;
}
.footer-content .card .card-body b, .footer-content .card .card-body strong, footer .card .card-body b, footer .card .card-body strong {
  color: #fff;
}
.footer-content .card .card-body h2, footer .card .card-body h2 {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}
.footer-content ul, footer ul {
  padding: 0;
  list-style: none;
}
.footer-content ul > li, footer ul > li {
  margin-bottom: 0.2rem;
}
.footer-content ul > li a, footer ul > li a {
  color: #fff !important;
}
.footer-content ul > li a b, .footer-content ul > li a strong, footer ul > li a b, footer ul > li a strong {
  color: #fff;
}
.footer-content ul > li a:hover, footer ul > li a:hover {
  color: #00aeef !important;
}
.footer-content .bottom-links a, footer .bottom-links a {
  color: #cccccc !important;
}
.footer-content .list-unstyled > li, footer .list-unstyled > li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0.6rem;
}
.footer-content .foot-cont, footer .foot-cont {
  font-size: 16px;
  font-size: 1rem;
}
.footer-content .foot-cont a, footer .foot-cont a {
  color: #00aeef;
  font-weight: bold;
  font-size: 32px;
  font-size: 2rem;
}
.footer-content .foot-cont p, footer .foot-cont p {
  color: #fff;
  margin: 0.9rem 0 0;
}
.footer-content .social .card, footer .social .card {
  background-color: #2b1242;
}
.footer-content .social ul li, footer .social ul li {
  display: inline-block;
}
.footer-content .social ul li a i, footer .social ul li a i {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid #959595;
  color: #fff;
  font-size: 20px;
  height: 38px;
  line-height: 36px;
  margin-right: 0.5rem;
  text-align: center;
  vertical-align: middle;
  width: 38px;
}
.footer-content .social ul li:hover a i, footer .social ul li:hover a i {
  background: #8dc63f;
  color: #fff;
  border-color: #8dc63f;
}

.navbar .btn-link {
  position: realtive;
}
.navbar .btn-link span {
  position: absolute;
  background: #00aeef;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 12px;
  top: 8px;
  right: 5px;
  padding: 0.2rem 0.3rem;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

#top-banner .carousel-control-prev {
  left: 50px !important;
}
#top-banner carousel-control-next {
  right: 50px !important;
}

#sitemap ul li a:hover {
  color: #00aeef;
}

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