:root {
  --base-color: #E1BF81;
  --primary-color: #43132d;
  --footer-background: #000000;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: 'Playfair Display', serif !important;
  color: #844952;
}

html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  letter-spacing: 0.1px;
  background: #ffffff;
  -webkit-font-smoothing: subpixel-antialiased !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  position: relative;
  font-weight: 400;
  padding-top: 122px;
  color: #555 !important;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

body.no-padding {
  padding-top: 0 !important;
}

header {
  background: #f6f3f9;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  position: fixed;
}

header>.custom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #43132d;
}

.top-bar-container {
  display: flex;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-right: 30px !important;
  padding-left: 30px !important;
  margin-right: auto;
  margin-left: auto;
  height: 40px;
  /* background: rgba(255,255,255,0.3); */
  background: var(--primary-color);
}

.top-bar-container .metal-icon {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  gap: 10px;
  text-align: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 4px 26px 4px 16px;
  color: var(--primary-color);
  text-decoration: none;
}


.top-bar-container .metal-rate {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.top-bar-container .metal-container {
  position: relative;
  width: 200px !important;
  margin-left: -30px;
}

.top-bar-container .metal {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  gap: 10px;
  text-align: center;
  border-radius: 20px;
  padding: 5px;
  color: var(--primary-color);
}

.top-bar-container .savings-scheme {
  background: #ccf0a7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  gap: 10px;
  text-align: center;
  border-radius: 20px;
  padding: 4px 16px;
  color: #487824;
  text-decoration: none;
}

header.fixed {
  position: fixed;
  -webkit-transform: translate3d(0, -140px, 0);
  -ms-transform: translate3d(0, -140px, 0);
  transform: translate3d(0, -140px, 0);
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  position: fixed;
}

header .header-search {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}

header .search-form-new {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #43132d;
  border-radius: 50px;
  padding: 2px 2px 2px 15px;
  position: relative;
  justify-content: space-between;
}

header .search-form-new input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 0;
  font-size: 14px;
  color: #4a1d96;
}

header .search-form-new input::placeholder {
  color: #000000;
  /* changed to black */
}

header .search-form-new button {
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease;
}

header .search-form-new button:hover {
  background: var(--primary-color);
  /* Solid purple circle on hover */
  color: var(--base-color);
}

header .search-form-new .results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  border-radius: 12px;
  margin-top: 8px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(67, 19, 45, 0.1);
  overflow-x: hidden;
  padding: 0;
  list-style: none;
  display: none;
}

header .search-form-new .results li a {
  display: block;
  padding: 12px 15px;
  color: #43132d;
  text-decoration: none;
  transition: all 0.2s ease;
}

header .search-form-new .results li a:hover {
  background: rgba(67, 19, 45, 0.05);
}

header .search-form-new .results .search-thumbnail {
  margin-right: 15px;
}

header .search-form-new .results .thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
}

header .search-form-new .results .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .search-form-new .results li div:not(.thumbnail):not(.search-thumbnail) {
  font-size: 14px;
  font-weight: 500;
  color: #43132d;
  text-transform: capitalize;
}

header .header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

header .header-icons svg {
  color: var(--base-color);
}

header .header-icons a:hover svg {
  color: #fff;
}

header .btn-cart {
  position: relative;
}

header .cart-count {
  top: 6px;
  left: 0;
  width: 24px;
  text-align: center;
  position: absolute;
  font-size: 10px;
  font-weight: bold;
  color: var(--base-color);
}

header .logo {
  max-width: 300px;
  text-align: left;
  padding: 15px;
  text-align: center;
}

header .logo .logo-trust {
  font-size: 10px;
  color: #844952;
  opacity: 0.6;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

header .logo a {
  display: inline-block;
  cursor: pointer;
}

header .logo a:hover {
  text-decoration: none;
}

header .logo img {
  width: 100px;
  height: auto;
}

header .menu-toggle {
  cursor: pointer;
  margin-right: 18px;
  display: none;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 7px;
  border-radius: 12px;
  border: 1px solid var(--base-color) !important;
  color: var(--base-color);
}

@media (max-width: 769px) {
  header>.custom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px !important;
  }

  header .menu-toggle {
    display: block;
  }

  header .logo {
    padding: 8px 0;
  }

  header .logo-trust {
    font-size: 8px !important;
  }

  header .logo img {
    width: 150px;
    height: auto;
  }

  header .header-icons {
    position: static;
    gap: 10px;
  }

  header.fixed {
    transform: none !important;
  }

  .btn-search {
    display: none !important;
  }

  .search-wrap {
    display: block !important;
    position: relative !important;
    top: 0 !important;
    margin: 0 15px 10px 15px;
    z-index: 10;
    background: #fff;
    border-radius: 50px;
    padding: 5px 15px !important;
    box-shadow: none !important;
  }

  .search-wrap .btn-search-close {
    display: none;
  }

  .search-form #search-mobile {
    border: none !important;
    width: 100% !important;
    padding: 5px 0 !important;
    background: transparent;
    outline: none;
  }

  .search-form.active .results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 12px 12px;
    z-index: 100;
  }

  body {
    padding-top: 75px !important;
  }
}

