:root {
  /* --primary-color: #000000;
    --primary-hover-color: #ffffff;
    --secondary-color: #E28D3F;
    --secondary-light-color: #939393;
    --background-color: #1C1C1D;
    --border-color: #dddddd; */

  --primary-color: #fff;
  --primary-hover-color: #000;
  --secondary-color: #e28d3f;
  --secondary-light-color: #939393;
  --background-color: #fff;
  --border-color: #e28d3f;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: var(--primary-color);
  color: var(--primary-hover-color);
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-hover-color);
}

a {
  color: var(--primary-hover-color);
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

a:hover {
  outline: none;
  text-decoration: none;
  color: var(--secondary-color);
}

p {
  margin: 0 0 10px;
}

/* -----
loader
----- */
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-image: url(assets/images/ajax_loader.gif);
  background-position: 50% 50%;
  background-color: var(--primary-hover-color);
  background-repeat: no-repeat;
  opacity: 0.9;
}
/* -----
.loader
----- */

/* -----
scrollToTop
----- */
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  color: var(--primary-color);
  background: var(--secondary-color);
  border-radius: 5px;
  font-size: 22px;
  line-height: 50px;
  text-align: center;
  z-index: 999;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
  -moz-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
  -ms-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
  -o-box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
  box-shadow: 0 0 10px 5px rgb(255 255 255 / 50%);
}

.scrollToTop:hover,
.scrollToTop:focus {
  background: var(--primary-color);
  color: var(--primary-hover-color);
}
@media (max-width: 991px) {
  .scrollToTop {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}
/* -----
.scrollToTop
----- */

/* ----- 
Buttons
----- */
.btn {
  font-size: 14px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.btn-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.btn-default,
.btn-info,
.btn-primary {
  color: var(--primary-color);
  text-shadow: none;
  background-color: var(--secondary-color);
  background-image: none;
  background-repeat: unset;
  border: 2px solid var(--primary-hover-color);
  border-radius: 0;
  padding: 13px 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  box-shadow: none;
  outline: none;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.btn-primary a {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  color: var(--primary-color);
}
.btn-primary:focus a,
.btn-primary:hover a {
  color: var(--primary-hover-color);
}
.btn-default:hover,
.btn-info:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary:active:focus {
  border-color: var(--primary-hover-color);
  background: var(--primary-color);
  color: var(--primary-hover-color);
  box-shadow: none;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
  padding: 17px 15px;
  border: none;
  line-height: 1;
  border-radius: 0;
}
.btn,
.btn:focus {
  outline: none;
  box-shadow: none;
}
/* ----- 
.Buttons
----- */

/* ----- 
Header
----- */
#top {
  background-color: var(--secondary-color);
}
.top-left {
  float: left;
  padding: 15px 0;
}
.contact-info {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.contact-info a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
}
.contact-info a i {
  /*color: var(--secondary-color);*/
  margin: 0 10px 0 0;
  font-size: 16px;
}
.top-right {
  display: flex;
  justify-content: end;
}
.top-right > div + div {
  margin: 0 0 0 25px;
}
.top-right .dropdown-toggle {
  line-height: 20px;
  text-transform: capitalize;
  border: none;
  padding: 15px 0;
}
#top .dropdown-toggle {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
}
header {
  background: var(--primary-hover-color);
}
header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation: fadeInDown 1s ease-out forwards;
  -moz-animation: fadeInDown 1s ease-out forwards;
  -o-animation: fadeInDown 1s ease-out forwards;
  animation: fadeInDown 1s ease-out forwards;
  z-index: 9;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 8%);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 12px rgb(0 0 0 / 8%);
}
#logo img {
  max-width: 150px;
}
#top .dropdown-toggle::after,
header .dropdown-toggle::after {
  display: contents;
}
.top-right span.drop-text:after {
  content: ":";
  padding: 0 5px;
}
.top-right .dropdown-toggle i {
  font-size: 16px;
  vertical-align: middle;
  padding: 0 0 0 10px;
}
.top-right .dropdown-menu .btn-block,
header .dropdown-menu .dropdown-item {
  display: block;
  border: none;
  padding: 5px 15px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  color: var(--primary-hover-color);
  background: transparent;
}
.top-right .dropdown-menu .btn-block:hover,
header .dropdown-menu .dropdown-item:hover {
  color: var(--secondary-color);
}
#themabilitySearch .btn-search button:hover,
.header-right .dropdown .dropdown-toggle:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}
.header-right {
  display: flex;
  align-items: center;
}
.header-right .dropdown .dropdown-toggle {
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--primary-color);
  color: var(--primary-hover-color);
  padding: 0;
  border: none;
  border-radius: 50%;
  display: block;
  text-align: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.header-right > div + div {
  margin-left: 15px;
}
#themabilitySearch {
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}
#themabilitySearch input {
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background: var(--primary-hover-color);
}
#themabilitySearch .btn-search button {
  background: var(--background-color);
  color: var(--primary-hover-color);
  border-radius: 0 50px 50px 0;
  padding: 9px 15px;
  line-height: inherit;
}

