:root {
  /* Base variables */
  /* COLORS */
  --primary-color: #14a0b3;
  --primary-light-color: #d0ecf0;
  --secondary-color: #118999;
  --secondary-light-color: #64d0de;
  --grey-color: #2d2d2d;
  --grey-75-color: #2d2d2d75;
  --grey-50-color: #2d2d2d50;
  --grey-20-color: #2d2d2d20;
  --grey-10-color: #2d2d2d10;
  --grey-05-color: #2d2d2d05;
  --white-color: #fff;
  --error-color: #af0016;
  --error-50-color: #af001650;
  --error-20-color: #af001620;
  --warning-color: #e26b01;
  --warning-25-color: #fce9de;
  --success-color: #27845b;
  --info-color: #2972c4;
  --disabled-color: #969696;
  --selection-color: #24a0ed;
  --box-shadow: #354a51;
  --secondary-btn-color: #f39f95;
  --primary-btn-hover-color: #0f666c;
  --alert-btn-hover-color: #b24d3d;
  --pwa-popup-color: aliceblue;

  /* FONTS */
  --primary-font: "OpenSans-Regular";
  --primary-extra-bold-font: "OpenSans-ExtraBold";
  --primary-extra-ibold-font: "OpenSans-ExtraBoldItalic";
  --primary-bold-font: "OpenSans-Bold";
  --primary-ibold-font: "OpenSans-BoldItalic";
  --primary-semi-bold-font: "OpenSans-SemiBold";
  --primary-semi-ibold-font: "OpenSans-SemiBoldItalic";
  --primary-light-font: "OpenSans-Light";
  --primary-ilight-font: "OpenSans-LightItalic";
  --primary-italic-font: "OpenSans-Italic";
  --secondary-font: "Jost-Regular";
  --secondary-bold-font: "Jost-Bold";
  --secondary-medium-font: "Jost-Medium";
  --secondary-demi-font: "Jost-SemiBold";
  --secondary-book-font: "Jost-Regular";
  --secondary-light-font: "Jost-Light";

  /* FONT SIZE */
  --heading-1-size: 2.5rem;
  --heading-2-size: 2rem;
  --heading-3-size: 1.75rem;
  --heading-4-size: 1.5rem;
  --heading-5-size: 1.15rem;
  --heading-6-size: 1rem;
  --navbar-height: 60px;
}