@media (max-width: 769px) {
  .top-bar-container {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  header .nav-wrap {
    position: fixed;
    background: #fff;
    top: 0;
    bottom: 0;
    width: 320px;
    left: -400px;
    z-index: 99999999999999999;
    padding: 0;
    box-shadow: 0 .5rem 2rem rgba(67, 19, 45, 0.15) !important;
    text-transform: uppercase;
    font-size: 13px;
    overflow: hidden;
    /* Changed from auto to hidden for flex scrolling */
    transition: left 300ms ease-out;
  }

  header .nav-wrap .search-wrap {
    display: block !important;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 16px);
    margin: 20px 8px 10px 8px !important;
    padding-top: 0;
    z-index: 10;
  }

  header .nav-wrap .search-form-new {
    border: 1px solid rgba(67, 19, 45, 0.15);
    /* Tinted border */
    border-radius: 50px;
    padding: 2px 5px 2px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: border-color 0.3s ease;
  }

  header .nav-wrap .search-form-new:focus-within {
    border-color: var(--primary-color);
  }

  header .nav-wrap .search-form-new input {
    padding: 10px 0 !important;
    height: auto !important;
    border: none !important;
    background: transparent !important;
    font-size: 14px !important;
    color: #43132d !important;
    text-transform: none !important;
    /* Allow normal text input */
  }

  .mobile-search-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-left: 5px;
  }

  header .nav-wrap.active {
    left: 0px;
    background: #fff;
  }

  /* highlight the currently selected menu item in mobile view */
  header .nav-wrap li>a.active,
  header .nav-wrap li>a.current {
    background: var(--primary-color);
    color: #ffffff;
  }

  /* make the active link more obvious when the menu is collapsed */
  header .nav-wrap li>a.active:hover,
  header .nav-wrap li>a.current:hover {
    background: var(--primary-color);
    color: #ffffff;
  }

  header nav ul {
    margin: 0;
    padding: 0;
  }

  .menu-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .menu-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .border-top-accent {
    border-top: 12px solid #f8f8f8;
    margin-top: 0;
  }

  .logout-item a {
    color: #dc3545 !important;
    font-weight: 700 !important;
  }

  .logout-item a svg {
    color: #dc3545 !important;
  }

  .menu-footer {
    border-top: 1px solid #f0f0f0;
    background: #fff;
    padding-bottom: env(safe-area-inset-bottom);
    /* iOS support */
  }

  .btn-close-menu {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: opacity 0.2s;
  }

  .btn-close-menu:active {
    opacity: 0.5;
  }

  .mobile-wishlist a {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize !important;
  }

  header nav li {
    list-style: none;
    position: relative;
  }

  header nav>li>a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #43132d;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  header nav>li>a:hover {
    color: var(--primary-color);
    text-decoration: none;
    background: rgba(67, 19, 45, 0.02);
  }

  header nav>li>a:active {
    background: rgba(67, 19, 45, 0.05);
  }

  header nav>li.has-child.open>a {
    background: var(--primary-color);
    color: var(--base-color) !important;
    border-bottom-color: transparent;
  }

  header nav>li.has-child::after {
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 22px;
    right: 20px;
    content: '';
    background: url("data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgd2lkdGg9IjI0IiAgaGVpZ2h0PSIyNCIgIHZpZXdCb3g9IjAgMCAyNCAyNCIgIGZpbGw9Im5vbmUiICBzdHJva2U9IiM0MzEzMmQiICBzdHJva2Utd2lkdGg9IjIiICBzdHJva2UtbGluZWNhcD0icm91bmQiICBzdHJva2UtbGluZWpvaW49InJvdW5kIiAgY2xhc3M9ImljonIGljb24tdGFibGVyIGljb25zLXRhYmxlci1vdXRsaW5lIGljb24tdGFibGVyLWNoZXZyb24tZG93biI+PHBhdGggc3Ryb2tlPSJub25lIiBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTYgOWw2IDZsNiAtNiIgLz48L3N2Zz4=");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, filter 0.3s ease;
    pointer-events: none;
  }

  header nav>li.has-child.open::after {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(84%) sepia(21%) colors(548deg) hue-rotate(345deg) brightness(92%) contrast(88%);
    /* Tint gold */
    /* Using filter to change SVG color to gold when active if needed, or just let color be consistent */
    filter: invert(88%) sepia(21%) saturate(548%) hue-rotate(345deg) brightness(92%) contrast(88%);
  }

  header nav>li>ul {
    display: none;
    background: #fbfbfc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 0;
  }

  header nav>li>ul>li>a {
    display: block;
    padding: 12px 20px 12px 35px;
    /* Increased left padding for indentation */
    border-bottom: 1px solid #f0f0f0;
    color: #43132d;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    position: relative;
  }

  header nav>li>ul>li>a:hover {
    color: var(--primary-color);
    text-decoration: none;
    background: rgba(67, 19, 45, 0.02);
  }

  header nav>li>ul>li>a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 4px;
    height: 1px;
    background: #e1bf81;
    /* Golden accent line */
    transform: translateY(-50%);
  }

  header nav>li.has-child::after {
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 20px;
    right: 17px;
    content: '';
    background: url("data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgd2lkdGg9IjI0IiAgaGVpZ2h0PSIyNCIgIHZpZXdCb3g9IjAgMCAyNCAyNCIgIGZpbGw9Im5vbmUiICBzdHJva2U9ImN1cnJlbnRDb2xvciIgIHN0cm9rZS13aWR0aD0iMiIgIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgIHN0cm9rZS1saW5lam9pbj0icm91bmQiICBjbGFzcz0iaWNvbiBpY29uLXRhYmxlciBpY29ucy10YWJsZXItb3V0bGluZSBpY29uLXRhYmxlci1jaGV2cm9uLWRvd24iPjxwYXRoIHN0cm9rZT0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik02IDlsNiA2bDYgLTYiIC8+PC9zdmc+");
    background-size: 10px;
  }
}

@media (min-width: 768px) {
  header .header-nav {
    text-align: center;
    width: 100%;
  }

  header .header-nav li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
  }

  header .header-nav li a {
    display: block;
    color: inherit;
    padding: 5px 20px;
    font-weight: bold;
  }

  header .header-nav li a:hover {
    text-decoration: none;
  }

  header .nav-wrap {
    width: 100%;
    /* background-color: rgba(0,0,0,0.065); */
  }

  header nav {
    display: block;
    border-width: 1px 0;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    padding-top: 4px;
  }

  header nav>li {
    display: inline-block;
    vertical-align: middle;
    list-style: none;
    position: relative;
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
  }

  header nav>li.has-child {
    padding-right: 10px;
  }

  header nav>li.has-child::after {
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 14px;
    right: 17px;
    content: '';
    background: url("data:image/svg+xml;base64,PHN2ZyAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgd2lkdGg9IjI0IiAgaGVpZ2h0PSIyNCIgIHZpZXdCb3g9IjAgMCAyNCAyNCIgIGZpbGw9Im5vbmUiICBzdHJva2U9ImN1cnJlbnRDb2xvciIgIHN0cm9rZS13aWR0aD0iMiIgIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgIHN0cm9rZS1saW5lam9pbj0icm91bmQiICBjbGFzcz0iaWNvbiBpY29uLXRhYmxlciBpY29ucy10YWJsZXItb3V0bGluZSBpY29uLXRhYmxlci1jaGV2cm9uLWRvd24iPjxwYXRoIHN0cm9rZT0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik02IDlsNiA2bDYgLTYiIC8+PC9zdmc+");
    background-size: 10px;
  }

  header nav>li.title>a {
    display: block;
    color: #000000;
    font-weight: bold;
    line-height: 1.9em;
    margin-bottom: 0;
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
  }

  header nav>li>a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 10px 18px 11px 10px;
    color: inherit;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    letter-spacing: 0.3px;
    font-size: 12px;
  }


  header nav>li.no-child>a {
    /*border-bottom-left-radius: 8px;*/
    /*border-bottom-right-radius: 8px;*/
  }

  header nav>li>a:hover,
  header nav>li:hover>a {
    background-color: rgba(67, 19, 45, 0.05);
    color: var(--primary-color);
    text-decoration: none;
  }

  header nav>li:hover>ul {
    display: block;
  }

  header nav>li>ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0%;
    margin: 0;
    padding: 15px 10px;
    background: #ffffff;
    z-index: 100;
    text-align: left;
    box-shadow: 0 10px 30px rgba(67, 19, 45, 0.15);
    border-top: 3px solid var(--primary-color);
    max-height: 70vh;
    overflow-y: auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
  }

  header nav>li>ul::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background: #f2f2f2;
  }

  .social-media-icons {
    display: flex;
    justify-content: center;
  }

  .social-media-icons .icons {
    padding: 0 10px;
  }

  .column-container-2 {
    column-rule: 1px double #ededed;
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
    /* Standard syntax */

    -webkit-column-gap: 20px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 20px;
    /* Firefox */
    column-gap: 20px;
    /* Standard syntax */
  }

  .column-container-3 {
    column-rule: 1px double #ededed;
    left: -150%;
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
    /* Standard syntax */

    -webkit-column-gap: 20px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 20px;
    /* Firefox */
    column-gap: 20px;
    /* Standard syntax */
  }

  .column-container-5 {
    column-rule: 1px double #ededed;
    -webkit-column-count: 1;
    /* Chrome, Safari, Opera */
    -moz-column-count: 1;
    /* Firefox */
    column-count: 1;
    /* Standard syntax */

    -webkit-column-gap: 20px;
    /* Chrome, Safari, Opera */
    -moz-column-gap: 20px;
    /* Firefox */
    column-gap: 20px;
    /* Standard syntax */
  }

  header nav>li>ul>li:hover,
  header nav>li>ul>li:hover a {
    background: var(--primary-color);
    color: var(--base-color) !important;
  }

  header nav>li>ul>li {
    list-style: none;
    display: block;
    min-width: 220px;
    overflow: hidden;
    /* Fix for firefox and IE 10-11  */
    -webkit-column-break-inside: avoid;
    /* Chrome, Safari, Opera */
    page-break-inside: avoid;
    /* Firefox */
    break-inside: avoid;
    /* IE 10+ */
    break-inside: avoid-column;
  }

  header nav>li>ul>li>a {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    -webkit-line-clamp: 1;
  }

  header nav>li>ul>li>a:hover {
    text-decoration: none;
  }
}

