.my_menu_item {
  padding: 10px 10px;
  margin-right: 10px;
  margin-left: 10px;
  font-weight: bolder !important;
}

.my_menu_item .q-focus-helper {
  display: none;
}

.my_menu_item .block {
  font-weight: bold;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #606060;
  transition: color 0.2s ease-in;
}
.hover-underline-animation:hover {
  color: var(--my-gold-theme);
}
.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--my-gold-theme);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.zoom_image_on_hover {
  transition: transform 0.2s;
}
.zoom_image_on_hover:hover {
  transform: scale(1.05) rotate(1deg);
}

.slender_container {
  display: flex;
  flex-wrap: wrap;
}

.slender_item {
  width: 1188px !important;
  max-width: 95vw !important;
  margin-left: auto;
  margin-right: auto;
}

.text-gold-theme {
  color: var(--my-gold-theme) !important;
  transition: color 0.2s;
}

.border_golden {
  border: solid 2px var(--my-gold-theme);
  padding: 5px;
}

.input-before-label {
  color: grey;
  font-size: 0.7em;
  width: 60px;
}

.add-to-cart-btn {
  color: var(--my-gold-theme) !important;
  background-color: white !important;
  border: solid 2px var(--my-gold-theme);
  transition: background-color 0.35s ease-in, color 0.35s ease-in;
}
.add-to-cart-btn:hover {
  color: white !important;
  background-color: var(--my-gold-theme) !important;
}

.social-buttons .social-btn {
  color: #4f4f4f;
  background-color: white !important;
  transition: border 0.3s ease-in, color 0.3s ease-in;
}
.social-buttons .social-btn:hover {
  color: var(--my-gold-theme) !important;
  border: solid 1px var(--my-gold-theme);
}

/* This Section Contains Variables */
/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - */
/* This Section Contains styling for default Nav and Footer */
/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - */
/* This Section Contains styling for default Nav only */
.slick-prev:before, .slick-next:before {
  color: var(--secondary-theme-shade-3) !important;
}

#my_base_loader {
  width: 150px;
  height: 150px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5000;
}
#my_base_loader .loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
}
#my_base_loader .loader::after,
#my_base_loader .loader::before {
  content: "";
  width: 48px;
  height: 48px;
  border: 2px solid var(--secondary-theme-shade-3);
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
  animation: rotation 2s ease-in-out infinite;
}
#my_base_loader .loader::after {
  border-color: var(--secondary-theme-shade-2);
  animation-delay: 1s;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#my_navbar.navbar {
  padding-top: 0;
  padding-bottom: 0;
}
#my_navbar .nav li {
  padding-left: 10px;
  padding-right: 10px;
}

#myNavbarContent .my_dropdown_section {
  display: none;
  top: 100%;
  z-index: 1500 !important;
}

.my_dropdown_section li {
  padding: 0 10px;
}
.my_dropdown_section li .group-1 {
  text-align: right;
}
.my_dropdown_section li .group-2 {
  text-align: left;
}
.my_dropdown_section li a {
  background-color: white;
}
.my_dropdown_section li a:active {
  background-color: white;
}

@media (any-pointer: fine), (any-hover: hover) {
  #myNavbarContent .dropdown:hover .my_dropdown_section {
    display: block;
  }

  #myNavbarContent .my_dropdown_section li:hover {
    background-color: var(--secondary-theme-shade-2);
  }
  #myNavbarContent .my_dropdown_section li:hover .group-1, #myNavbarContent .my_dropdown_section li:hover .group-2 {
    text-align: center;
  }
}
#my_navbar.fixed-top {
  animation-duration: 0.8s;
  animation-name: bounceInDown;
}