/* Font Declarations */
@font-face {
  font-family: "Jost-Bold";
  src: url("../fonts/Jost-Bold.76eb83c74dcd.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-SemiBold";
  src: url("../fonts/Jost-SemiBold.50dcc642bc10.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-Medium";
  src: url("../fonts/Jost-Medium.090175d88161.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-Regular";
  src: url("../fonts/Jost-Regular.3ccf189874e8.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-Thin";
  src: url("../fonts/Jost-Light.2635fc592cbe.ttf");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Bold";
  src: url("../fonts/OpenSans-Bold.375abdf20532.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-BoldItalic";
  src: url("../fonts/OpenSans-BoldItalic.df78d0247dc7.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-ExtraBold";
  src: url("../fonts/OpenSans-ExtraBold.6a005e14c639.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-ExtraBoldItalic";
  src: url("../fonts/OpenSans-ExtraBoldItalic.c2136463aae9.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Italic";
  src: url("../fonts/OpenSans-Italic.113af1232720.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Light";
  src: url("../fonts/OpenSans-Light.08d77e269b28.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-LightItalic";
  src: url("../fonts/OpenSans-LightItalic.d5ca2487c95d.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Regular";
  src: url("../fonts/OpenSans-Regular.0ebf4f577148.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-SemiBold";
  src: url("../fonts/OpenSans-SemiBold.5dd2fabfdcdc.woff");
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-SemiBoldItalic";
  src: url("../fonts/OpenSans-SemiBoldItalic.ac0cb0d0943d.woff");
  font-display: swap;
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.c85c07c4068e.eot?srf3rx");
  src: url("../fonts/icomoon/icomoon.c85c07c4068e.eot?srf3rx#iefix")
      format("embedded-opentype"),
    url("../fonts/icomoon/icomoon.d3c9849c29dd.ttf?srf3rx") format("truetype"),
    url("../fonts/icomoon/icomoon.5655d46ee8eb.woff?srf3rx") format("woff"),
    url("../fonts/icomoon/icomoon.a3813ac6127b.svg?srf3rx#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* End Font Declarations */
*,
*:before,
*:after {
  box-sizing: border-box;
}
/* * {
  border: 1px solid #f00 !important;
} */

/* =======================================================
*
* 	Template Style 
*
* ======================================================= */
html,
body {
  width: 100%;
  height: 100%;
  box-sizing: inherit;
  background-color: var(--white-color);
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-color);
  letter-spacing: 0.1px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hidden-block {
  display: none;
}
#page {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

a,
button {
  cursor: pointer;
}

a {
  color: #616161;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover,
a:active,
a:focus {
  color: #616161;
  outline: none;
  text-decoration: none;
}

p {
  font-family: var(--primary-font), georgia, serif;
  font-size: 15.2px;
  line-height: 1.6rem;
  word-break: break-word;
  margin: 0 !important;
  /* white-space: pre-line; */
}

p b {
  font-family: var(--primary-bold-font) !important;
}

p a {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  color: var(--grey-color);
  font-family: var(--primary-font);
  margin: 0;
}

/* Heading tag */
h1 {
  font-family: var(--secondary-bold-font), georgia, serif;
  font-size: var(--heading-1-size);
}
h2 {
  font-family: var(--secondary-demi-font), georgia, serif;
  font-size: var(--heading-2-size);
}
h3 {
  font-family: var(--secondary-demi-font), georgia, serif;
  font-size: var(--heading-3-size);
}

::-webkit-selection {
  color: #fff;
  background: var(--selection-color);
}

::-moz-selection {
  color: #fff;
  background: var(--selection-color);
}

::selection {
  color: #fff;
  background: var(--selection-color);
}

.intro {
  font-size: 40px;
  font-weight: 400;
  font-family: var(--secondary-bold-font);
  margin-bottom: 0;
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  .intro {
    margin-top: 0;
  }
}
.intro1 {
  font-size: 34px;
  font-weight: 400;
  font-family: var(--secondary-medium-font);
  margin-bottom: 0;
}
.primary-btn,
.btn-gift-card {
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 10px 15px;
  margin: 5px;
  min-width: 300px;
  font-size: 1rem;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: white;
}
.secondary-btn {
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  outline: none;
  padding: 10px 15px;
  margin: 5px;
  min-width: 300px;
  font-size: 1rem;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: var(--grey-color);
}
.btn-gift-card:hover {
  background-color: var(--secondary-color);
}
.btn-egift {
  background-color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  outline: none;
  padding: 3px 15px;
  margin: 20px 5px;
  min-width: 300px;
  font-size: 20px;
  font-family: var(--secondary-bold-font);
  text-transform: uppercase;
  color: var(--primary-color);
  cursor: pointer;
  font-weight: 500;
}
.btn-egift:hover {
  background-color: var(--secondary-color);
}
.owl-controls {
  display: none;
}
ul.digital-cards {
  margin-left: 7%;
}

ul.digital-cards li {
  border: 2px solid rgba(204, 204, 204, 0.46);
  border-radius: 4px;
  padding: 7px;
  float: left;
  margin: 15px;
  list-style: none;
  width: 15%;
}
ul.digital-cards li h4 {
  font-size: 14px;
  text-align: center;
  width: 100%;
  margin-top: 15px;
  min-height: 40px;
}

/* Footer */
.footer-subscribe-form span {
  display: inline-block;
  vertical-align: top;
}
.footer-subscribe-form span:nth-child(2) {
  margin-left: -5px;
}
.subscription {
  padding: 10px;
  height: 50px;
  width: 285px;
  outline: none;
  font-family: var(--paragraph-font);
  border-radius: 8px 0px 0px 8px;
  border: 3px solid var(--primary-color);
  font-size: 18px;
}
#email-subscription-form input[type="email"] {
  width: 285px !important;
}
.colorlib-social-icons {
  margin: 0;
  padding: 0;
  text-align: center;
}
.colorlib-social-icons li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.colorlib-social-icons li a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  color: #616161;
  padding-left: 10px;
  padding-right: 10px;
}
.colorlib-social-icons li a i {
  font-size: 30px;
  color: #fff;
}
#colorlib-footer {
  padding: 3em 0 0 0;
  background-color: var(--grey-color);
  color: #fff;
}
#colorlib-footer .colorlib-footer-links {
  padding: 0;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

#colorlib-footer .colorlib-footer-links li {
  padding: 0;
  margin: 0 0 0px 0;
  list-style: none;
  display: block;
  text-transform: none;
  font-size: 13px;
}
#colorlib-footer .colorlib-footer-links li a {
  color: #fff;
  text-decoration: none;
}

#colorlib-footer .colorlib-social-icons li a {
  padding-left: 10px;
  padding-right: 10px;
}
#colorlib-footer .colorlib-social-icons li a:first-child {
  padding-left: 0;
}
#colorlib-footer h4 {
  font-size: 18px;
  text-transform: none;
  color: #fff;
  letter-spacing: 1px;
  font-family: var(--secondary-bold-font);
  text-align: center;
}

#colorlib-footer a {
  color: #fff;
}

.footer_menu_title {
  font-size: 18px;
  text-transform: none;
  color: #fff;
  letter-spacing: 1px;
  font-family: var(--secondary-bold-font);
  text-align: center;
}

#colorlib-footer .footer_menu_title a {
  color: #fff !important;
}

#colorlib-footer .copy {
  padding: 2em 0;
}
#colorlib-footer .copy p {
  margin-bottom: 0;
}
/* New Footer Styles 290422 */
#colorlib-footer {
  padding: 2em 1em;
  display: grid;
  grid-template-columns: 450px repeat(auto-fit, minmax(180px, 1fr));
  row-gap: 1em;
  justify-items: center;
}
#colorlib-footer .footer-col {
  text-align: center;
  padding: 0px 1em;
}
#colorlib-footer .footer-subscribe-form {
  display: grid;
  grid-gap: 1rem;
  max-width: 350px;
}
#colorlib-footer .footer-subscribe-form .footer-newsletter-form .col-10 {
  padding: 0;
}
#colorlib-footer .footer-subscribe-form .subscription {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  #colorlib-footer {
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 2em 0px;
    z-index: 99;
  }
  #colorlib-footer .footer-col {
    margin-bottom: 30px;
  }
  #colorlib-footer .footer-subscribe-form {
    grid-row: 5 / 6;
  }
}
/* New Footer Styles 290422 */
@media (max-width: 375px) {
  .footer-subscribe-form input {
    display: inline-block;
    width: 100%;
  }
}
.footer-col p {
  white-space: pre-line !important;
}