/* Multi-column layout for non-mobile screens */
@media (min-width: 768px) {
  .column-container-2 {
    -webkit-column-count: 2;
    /* Chrome, Safari, Opera */
    -moz-column-count: 2;
    /* Firefox */
    column-count: 2;
    /* Standard syntax */
  }

  .column-container-3 {
    -webkit-column-count: 3;
    /* Chrome, Safari, Opera */
    -moz-column-count: 3;
    /* Firefox */
    column-count: 3;
    /* Standard syntax */
  }

  .column-container-5 {
    -webkit-column-count: 5;
    /* Chrome, Safari, Opera */
    -moz-column-count: 5;
    /* Firefox */
    column-count: 5;
    /* Standard syntax */
  }
}

.wa-float {
  position: fixed;
  z-index: 9999999999999999999999999999999999999999999999999;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-image: url(../images/whatsapp.svg);
  background-size: 60px;
  background-repeat: no-repeat;
}

.metals .metal {
  margin-right: -1px;
  font-size: 12px;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: normal;
}

.metals .metal-name {
  min-width: 70px;
  padding: 3px 0px 3px 10px;
  position: relative;
  border-right: 10px solid white;
  color: white;
  /*border-top-left-radius: 8px;*/
  /*border-bottom-left-radius: 8px;*/
}

.metals .metal-name:after {
  content: "";
  display: block;
  /*position: absolute;*/
  /*top: 0;*/
  /*right: -20px;*/
  /*bottom: 0;*/
  /*width: 15px;*/
  /*background-color: inherit;*/
  /*overflow: hidden;*/
  /*transform: skewX(-20deg);*/
  position: absolute;
  top: 0;
  right: -20px;
  bottom: 0;
  border-width: 11px 0 11px 11px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: inherit;
  border-style: solid;
  /*border-top: 11px solid transparent;*/
  /*border-bottom: 11px solid transparent;*/
  /*border-left: 11px solid inherit;*/
}

.metals .metal-rate {
  min-width: 70px;
  border-width: 1px;
  border-style: solid;
  padding: 2px 15px 2px 20px;
  /*border-top-right-radius: 8px;*/
  /*border-bottom-right-radius: 8px;*/
}

.mobile-metals {
  display: none;
  margin: 20px 0;
}

.mobile-metals h5 {
  font-size: 14px;
}

@media screen and (max-width: 960px) {
  .mobile-metals {
    display: block;
  }

  .mobile-metals .metal {
    display: block !important;
  }

  .metals .metal-name:after {
    display: none;
  }
}

.step-progress .step-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  border-radius: 100%;
  margin: 0 auto 10px auto;
  font-size: 30px;
}

@media screen and (max-width: 423px) {
  .step-progress .step-icon {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}

.step-progress.active .step-icon {
  background: #222222;
  color: #ffffff;
}

.step-progress .step-label {
  padding-top: 15px;
  font-size: 16px;
  text-transform: uppercase;
}

.checkout-header {
  background: #f2f2f2;
}

.checkout-header .logo {
  width: 100%;
  text-align: center;
}

.checkout-header .logo a {
  display: block;
  color: inherit;
}

.checkout-header .logo a:hover {
  text-decoration: none;
}

.checkout-header .logo img {
  width: 300px;
  height: auto;
}

.checkout-cart-card {
  border: 1px solid #ced4da;
  border-radius: 12px;
  font-size: 14px;
}

.checkout-cart-card .item {
  padding: 20px;
  border-bottom: 1px solid #ced4da;
}

.checkout-cart-card .item:first-of-type {}

.checkout-cart-card .item:last-of-type {
  border-bottom: 0;
}

.checkout-cart-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.checkout-cart-card .badge {
  position: absolute;
  right: 15px;
  top: 0;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.checkout-cart-card-total {
  padding: 20px;
}

.checkout-cart-card-total .item {
  margin-bottom: 9px;
}

.shipping-to {
  border: 1px solid #ced4da;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.discount_card {
  border: 1px solid #ced4da;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #ffffff;
}

.discount_card li {
  border-bottom: 1px solid #ced4da;
  list-style: none;
  padding: 20px;
}

.discount_card li:last-of-type {
  border-bottom: 0;
}

.shipping-methods {
  border: 1px solid #ced4da;
  border-radius: 12px;
}

.shipping-method {
  padding: 20px;
  border-bottom: 1px solid #ced4da;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

.shipping-method:last-of-type {
  border-bottom: 0;
}

.shipping-method .shipping-label {
  margin-left: 20px;
}

.shipping-method .shipping-amount {
  margin-left: auto;
}

/* .row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.row .col, .row [class*="col-"] {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.row.extra-gutters {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.row.extra-gutters .col, .row.extra-gutters [class*="col-"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
} */


/* Loding page start*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040 !important;
}

#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1041 !important;
  background: #FFF;
}

.loader-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-img img {
  width: 50%;
  height: auto;
}

#loader-wrapper .loader-section {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: 1040 !important;
}

#loader-wrapper .loader-section.section-slide-top {
  top: 0;
}

.mystyle {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

/* Loding page end*/

.card {
  border-radius: 12px;
}

.card .category img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.strip-right:before {
  display: block;
  content: '';
  position: absolute;
  right: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath d='M50,50V0H0C27.6,0,50,22.4,50,50z'/%3E%3C/svg%3E");
  background-size: 8px;
}

.strip-right:after {
  display: block;
  content: '';
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath d='M0,50h50V0C50,27.6,27.6,50,0,50z'/%3E%3C/svg%3E");
  background-size: 8px;
}

.strip-left:before {
  display: block;
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath d='M50,0H0v50C0,22.4,22.4,0,50,0z'/%3E%3C/svg%3E%0A");
  background-size: 8px;
}

.strip-left:after {
  display: block;
  content: '';
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 50 50' style='enable-background:new 0 0 50 50;' xml:space='preserve'%3E%3Cpath d='M0,0v50h50C22.4,50,0,27.6,0,0z'/%3E%3C/svg%3E");
  background-size: 8px;
}

.strip-left {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  background: #000000;
  z-index: 10000;
}

.strip-right {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  background: #000000;
  z-index: 10000;
}

.strip-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: #000000;
  z-index: 10000;
}

.strip-bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: #000000;
  z-index: 10000;
}

.modal-content {
  border-radius: 12px;
}

.modal-content,
.btn,
.form-control {
  border-radius: 12px;
}

.modal-content .btn {
  padding: 12px 20px;
}

.btn-primary,
.badge-danger {
  background-color: #333 !important;
  border-color: #fff !important;
}

.btn-dark {
  background-color: #844952;
  border-color: #844952;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  background-color: #5e3239;
  border-color: #5e3239;
}

.btn-base {
  background-color: #43132d !important;
  border-color: #43132d !important;
  color: #fff !important;
  padding: 12px 40px !important;
  border-radius: 8px !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-base:hover {
  background-color: #E1BF81 !important;
  border-color: #E1BF81 !important;
  color: #43132d !important;
}

.btn-primary:hover,
.badge-danger:hover,
.btn-primary:focus,
.badge-danger:focus {
  background-color: #111 !important;
  border-color: #fff !important;
}


.btn-facebook:hover {
  background-color: #1d4b98 !important;
  border-color: #1d4b98 !important;
  color: #fff !important;
}

.form-control {
  border-radius: 8px !important;
  border: 1px solid #eee !important;
  padding: 10px 15px !important;
  font-size: 14px !important;
  background-color: #fcfcfc !important;
  transition: all 0.3s ease !important;
}

.form-control:focus {
  border-color: #E1BF81 !important;
  background-color: #fff !important;
  box-shadow: 0 0 10px rgba(225, 191, 129, 0.1) !important;
}

.form-group label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #43132d;
  margin-bottom: 8px;
}

.btn-pinterest:hover {
  background-color: #e30029 !important;
  border-color: #e30029 !important;
  color: #fff !important;
}

.btn-twitter:hover {
  background-color: #1c9cea !important;
  border-color: #1c9cea !important;
  color: #fff !important;
}

.btn-in:hover {
  background-color: #0077b0 !important;
  border-color: #0077b0 !important;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background-color: #0dbb42 !important;
  border-color: #0dbb42 !important;
  color: #fff !important;
}

.btn-outline-primary {
  border-color: var(--base-color);
  color: var(--base-color);
  outline: 0;
  box-shadow: none !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--base-color);
  border-color: var(--base-color);
  box-shadow: none !important;
  outline: 0;
  color: #fff;
}