#my_navbar {
  background-color: white;
  color: var(--tertiary-theme-shade-2);
  animation-duration: 0.8s;
  animation-name: fadeIn;
}
#my_navbar .menu_active > a {
  color: var(--tertiary-theme-shade-2);
  font-weight: bold;
}
#my_navbar a {
  color: black;
}
#my_navbar .menu_icon_label {
  text-align: center;
  font-size: 95%;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: auto;
  margin-bottom: auto;
}
#my_navbar .menu_icon_container {
  text-align: center;
  font-size: 1.3em;
  max-height: 30px;
}
#my_navbar .menu_icon_container#no_cart_items {
  position: relative;
  display: block;
  width: 70%;
  max-height: 30px;
  overflow: hidden;
}
#my_navbar .menu_icon_container#no_cart_items .my_cart_icon {
  position: relative;
  top: 4px;
  z-index: 1;
  font-size: 18px;
  color: var(--secondary-theme-shade-3);
}
#my_navbar .menu_icon_container#no_cart_items .count {
  position: absolute;
  top: 10%;
  right: 20%;
  z-index: 2;
  font-size: 11px;
  border-radius: 50%;
  background: white;
  width: 16px;
  height: 16px;
  line-height: 16px;
  display: block;
  text-align: center;
  color: var(--secondary-theme-shade-3);
  font-weight: bold;
}
#my_navbar #no_cart_items.menu_icon_container {
  font-size: 1.3em;
}

#nav_and_progress .progress {
  height: 0.2rem;
}
#nav_and_progress .progress #page_progress_bar {
  background-color: var(--secondary-theme-shade-3);
  border-radius: 0 20px 20px 0;
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
}

/*- - - -           Inputs widgets settings             - - - - - */
#main_body_content .asteriskField {
  color: red;
}
#main_body_content input, #main_body_content textarea, #main_body_content select {
  border-color: black;
  border-width: 2px;
  transition: 0.1s;
  color: black;
}
#main_body_content input:after, #main_body_content textarea:after, #main_body_content select:after {
  color: red;
}
#main_body_content input:focus, #main_body_content input:hover, #main_body_content textarea:focus, #main_body_content textarea:hover, #main_body_content select:focus, #main_body_content select:hover {
  border-color: var(--secondary-theme-shade-3);
  box-shadow: none;
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - */
/* This Section Contains styling for default Footer only */
#footer_section {
  box-shadow: 0px -8px 6px -6px rgba(181, 180, 180, 0.75);
  -webkit-box-shadow: 0px -8px 6px -6px rgba(181, 180, 180, 0.75);
  -moz-box-shadow: 0px -8px 6px -6px rgba(181, 180, 180, 0.75);
}

.contacts-icons span {
  padding: 5px 5px;
  margin: 2px 7px;
  border-radius: 25% !important;
  font-size: 1em;
  color: var(--primary-theme-shade-3);
  background-color: white;
  transition: 0.3s;
}
.contacts-icons span:hover {
  color: white;
  background-color: var(--primary-theme-shade-3);
  box-shadow: none;
}

#footer_section #footer_top {
  background-image: linear-gradient(to bottom right, rgb(169, 169, 169) 80%, rgb(150, 150, 150));
  color: white;
}
#footer_section #footer_top .quick_links_top span, #footer_section #footer_top .quick_links_bottom span {
  margin-right: 5px;
  margin-left: 5px;
  font-size: 0.9em;
  text-shadow: 0 3px 2px rgba(0, 0, 0, 0.4);
}
#footer_section #footer_top hr {
  background-color: var(--secondary-theme-shade-3);
  margin: 5px 25%;
}

#footer_section #footer_bottom {
  background-color: var(--primary-theme-shade-3);
  color: white;
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - */
/* This Section Contains styling for Body contents */
.my_section_heading {
  font-size: 2em;
  color: black;
  font-weight: bold;
  font-family: "Finger Paint", fantasy;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ami_richardson_font {
  font-family: "Zapfino Extra LT Pro", cursive;
  font-weight: normal;
  font-style: italic;
}

/*- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - */
@media (any-pointer: fine), (any-hover: hover) {
  .hover-underline-animation {
    display: inline-block;
    position: relative;
  }

  .hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-theme-shade-2);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }

  .hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
}
#footer_section .quick_links_top a:hover, #footer_section .quick_links_bottom a:hover {
  font-weight: bold;
  color: white;
}

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