/* cart */
#cart-total {
  background: var(--primary-hover-color);
  color: var(--primary-color);
  border-radius: 50%;
  padding: 0 3px;
  line-height: 15px;
  position: absolute;
  right: 0px;
  top: -5px;
  font-weight: 600;
  border: 1px solid var(--primary-color);
}
#cart .dropdown-menu {
  width: 300px;
  padding: 0;
  top: 100%;
  background: var(--primary-color);
  box-shadow: 0 7px 20px rgb(255 255 255 / 25%);
}
#cart .product-cart-thumb img {
  max-width: 80px;
  background: var(--background-color);
  border: 1px dashed var(--secondary-color);
}
#cart
  .dropdown-menu
  > li.cart-content-product
  .table
  > tbody
  > tr:hover
  .product-cart-thumb
  img {
  border-style: solid;
}
#cart .product-cart-close button {
  padding: 0;
  height: 20px;
  width: 20px;
}
#cart .dropdown-menu table td {
  color: var(--primary-hover-color);
  border: none;
  box-shadow: none;
}
#cart .dropdown-menu table tr {
  border: none;
}
#cart .dropdown-menu > li {
  margin: 0 15px;
}
#cart .dropdown-menu li + li {
  border-top: 1px solid #444;
  padding: 10px 0 10px 0;
}
#cart .dropdown-menu > li.cart-content-product .table > tbody > tr {
  margin-bottom: 15px;
  margin-top: 15px;
  padding-bottom: 15px;
  position: relative;
  border-bottom: 1px solid #444;
  display: block;
}
#cart .dropdown-menu > li.cart-content-product .table > tbody > tr:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#cart .dropdown-menu table td.product-cart-thumb {
  padding: 0;
}
#cart .dropdown-menu table td.product-cart-close {
  position: absolute;
  right: 0;
  top: 0;
}
#cart .dropdown-menu .product-cart-info {
  margin-top: 5px;
}
#cart .dropdown-menu table td strong {
  font-weight: 500;
}
#cart .product-cart-button .btn {
  font-size: 16px;
  padding: 8px 15px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .header-center {
    text-align: center;
    border-top: 1px solid var(--border-color);
  }
}
@media (max-width: 991px) {
  .search-btn-outer {
    font-size: 18px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 2px;
    background: var(--primary-color);
    color: var(--primary-hover-color);
    border: none;
    border-radius: 50%;
    text-align: center;
  }
  .search-btn-outer:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
  }
  .header-search {
    display: none;
    position: absolute;
    right: 0;
    z-index: 1;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    width: 250px;
    background: var(--primary-hover-color);
    border-radius: 50px;
    z-index: 11;
  }
  .search-content {
    position: relative;
  }
  .header-inner {
    padding: 15px 0;
  }
  .search-btn-outer.active i:before {
    content: "\e903";
  }
}
@media (max-width: 575px) {
  .top-right,
  .contact-info {
    justify-content: center;
  }
  .top-right .dropdown-toggle,
  .top-left {
    padding: 7px 0;
  }
  #top {
    padding: 7px 0;
  }
  .top-right > div + div {
    margin: 0 0 0 15px;
  }
}
@media (max-width: 480px) {
  #logo img {
    max-width: 120px;
  }
  .search-btn-outer,
  .header-right .dropdown .dropdown-toggle {
    height: 35px;
    width: 35px;
    line-height: 35px;
  }
  .header-right > div + div {
    margin-left: 5px;
  }
  .header-search {
    right: -30px;
  }
  #form-currency .dropdown-menu {
    left: 0;
    right: auto;
  }
}
/* ----- 
.Header
----- */

/* ----- 
Page Title
----- */
.page-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.page-title h3 {
  font-size: 30px;
  color: var(--primary-hover-color);
  text-transform: capitalize;
  margin: 0;
  padding-bottom: 20px;
  display: inline-block;
  position: relative;
}
.page-title h3:after,
.page-title h3:before {
  content: "";
  background: var(--secondary-color);
  height: 2px;
  position: absolute;
  bottom: 5px;
  width: calc(50% - 10px);
}
.page-title h3:after {
  left: 0;
}
.page-title h3:before {
  right: 0;
}
.page-title .title-border {
  background: var(--secondary-color);
  height: 12px;
  width: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  margin: auto;
}
@media (max-width: 991px) {
  .page-title h3 {
    font-size: 20px;
  }
  .page-title {
    margin-bottom: 20px;
  }
}
/* ----- 
.Page Title
----- */