.btn-outline-success {
  border-color: #28a745;
  color: #28a745;
  outline: 0;
  box-shadow: none !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: #1c8a35 !important;
  border-color: #1c8a35 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background-color: var(--base-color);
  border-color: var(--base-color);
}

.btn-outline-dark {
  border-color: rgba(0, 0, 0, 0.4);
}

.container {
  width: 90vw;
}

.form-control {
  padding: 12px 20px;
  height: auto;
  border-radius: 12px;
}

.btn {
  padding: 12px 50px;
  outline: 0;
  box-shadow: none;
  border-radius: 12px;
}

.badge {
  border-radius: 0;
}

.badge-dark {
  background-color: #000000;
  border-color: #000000;
}

.d-flex .flex-left {
  margin-right: auto;
}

.d-flex .flex-right {
  margin-left: auto;
}

#loading {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999999999999999999999999999999999999999999999;
  background: rgba(0, 0, 0, 0.2);
}

#loading .loading {
  display: inline-block;
  background: #ffffff;
  border-radius: 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  line-height: 180%;
}

.blog-post img {
  width: 100%;
  height: auto;
}

.search-container {
  position: relative;
}

.search-container .btn-search {
  position: relative;
  cursor: pointer;
}

.search-container .btn-search-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 8px 8px;
}

.search-wrap {
  display: none;
  position: absolute;
  right: 110%;
  padding-top: 10px;
  width: 300px;
  top: -30px;
  z-index: 998;
}

.ico {
  position: relative;
  z-index: 999 !important;
}



.search-form .results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 0 0 12px 12px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 10px 0;
}

.search-form.active .results {
  display: block;
}

.search-form #search {
  border-radius: 12px;
  border: 0;
  background: #ffffff;
  width: 100%;
  padding: 0px 20px;
}

.search-form.active #search {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.search-form .results li {
  list-style: none;
}

.search-form .results li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s ease;
  font-size: 14px;
  line-height: 1.4;
}

.search-form .results li a:hover {
  background: rgba(67, 19, 45, 0.05);
}

.search-form .results li:last-child {
  border-bottom: none;
}

.search-form .results li img {
  border-radius: 12px;
}

.search-form .results li:last-of-type {
  border-bottom: 0;
}

.search-form .results li a {
  display: block;
  padding: 10px;
  color: initial;
}

.slider .slide {
  border-radius: 0px;
}

.slider img {
  border-radius: 0px;
}

.slider .owl-stage-outer {
  border-radius: 0px;
}

.table {
  margin: 35px 0;
}