/* Footer */

/* Form */
.form-control {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  border: none !important;
  font-size: 1rem !important;
  font-weight: 300;
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}
.form-control:focus,
.form-control:active {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.8) !important;
}

input[type="text"] {
  height: 44px !important;
}

.form-group {
  margin-bottom: 20px;
  display: block;
}
.form-group .btn-modify {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 15px;
}
.form-container {
  margin: 0 7.5rem;
}
label {
  margin-bottom: 0;
  font-size: 0.75rem;
}
input[type="text"],
input[type="email"],
input[type="number"],
.form-control {
  width: 100% !important;
  border: 2px solid var(--secondary-light-color) !important;
  min-height: 2.75rem;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
.form-control:focus {
  border: 2px solid blue !important;
}
input[type="text"].form-field-error,
input[type="email"].form-field-error,
input[type="number"].form-field-error,
.form-field-error {
  border: 2px solid rgba(209, 31, 46, 0.565) !important;
  background-color: rgba(209, 31, 46, 0.208) !important;
}
.form-input {
  display: block;
  width: 245px;
  border: 2px solid var(--secondary-light-color);
  background-color: transparent;
  padding: 8px;
}
.form-input:checked {
  display: block;
  width: 245px;
  border: 2px solid rgba(209, 31, 46, 0.565);
  background-color: rgba(209, 31, 46, 0.208);
  padding: 8px;
}
ul.errorlist {
  list-style: none;
  padding-left: 20px;
  margin: 0.25rem auto;
  text-align: left;
  color: var(--error-color);
  font-size: 0.75rem;
}
ul.errorlist li {
  position: relative;
}
ul.errorlist li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -18px;
  background-image: url("../img/error_icon.9cfc9b755fa6.png");
  background-size: 0.75rem 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
}
.signin-form {
  padding: 0px;
  margin: 0px;
}
.btn-login {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 5px 15px;
  margin: 20px 5px;

  font-size: 20px;
  font-family: var(--secondary-bold-font);
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.btn-login:hover {
  background-color: var(--secondary-color);
}
.forgot-password {
  text-decoration: underline;
  color: var(--primary-color);
  cursor: pointer;
  display: inline;
  font-family: var(--primary-font);
  font-size: 0.8rem;
}
.forgot-password:hover {
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: underline;
}
.form-states {
  display: block;
  width: 250px;
  border: 2px solid var(--secondary-light-color);
  background-color: transparent;
  padding: 8px;
}
.signup-remember {
  font-size: 13px;
}
.bold-text {
  font-weight: bold;
}
input,
textarea {
  font-size: 1rem;
}
/* Form */

/* Misc */
.js .animate-box {
  opacity: 0;
}

/* inner page */
.spacer {
  height: 90px;
}

.gift-card-big img {
  /* box-shadow: 0px 4px 8px 3px #bbb; */
  filter: drop-shadow(2px 4px 8px #2d2d2d50);
  border-radius: 14px;
}

.clearfix {
  clear: both;
  display: block;
}

strong {
  font-weight: 700;
}
.block {
  display: block;
}

.big-banner-description h1 {
  font-family: var(--secondary-demi-font);
  font-weight: bold;
}
.big-banner-description h2 {
  font-family: var(--secondary-demi-font);
  font-size: 2rem;
  color: var(--primary-color);
}
.big-banner-description h4 {
  font-family: var(--primary-semi-bold-font);
  font-size: 15px;
  color: var(--grey-color);
}
.banner {
  margin-top: 47px;
}
.banner img {
  width: 100%;
  height: 100%;
}
/* Misc */

/**/
.tab {
  overflow: hidden;
  background-color: white;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 10px;
  transition: 0.3s;
  font-size: 16px;
  margin: 5px 10px 5px 0px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 1rem;
  width: 105px;
  font-family: var(--primary-bold-font), georgia, serif;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #fff;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--primary-color);
  color: #fff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  border: 0px solid #ccc;
  border-top: none;
}
.display-text-big {
  font-size: 15px;
  color: var(--grey-color);
}
.display-text-big h3 {
  font-family: var(--secondary-bold-font);
  font-size: 22px;
}
.para-space {
  margin-top: 25px;
}

.btn-your-gift {
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  outline: none;
  padding: 6px 30px;
  margin: 5px;
  max-width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--secondary-bold-font);
  color: var(--primary-color);
  text-align: center;
  width: 280px;
}
.btn-your-gift:hover {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}
.center-align {
  display: inline-flexbox;
  text-align: center;
  margin: 0% 21%;
}

.btn-checkout {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 7px 30px;
  margin: 20px 5px;
  min-width: 280px;
  font-size: 16px;
  font-family: var(--secondary-bold-font);
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  font-weight: 500;
  font-family: var(--secondary-medium-font);
}
.btn-checkout:hover {
  background-color: var(--secondary-color);
}
.copyright-info {
  font-size: 12px;
}

/*blog*/
.blog-spacer {
  height: 40px;
}
.cover-image img {
  background-size: 50%;
}
.blog-container,
.login-container {
  background: white;
  border-radius: 3px;
  margin: -3px 9% 0;
  box-shadow: 0 0px 12px 0px #354a51;
  padding: 3em;
  position: relative;
}
.blog-container h1,
.login-container h1 {
  font-family: var(--secondary-bold-font);
  padding-top: 10px;
}
.blog-container .blog-tile {
  padding: 25px 0px;
  cursor: pointer;
  border-top: 1px solid #ccc;
}
.blog-container .blog-tile:first-child {
  border-top: 0;
  padding-top: 0;
}
.show-date {
  position: absolute;
  color: var(--primary-color);
  font-family: var(--secondary-bold-font);
  font-size: 1rem;
  margin-top: -20px;
  right: -90px;
}
.text-height {
  /* height:340px; */
  display: flex;
  color: var(--primary-color);
  font-family: var(--secondary-bold-font);
  font-size: 1rem;
}
.relative {
  position: relative;
}
.show-more-nav {
  font-family: var(--secondary-medium-font);
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  margin-top: 15px;
}
.show-more-nav a {
  color: var(--primary-color);
  text-decoration: underline;
}
/*About us*/
.about-container h3 {
  font-family: var(--secondary-medium-font);
  font-size: 1.6rem;
}
.about-container p {
  font-size: 15px;
  color: var(--grey-color);
  line-height: 1.8em;
}
.brand-text {
  font-family: var(--secondary-bold-font) !important;
  font-weight: bold !important;
}
.brand-tile {
  display: grid;
  grid-template-rows: 150px 1fr;
  gap: 1rem;
  /* width: 300px;   */
  height: 325px;
  margin: 1rem;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: rgb(45 45 45 / 31%) 0px 0px 5px 0px;
  line-height: 1.6em;
}

.contact-info {
  text-align: center;
  margin: auto;
}
.contact-info ul {
  padding: 0px;
  margin: 0px;
}
.contact-info ul li {
  display: inline-block;
  list-style: none;
  width: 280px;
  text-align: center;
}
.contact-profile-img {
  padding: 20px;
}
.contact-info-text {
  text-align: center;
}

/*Sign in*/
.signin-intro {
  font-size: 40px;
  font-weight: 400;
  font-family: var(--secondary-bold-font);
  margin-bottom: 0;
}

/* \\Form */

.margin {
  margin: 1% 0%;
}
.margin div:nth-child(3) {
  margin-right: 10px;
}

.carousel-wrap {
  width: 1000px;
  margin: auto;
  position: relative;
}
.owl-carousel .owl-nav {
  overflow: hidden;
  height: 0px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #2caae1;
}

.owl-carousel .item {
  text-align: center;
}
.owl-carousel .nav-btn {
  height: 47px;
  position: absolute;
  width: 26px;
  cursor: pointer;
  top: 100px !important;
}

.owl-carousel .owl-prev.disabled,
.owl-carousel .owl-next.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.owl-carousel .prev-slide {
  left: -33px;
}
.owl-carousel .next-slide {
  right: -33px;
}
.owl-carousel .prev-slide:hover {
  background-position: 0px -53px;
}
.owl-carousel .next-slide:hover {
  background-position: -24px -53px;
}

span.img-text {
  text-decoration: none;
  outline: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  font-size: 23px;
  display: block;
  text-transform: capitalize;
}
span.img-text:hover {
  color: #2caae1;
}

.link {
  color: var(--primary-color);
  text-decoration: underline;
}

.btn {
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 10px 15px;
  margin: 5px;
  min-width: 80%;
  font-size: 16px;
  font-family: var(--secondary-bold-font);
  text-transform: uppercase;
  color: white;
  margin-bottom: 40px;
}
.secondary {
  background-color: #f39f95;
}
.secondary:hover {
  background-color: var(--warning-color);
}
.primary {
  background-color: var(--primary-color);
}
.primary:hover {
  background-color: var(--secondary-color);
}

.dialog-box p {
  color: rgb(45, 45, 45);
  font-size: 1rem;
  padding: 0px 1.5em;
  margin: 0px;
  line-height: 30px;
}
.bottom-margin-25 {
  margin-bottom: 25px;
}

.form-check-input {
  border: 2px solid var(--non-filled-textbox-color);
  border-radius: 2px;
  height: 20px;
  width: 20px;
}

/*my dashbaord*/
.account-information h2 {
  font-family: var(--secondary-bold-font);
}
.account-information ul {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
}
.account-information ul li {
  display: block;
}
.account-information ul li span.title {
  font-family: var(--secondary-demi-font);
  display: inline-block;
  width: 160px;
  font-size: 16px;
}
/* .dashboard-container{
  margin:0% 14%;
} */
.edit-btn {
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 0.1em 1em;
  min-width: 100px;
  font-size: 0.9em;
  font-family: var(--secondary-bold-font);
  text-transform: uppercase;
  color: white;
  cursor: pointer;
}
.edit-btn:hover {
  background-color: var(--secondary-color);
}

.change-pw-btn {
  background: var(--warning-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 0.1em 1em;
  min-width: 100px;
  font-size: 0.9em;
  font-family: var(--secondary-bold-font);
  text-transform: uppercase;
  color: white;
  cursor: pointer;
}
.change-pw-btn:hover {
  background-color: var(--warning-color);
}

.link {
  font-size: 1rem;
  color: var(--primary-color);
  text-decoration: underline;
}

.owl-item .item img {
  border-radius: 4px;
}
.owl-item .item img:visited {
  border: 1px solid blue;
}
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}
.wrapper-cost-label {
  font-family: var(--secondary-medium-font);
  font-size: 1rem;
  color: var(--primary-color);
}

/* Giftcard widget */
.card-container img {
  box-shadow: 0px 3px 8px 0px #999;
  border-radius: 6px;
  margin-bottom: 15px;
}
.card-container h4 {
  font-size: 14px;
  font-weight: bold;
}
/* Create three equal columns that floats next to each other */
.card-column {
  display: none;
}

/* Clear floats after rows */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.card-btn {
  width: 150px;
  background: none;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  padding: 0.2em 0.5em;
  font-size: 1.1em;
  color: var(--primary-color);
  font-family: var(--secondary-medium-font);
  user-select: none;
  margin: 6px;
}

.card-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.card-btn:focus {
  outline: none;
}
.card-btn-active {
  background-color: var(--primary-color);
  color: #fff;
}

.display-date {
  color: var(--warning-color);
}

/* Custom Checkbox */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked ~ .checkbox-custom {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.form-check-label-custom {
  display: flex;
  align-items: center;
}
.checkbox-custom {
  margin-right: 0.5em;
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary-light-color);
  border-radius: 2px;
}

.event-day {
  border: 2px solid var(--secondary-light-color);
  width: 100%;
  font-size: 16px;
  color: #666;
  text-indent: 10px;
}
.event-date {
  border: 2px solid var(--warning-25-color);
  width: 90%;
  padding-left: 5px;
}
.close-btn {
  color: var(--warning-color);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* Dropdown Button */

.dropbtn {
  width: 150px;
  height: 30px;
  border-radius: 50px;
  border: 1px solid var(--primary-color);
  cursor: pointer;
  color: var(--primary-color);
  font-size: 13px;
  background-color: #fff;
}

.dropbtn:after {
  content: "▼";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 0;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
/* The container <div> - needed to position the dropdown content */

.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
  z-index: 999999;
  border: 1px solid var(--primary-color);
}
/* Links inside the dropdown */

.dropdown-content a {
  color: var(--primary-color);
  padding: 6px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid var(--primary-color);
}
/* Change color of dropdown links on hover */

.dropdown-content a:hover {
  background-color: rgba(20, 160, 179, 0.314);
}
/* Show the dropdown menu on hover */

.dropdown:hover .dropdown-content {
  display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */

#destination {
  min-height: 200px;
  min-width: 200px;
  position: absolute;
  right: -110px;
  margin-top: -210px;
}

div#destination img {
  width: 148px;
  height: 195px;
  filter: drop-shadow(rgba(50, 50, 0, 0.5) -1px 5px 3px);
}

.card-items {
  height: 180px;
  position: relative;
  margin-top: 80px;
  margin-left: -20px;
  z-index: -1;
}

.flip-card {
  position: absolute;
  transform: rotate(-25deg);
  margin-top: 8px;
}
.card-title-heading {
  color: #ccc;
  font-size: 18px;
  position: absolute;
  display: inline-block;
  left: 18px;
  top: 80px;
}
.textarea {
  font-family: var(--primary-font);
  border: 2px solid var(--primary-color);
  width: 100%;
  min-height: 100px;
  padding: 10px;
  resize: none;
}
.music-items {
  box-shadow: rgb(128 128 128 / 50%) 2px 2px 5px 0px inset;
}
.display-items {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(30px, 30px));
  gap: 0.5em;
  padding: 1em;
  font-size: 0.8rem;
}
.display-items ul {
  margin: 0px;
  padding: 0px;
}
.display-items ul li {
  list-style: none;
  float: left;
  line-height: 30px;
  padding-right: 15px;
}