/* ----- 
Testimonial
----- */
.themability-testimonial-content {
  text-align: center;
  color: var(--primary-hover-color);
  background: var(--background-color);
  padding: 90px 50px 50px;
  border: 1px solid var(--secondary-color);
}
.themability-testimonial-images {
  margin-bottom: -75px;
}
.themability-testimonial-author {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 500;
  line-height: initial;
}
.themability-testimonial-customer {
  font-size: 18px;
  line-height: initial;
  margin: 10px 0;
}
.themability-testimonial-text {
  font-size: 16px;
  line-height: initial;
}
.themability-testimonial-text p {
  margin: 0;
}
.themability-testimonial-images img {
  max-width: 150px;
}
.testimonial-quotes {
  font-size: 30px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .themability-testimonial-content {
    padding: 90px 20px 30px;
  }
  .themability-testimonial-text {
    font-size: 14px;
  }
  .themability-testimonial-author {
    font-size: 18px;
  }
  .themability-testimonial-customer {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .themability-testimonial-content {
    padding: 90px 20px 20px;
  }
}
/* ----- 
.Testimonial
----- */

/* ----- 
About
----- */
.about_area .row {
  align-items: center;
}
.about_area_img {
  background: var(--background-color);
  border: 1px solid var(--secondary-color);
}
.about_area .about_area_desc {
  font-size: 16px;
  line-height: 26px;
}
.about_area .about_area_desc p {
  margin-bottom: 20px;
}
.about_area .about_description {
  background: var(--secondary-color);
  border: 2px solid var(--primary-hover-color);
  color: var(--primary-color);
  display: flex;
  width: fit-content;
  align-items: center;
  padding: 20px;
}
.about_area .about_btn {
  margin: 30px 0;
}
.about_area .about_description i {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--primary-hover-color);
  text-align: center;
  transform: rotate(-40deg);
  margin-right: 20px;
}
.about_description_inner h4 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 26px;
}
.about_description_inner .about_contact_phone {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .about_area .about_description {
    padding: 10px 20px;
  }
  .about_area .about_description i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 40px;
  }
  .about_description_inner h4 {
    font-size: 20px;
  }
  .about_area .about_btn {
    margin: 15px 0;
  }
  .about_area .about_area_desc p {
    margin-bottom: 10px;
  }
  .about_area .about_area_desc {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 1199px) {
  .about_area_content {
    margin-top: 30px;
    text-align: center;
  }
  .about_area_content .page-title {
    text-align: center !important;
  }
  .about_area .about_description {
    margin: auto;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .about_area .about_description i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    margin: 0 0 10px 0;
  }
  .about_area .about_description {
    padding: 10px;
    display: block;
    text-align: center;
  }
  .about_description_inner h4,
  .about_description_inner .about_contact_phone {
    font-size: 16px;
  }
}
/* ----- 
.About
----- */