.table thead th {
  border-top: 0px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table tbody tr {
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}

.table tbody td {
  border-bottom: 1px solid #dee2e6;
}

.table td {
  vertical-align: middle !important;
}

.table tfoot th {
  border-top: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.td-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.td-link:hover {
  text-decoration: none;
  color: inherit;
}

.cp {
  cursor: pointer;
}

.custom-container {
  /*padding: 0 30px;*/
  padding-right: 30px !important;
  padding-left: 30px !important;
  margin-right: auto;
  margin-left: auto;
}

.slider-wrap.custom-container {
  padding-right: 0px !important;
  padding-left: 0px !important;
  max-width: 100% !important;
}

.slider-wrap img {
  width: 100% !important;
}

@media screen and (min-width: 1024px) {
  .custom-container {
    /*padding: 0 30px;*/
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
}

@media screen and (max-width: 1023px) {
  .custom-container {
    /*padding: 0 15px;*/
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

.img-fluid-100 {
  width: 100%;
  height: auto;
}



.heading {
  padding: 50px 0 30px 0;
  text-align: center;
  text-transform: uppercase;
}

.heading.center {
  padding: 30px 0;
  text-align: center;
}

.heading h1 {
  font-size: 41px;
  font-weight: 400;
  margin: 0 0 0 0px;
}



@media screen and (max-width: 768px) {
  body {
    padding-top: 152px !important;
  }

  .mobile-header .search-form .results {
    top: 120%;
    border-radius: 12px;
    border: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    left: 10px !important;
    right: 10px !important;
  }

  .heading {
    padding: 20px 0 20px 0;
  }

  .heading h1 {
    font-size: 26px;
  }

  .sub-heading {
    font-size: 20px;
  }

  .filters {
    display: none !important;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #ffffff;
    padding: 80px 25px 80px 25px;
    overflow-y: scroll;
  }

  .filters.active,
  .filters.active .filter-header {
    display: block !important;
  }

  .filter-header {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 25px 10px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .filter-group {
    box-shadow: none !important;
  }

  .filter-btn,
  .filter-clear-btn {
    width: 100%;
    padding: 20px 30px;
  }

  .filter-close {
    display: block !important;
  }

  .filter-open {
    display: block !important;
  }

  .qty-input {
    margin-bottom: 20px;
  }

  .btn-sm-block {
    display: block;
    width: 100%;
    text-align: center;
  }

  .social-media-icons {
    display: flex;
    gap: 10px;
  }
}

.filter-close {
  display: none;
  position: fixed;
  top: 11px;
  right: 20px;
  z-index: 1051;
  padding: 10px;
  cursor: pointer;
}

.filter-header {
  display: none;
}

.filter-open {
  display: none;
  border: 0;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 35px;
  cursor: pointer;
}

.filter-open:focus {
  outline: 0;
}

.filter-btn,
.filter-clear-btn {
  display: block;
  width: 100%;
  border: 0;
  padding: 15px 30px;
  border-radius: 12px;
  text-align: center;
}

.filter-btn:focus,
.filter-clear-btn:focus {
  outline: 0;
}

.filter-clear-btn {
  display: block;
  background: #ffffff;
  color: #222;
  margin-top: 20px;
}

.filter-clear-btn:hover {
  text-decoration: none;
  color: #000000;
}

.filters {
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.filter-group {
  padding: 15px;
  border-bottom: 1px solid #ededed;
}

.filter-title {
  font-family: 'Playfair Display', serif !important;
  color: #844952;
}

.filter-option {
  display: block;
  margin: 2px 0 4px 0;
  width: 100%;
  display: flex;
  align-items: top;
}

.filter-option input {
  margin-right: 10px;
}

.filters-footer {
  padding: 15px;
  position: sticky;
  bottom: 0px;
  z-index: 999;
  background: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.filter-btn,
.filter-open {
  background-color: var(--primary-color);
  color: #fff;
}

.heading h4 {
  font-size: 21px;
  font-weight: 400;
  margin: 0 0 40px 0px;
}

.module {
  padding: 30px 0;
  background-attachment: fixed;
  /*background-size: cover;*/
}

.module.slider-module {
  padding: 0 !important;
}

.module.first-slider {
  padding-top: 0 !important;
}

.module_heading {
  text-align: center;
  display: block;
  font-size: 26px;
  font-weight: 400;
  margin: 0px 0 40px 0px;
}

.module_description {
  text-align: center;
  display: block;
  margin: -20px auto 40px auto;
  max-width: 60%;
}

.plyr {
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .module_description {
    max-width: 80%;
  }
}

.category>a {
  text-align: center;
  color: inherit;
  display: block;
}

.category .category_title {
  display: block;
  font-weight: bold;
  padding: 20px;
}

.category>a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .category .category_title {
    font-size: 10px;
    padding: 8px;
  }

  .price-on-request {
    font-size: 10px;
  }

  .product .old_price {
    margin-right: 4px !important;
    font-size: 12px !important;
  }

  .product .new_price {
    font-size: 12px !important;
  }

  .price {
    font-size: 12px !important;
  }
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.product {}

.product:hover img {
  /*transform: scale(1.05);*/
}

.product img {
  border-radius: 0;
}

.product>a {
  color: inherit;
  display: block;
}

.product>a:hover {
  text-decoration: none;
}

.product-title {
  font-weight: bold;

}

.product .product-image {
  padding: 0;
  border: 1px solid #E4E4E4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.product-card {
  background: #ffffff;
  width: 100%;
  padding: 10px 10px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product-card:hover {
  box-shadow: 0 .2rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.product-card .thumbnail {
  padding-bottom: 140%;
  overflow: hidden;
  position: relative;
}

.product-card .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Changed to cover for better rectangular fill */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.price-container .new_price {
  font-size: 28px;
  font-weight: 700;
  color: #43132d;
}

.price-container .old_price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}

.button-container-vertical .gap-2 {
  gap: 10px;
}

.quantity-container .decrement,
.quantity-container .increment {
  width: 30px;
  text-align: center;
  user-select: none;
}

.product-card .price-on-request {
  text-align: center;
}

.price-on-request a {
  color: var(--gray);
  opacity: 0.7;
}

.product .price {
  color: #844952;
  font-weight: 600;
}

.product .old_price {
  color: #844952;
  opacity: 0.6;
  text-decoration: line-through;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.product .new_price {
  display: inline-block;
  vertical-align: middle;
  color: #844952;
  font-weight: 600;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-container>.wishlist-add,
.button-container>.wishlist-remove,
.button-container>.btn-outline-success {
  margin-top: 15px;
  flex-basis: 100%;
}

input[type=number]:focus {
  border: 1px solid var(--base-color) !important;
  box-shadow: none !important;
}

.product .btn-action {
  text-align: center;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.single-product-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 12px;
}

.single-product-card img {
  border-radius: 12px;
}

.sidebar-cart-card td,
.sidebar-cart-card tr {
  display: block;
}

.review-card {
  margin-bottom: 20px;
}

.review-card .card-title {
  display: flex;
  align-items: center;
  margin: 0 0 8px 0;
  gap: 10px;
}

.review-card .card-rate {
  font-size: 12px;
  background: #844952;
  color: #fff;
  padding: 0px 5px;
  border-radius: 3px;
}

.review-card .card-bottom {
  font-size: 11px;
  padding-top: 8px;
}

.card-bottom span {
  color: #844952;
}

.no-review {
  text-align: center;
  font-size: 15px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-header h4 {
  margin-bottom: 0;
}

.write-review {
  background: var(--primary-color);
  color: #fff;
  margin-left: auto;
}

.write-review:hover {
  background: #5e3239;
  color: #fff;
}

.rating {
  list-style-type: none;
  margin-bottom: 25px;
  padding: 0;
}

.rating .active svg {
  color: #f9ca00;
  fill: #f9ca00;
}

.rating li {
  float: left;
}

/* Hide table headers (but not display: none;, for accessibility) */

.sidebar-cart-card thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.sidebar-cart-card tr {
  border: 1px solid #eee;
}

.sidebar-cart-card tbody tr {
  border-bottom: 0px;
  border-radius: 12px;
}

.sidebar-cart-card tbody tr td:last-of-type {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-color: #dc3545 !important;
}

.sidebar-cart-card tbody tr+tr {
  margin-top: 1.5em;
}

.sidebar-cart-card tfoot tr {
  border-bottom: 0px;
}

.sidebar-cart-card tfoot tr:first-of-type {
  margin-top: 1.5em;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px
}

.sidebar-cart-card tfoot tr:last-of-type {
  border-bottom: 1px solid #eee;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px
}

/*.cart-card tr + tr { margin-top: 1.5em; }*/

.sidebar-cart-card td {
  /* make like a "row" */
  border: none;
  border-bottom: 1px solid #eee;
  position: relative;
  text-align: center !important;
  position: relative;
}

.sidebar-cart-card td:before {
  content: attr(data-label);
  display: inline-block;
  line-height: 1.5;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
}

.sidebar-cart-card tbody td:last-of-type {
  padding: 0 !important;
}

.sidebar-cart-card tbody td:last-of-type i {
  display: block;
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #ffffff !important;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 15px;
}

.sidebar-cart-card tbody td:last-of-type:before {
  display: none !important;
}

.cart-card {
  background: #ffffff;
  border-radius: 12px;
}

@media only screen and (max-width: 995px) {

  .product-card {
    padding: 4px 4px;
  }

  .cart-card td,
  .cart-card tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */

  .cart-card thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .cart-card tr {
    border: 1px solid #eee;
  }

  .cart-card tbody tr {
    border-bottom: 0px;
    border-radius: 12px;
  }

  .cart-card tbody tr td:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-color: #dc3545 !important;
  }

  .cart-card tbody tr+tr {
    margin-top: 1.5em;
  }

  .cart-card tfoot tr {
    border-bottom: 0px;
  }

  .cart-card tfoot tr:first-of-type {
    margin-top: 1.5em;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
  }

  .cart-card tfoot tr:last-of-type {
    border-bottom: 1px solid #eee;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
  }

  /*.cart-card tr + tr { margin-top: 1.5em; }*/

  .cart-card td {
    /* make like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    text-align: center !important;
    position: relative;
  }

  .cart-card td:before {
    content: attr(data-label);
    display: inline-block;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
  }

  .cart-card tbody td:last-of-type {
    padding: 0 !important;
  }

  .cart-card tbody td:last-of-type i {
    display: block;
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 15px;
  }

  .cart-card tbody td:last-of-type:before {
    display: none !important;
  }


  /* RESPONSIVE TABLE */
  .responsive-table td,
  .responsive-table tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */

  .responsive-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .responsive-table tr {
    border: 1px solid #eee;
  }

  .responsive-table tbody tr {
    border-bottom: 0px;
    border-radius: 12px;
  }

  .responsive-table tbody tr td:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .responsive-table tbody tr+tr {
    margin-top: 1.5em;
  }

  .responsive-table tfoot tr {
    border-bottom: 0px;
  }

  .responsive-table tfoot tr:first-of-type {
    margin-top: 1.5em;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
  }

  .responsive-table tfoot tr:last-of-type {
    border-bottom: 1px solid #eee;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
  }

  /*.cart-card tr + tr { margin-top: 1.5em; }*/

  .responsive-table td {
    /* make like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    text-align: center !important;
    position: relative;
  }

  .responsive-table td:before {
    content: attr(data-label);
    display: inline-block;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
  }

  .responsive-table tbody td:last-of-type i {
    display: block;
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: #ffffff !important;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 15px;
  }

  .responsive-table tbody td:last-of-type:before {
    display: none !important;
  }
}


@media screen and (max-width: 1200px) {
  header .header-left {
    /*position: relative;*/
  }

  header .header-center {
    margin-left: 30px;
    margin-right: 30px;
  }
}

@media screen and (max-width: 1500px) {
  .product .product-meta {}
}

@media screen and (max-width: 1000px) {
  .single-product h1 {
    font-size: 22px;
  }

  .resp-sharing-button {
    padding: 8px 15px !important;
    margin-right: 10px !important;
  }

}

.product-meta .product-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  /* margin-bottom: 10px; */
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .modal-dialog {
    max-width: 85vw;
    margin: 1.75rem auto;
  }

  .single-product {
    margin: 30px 0 0 0 !important;
  }

  .single-product .price {}

  .banners.no-title {
    padding: 10px 0 !important;
  }

  .banners,
  .module {
    padding: 30px 10px !important;
  }

  .product .product-meta {
    min-height: auto;
    padding: 7px 0 !important;
  }

  .product .product-image {
    margin-bottom: 0px;
  }

  .addToCart input {
    text-align: center;
  }
}

.xzoom-source img,
.xzoom-preview img,
.xzoom-lens img {
  display: block;
  max-width: none;
  max-height: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.single-product .main-thumbnail>img {
  width: 100% !important;
  height: auto !important;
}

.single-product .single-thumbnail>img {
  width: 100% !important;
  height: auto !important;
}

.single-product .thumbnail-list {
  overflow-y: auto;
}

.single-product .thumbnails {
  overflow-y: auto;
}

.single-product .thumbnail-list::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  background: #ffffff;
}

.single-product .thumbnail-list::-webkit-scrollbar-button {
  width: 8px;
  height: 8px;
}

.single-product .thumbnail-list::-webkit-scrollbar-track {
  background: #ffffff;
  border: none;
  box-shadow: 0px 0px 3px #ffffff inset;
}

.single-product .thumbnail-list::-webkit-scrollbar-thumb {
  background: #ffffff;
  border: none;
  border-radius: 15px;
}

.single-product .thumbnail-list::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

.single-product .thumb-image {
  display: block;
  cursor: pointer;
  margin-bottom: 15px;
}

.single-product {
  margin: 30px 0;
}

.single-product h1 {
  margin-bottom: 20px;
}

.single-product .thumb-image.active {
  cursor: default;
}

.single-product .description {
  line-height: 28px;
}

.single-product .btn-edit-product {
  color: #844952;
  text-decoration: underline;
  font-size: 12px;
}

.single-product .price {
  color: #844952;
}

.single-product .old_price {
  color: #844952;
  opacity: 0.6;
  text-decoration: line-through;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  font-weight: 400;
}

.single-product .new_price {
  display: inline-block;
  vertical-align: middle;
  color: #844952;
  font-weight: 600;
  font-size: 20px;
  display: block;
}

.inclusive-of-taxes {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.7;
}


.sku {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 1;
}

/* .single-product .price {
  display: block;
  margin: 20px 0;
}

.single-product .old_price {
  color: red;
  text-decoration: line-through;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.single-product .new_price {
  display: block;
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
} */

.single-product .linked-product {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
  margin-bottom: 15px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-product .linked-product:hover {
  transform: translateY(-5px);
}

.single-product .linked-product picture {
  transition: box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.single-product .linked-product:hover picture {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.single-product .linked-product img {
  width: 100px;
  height: auto;
}

.variant-check {
  display: inline-block;
  vertical-align: middle;
  margin-right: 13px;
  margin-bottom: 13px;
}

.variant-check input[type=radio] {
  display: none;
}

.variant-check label {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 8px 20px;
  text-transform: uppercase;
  cursor: pointer;
}

.variant-check label:hover {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.variant-check input[type=radio]:checked+label {
  border-color: #000000;
  background: #000000;
  color: #ffffff;
}

.cart-delete {
  cursor: pointer;
  font-size: 16px !important;
}

.thumbnail {
  position: relative;
}

.thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-content {
  min-height: 400px;
  font-size: 110%;
  line-height: 180%;
}

.page-content img {
  width: 100%;
  height: auto;
}

.cart-content,
.order-content {
  min-height: 500px;
}

.category-content {
  min-height: 400px;
}

footer {
  padding: 60px 0 0 0;
  background: var(--footer-background);
  color: rgba(255, 255, 255, 0.85);
}

footer .footer-top {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 40px;
}

footer .title {
  color: var(--base-color);
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Playfair Display', serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer .logo img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

footer .pages-menu {
  padding-left: 15px;
  padding-right: 15px;
}

footer .pages-menu ul {
  padding: 0;
  margin: 0;
}

footer .pages-menu li {
  list-style: none;
  margin-bottom: 10px;
}

footer .pages-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

footer .pages-menu li a:hover {
  color: var(--base-color);
  text-decoration: none;
}

footer .social-media-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

footer .social-media-icons .icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer .social-media-icons .icons a svg {
  color: rgba(255, 255, 255, 0.7);
  width: 18px;
  height: 18px;
}

footer .social-media-icons .icons a:hover {
  background: var(--base-color);
  border-color: var(--base-color);
}

footer .social-media-icons .icons a:hover svg {
  color: var(--primary-color);
}

footer .footer-contact {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

footer .footer-contact a:hover {
  color: var(--base-color);
}

footer .footer-contact svg {
  color: var(--base-color) !important;
}

footer .pmt-image {
  max-width: 300px;
  height: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* Product Page Accordion */
.accordion {
  border-top: none;
}

.accordion .card {
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  margin-bottom: 10px;
  box-shadow: none !important;
  background: transparent;
  overflow: hidden;
}

.accordion>.card:not(:last-of-type) {
  border-bottom: 1px solid #ddd !important;
  border-bottom-right-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.accordion .card-header {
  background: transparent;
  border: none;
  padding: 0 !important;
}

.accordion .btn-link {
  text-decoration: none !important;
  color: #43132d !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.accordion .btn-link:focus {
  text-decoration: none !important;
  box-shadow: none !important;
}

.accordion .btn-link:after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.accordion .btn-link:not(.collapsed) {
  font-weight: 600;
}

.accordion .btn-link:not(.collapsed):after {
  content: '-';
}

.accordion .card-body {
  border-top: 1px solid #eee;
  padding: 15px 20px 20px 20px !important;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

@media screen and (max-width: 768px) {
  footer {
    text-align: center;
    padding: 40px 0 0 0;
  }

  footer .pages-menu {
    margin-bottom: 20px;
  }

  footer .row {
    text-align: center;
  }
}

.copyrights {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 20px 18px;
  background: rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

.copyrights a,
.copyrights a:hover {
  color: rgba(255, 255, 255, 0.45);
}

/* scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 8px;
  background: #eee;
}

::-webkit-scrollbar-button {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #222;
  border: none;
  box-shadow: none;
}

::-webkit-scrollbar-thumb {
  background: #BDBDBD;
  border: none;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #CCCCCC;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #dbdbdb;
  position: fixed;
  z-index: 99999999999999999999999999999999999999999999999999;
  top: 0;
  right: 100%;
  width: 100%;
  height: 2px;
}

/*-- sm --*/
@media (min-width: 576px) {
  .card-columns {
    column-count: 2;
  }
}

/*-- md --*/
@media (min-width: 768px) {
  .card-columns {
    column-count: 2;
  }
}

/*-- lg --*/
@media (min-width: 992px) {
  .card-columns {
    column-count: 4;
  }
}

/*-- xl --*/
@media (min-width: 1200px) {
  .card-columns {
    column-count: 4;
  }
}

.owl-nav {
  display: none;
}

.slide-img img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.slider-wrap.no-full-width {
  /*margin-top: 60px;*/
}

.slider {
  /*margin-bottom: 60px;*/
}

.slider .owl-dots {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.slider .slide-bg {
  background-position: center;
  height: 60vh;
  text-align: center;
  background-size: cover;
}

.slide-bg-banner {
  background-position: center;
  height: 60vh;
  text-align: center;
  background-size: cover;
}

.slider-wrap.no-full-width .slide-bg-banner,
.banners img {
  border-radius: 0px;
}

.banners {
  padding: 80px 0;
}

.owl-dots {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  display: inline;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
  background: rgba(0, 0, 0, 0.5);
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
}

.resp-sharing-button {
  transition: 25ms ease-out;
  padding: 8px 20px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  border-radius: 12px;
  background: #f4f4f4;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
  margin-right: 15px;
  margin-bottom: 15px;
}

.resp-sharing-button:hover {
  background: #000;
  border-color: #000;
}

.resp-sharing-button:hover .resp-sharing-button__icon {
  stroke: #fff;
}

.resp-sharing-button:hover .resp-sharing-button__icon--solid,
.resp-sharing-button:hover .resp-sharing-button__icon--solidcircle {
  fill: #fff;
}

.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
  stroke: #000;
  fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #000;
  stroke: none
}

.resp-sharing-minimal {
  text-align: center;
}

.resp-sharing-button--twitter {
  background-color: #55acee
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9
}

.resp-sharing-button--pinterest {
  background-color: #bd081c
}

.resp-sharing-button--pinterest:hover {
  background-color: #8c0615
}

.resp-sharing-button--facebook {
  background-color: #3b5998
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373
}

.resp-sharing-button--tumblr {
  background-color: #35465C
}

.resp-sharing-button--tumblr:hover {
  background-color: #222d3c
}

.resp-sharing-button--reddit {
  background-color: #5f99cf
}

.resp-sharing-button--reddit:hover {
  background-color: #3a80c1
}

.resp-sharing-button--google {
  background-color: #dd4b39
}

.resp-sharing-button--google:hover {
  background-color: #c23321
}

.resp-sharing-button--linkedin {
  background-color: #0077b5
}

.resp-sharing-button--linkedin:hover {
  background-color: #046293
}

.resp-sharing-button--email {
  background-color: #777
}

.resp-sharing-button--email:hover {
  background-color: #5e5e5e
}

.resp-sharing-button--xing {
  background-color: #1a7576
}

.resp-sharing-button--xing:hover {
  background-color: #114c4c
}

.resp-sharing-button--whatsapp {
  background-color: #25D366
}

.resp-sharing-button--whatsapp:hover {
  background-color: #1da851
}

.resp-sharing-button--hackernews {
  background-color: #FF6600
}

.resp-sharing-button--hackernews:hover,
.resp-sharing-button--hackernews:focus {
  background-color: #FB6200
}

.resp-sharing-button--vk {
  background-color: #507299
}

.resp-sharing-button--vk:hover {
  background-color: #43648c
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

.resp-sharing-button--pinterest {
  background-color: #bd081c;
  border-color: #bd081c;
}

.resp-sharing-button--pinterest:hover,
.resp-sharing-button--pinterest:active {
  background-color: #8c0615;
  border-color: #8c0615;
}

.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}

.resp-sharing-button--whatsapp {
  background-color: #25D366;
  border-color: #25D366;
}

.resp-sharing-button--whatsapp:hover,
.resp-sharing-button--whatsapp:active {
  background-color: #1DA851;
  border-color: #1DA851;
}


/*notyjs*/
.noty_layout_mixin,
#noty_layout__top,
#noty_layout__topLeft,
#noty_layout__topCenter,
#noty_layout__topRight,
#noty_layout__bottom,
#noty_layout__bottomLeft,
#noty_layout__bottomCenter,
#noty_layout__bottomRight,
#noty_layout__center,
#noty_layout__centerLeft,
#noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%;
}

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

.noty_progressbar {
  display: none;
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10);
}

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
}

.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
  -ms-transform: translate(50%);
  transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
  animation: noty_anim_height 75ms ease-out;
}

.noty_close_with_click {
  cursor: pointer;
}

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0;
}

.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in .3s ease-out;
  animation: noty_modal_in .3s ease-out;
}

.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out .3s ease-out;
  animation: noty_modal_out .3s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: .3;
  }
}

@keyframes noty_modal_in {
  100% {
    opacity: .3;
  }
}

@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}

@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}

@-webkit-keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

@keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

.noty_theme__relax.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__relax.noty_bar .noty_body {
  padding: 10px;
}

.noty_theme__relax.noty_bar .noty_buttons {
  border-top: 1px solid #e7e7e7;
  padding: 5px 10px;
}

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444;
}

.noty_theme__relax.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200;
}

.noty_theme__relax.noty_type__warning .noty_buttons {
  border-color: #dfaa30;
}

.noty_theme__relax.noty_type__error {
  background-color: #FF8181;
  border: 1px solid #e25353;
  color: #FFF;
}

.noty_theme__relax.noty_type__error .noty_buttons {
  border-color: darkred;
}

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF;
}

.noty_theme__relax.noty_type__info .noty_buttons,
.noty_theme__relax.noty_type__information .noty_buttons {
  border-color: #0B90C4;
}

.noty_theme__relax.noty_type__success {
  background-color: #BCF5BC;
  border: 1px solid #7cdd77;
  color: darkgreen;
}

.noty_theme__relax.noty_type__success .noty_buttons {
  border-color: #50C24E;
}

.noty_theme__metroui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0;
}

.noty_theme__metroui.noty_bar .noty_progressbar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.noty_theme__metroui.noty_bar .noty_body {
  padding: 1.25em;
  font-size: 14px;
}

.noty_theme__metroui.noty_bar .noty_buttons {
  padding: 0 10px .5em 10px;
}

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
  background-color: #fff;
  color: #1d1d1d;
}

.noty_theme__metroui.noty_type__warning {
  background-color: #FA6800;
  color: #fff;
}

.noty_theme__metroui.noty_type__error {
  background-color: #CE352C;
  color: #FFF;
}

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
  background-color: #1BA1E2;
  color: #FFF;
}

.noty_theme__metroui.noty_type__success {
  background-color: #60A917;
  color: #fff;
}

.noty_theme__mint.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__mint.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
}

.noty_theme__mint.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
  background-color: #fff;
  border-bottom: 1px solid #D1D1D1;
  color: #2F2F2F;
}

.noty_theme__mint.noty_type__warning {
  background-color: #FFAE42;
  border-bottom: 1px solid #E89F3C;
  color: #fff;
}

.noty_theme__mint.noty_type__error {
  background-color: #DE636F;
  border-bottom: 1px solid #CA5A65;
  color: #fff;
}

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: #7F7EFF;
  border-bottom: 1px solid #7473E8;
  color: #fff;
}

.noty_theme__mint.noty_type__success {
  background-color: #AFC765;
  border-bottom: 1px solid #A0B55C;
  color: #fff;
}

.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__sunset.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.noty_theme__sunset.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff;
}

.noty_theme__sunset.noty_type__alert .noty_progressbar,
.noty_theme__sunset.noty_type__notification .noty_progressbar {
  background-color: #fff;
}

.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff;
}