/*toggle switch button */
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 18px;
  margin-top: 8px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 176, 194, 0.19);
  -webkit-transition: 0.4s;
  border: 1px solid var(--primary-color);
  transition: 0.2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 0px;
  bottom: 0px;
  background-color: #eafdff;
  border: 1px solid var(--primary-color);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
/* Rounded sliders */

.blog-cover-image {
  margin: 20px 0 0;
}
.giftCardButtons {
  height: 45px;
  margin-bottom: 20px;
  overflow: hidden;
}
.giftCardButtons .catalog-list {
  white-space: nowrap;
  overflow-x: auto;
}

#desktop-view {
  width: 100%;
  height: 75px;
}
#desktop-view .text-link {
  align-self: center;
}
/*Responsive*/
@media (max-width: 991px) {
  #desktop-view {
    display: none;
  }
  #mobile-view {
    display: block;
  }
  #mobile-view .navbar {
    box-shadow: 0px 0px 2px 2px #ccc;
  }
  #mobile-view .navbar-inverse {
    /* background-image: linear-gradient( to right, var(--secondary-color), var(--primary-color) ); */
    background-image: linear-gradient(to right, #fff, #fff);
    background-color: #fff;
    /* height: calc(6 * 4em); */
    /* width: 100vw; */
    padding: 1em 0px;
    transform: scaleY(1);
    transform-origin: center top;
    transition: transform 0.3s ease-in-out 0s;
    border: none;
    display: block;
  }
  #mobile-view .navbar-header {
    min-height: 50px;
  }
  #mobile-view .navbar-inverse .navbar-toggler {
    position: absolute;
    left: 5px;
    top: 13px;
    background-color: #fff !important;
    color: var(--grey-color);
    border: none;
    display: block;
    width: 44px;
    height: 44px;
  }
  #mobile-view .navbar-inverse .navbar-toggler .icon-bar {
    background-color: var(--grey-color) !important;
    display: block;
    height: 2px;
    margin: 4px 0px;
  }
  #mobile-view .navbar-inverse .navbar-collapse {
    background-image: linear-gradient(
      to right,
      var(--secondary-color),
      var(--primary-color)
    );
    width: 100%;
    display: none !important;
  }
  #mobile-view .navbar-inverse .navbar-collapse.show {
    display: block !important;
  }
  #mobile-view .navbar-inverse .navbar-nav {
    float: inherit;
    margin: 7.5px -15px;
  }
  #mobile-view .navbar-inverse .navbar-nav > li > a {
    border-bottom: 1px solid rgba(14, 25, 28, 0.19) !important;
    padding: 0.7em 1.1em !important;
    color: #fff !important;
    font-size: 2.1rem !important;
    font-family: var(--secondary-medium-font);
    line-height: 1;
    display: block;
  }
  #mobile-view .navbar-inverse .navbar-nav > li > a.color-blue {
    color: var(--primary-color) !important;
  }
  #mobile-view .navbar-inverse .navbar-nav > li > a.color-ambor {
    color: var(--warning-color) !important;
  }

  .terms-container {
    margin: 0 30px;
    padding: 1em 2em;
  }
}
@media (max-width: 767px) {
  #destination {
    min-width: inherit;
    max-width: 200px;
    right: 0;
  }
  .blog-container,
  .login-container {
    padding: 1em 3em;
  }
  .blog-container h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .blog-container,
  .login-container {
    box-shadow: inherit;
    padding: inherit;
  }
  .show-date {
    position: relative;
    right: inherit;
    margin-top: 0;
  }
  .card-btn {
    margin: 2px;
  }
  .terms-container {
    margin: 0;
    box-shadow: none;
  }
}
@media (min-width: 300px) {
  .btn-login {
    width: 290px;
  }
  .form-input,
  .form-states {
    width: 100%;
  }
  .signin-intro {
    font-size: 1.5rem;
  }
  .small {
    font-size: 0.75rem;
    color: var(--grey-color);
  }
  ul.digital-cards li {
    float: inherit;
    margin: 2rem;
    width: inherit;
    margin-left: -11%;
  }
  #colorlib-offcanvas {
    display: none;
  }
}
@media (min-width: 768px) {
  #colorlib-offcanvas {
    display: none;
  }
}
@media (min-width: 992px) {
  #mobile-view {
    display: none;
  }
  #desktop-view {
    display: block;
  }
  ul.digital-cards li {
    float: left;
    margin: 15px;
    width: 15%;
  }
}
@media (min-width: 1300px) {
  .form-input,
  .form-states {
    width: 100%;
  }
  .signin-intro {
    font-size: 2.5rem;
  }
  .small {
    font-size: 0.75rem;
    color: var(--grey-color);
  }
}
/* Responsive ends*/