/* ----- 
Services
----- */
.service {
  text-align: center;
  background: var(--background-color);
  color: var(--primary-hover-color);
  padding: 30px;
  margin-bottom: 30px;
  transition: 0.5s;
  border: 1px solid var(--background-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.service:hover {
  border-color: var(--secondary-color);
}
.service-content h4 {
  margin: 25px 0 0 0;
  font-size: 24px;
  text-transform: capitalize;
  color: var(--primary-hover-color);
}
.themability-service-images img {
  width: 100%;
}
.themability-service-images {
  background: var(--secondary-color);
  padding: 19px;
  max-width: 130px;
  max-height: 130px;
  margin: auto;
  border-radius: 50%;
  border: 2px solid var(--primary-hover-color);
}
.service-content .promo-desc {
  line-height: 26px;
  padding: 20px 0;
}
.service-content .promo-btn {
  background: var(--secondary-color);
  border: 2px solid var(--primary-hover-color);
  font-size: 18px;
  font-weight: 600;
  padding: 13px 20px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.service-content .promo-btn:hover {
  background: var(--primary-color);
  color: var(--primary-hover-color);
}
.service .themability-service-images img {
  display: block;
  transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
}
.service:hover .themability-service-images img {
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
@media (max-width: 1199px) {
  .service {
    padding: 20px 15px;
  }
  .themability-service-images {
    max-width: 100px;
    max-height: 100px;
  }
  .service-content h4 {
    margin: 20px 0 0 0;
    font-size: 18px;
  }
  .service-content .promo-desc {
    padding: 10px 0 15px 0;
  }
  .service-content .promo-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .service {
    margin-bottom: 20px;
  }
}
/* ----- 
.Services
----- */

/* ----- 
Start Next & Prev
----- */
.owl-carousel .owl-nav {
  position: unset;
}
.owl-carousel .owl-nav > div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  height: 40px;
  width: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  line-height: 36px;
  opacity: 0;
  font-size: 18px;
  transition: all 0.7s ease;
  border: 2px solid var(--primary-hover-color);
}
.owl-carousel:hover .owl-nav .owl-prev,
.owl-carousel:hover .owl-nav .owl-next {
  opacity: 1;
}
.themability-slideshow .owl-carousel .owl-nav .owl-prev {
  left: 20px;
}
.themability-slideshow .owl-carousel .owl-nav .owl-next {
  right: 20px;
}
.owl-carousel .owl-nav .owl-prev {
  left: -20px;
}
.owl-carousel .owl-nav .owl-next {
  right: -20px;
}
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: var(--primary-color);
  color: var(--primary-hover-color);
}
@media (max-width: 991px) {
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next {
    height: 30px;
    width: 30px;
    line-height: 28px;
  }
  .owl-carousel .owl-nav .owl-next {
    right: -15px;
  }
  .owl-carousel .owl-nav .owl-prev {
    left: -15px;
  }
}
/* ----- 
.Start Next & Prev
----- */

/* -----
Zodiac
----- */
.category-inner {
  justify-content: center;
}
.category-thumb {
  margin-bottom: 30px;
  padding: 40px 20px;
  background: var(--background-color);
  border: 1px dashed var(--secondary-color);
  text-align: center;
  position: relative;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.category-thumb .cat-title h4 a {
  text-transform: capitalize;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}
.category-thumb .cat-title a:hover {
  color: var(--secondary-color);
}
.category-thumb:hover {
  border-style: solid;
  border-color: var(--secondary-color);
}
.category-thumb .category-date {
  font-size: 16px;
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .category-layout {
    width: 20%;
  }
}
@media (max-width: 1399px) {
  .category-thumb {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .category-thumb {
    margin-bottom: 20px;
  }
  .category-thumb .cat-title h4 a {
    font-size: 18px;
  }
  .category-thumb .category-date {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .category-featured .category-layout {
    width: 50%;
  }
}
/* -----
.Zodiac
----- */

/* -----
Find Zodic
----- */
.find-zodic {
  background: var(--background-color);
  padding: 30px 0;
}
.find-zodic .zodic-input {
  background: rgba(255 255 255/8%);
  box-shadow: none;
  border: none;
  color: rgb(238 238 238 / 50%);
  padding: 5px 20px;
  height: 60px;
  text-transform: uppercase;
  width: 100%;
}
.find-zodic .zodic-input::placeholder {
  color: rgb(238 238 238 / 50%);
}
.zodic-form .row {
  align-items: flex-end;
}
.zodic-form .zodic-submit {
  padding: 18px 50px;
  font-size: 20px;
}
.zodic-form .zodic-sub-heading {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .find-zodic .zodic-input {
    height: 50px;
  }
  .zodic-form .zodic-sub-heading {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .zodic-form-box {
    margin-bottom: 20px;
  }
  .zodic-form .zodic-submit {
    padding: 10px 25px;
    font-size: 16px;
  }
}
/* -----
.Find Zodic
----- */

/*-----
Product
-----*/
.product-thumb {
  margin-bottom: 30px;
}
.product-thumb .image {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--background-color);
  border: 1px dashed var(--secondary-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.product-thumb:hover .image {
  border-style: solid;
}
.product-thumb .caption {
  padding: 10px 0 0 0;
}
.product-thumb .button-group {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  transition: 0.5s;
}
.product-thumb:hover .button-group {
  bottom: 10px;
  opacity: 1;
}
.product-thumb .button-group button {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  background-color: var(--primary-hover-color);
  padding: 0;
  color: var(--primary-color);
  margin: 0 3px;
  border-radius: 50%;
  transition: 0.7s;
}
.product-thumb .button-group button i {
  display: block;
  color: var(--primary-color);
}
.product-thumb .button-group button:hover {
  background-color: var(--secondary-color);
  text-decoration: none;
}
.product-thumb h4 {
  font-size: 16px;
  line-height: 20px;
  margin: 8px 0 0 0;
  text-transform: capitalize;
  display: inline-block;
  vertical-align: middle;
}
.product-thumb .rating {
  float: right;
}
.rating {
  margin: 8px 0 0 0;
  vertical-align: middle;
}
.rating span {
  font-size: 6px;
  width: 2em;
}
.rating i {
  font-size: 12px;
  color: #fec60f;
}
.rating span:hover i {
  font-weight: 600;
}
.product-thumb .price {
  margin: 8px 0 0 0;
}
.product-thumb .price-old {
  color: var(--secondary-light-color);
  text-decoration: line-through;
  margin-left: 5px;
}
.product-thumb .description {
  display: none;
}
.product-thumb .price-tax {
  display: none;
}
@media (max-width: 1199px) {
  .product-thumb h4 {
    display: block;
  }
  .product-thumb .rating {
    float: unset;
  }
  .product-thumb .caption {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .product-thumb .button-group button {
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 14px;
  }
  .product-thumb .button-group {
    bottom: 10px;
    opacity: 1;
  }
  .product-thumb h4 {
    font-size: 14px;
    margin: 0;
  }
  .product-thumb {
    margin-bottom: 20px;
    padding: 0 1px;
  }
}
/*-----
.Product
-----*/

/* -----
Blog
----- */
.blog-block .product-block-inner {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-carousel {
  margin-bottom: -30px;
}
.blog-left {
  position: relative;
}
.blog-image .post_hover {
  position: absolute;
  text-align: center;
  left: 7px;
  margin: 0;
  top: -40px;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.product-block-inner:hover .blog-image .post_hover {
  top: 10px;
  opacity: 1;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -kkhtml-opacity: 1;
}
.post_hover .icon {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 14px;
  transition: all 0.3s linear 0s;
  text-align: center;
  margin: 0 3px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
}
.post_hover .icon:hover {
  background: var(--primary-color);
  color: var(--primary-hover-color);
}
.blog-date-comment .date-time {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-hover-color);
  padding: 13px 15px;
  position: absolute;
  top: -25px;
  left: 30px;
  z-index: 1;
  font-weight: 600;
  font-size: 18px;
}
.blog-date-comment a {
  color: var(--primary-hover-color);
}
.date-time i {
  margin: 0 7px 0 0;
}
.write-comment-count i {
  margin: 0 7px 0 0;
}
.blog-right {
  position: relative;
  background: var(--background-color);
  padding: 30px;
}
.blog_title {
  font-size: 18px;
  font-weight: 500;
  margin: 12px 0 0 0;
  text-transform: capitalize;
}
.blog_title a {
  color: var(--primary-hover-color);
  text-decoration: none;
}
.blog_title a:hover {
  color: var(--secondary-color);
}
.blog-desc {
  color: var(--secondary-light-color);
  line-height: 24px;
  margin: 10px 0 0 0;
  font-size: 14px;
}
.read-more {
  margin: 20px 0 0 0;
}
.read-more .btn-info {
  color: var(--primary-hover-color);
  outline: none;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  font-size: 16px;
  transition: 0.5s;
}
.read-more .btn-info i {
  vertical-align: middle;
  padding-left: 7px;
}
.read-more .btn-info:hover {
  color: var(--secondary-color);
  background: transparent;
}
.read-more .btn-info:after {
  content: "";
  background: var(--primary-hover-color);
  height: 2px;
  width: 50%;
  display: block;
  transition: 0.5s;
  margin-top: 3px;
}
.read-more .btn-info:hover:after {
  width: 100%;
  background: var(--secondary-color);
}
@media (max-width: 991px) {
  .blog-right {
    padding: 30px 20px 20px;
  }
  .blog_title {
    font-size: 16px;
  }
  .blog-date-comment .date-time {
    top: -20px;
    left: 20px;
    font-size: 14px;
    padding: 8px 15px;
  }
  .blog-block .product-block-inner {
    margin-bottom: 20px;
  }
}
/* -----
.Blog
----- */

/*-----
 Newsletter Section 
----- */
.news-info .page-title {
  font-size: 30px;
  text-align: left;
  margin: 0px 0 10px;
  color: var(--primary-hover-color);
}
.news {
  background: url(assets/images/newsletter/newletter-bg.png) center center;
  background-size: cover;
  padding: 50px 0;
  position: relative;
}
.news .row {
  align-items: center;
}
.news-info {
  display: flex;
  align-items: center;
}
.news-info i {
  margin: 0 40px 0 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 40px;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  line-height: 100px;
  text-align: center;
  display: block;
  border: 2px solid var(--primary-hover-color);
}
.news-description {
  color: var(--primary-hover-color);
  font-size: 16px;
}
.newsletter-email-address {
  height: 50px;
  background: var(--primary-hover-color);
  border-radius: 0;
  border: none;
  padding: 10px 15px;
  width: 100%;
  outline: none;
}
.newsletter-submit {
  border-radius: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.newsletter-submit:hover {
  background: var(--primary-color);
  color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}
.subscribe-form {
  display: flex;
}
@media (max-width: 1399px) {
  .news-info i {
    margin: 0 20px 0 0;
    height: 80px;
    width: 80px;
    line-height: 80px;
    font-size: 34px;
  }
  .news-description {
    font-size: 14px;
  }
  .news-info .page-title {
    font-size: 26px;
  }
}
@media (max-width: 1199px) {
  .subscribe-form {
    max-width: 500px;
    margin: auto;
  }
  .news-info {
    justify-content: center;
    margin-bottom: 20px;
  }
  .news {
    padding: 30px 0;
  }
  .news-info i {
    margin: 0 15px 0 0;
  }
}
@media (max-width: 480px) {
  .news-info {
    display: block;
    text-align: center;
  }
  .news-info .page-title {
    text-align: center;
    font-size: 20px;
  }
  .news-info i {
    margin: auto auto 10px auto;
  }
  .news {
    padding: 20px 0;
  }
}
/*-----
 .Newsletter Section 
----- */

/*-----
 footer 
----- */
.footer-main {
  padding-top: 50px;
  color: var(--primary-color);
  background: var(--secondary-color);
}
.follow-link h4,
.footer-main h5 {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px 0;
  display: inline-block;
  position: relative;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
.follow-link h4 {
  border-bottom: none;
}
.footer-top .position-footer-left ul li > div {
  display: flex;
  padding: 8px 0;
  font-size: 16px;
  color: var(--primary-color);
}
.footer-main .footer-links a::before {
  content: "";
  background: #000;
  height: 5px;
  width: 5px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}
.contact_title {
  padding: 0 10px 0 0;
}
.footer-main .footer-logo img {
  max-width: 140px;
}
.footer-main a {
  padding: 8px 0;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.footer-main .footer-links a:hover::before,
.footer-main a:hover {
  color: var(--primary-hover-color);
}
.footer-main .footer-logo p {
  font-size: 16px;
  color: var(--primary-color);
  line-height: initial;
}
.footer-main .footer-logo {
  margin-bottom: 20px;
}
.footer-main .social-media a {
  padding: 0;
  background: var(--primary-color);
  color: var(--secondary-color);
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.footer-main .social-media a:hover {
  background: var(--primary-hover-color);
  color: var(--primary-color);
}
.footer-main .social-media a + a {
  margin: 0 0 0 6px;
}
.footer-main .copyright {
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid var(--primary-color);
  margin: 30px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.footer-top .contact_site a {
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .toggled .toggle-open {
    position: absolute;
    right: 0;
  }
  .follow-link h4,
  .footer-main h5 {
    display: block;
    font-size: 18px;
  }
  .footer-main h5 {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--background-color);
  }
  .footer-main .position-footer-right {
    text-align: center;
  }
  .footer-main .copyright {
    padding: 15px 0;
  }
  .footer-main {
    padding-top: 30px;
  }
  .footer-main .social-media a {
    height: 35px;
    width: 35px;
    line-height: 35px;
  }
}
/*-----
 .footer 
----- */

/* -----
breadcrumb
----- */
.breadcrumb-main {
  background: url(assets/images/breadcrumb.png) no-repeat scroll center center;
  background-size: cover;
  text-align: center;
  padding: 60px 10px;
  font-size: 40px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.5;
  margin-bottom: 50px;
}
.breadcrumb-main .page-title {
  text-transform: capitalize;
  font-size: 38px;
  font-weight: 600;
  margin: 0px 0 20px;
}
.breadcrumb {
  padding: 10px 20px;
  background: rgb(245 245 245 / 24%);
  border: 1px solid var(--primary-hover-color);
  border-radius: 0;
  justify-content: center;
  width: fit-content;
  margin: auto;
}
.breadcrumb > li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
}
.breadcrumb a {
  position: relative;
  text-transform: capitalize;
  color: var(--primary-hover-color);
}
.breadcrumb > li:hover a {
  color: var(--secondary-color);
}
.breadcrumb > li + li {
  padding: 0 0 0 5px;
}
.breadcrumb > li:last-child a {
  color: var(--secondary-color);
}
.breadcrumb li + li a::before {
  content: "\f101";
  font-family: "FontAwesome";
  padding: 0 8px 0 0;
  color: var(--primary-hover-color);
  display: inline-block;
  font-size: 14px;
}
@media (max-width: 991px) {
  .breadcrumb-main {
    padding: 30px 10px;
    margin-bottom: 30px;
  }
  .breadcrumb-main .page-title {
    font-size: 26px;
    margin: 0px 0 15px;
  }
  .breadcrumb > li {
    font-size: 14px;
  }
  .breadcrumb {
    padding: 8px 20px;
  }
}
/* -----
.breadcrumb
----- */

/* -----
About Page
----- */
.about-choose .block_box {
  padding: 30px 15px 0 15px;
  background: var(--background-color);
}
.about-choose-thumb {
  text-align: center;
  margin-bottom: 30px;
}
.about-choose-thumb .cat-title a {
  font-size: 20px;
  font-weight: 400;
}
.about-choose-thumb .counter {
  font-weight: 600;
  font-size: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-choose-image {
  position: relative;
  max-width: 225px;
  margin: auto auto 30px auto;
  padding: 0 15px;
}
.about-choose-inner {
  justify-content: center;
}
@media (max-width: 1500px) {
  .about-choose-thumb .cat-title a {
    font-size: 18px;
  }
  .about-choose-thumb .counter {
    font-size: 24px;
  }
}
@media (max-width: 1399px) {
  .about-choose-image {
    margin: auto auto 10px auto;
  }
  .about-choose-thumb .cat-title a {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .about-choose-image {
    padding: 0;
    max-width: 200px;
  }
}
@media (max-width: 375px) {
  .about-choose .about-choose-layout {
    width: 100%;
  }
}
/* -----
.About Page
----- */

/* -----
Shop Page
----- */
.product-filter .select-cat-sort .form-control {
  height: 50px;
  padding: 5px 35px 5px 15px;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
}
.product-filter .select-cat-sort::after {
  font-family: "fontawesome";
  content: "\f107";
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 15px;
  pointer-events: none;
  color: var(--primary-color);
}
.product-filter .sort-cat {
  display: inline-block;
  position: relative;
}
.product-filter {
  text-align: right;
  margin-bottom: 30px;
}
.pagination li {
  border-radius: 50%;
  margin-left: 10px;
  background: var(--primary-hover-color);
  color: var(--primary-color);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
.pagination li.page-item.active,
.pagination li:hover {
  background: var(--secondary-color);
}
.pagination-main {
  background: var(--background-color);
  padding: 10px 15px;
}
.pagination-main .text-left {
  line-height: 40px;
}
.pagination {
  justify-content: end;
  margin: 0;
}
@media (min-width: 1400px) {
  .shop-page .product-layout {
    width: 20%;
  }
}
@media (max-width: 575px) and (min-width: 481px) {
  .shop-page .product-layout {
    width: 33.33%;
  }
}
@media (max-width: 991px) {
  .pagination-main > div > div {
    text-align: center !important;
  }
  .pagination {
    justify-content: center;
  }
  .pagination li {
    height: 35px;
    width: 35px;
    line-height: 35px;
  }
  .product-filter {
    margin-bottom: 20px;
  }
}
@media (max-width: 319px) {
  .shop-page .product-layout {
    width: 100%;
  }
}
/* -----
.Shop Page
----- */

/* -----
Product Page
----- */
.pro-image {
  margin-bottom: 20px;
  background: var(--background-color);
}
#additional-carousel {
  padding: 0 80px;
}
#additional-carousel .image-additional {
  background: var(--background-color);
  margin: 0 10px;
  padding: 10px;
  border: 1px solid var(--background-color);
}
#additional-carousel .image-additional:hover {
  border-color: var(--secondary-color);
}
#additional-carousel.owl-carousel .owl-nav .owl-next {
  right: 0;
}
#additional-carousel.owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.pro-deatil .product-right .product-title {
  font-size: 20px;
}
.pro-deatil .rating > * {
  display: inline-block;
  margin: 0 20px 0 0;
  color: var(--secondary-light-color);
  text-transform: capitalize;
}
.pro-deatil .rating {
  margin: 15px 0 0 0;
}
.pro-deatil .manufacturer-listpro {
  margin-top: 15px;
  line-height: 30px;
  font-size: 16px;
}
.pro-deatil .manufacturer-listpro .disc {
  min-width: 150px;
  display: inline-block;
}
.pro-deatil .manufacturer-listpro .disc1 {
  color: var(--secondary-light-color);
}
.pro_page_description {
  color: var(--secondary-light-color);
  font-size: 16px;
  line-height: initial;
  margin-bottom: 30px;
}
.pro-deatil .pro_price {
  font-size: 20px;
}
.pro_page_price li.tax {
  color: var(--secondary-light-color);
}
.product-right .form-label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 16px;
  min-width: 100px;
}
.product-right .product-size-option {
  display: inline-block;
}
.product-right .product-size-option span {
  height: 30px;
  width: 30px;
  line-height: 30px;
  display: inline-block;
  background: var(--primary-hover-color);
  color: var(--primary-color);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.product-right .product-size-option span:hover {
  background: var(--secondary-color);
}
.pro-buttons .btn {
  color: var(--primary-hover-color);
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  padding: 0;
  margin: 0 10px 10px 0;
}
.pro-buttons .btn:hover {
  color: var(--secondary-color);
}
.pro-buttons .btn i {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  padding: 8px;
  width: 30px;
  height: 30px;
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.product-btn-quantity {
  display: inline-flex;
}
.product-btn-quantity #input-quantity {
  width: auto;
  border: none;
  border-radius: 0;
  text-align: center;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
.product-btn-quantity > button {
  height: 48px;
  width: 48px;
  border: none;
  background: var(--primary-hover-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.product-btn-quantity > button:hover {
  background: var(--secondary-color);
}
.quantity-addcart > div {
  display: inline-block;
  margin: 0 10px 10px 0;
}
#myTab {
  background: var(--secondary-color);
  justify-content: center;
  border: none;
  margin-bottom: 30px;
}
#myTab .nav-item a {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  margin: 15px 20px;
  padding: 0;
}
.propage-tab #tab-description {
  font-size: 14px;
  line-height: initial;
  color: var(--secondary-light-color);
}
#form-review {
  background: var(--background-color);
  padding: 30px;
}
#form-review .review-title {
  font-size: 20px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
  display: inline-block;
  margin: 10px 0 20px;
}
#form-review .form-label {
  font-size: 16px;
}
#myTab .nav-item a.active::after,
#myTab .nav-item a:hover::after {
  width: 85%;
}
#myTab .nav-item a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: var(--primary-color);
  position: absolute;
  bottom: 5px;
  margin: auto;
  left: 0;
  right: 0;
  transition: 0.5s;
}
#myTab .nav-item {
  position: relative;
}
@media (max-width: 991px) {
  #additional-carousel {
    padding: 0 30px;
  }
  #form-review {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .product-right {
    margin-top: 30px;
  }
}
/* -----
.Product Page
----- */

/* -----
Blog Page
----- */
.single-blog .blog-description {
  margin-top: 30px;
}
.single-blog .blog_title_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single-blog .blog-desc {
  margin: 20px 0 0 0;
}
.single-blog .blog_title_date .blog_title {
  margin: 0;
}
.single-blog .block-title p {
  border: none;
  padding: 15px 20px;
  margin: 30px 0 0;
  font-weight: 600;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 18px;
}
.single-blog .comment-form-outer,
.single-blog .view-comment {
  padding: 20px;
  background: var(--background-color);
}
.single-blog .comment-form-outer {
  padding: 50px;
}
.single-blog .user_icon {
  display: inline-block;
  vertical-align: middle;
}
.single-blog .user_icon i {
  width: 70px;
  height: 70px;
  line-height: 64px;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  background: var(--primary-hover-color);
  margin: 0 15px 0 0;
  color: var(--secondary-color);
  border: 3px solid var(--secondary-color);
}
.single-blog .comment_info {
  display: inline-block;
  vertical-align: middle;
}
.single-blog .comment_info .name {
  margin-bottom: 5px;
}
.single-blog .comment_info .comment-text {
  color: var(--secondary-light-color);
}
.submitted {
  display: none;
  color: #72c02c;
  /*margin-top: -15px;*/
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .single-blog .comment-form-outer {
    padding: 20px;
  }
  .single-blog .blog_title_date {
    display: block;
  }
  .single-blog .blog_title_date .date-time {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .single-blog .comment_info {
    display: block;
    text-align: center;
  }

  .single-blog .user_icon i {
    margin: auto auto 10px auto;
  }

  .single-blog .user_icon {
    display: block;
    text-align: center;
  }
}
/* -----
.Blog Page
----- */

/* -----
Contact Page
----- */
.contact_page .contact-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--primary-hover-color);
  border-bottom: 2px solid var(--secondary-color);
  line-height: 1;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.contact-left .panel {
  background: var(--background-color);
  border: none;
}
.contact-right form {
  padding: 30px;
  background: var(--background-color);
}
.contact-left .panel-body {
  padding: 20px;
}
.contact-left .panel-body > div {
  text-align: center;
}
.contact-left .panel-body > div img {
  display: unset;
}
.contact-left .panel-body > div + div {
  border-top: 1px solid var(--border-color);
  margin-top: 15px;
  padding-top: 15px;
}
.contact-left .panel-body > div > i {
  height: 30px;
  width: 30px;
  background: var(--secondary-color);
  color: var(--primary-hover-color);
  line-height: 30px;
  border-radius: 5px;
  margin: 0 0 10px;
}
.contact-left .store-title {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 7px;
}
.store-address .btn-info {
  margin-top: 10px;
}
/* -----
.Contact Page
----- */

/* -----
Privacy Policy Page
----- */
.html-content {
  padding: 30px;
  background: var(--background-color);
}
.html-content .title {
  font-size: 16px;
  margin: 0 0 15px;
  font-weight: 500;
  padding: 0 0 10px;
  line-height: 20px;
  border-bottom: 1px solid var(--border-color);
}
.html-content .description {
  color: var(--secondary-light-color);
  margin: 0 0 25px;
}
/* -----
.Privacy Policy Page
----- */

/* -----
Account Page
----- */
.well {
  padding: 20px;
  margin-bottom: 20px;
  background-color: var(--background-color);
}
.well .account-title {
  font-size: 22px;
  border-bottom: 2px solid var(--secondary-color);
  line-height: initial;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
/* -----
.Account Page
----- */

/* -----
Cart Page
----- */
.cart-img img {
  max-width: 100px;
  background: var(--primary-color);
  border: none;
}
.cart-page .table > tbody {
  vertical-align: middle;
}
/* -----
.Cart Page
----- */

/* -----
common css
----- */
.main-content {
  min-height: 100vh;
}
.common-title {
  font-size: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 10px;
}
.form-control {
  border-radius: 0;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  line-height: inherit;
}
.form-control:focus {
  box-shadow: none;
}
.dropdown-menu {
  margin: 0;
  border: none;
  border-top: 2px solid var(--secondary-color);
  border-radius: 0;
  padding: 8px 0;
  width: 200px;
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
  right: 0;
  top: 100%;
  background: var(--primary-color);
  color: var(--primary-hover-color);
}
input {
  outline: none;
}
.mt-50 {
  margin: 50px 0 0 0;
}
.mt-20 {
  margin: 20px 0 0 0;
}
@media (min-width: 1551px) {
  .container {
    max-width: 1500px;
  }
}
.container,
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}

.table {
  font-size: 14px;
  background: var(--primary-color);
  border-color: #444;
  color: var(--primary-hover-color);
}
.table > :not(:last-child) > :last-child > * {
  border-color: #444;
}

@media (max-width: 991px) {
  .row > * {
    padding-left: 5px;
    padding-right: 5px;
  }
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .mt-50 {
    margin: 30px 0 0 0;
  }
  .mt-20 {
    margin: 10px 0 0 0;
  }
}
/* -----
.common css
----- */