.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff;
}

.noty_theme__sunset.noty_type__error .noty_progressbar {
  opacity: .4;
}

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff;
}

.noty_theme__sunset.noty_type__info .noty_progressbar,
.noty_theme__sunset.noty_type__information .noty_progressbar {
  opacity: .6;
}

.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff;
}

.noty_theme__bootstrap-v3.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: 4px;
}

.noty_theme__bootstrap-v3.noty_bar .noty_body {
  padding: 15px;
}

.noty_theme__bootstrap-v3.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__bootstrap-v3.noty_bar .noty_close_button {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  background: transparent;
}

.noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
  background-color: #fff;
  color: inherit;
}

.noty_theme__bootstrap-v3.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc;
}

.noty_theme__bootstrap-v3.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1;
}

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1;
}

.noty_theme__bootstrap-v3.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6;
}

.noty_theme__bootstrap-v4.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.noty_theme__bootstrap-v4.noty_bar .noty_body {
  padding: .75rem 1.25rem;
}

.noty_theme__bootstrap-v4.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .5;
  background: transparent;
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .75;
}

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
  background-color: #fff;
  color: inherit;
}

.noty_theme__bootstrap-v4.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc;
}

.noty_theme__bootstrap-v4.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1;
}

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1;
}

.noty_theme__bootstrap-v4.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6;
}