/* Button CSS start */

.primary-btn-link {
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 10px 15px;
  margin: 5px;
  min-width: 300px;
  max-width: 100%;
  font-size: 1rem;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: var(--white-color) !important;
  display: inline-block;
}
.primary-btn-link:hover {
  background-color: var(--primary-btn-hover-color);
  color: var(--white-color);
}

.newsletter-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--primary-color);
  border: none;
  outline: none;
  width: 60px;
  height: 100%;
  border-radius: 3.5px;
}
.newsletter-checkbox-div {
  display: grid;
  place-items: center;
  -webkit-box-align: center;
}

.newsletter-checkbox {
  display: block;
  width: 25px;
  height: 25px;
  background-color: rgb(255, 255, 255);
  clip-path: polygon(9% 54%, 39% 94%, 89% 26%, 78% 17%, 39% 69%, 21% 46%);
}

@media screen and (max-width: 360px) {
  .footer-newsletter-form button {
    width: 100%;
  }
}

.secondary-btn-link {
  background: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  outline: none;
  padding: 10px 15px;
  margin: 5px;
  min-width: 300px;
  max-width: 100%;
  font-size: 1rem;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: var(--primary-color);
  display: inline-block;
  text-align: center;
}
.secondary-btn-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.alert-btn-link {
  background: var(--secondary-btn-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 10px 15px;
  margin: 5px;
  min-width: 300px;
  max-width: 100%;
  font-size: 1rem;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: var(--white-color) !important;
  display: inline-block;
}
.alert-btn-link:hover {
  background-color: var(--alert-btn-hover-color);
  color: var(--white-color);
}

/* Button CSS End */

/** Bootstrap spinner-border override **/
.spinner-border {
  margin-bottom: 0.1rem;
}
/** Bootstrap spinner-border override **/

@media screen and (max-width: 576px) {
  .brand_image_display {
    max-width: 100%;
  }
}

/* Apple pay button */
apple-pay-button {
  --apple-pay-button-width: 15.25rem;
  --apple-pay-button-height: 2.5rem;
  --apple-pay-button-border-radius: 5px;
  --apple-pay-button-padding: 5px 0px;
}
/* \Apple pay button */

/* HR tag  Start*/

.horizontal-tag {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, auto);
}
.horizontal-break.left,
.horizontal-break.right {
  content: "";
  display: block;
  height: 1px;
  margin: 1em 0;
}
.horizontal-break.left {
  background: linear-gradient(270deg, #cfcbcb, transparent);
}
.horizontal-break.right {
  background: linear-gradient(90deg, #cfcbcb, transparent);
}
/* HR tag end */

/* Small button  */
.primary-btn-small {
  background: var(--primary-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 0.2em 1em;
  min-width: 100px;
  font-size: 0.9em;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: white;
  text-align: center;
}

.secondry-btn-small {
  background: var(--secondary-btn-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 0.2em 1em;
  min-width: 100px;
  font-size: 0.9em;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: white;
}
.alert-btn-small {
  background: var(--secondary-btn-color);
  border: none;
  border-radius: 50px;
  outline: none;
  padding: 0.2em 1em;
  min-width: 100px;
  font-size: 0.9em;
  font-family: var(--primary-bold-font), georgia, serif;
  text-transform: uppercase;
  color: var(--white-color) !important;
}

/* Success Pargraph Icon  Start*/
.pargraph-success-icon {
  padding-left: 20px;
  margin-bottom: 0.25rem;
  text-align: left;
  color: var(--success-color);
  font-size: 0.8em;
  font-family: var(--primary-bold-font), georgia, serif;
  display: none;
}

.pargraph-success-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  background-image: url("../img/success_icon.45113e9c4a0b.png");
  background-size: 0.95rem 0.95rem;
  width: 0.95rem;
  height: 0.95rem;
}

.pargraph-success-icon {
  position: relative;
}

.pargraph-error-icon,
.cart-form-invalid-error {
  padding-left: 20px;
  margin-bottom: 0.25rem;
  text-align: left;
  color: var(--error-color);
  font-size: 0.75rem;
  display: none;
}

.pargraph-error-icon::after,
.cart-form-invalid-error::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0px;
  background-image: url("../img/error_icon.9cfc9b755fa6.png");
  background-size: 0.75rem 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
}

.pargraph-error-icon,
.cart-form-invalid-error {
  position: relative;
}

/* Success Icon end*/

.owl-carousel .owl-stage {
  transition-timing-function: linear !important;
}

/* Open in app button */
@media (min-width: 786px) {
  .open-app {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .open-app {
    position: fixed;
    top: 4.5em;
    display: grid;
    width: 100%;
    height: 5em;
    justify-items: center;
    align-items: center;
    margin-bottom: 1em;
    z-index: 3;
  }
}

@media (max-width: 300px) {
  .open-app {
    margin: 0;
  }
}

.open-app__item {
  display: grid;
  grid-template-columns: 1fr auto;
}

.open-app-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2em;
  background: #2d2d2d;
  font-family: var(--primary-bold-font), georgia, serif;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}

.open-app-button {
  height: 100%;
  margin-left: 0.1em;
  padding: 1em 1.5em;
  background: #2d2d2d;
  font-family: var(--primary-bold-font), georgia, serif;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  color: white;
  text-transform: uppercase;
  outline: none;
  border: none;
  cursor: pointer;
}
/* Open in app button */

.or-text {
  font-family: var(--primary-bold-font);
}
.button-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  grid-gap: 0.5rem;
  margin-top: 1rem;
  padding: 0;
}
.button-block :first-child {
  justify-self: right;
}
.button-block :last-child {
  justify-self: left;
}
@media (max-width: 768px) {
  .button-block {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .button-block :first-child,
  .button-block :last-child {
    justify-self: center;
  }
}

.footer-logo,
.header-logo {
  height: auto;
}
.element-hide {
  display: none;
}
.element-show {
  display: block;
}

/* Richtext styles*/
.richtext-styles p {
  padding: 0.5rem 0;
}
.richtext-styles ol,
.richtext-styles ul {
  text-align: left;
}
/*\ Richtext styles*/

.add-to-home-screen-pop-up__wrapper {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  display: grid;
  justify-items: center;
  align-items: center;
  background-color: transparent;
  width: 100%;
  z-index: 1000;
}
#add-to-home-screen-pop-up {
  position: relative;
  background-color: var(--pwa-popup-color);
  border-radius: 10px;
  padding: 1rem;
  font-family: var(--primary-font);
  font-size: 0.85rem;
  width: 90%;
  /* box-shadow: 2px 2px 5px 0 var(--grey-50-color); */
  text-align: center;
  filter: drop-shadow(0px 15px 15px var(--box-shadow));
}

#add-to-home-screen-pop-up::after {
  position: absolute;
  bottom: -2rem;
  left: calc(50% - 0.5rem);
  content: "";
  width: 0;
  height: 0;
  border-top: 1rem solid var(--pwa-popup-color);
  border-right: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1rem solid transparent;
}

.add-to-home-screen-pop-up--hidden {
  display: none;
}

/* Navbar */
nav {
  box-sizing: border-box;
  position: fixed;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: 100%;
  height: var(--navbar-height);
  background-color: white;
  box-shadow: var(--grey-50-color) 0px 5px 10px -5px;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
nav .menu-links {
  flex: none;
  display: flex;
  justify-content: flex-end;
}
nav .menu-links .menu-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
nav .menu-links .menu-links__list li {
  display: inline;
}
nav .menu-links .menu-links__list li a,
nav .menu-links .menu-links__list li span {
  font-family: var(--secondary-bold-font);
  font-size: 1.4rem;
}
.custom__hr {
  margin: 0;
  border: none;
  width: 0;
  height: 1.5rem;
  border-right: 2px solid #2d2d2d;
}
@media (max-width: 1024px) {
  nav .menu-link {
    display: none !important;
  }
  nav .menu-link-1 {
    display: block !important;
  }
}
@media (max-width: 768px) {
  nav {
    grid-template-columns: auto 1fr 1px;
    justify-content: center;
  }
  nav .app-logo {
    justify-self: center;
  }
  .custom__hr {
    display: none;
  }
  nav .menu-links {
    position: absolute;
    top: 0;
    left: -1000px;
    display: block;
    margin-top: var(--navbar-height);
    width: 100vw;
    height: calc(100vh - var(--navbar-height));
    transition: left 0.3s ease-in-out;
  }
  nav .menu-links.active {
    left: 0;
  }
  nav .menu-links .menu-links__list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.25rem;
    width: 300px;
    height: calc(100vh - var(--navbar-height));
    background: white;
    padding: 1rem;
    transition: left 0.3s ease-in-out;
    overflow-y: scroll;
    border-top: 1px solid var(--grey-20-color);
    box-shadow: var(--grey-50-color) 0px 5px 10px -5px;
    position: relative;
    z-index: 2;
  }
  nav .menu-link {
    display: block !important;
  }
  nav .menu-links .menu-overlay--mobile {
    width: 100%;
    height: 100%;
    background: #2d2d2d50;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
  }
  nav .menu-links.active .menu-overlay--mobile {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
  }
}