.noty_theme__semanticui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  font-size: 1em;
  border-radius: .28571429rem;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_bar .noty_body {
  padding: 1em 1.5em;
  line-height: 1.4285em;
}

.noty_theme__semanticui.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
  background-color: #f8f8f9;
  color: rgba(0, 0, 0, 0.87);
}

.noty_theme__semanticui.noty_type__warning {
  background-color: #fffaf3;
  color: #573a08;
  box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_type__error {
  background-color: #fff6f6;
  color: #9f3a38;
  box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
  background-color: #f8ffff;
  color: #276f86;
  box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_type__success {
  background-color: #fcfff5;
  color: #2c662d;
  box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent;
}

.noty_theme__nest.noty_bar {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0;
}

.noty_theme__nest.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.noty_theme__nest.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_layout .noty_theme__nest.noty_bar {
  z-index: 5;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
  position: absolute;
  top: 0;
  margin-top: 4px;
  margin-right: -4px;
  margin-left: 4px;
  z-index: 4;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
  position: absolute;
  top: 0;
  margin-top: 8px;
  margin-right: -8px;
  margin-left: 8px;
  z-index: 3;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
  position: absolute;
  top: 0;
  margin-top: 12px;
  margin-right: -12px;
  margin-left: 12px;
  z-index: 2;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
  position: absolute;
  top: 0;
  margin-top: 16px;
  margin-right: -16px;
  margin-left: 16px;
  z-index: 1;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
  position: absolute;
  top: 0;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: 20px;
  z-index: -1;
  width: 100%;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
  margin-top: 4px;
  margin-left: -4px;
  margin-right: 4px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
  margin-top: 8px;
  margin-left: -8px;
  margin-right: 8px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: 12px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
  margin-top: 16px;
  margin-left: -16px;
  margin-right: 16px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: 20px;
}

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
  background-color: #073B4C;
  color: #fff;
}

.noty_theme__nest.noty_type__alert .noty_progressbar,
.noty_theme__nest.noty_type__notification .noty_progressbar {
  background-color: #fff;
}

.noty_theme__nest.noty_type__warning {
  background-color: #FFD166;
  color: #fff;
}

.noty_theme__nest.noty_type__error {
  background-color: #EF476F;
  color: #fff;
}

.noty_theme__nest.noty_type__error .noty_progressbar {
  opacity: .4;
}

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
  background-color: #118AB2;
  color: #fff;
}