#hamburger-icon,
#close-icon {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.dropdown-block__placeholder {
  position: fixed;
  top: -1000px;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: top 0.8s ease;
}
.dropdown-block__placeholder.active {
  top: var(--navbar-height);
}

@media (max-width: 768px) {
  #hamburger-icon,
  #close-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 2.875rem;
  }
}

.dropdown-block {
  width: 100%;
  background: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 5rem;
  padding: 1.5rem;
  box-shadow: var(--grey-50-color) 0px 5px 10px -5px;
}

.dropdown-block__hr {
  margin: 0;
  border: none;
  width: 0;
  height: 100%;
  border-right: 1px solid #ccc;
}
.dropdown-group {
  display: grid;
  align-content: start;
}
.dropdown-group:first-child {
  justify-self: end;
}
.dropdown-group:last-child {
  justify-self: start;
}
.dropdown-group__label {
  font-family: var(--primary-extra-bold-font);
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 2;
}
.dropdown-group__links {
  display: grid;
  grid-template-rows: repeat(6, max-content);
  grid-auto-flow: column;
  row-gap: 0.25rem;
  column-gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-group__links li a {
  font-family: var(--primary-semi-bold-font) !important;
  font-size: 1rem !important;
}

@media (max-width: 825px) {
  .dropdown-block {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dropdown-block__hr {
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #ccc;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
  }
  .dropdown-group:first-child,
  .dropdown-group:last-child {
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .dropdown-block {
    width: 100%;
    background: none;
    box-shadow: none;
    padding: 0 1.5rem;
  }
  .dropdown-group__links {
    grid-auto-flow: row;
  }
}
.color-blue {
  color: var(--primary-color) !important;
}
.color-ambor {
  color: var(--warning-color) !important;
}

.separator {
  font-weight: bold;
  width: 3px;
  border-left: 3px solid var(--grey-color);
  height: 16px;
  display: inline-block;
  line-height: 12px;
  margin-top: 5px;
  width: 10px;
  color: var(--grey-color);
  margin-left: 8px;
}
/* Navbar */

/* Visually hidden text for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