.noty_theme__nest.noty_type__info .noty_progressbar,
.noty_theme__nest.noty_type__information .noty_progressbar {
  opacity: .6;
}

.noty_theme__nest.noty_type__success {
  background-color: #06D6A0;
  color: #fff;
}

.noty_theme__light.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__light.noty_bar .noty_body {
  padding: 10px;
}

.noty_theme__light.noty_bar .noty_buttons {
  border-top: 1px solid #e7e7e7;
  padding: 5px 10px;
}

.noty_theme__light.noty_type__alert,
.noty_theme__light.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444;
}

.noty_theme__light.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200;
}

.noty_theme__light.noty_type__warning .noty_buttons {
  border-color: #dfaa30;
}

.noty_theme__light.noty_type__error {
  background-color: #ED7000;
  border: 1px solid #e25353;
  color: #FFF;
}

.noty_theme__light.noty_type__error .noty_buttons {
  border-color: darkred;
}

.noty_theme__light.noty_type__info,
.noty_theme__light.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF;
}

.noty_theme__light.noty_type__info .noty_buttons,
.noty_theme__light.noty_type__information .noty_buttons {
  border-color: #0B90C4;
}

.noty_theme__light.noty_type__success {
  background-color: #57C880;
  border: 1px solid #7cdd77;
  color: darkgreen;
}

.noty_theme__light.noty_type__success .noty_buttons {
  border-color: #50C24E;
}

.owl-dot:focus {
  outline: 0;
}

/*# sourceMappingURL=noty.css.map*/
/*notyjs*/


.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: #131314;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #e3e3e3;
  cursor: pointer;
  font-family: 'Roboto', arial, sans-serif;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
  border-color: #8e918f;
  text-decoration: none !important;
}

.gsi-material-button:hover {
  color: #fff;
  text-decoration: none !important;
}

.gsi-material-button .gsi-material-button-icon {
  height: 20px;
  margin-right: 12px;
  min-width: 20px;
  width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
  -webkit-align-items: center;
  align-items: center;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  font-family: 'Roboto', arial, sans-serif;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
  -webkit-transition: opacity .218s;
  transition: opacity .218s;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.gsi-material-button:disabled {
  cursor: default;
  background-color: #13131461;
  border-color: #8e918f1f;
}

.gsi-material-button:disabled .gsi-material-button-state {
  background-color: #e3e3e31f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
  opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
  opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
  background-color: white;
  opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
  background-color: white;
  opacity: 8%;
}



.or {
  display: flex;
  justify-content: center;
  align-items: center;
  color: grey;
}

.or:after,
.or:before {
  content: "";
  display: block;
  background: grey;
  width: 30%;
  height: 1px;
  margin: 0 10px;
}


#sidebar {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 999999999999999999999999999999999999999999999;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 16px 0px;
}

.sidebar-content {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  /* display: flex;
  flex-direction: column; */
  background-color: #fff;
  height: 100dvh;
  width: 100vw;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.sidebar-body {
  height: calc(100dvh - 55px - 73px);
  padding: 20px;
  overflow-y: auto;
}

.sidebar-header {
  border-bottom: 1px solid #ced4da;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  height: 55px;
}

.sidebar-header h5 {
  margin: 0;
}

.sidebar-footer {
  border-top: 1px solid #ced4da;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 15px 20px;
  gap: 10px;
  height: 73px;
}

.sidebar-footer .btn {
  padding: 8px 14px;
}

@media screen and (min-width: 960px) {
  #sidebar .sidebar-content {
    max-width: 420px;
  }
}

.no-scroll {
  overflow: hidden;
}

.timeline-bg {
  background-image: url(../images/regal.webp);
}

.timeline .single-box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}

.timeline .date-area {
  display: flex;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 45%, #000 45%, #000 45%, rgba(0, 0, 0, 0) 50%);
  order: 2;
  text-align: center;
  color: #fff;
  font-size: 28px;
  flex-basis: 100px;
}

.timeline .date-area>span {
  font-size: 20px;
  line-height: 20px;
  margin: auto;
  background: #fff;
  border: 3px solid #D0BA83;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  /* box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important; */
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.timeline .content {
  text-align: center;
  padding: 20px;
  border-radius: 25px;
  color: #858585;
  order: 3;
  width: 80%;
  padding-left: 10px;
  background: #fff;
  margin-top: 50px;
}

.timeline .content {
  margin-bottom: 3%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.timeline .content h2 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.timeline .content h3 {
  margin: 5px;
  font-size: 14px;
  color: #000;
}

@media (min-width: 640px) {

  .timeline .content,
  .custom {
    width: 40%;
  }

  .timeline .box-right .content {
    order: 1;
    padding-right: 10px;
    border-radius: 25px;
  }

  .timeline .box-right .custom {
    order: 3;
  }

}

.product-video video {
  max-width: 100%;
  height: auto;
}

.product-video-card {
  position: relative;
  width: 100%;
  /* padding: 10px 10px; */
  margin-bottom: 20px;
  border-radius: 12px;
}

.product-video-card:hover {
  box-shadow: 0 .2rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 560px;
  border-radius: 12px;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-video-card .price-on-request {
  text-align: center;
}

.product-video-card .product-meta {
  padding-left: 10px;
}

.product-card-content {
  background-color: #ffffff;
  width: auto;
  padding: 10px;
  margin: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 12px;
}

.menu-bar {
  border-top: 1px solid;
  border-color: #43132d21;
}