/* guides */

/*
colors:
charcoal gray: #333333
dark navy blue: #0b1632
pale turquoise: #b0e4e2
cream beige: #efe6d8
orange: #ffa646
light grey (navbar shrink background): #f6f6f6

fonts:
"Poppins", sans-serif;
"Balsamiq Sans", sans-serif;
*/

/* important */

.mt-2rem {
  margin-top: 2rem !important;
}

.background-position-y-0 {
  background-position-y: 0 !important;
}

.background-position-y-5px {
  background-position-y: 5px !important;
}

.background-size-15px {
  background-size: 15px !important;
}

.background-size-20px {
  background-size: 20px !important;
}

.background-size-25px {
  background-size: 25px !important;
}

.background-size-30px {
  background-size: 30px !important;
}

.background-size-35px {
  background-size: 35px !important;
}

.background-size-40px {
  background-size: 40px !important;
}

.background-size-45px {
  background-size: 45px !important;
}

.background-size-50px {
  background-size: 50px !important;
}

@media (min-width: 1400px) {
  .d-none-for-monitor {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .d-none-for-laptop {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .d-none-for-tablet {
    display: none !important;
  }

  .top-minus-25px-for-lg {
    top: -25px !important;
  }

  .bottom-minus-25px-for-lg {
    bottom: -25px !important;
  }

  .left-minus-25px-for-lg {
    left: -25px !important;
  }

  .right-minus-25px-for-lg {
    right: -25px !important;
  }
}

@media (min-width: 992px) {
  .width-auto-for-non-xs {
    width: auto !important;
  }
}

@media (max-width: 991px) {
  .d-none-for-mobile {
    display: none !important;
  }

  .flex-direction-column-reverse-for-xs {
    flex-direction: column-reverse !important;
  }

  .mb-2-25rem-for-xs {
    margin-bottom: 2.25rem !important;
  }

  .pt-0-5rem-for-xs {
    padding-top: .5rem !important;
  }

  .width-100proc-for-xs {
    width: 100% !important;
  }

  .top-minus-15px-for-xs {
    top: -15px !important;
  }

  .bottom-auto-for-xs {
    bottom: auto !important;
  }

  .right-minus-15px-for-xs {
    right: -15px !important;
  }

  .left-auto-for-xs {
    left: auto !important;
  }

  .overflow-x-scroll-for-xs {
    overflow-x: scroll !important;
  }
}

/* general */

html {
  height: 100%;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

section {
  padding: 3.5rem 0;
}

/* navigation */

.navbar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: none;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink {
  padding-top: .75rem;
  padding-bottom: .75rem;
  background-color: #f6f6f6;
  background-color: rgba(246, 246, 246, .95);
  box-shadow: none;
}

.navbar-hidden {
  transform: translateY(-100%);
}

.navbar .navbar-brand img {
  width: 115px;
  height: auto;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar.navbar-shrink .navbar-brand img {
  width: 100px;
}

.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  margin: 0 2rem;
  padding: 0;
  color: #0b1632;
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:active,
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before,
.navbar .navbar-nav .nav-item .nav-link.active:before {
  background-color: #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link-cta {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.navbar .navbar-nav .nav-item .nav-link-cta:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link-cta:before {
  display: none;
}

.navbar .navbar-nav .nav-item .nav-link-cart-bag {
  position: relative;
  margin-right: 0;
  padding: 0;
  border-radius: 50%;
}

.navbar .navbar-nav .nav-item .nav-link-cart-bag i {
  color: #0b1632;
}

.navbar .navbar-nav .nav-item .nav-link-cart-bag span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -15px;
  right: -15px;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  background-color: #b0e4e2;
  border-radius: 50%;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-left: 0;
  margin-right: 0;
}

.navbar-close-icon {
  position: absolute;
  top: 4px;
  right: 2px;
  padding-left: 5px;
  padding-right: 5px;
  color: #737373;
  font-size: 1.4rem;
  background-color: rgba(246, 246, 246, 1);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0 1.25rem;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: rgba(246, 246, 246, 1);
  }

  .navbar .navbar-brand img {
    width: 75px !important;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0.75rem 0;
  }

  .navbar .navbar-nav .nav-item:last-child .nav-link {
    margin-left: .75rem;
    margin-right: .75rem;
  }

  .navbar .navbar-nav .nav-item .nav-link-cart-bag span {
    right: auto;
    left: 7px;
  }
}

/* front page cover */

.front-page-cover {
  position: relative;
  height: auto;
  padding-top: 122px;
  padding-top: 218px;
  padding-top: 194px;
  padding-bottom: 96px;
}

.front-page-cover h1 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.75rem;
  line-height: 3.75rem;
  font-weight: 600;
}

.front-page-cover h1 span {
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-cover h1 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-cover h2 {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
  padding: 1.5rem 1.5rem;
  padding-bottom: .5rem;
  text-align: center;
  color: #0b1632;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
  background-color: #fff;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.front-page-cover h2 span {
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-cover h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-cover p {
  padding-right: 1rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.6rem;
}

.front-page-cover a {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-cover a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.front-page-cover a i {
  margin-left: 1rem;
}

.front-page-cover .cover-div {
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 40px;
}

.front-page-cover .individual-advantage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #efe6d8;
  border-radius: 50%;
  z-index: 1;
}

.front-page-cover .individual-advantage span {
  position: absolute;
  height: 70px;
  width: 70px;
  background-color: #ffa646;
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.front-page-cover .background-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 789px;
  height: 1048px;
  background-image: url("../images/cover_background2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-cover h2 {
    width: 81%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-cover h1 {
    font-size: 2rem;
    line-height: 3rem;
  }

  .front-page-cover h2 {
    width: 80%;
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (max-width: 991px) {
  .front-page-cover {
    padding-top: 133px;
    padding-bottom: 48px;
  }

  .front-page-cover h1 {
    font-size: 2.25rem;
    line-height: 3rem;
  }

  .front-page-cover h2 {
    width: 80%;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .front-page-cover a {
    width: 100%;
  }

  .front-page-cover .cover-div {
    height: 300px;
  }
}

/* front page advantages */

.front-page-advantages {
  position: relative;
  padding-top: 0;
}

.front-page-advantages h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-advantages h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-advantages h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-advantages .advantages-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.front-page-advantages .advantages-div .individual-advantage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #efe6d8;
  border-radius: 50%;
  z-index: 1;
}

.front-page-advantages .advantages-div .individual-advantage span.icon {
  position: absolute;
  height: 70px;
  width: 70px;
  background-color: #ffa646;
  background-size: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.front-page-advantages .advantages-div .individual-advantage span.icon.iron {
  background-size: 40px;
}

.front-page-advantages .advantages-div .individual-advantage span.icon > span {
  position: absolute;
  display: inline-block;
  top: 35px;
  left: 10px;
  height: 1px;
  width: 70%;
  background-color: #fff;
}

.front-page-advantages .advantages-div .individual-advantage span.icon > span:first-child {
  transform: rotate(45deg);
}

.front-page-advantages .advantages-div .individual-advantage span.icon > span:last-child {
  transform: rotate(135deg);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-advantages h2 {
    font-size: 2rem;
  }

  .front-page-advantages .advantages-div .individual-advantage {
    width: 155px;
    height: 155px;
  }
}

@media (max-width: 991px) {
  .front-page-advantages h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-advantages .advantages-div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .front-page-advantages .advantages-div .individual-advantage {
    width: 140px;
    height: 140px;
    font-size: .9rem;
    line-height: 1.3rem;
  }

  .front-page-advantages .advantages-div .individual-advantage span.icon {
    height: 55px;
    width: 55px;
    background-size: 40px;
  }
}

/* front page process */

.front-page-process {
  position: relative;
}

.front-page-process h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-process h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-process h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-process .process-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.front-page-process .process-div .individual-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  height: 150px;
  flex: 1 1 230px;
  padding-top: 1rem;
  padding-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 20px;
  z-index: 1;
}

/*
.front-page-process .process-div .individual-step:nth-child(odd) {
  margin-top: -3rem;
}

.front-page-process .process-div .individual-step:nth-child(even) {
  margin-top: 3rem;
}
*/

.front-page-process .process-div .individual-step span.digit {
  position: absolute;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  color: #fff;
  font-size: 1.25rem;
  background-color: #ffa646;
  border-radius: 50%;
}

.front-page-process .process-div .individual-step span.arrow {
  position: absolute;
  top: 0;
  left: 230px;
  width: 102px;
  height: 150px;
  background-image: url("../images/process_arow.png");
  background-size: 36px;
  background-position: center center;
  background-repeat: no-repeat;
}

/*
.front-page-process .background-1 {
  position: absolute;
  top: -100px;
  left: 0;
  width: 710px;
  height: 1291px;
  background-image: url("../images/process_background2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
}
*/

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-process .process-div .individual-step {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    flex: 1 1 220px;
  }

  .front-page-process .process-div .individual-step span.arrow {
    left: 220px;
    width: 55px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-process h2 {
    font-size: 2rem;
  }

  .front-page-process .process-div .individual-step {
    height: 190px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    flex: 1 1 200px;
  }

  .front-page-process .process-div .individual-step span.arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .front-page-process {
    padding-top: 0;
  }

  .front-page-process h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-process .process-div {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .front-page-process .process-div .individual-step {
    flex: 1 1 calc(50% - .75rem);
    width: calc(50% - .75rem);
    max-width: calc(50% - .75rem);
    min-width: calc(50% - .75rem);
    height: 190px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .front-page-process .process-div .individual-step:nth-child(3),
  .front-page-process .process-div .individual-step:nth-child(4) {
    margin-top: 1rem;
  }

  .front-page-process .process-div .individual-step span.arrow {
    display: none;
  }
}

/* front page name tag creator */

.front-page-name-tag-creator {
  position: relative;
}

.front-page-name-tag-creator h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-name-tag-creator h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-name-tag-creator h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-name-tag-creator .name-tag-creator-div {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
}

.front-page-name-tag-creator .name-tag-div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  padding-left: 10px;
  padding-right: 10px;
  gap: 0;
  width: 270px;
  height: 117px;
  color: #000;
  font-weight: 700;
  font-size: 2.3rem;
  background-color: #b1c6cc;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
}

body.loading .front-page-name-tag-creator .name-tag-div {
  position: absolute;
  transform: scale(1.5);
}

@media (max-width: 991px) {
  body.loading .front-page-name-tag-creator .name-tag-div {
    transform: scale(1);
  }
}

/*
body.loading #addToCartBtn {
  pointer-events: none !important;
  cursor: default !important;
  opacity: .5 !important;
}
*/

body.loading {
  overflow-y: hidden;
}

body.loading nav,
body.loading section,
body.loading footer {
  opacity: .1;
  pointer-events: none;
}

.loading-div {
  position: fixed;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.loading-div.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-div i {
  font-size: 50px;
  line-height: 50px;
  color: #b0e4e2;
}

/*
body.loading .front-page-name-tag-creator .name-tag-inputs,
body.loading .front-page-name-tag-creator .first-row,
body.loading .front-page-name-tag-creator .third-row {
  opacity: 0;
}
*/

.front-page-name-tag-creator .name-tag-div #symbolDiv {
  flex: 1;
}

.front-page-name-tag-creator .name-tag-div #nameTagText {
  flex: 2;
}

.front-page-name-tag-creator .name-tag-div img {
  height: 70px !important;
  width: auto !important;
}

.front-page-name-tag-creator .name-tag-div > span {
  position: absolute;
  text-align: center;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.front-page-name-tag-creator .name-tag-div span.horizontal {
  bottom: -24px;
  left: 0;
  width: 100%;
}

.front-page-name-tag-creator .name-tag-div span.vertical {
  left: -35px;
  transform: rotate(270deg);
}

.front-page-name-tag-creator .name-tag-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  width: 300px;
  height: 130px;
}

.front-page-name-tag-creator .name-tag-inputs input {
  padding: .75rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none;
  outline: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-inputs input:hover {
  border: 2px solid #ddd;
}

.front-page-name-tag-creator .name-tag-inputs input:focus {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-inputs input.input-error {
  border-color: #f3a59d !important;
}

.front-page-name-tag-creator .name-tag-tabs {
  position: relative;
  text-align: center;
  z-index: 1;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab {
  display: inline-block;
  width: auto;
  margin-right: 1rem;
  padding: .75rem 3rem;
  padding-bottom: calc(.75rem - 2px);
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  background-color: #efe6d8;
  border: 2px solid #efe6d8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab.active,
.front-page-name-tag-creator .name-tag-tabs .individual-tab:hover {
  background-color: transparent;
  cursor: default;
  border-bottom: 2px solid #fff;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab:hover {
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-tabs .individual-tab:last-child {
  margin-right: 0;
}

.front-page-name-tag-creator .name-tag-stickers {
  position: relative;
  margin-top: -2px;
  padding: 1.5rem;
  background-color: transparent;
  border: 2px solid #efe6d8;
  border-radius: 20px;
}

.front-page-name-tag-creator .name-tag-stickers .tips {
  position: absolute;
  top: calc(50% - 20px);
  right: -98px;
  padding: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #efe6d8;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transform: rotate(90deg);
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .tips:hover {
  background-color: #e2d1b8;
}

.front-page-name-tag-creator .name-tag-stickers .popular-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: .5rem;
}

.front-page-name-tag-creator .name-tag-stickers .popular-tags .individual-name-tag-sticker {
  flex: 1 1 calc(20% - 1.2rem);
  width: calc(20% - 1.2rem);
  max-width: calc(20% - 1.2rem);
  min-width: calc(20% - 1.2rem);
  border: 2px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .popular-tags .individual-name-tag-sticker:hover,
.front-page-name-tag-creator .name-tag-stickers .popular-tags .individual-name-tag-sticker.active {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .popular-tags .individual-name-tag-sticker img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 4px solid transparent;
}

.front-page-name-tag-creator .name-tag-stickers .symbols {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  padding: 5px;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #eee;
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category.active,
.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category:hover {
  background-color: #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category.remove.active,
.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category.remove:hover {
  background-color: #e74c3c;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category i {
  color: #0b1632;
  font-size: 1.05rem;
  line-height: 1.05rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category.remove.active i,
.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category.remove:hover i {
  color: #fff;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .5rem;
  width: 100%;
  padding-bottom: 1rem;
  height: 192px;
  overflow-x: scroll;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
  cursor: pointer;
  width: calc(100% - 12px);
  margin-left: 6px;
  margin-right: 6px;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons::-webkit-scrollbar-thumb {
  background: #b0e4e2;
  border-radius: 10px;
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .symbols-icons-column {
  display: flex;
  gap: .5rem;
  flex-direction: column;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 80px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon:hover,
.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon.active {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon div {
  width: 68px;
  height: 68px;
  border-radius: 13px;
  background-color: #eee;
  background-size: 55px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 5px solid transparent;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon div.no-background-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon div.no-background-image i {
  color: #000;
  font-size: 1.75rem;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  padding: 5px;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories .individual-background-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #eee;
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories .individual-background-category.active,
.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories .individual-background-category:hover {
  background-color: #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .5rem;
  width: 100%;
  padding-bottom: 1rem;
  height: 192px;
  overflow-x: scroll;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
  cursor: pointer;
  width: calc(100% - 12px);
  margin-left: 6px;
  margin-right: 6px;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds::-webkit-scrollbar-thumb {
  background: #b0e4e2;
  border-radius: 10px;
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 80px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background:hover,
.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background.active {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background > div {
  width: 68px;
  height: 68px;
  background-color: #eee;
  background-size: 68px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 5px solid transparent;
  border-radius: 13px;
}

.front-page-name-tag-creator .name-tag-stickers .texts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  padding: 5px;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts .individual-text-font {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #eee;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts .individual-text-font.active,
.front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts .individual-text-font:hover {
  background-color: #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: .5rem;
  width: 100%;
  padding-bottom: 1rem;
  height: 192px;
  height: 80px;
}

/*
.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
  cursor: pointer;
  width: calc(100% - 12px);
  margin-left: 6px;
  margin-right: 6px;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors::-webkit-scrollbar-thumb {
  background: #b0e4e2;
  border-radius: 10px;
  cursor: pointer;
}
*/

.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 80px;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color:hover,
.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color.active {
  border: 2px solid #b0e4e2;
}

.front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color > div {
  width: 68px;
  height: 68px;
  background-size: 68px;
  background-position: center center;
  background-repeat: no-repeat;
  border: 5px solid transparent;
  border-radius: 13px;
}

.front-page-name-tag-creator .name-tag-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 2rem;
}

.front-page-name-tag-creator .name-tag-footer p.description {
  margin-bottom: 0;
  padding-right: 1.5rem;
  text-align: left;
  color: #333;
  font-size: .8rem;
  line-height: 1.1rem;
}

.front-page-name-tag-creator .name-tag-footer .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 125px;
  width: 125px;
  min-width: 125px;
  max-width: 125px;
  height: 55px;
}

.front-page-name-tag-creator .name-tag-footer .quantity span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 45px;
  width: 45px;
  min-width: 45px;
  max-width: 45px;
  height: 55px;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #eee;
  border: 2px solid #eee;
  cursor: pointer;
  user-select: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-footer .quantity span:hover {
  background-color: #ddd;
  border: 2px solid #ddd;
}

.front-page-name-tag-creator .name-tag-footer .quantity span:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.front-page-name-tag-creator .name-tag-footer .quantity span:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.front-page-name-tag-creator .name-tag-footer .quantity input {
  flex: 1 1 60px;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 55px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #eee;
  border-left: 0;
  border-right: 0;
  outline: 0;
}

.front-page-name-tag-creator .name-tag-footer p.price {
  flex: 1 1 125px;
  min-width: 125px;
  max-width: 125px;
  margin-bottom: 0;
  padding-left: 8px;
  font-size: .9rem;
}

.front-page-name-tag-creator .name-tag-footer p.price span {
  font-size: 1.35rem;
  font-weight: 500;
}

.front-page-name-tag-creator .name-tag-footer .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 200px;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  height: 55px;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-name-tag-creator .name-tag-footer .btn:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-name-tag-creator .name-tag-footer p.description {
    padding-right: 3rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors {
    column-gap: .7rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-name-tag-creator h2 {
    font-size: 2rem;
  }

  .front-page-name-tag-creator .name-tag-footer {
    gap: 1.5rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors {
    column-gap: .7rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts .individual-text-font {
    padding-left: .75rem;
    padding-right: .75rem;
  }
}

@media (max-width: 991px) {
  .front-page-name-tag-creator {
    padding-top: 0;
  }

  .front-page-name-tag-creator h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-name-tag-creator .name-tag-creator-div {
    flex-direction: column;
    gap: 2.5rem;
  }

  .front-page-name-tag-creator .name-tag-tabs {
    display: flex;
    gap: .5rem;
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab {
    margin-right: 0;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: .75rem;
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:first-child {
    flex: 1 1 calc(25%);
    width: calc(25%);
    max-width: calc(25%);
    min-width: calc(25%);
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:nth-child(2) {
    flex: 1 1 calc(25% + .5rem);
    width: calc(25% + .5rem);
    max-width: calc(25% + .5rem);
    min-width: calc(25% + .5rem);
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:nth-child(3) {
    flex: 1 1 calc(25% - 1rem);
    width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    min-width: calc(25% - 1rem);
  }

  .front-page-name-tag-creator .name-tag-tabs .individual-tab:nth-child(4) {
    flex: 1 1 calc(25% - 1rem);
    width: calc(25% - 1rem);
    max-width: calc(25% - 1rem);
    min-width: calc(25% - 1rem);
  }

  .front-page-name-tag-creator .name-tag-stickers {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .front-page-name-tag-creator .name-tag-stickers .tips {
    top: auto;
    right: auto;
    bottom: -37px;
    font-size: .85rem;
    font-weight: 500;
    transform: rotate(0deg);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .front-page-name-tag-creator .name-tag-stickers .popular-tags {
    gap: 1rem;
    row-gap: .5rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .popular-tags .individual-name-tag-sticker {
    flex: 1 1 calc(50% - .5rem);
    width: calc(50% - .5rem);
    max-width: calc(50% - .5rem);
    min-width: calc(50% - .5rem);
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds,
  .front-page-name-tag-creator .name-tag-stickers .texts {
    padding-bottom: .25rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts {
    overflow-x: scroll;
    padding-bottom: .75rem;
    gap: .875rem;
    flex-wrap: nowrap;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories::-webkit-scrollbar,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories::-webkit-scrollbar,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories::-webkit-scrollbar-track,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories::-webkit-scrollbar-track ,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
    width: calc(100% - 12px);
    margin-left: 6px;
    margin-right: 6px;
    cursor: pointer;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories::-webkit-scrollbar-thumb,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories::-webkit-scrollbar-thumb,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts::-webkit-scrollbar-thumb {
    background: #b0e4e2;
    border-radius: 10px;
    cursor: pointer;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories .individual-symbol-category,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-categories .individual-background-category {
    width: 45px;
    max-width: 45px;
    min-width: 45px;
    flex: 1 1 45px;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-fonts .individual-text-font {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors {
    padding-bottom: .375rem;
    height: 158px;
    gap: .25rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color {
    flex: 1 1 70px;
    width: 70px;
    max-width: 70px;
    min-width: 70px;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-icons .individual-symbol-icon div,
  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background div,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color div {
    width: 58px;
    height: 58px;
    background-size: 50px;
  }

  .front-page-name-tag-creator .name-tag-stickers .backgrounds .backgrounds-backgrounds .individual-background-background div,
  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color div {
    background-size: 58px;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: nowrap;
    gap: .5rem;
    width: 100%;
    padding-bottom: 1rem;
    height: 192px;
    height: 88px;
    overflow-x: scroll;
    overflow-y: hidden;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors .individual-text-color {
    height: 70px;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    cursor: pointer;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
    cursor: pointer;
    width: calc(100% - 12px);
    margin-left: 6px;
    margin-right: 6px;
  }

  .front-page-name-tag-creator .name-tag-stickers .texts .texts-colors::-webkit-scrollbar-thumb {
    background: #b0e4e2;
    border-radius: 10px;
    cursor: pointer;
  }

  /*
  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories {
    align-items: flex-start;
  }


  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories > div {
    gap: .75rem;
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories > div:first-child {
    flex: 1 1 calc(100% - 45px - 1rem);
    width: calc(100% - 45px - 1rem);
    max-width: calc(100% - 45px - 1rem);
    min-width: calc(100% - 45px - 1rem);
  }

  .front-page-name-tag-creator .name-tag-stickers .symbols .symbols-categories > div:last-child {
    flex: 1 1 45px;
    width: 45px;
    max-width: 45px;
    min-width: 45px;
  }
  */

  .front-page-name-tag-creator .name-tag-footer {
    display: block;
    margin-top: 4.25rem;
  }

  .front-page-name-tag-creator .name-tag-footer p.description {
    padding-right: 0;
  }

  .front-page-name-tag-creator .name-tag-footer .quantity {
    text-align: center;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    float: left;
  }

  .front-page-name-tag-creator .name-tag-footer p.price {
    text-align: center;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    float: right;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .front-page-name-tag-creator .name-tag-footer .btn {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

/* tips modal */

.tips-modal {
  display: none;
  max-width: 500px;
  width: 500px;
  min-width: 500px;
  border-radius: 20px;
}

.tips-modal h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.tips-modal p {
  margin-bottom: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.tips-modal ul {
  padding-inline-start: 18px;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.tips-modal ul li::marker {
  color: #ffa646;
}

@media (max-width: 991px) {
  .tips-modal {
    max-width: auto;
    width: auto;
    min-width: auto;
  }
}

/* front page faq */

.front-page-faq {
  position: relative;
}

.front-page-faq h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-faq h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-faq h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-faq a {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-faq a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.front-page-faq .individual-advantage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.5rem;
  font-weight: 500;
  background-color: #efe6d8;
  border-radius: 50%;
  z-index: 1;
}

.front-page-faq .individual-advantage span {
  position: absolute;
  height: 70px;
  width: 70px;
  background-color: #ffa646;
  background-size: 40px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.front-page-faq .question-icon {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 70px;
  height: 70px;
  background-color: #ffa646;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 45px;
  border-radius: 50%;
  z-index: 1000;
}

.front-page-faq .technical-information-div p,
.front-page-faq .technical-information-div ul {
  color: #333;
  font-size: .875rem;
  font-weight: 400;
}

.front-page-faq .technical-information-div p b,
.front-page-faq .technical-information-div p strong,
.front-page-faq .technical-information-div ul b,
.front-page-faq .technical-information-div ul strong {
  font-weight: 600;
}

.front-page-faq .technical-information-div ul li::marker {
  color: #ffa646;
}

.front-page-faq .technical-information-div p:last-child,
.front-page-faq .technical-information-div ul:last-child {
  margin-bottom: 0;
}

.front-page-faq .technical-information-div img {
  margin-bottom: 2rem;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.front-page-faq .accordion-body a {
  padding: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 400;
  text-decoration: underline;
  text-transform: none;
  background-color: transparent;
  border: 0;
}

.front-page-faq .accordion-body p b,
.front-page-faq .accordion-body p strong {
  font-weight: 600;
}

.front-page-faq .accordion-body p:last-child {
  margin-bottom: 0;
}

.front-page-faq .accordion-body a:hover {
  text-decoration: none;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-faq h2 {
    font-size: 2rem;
  }

  .technical-information-div {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
  }

  .technical-information-div > div {
    flex: 1 1 calc(50% - 1.5rem);
    width: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    min-width: calc(50% - 1.5rem);
  }
}

@media (max-width: 991px) {
  .front-page-faq {
    padding-top: 0;
  }

  .front-page-faq h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-faq a {
    width: 100%;
  }

  .front-page-faq .question-icon {
    width: 55px;
    height: 55px;
    right: -15px;
  }

  .technical-information-div {
    margin-top: 3rem;
  }
}

/* front page blog */

.front-page-blog {
  position: relative;
  padding-bottom: 3.5rem;
}

.front-page-blog h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-blog h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-blog h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-blog .individual-blog-entry {
  cursor: pointer;
}

.front-page-blog .individual-blog-entry h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65rem;
}

.front-page-blog .individual-blog-entry div {
  width: 100%;
  height: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-blog .individual-blog-entry:hover div {
  background-size: 105%;
}

.front-page-blog a {
  position: relative;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-blog a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-blog h2 {
    font-size: 2rem;
  }

  .front-page-blog .individual-blog-entry div {
    height: 180px;
  }
}

@media (max-width: 991px) {
  .front-page-blog {
    padding-top: 0;
  }

  .front-page-blog h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-blog .individual-blog-entry div {
    height: 140px;
  }
}

/* front page testimonials */

.front-page-testimonials {
  position: relative;
  padding-bottom: 3.5rem;
}

.front-page-testimonials h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.front-page-testimonials h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-testimonials h2 span:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-testimonials .individual-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 223px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.front-page-testimonials .individual-testimonial p:first-child {
  width: 65%;
  margin-bottom: .75rem;
  text-align: center;
  font-size: .95rem;
}

.front-page-testimonials .individual-testimonial p:last-child {
  margin-bottom: 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.front-page-testimonials a {
  position: relative;
  width: auto;
  padding: .75rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-testimonials a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-testimonials .individual-testimonial {
    height: 242px;
  }

  .front-page-testimonials .individual-testimonial p:first-child {
    width: 60%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-testimonials h2 {
    font-size: 2rem;
  }

  .front-page-testimonials .individual-testimonial {
    height: 242px;
  }

  .front-page-testimonials .individual-testimonial p:first-child {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .front-page-testimonials {
    padding-top: 0;
  }

  .front-page-testimonials h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-testimonials .individual-testimonial {
    height: 194px;
  }

  .front-page-testimonials .individual-testimonial p:first-child {
    font-size: .8rem;
  }
}

/* front page instagram feed */

.front-page-instagram-feed {
  position: relative;
  padding-bottom: 4rem;
}

.front-page-instagram-feed h2 {
  display: inline-block;
  position: relative;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram-feed h2 a {
  display: inline-block;
  position: relative;
  margin-left: 0;
  margin-right: 6px;
  color: #0b1632;
  text-decoration: none;
  z-index: 0;
  border-bottom: 4px solid #0b1632;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram-feed h2 a:hover {
  color: #0b1632;
  text-decoration: none;
  border-bottom: 4px solid transparent;
}

.front-page-instagram-feed h2 a:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-instagram-feed .ig-feed-div {
  display: flex;
  align-items: center;
}

.front-page-instagram-feed .ig-feed-div > div {
  flex: 1 1 calc(100% / 6);
  width: calc(100% / 6);
  max-width: calc(100% / 6);
  min-width: calc(100% / 6);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border: 2px solid #b0e4e2;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-instagram-feed .ig-feed-div > div:hover {
  background-size: 105%;
}

.front-page-instagram-feed .ig-feed-div > div:nth-child(odd) {
  transform: rotate(5deg);
}

.front-page-instagram-feed .ig-feed-div > div:nth-child(even) {
  transform: rotate(-5deg);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-instagram-feed h2 {
    font-size: 2rem;
  }

  .front-page-instagram-feed .ig-feed-div > div {
    flex: 1 1 calc(100% / 5);
    width: calc(100% / 5);
    max-width: calc(100% / 5);
    min-width: calc(100% / 5);
  }
}

@media (max-width: 991px) {
  .front-page-instagram-feed {
    padding-top: 0;
    padding-bottom: 3rem;
  }

  .front-page-instagram-feed h2 {
    font-size: 2rem;
    line-height: 2.75rem;
  }

  .front-page-instagram-feed .ig-feed-div > div {
    flex: 1 1 calc(100% / 3);
    width: calc(100% / 3);
    max-width: calc(100% / 3);
    min-width: calc(100% / 3);
  }
}

/* newsletter, soc icons */

.front-page-newsletter-soc-icons {
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.front-page-newsletter-soc-icons h2 {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.front-page-newsletter-soc-icons h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.front-page-newsletter-soc-icons h2 span:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.front-page-newsletter-soc-icons p {
  margin-bottom: 2rem;
  color: #333;
  font-size: .9rem;
  line-height: 1.4rem;
}

.front-page-newsletter-soc-icons .newsletter-div {
  width: 80%;
  margin-left: 15%;
  margin-right: 5%;
}

.front-page-newsletter-soc-icons .newsletter-div input {
  padding: .7rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none;
  outline: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .newsletter-div input:focus {
  border: 2px solid #b0e4e2;
  border-right: 0;
}

.front-page-newsletter-soc-icons .newsletter-div input.input-error {
  border-color: #f3a59d !important;
}

.front-page-newsletter-soc-icons .newsletter-div a {
  padding: .74rem 2.25rem;
  color: #0b1632;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 2px solid #b0e4e2;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .newsletter-div a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 2px solid #0b1632;
}

.front-page-newsletter-soc-icons .newsletter-div > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.front-page-newsletter-soc-icons .soc-icons-div {
  width: 80%;
  margin-left: 5%;
  margin-right: 15%;
}

.front-page-newsletter-soc-icons .soc-icons-div a {
  padding: .75rem 2.25rem;
  color: #fff;
  font-size: .95rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 2px solid #b0e4e2;
  border-radius: 30px;
  text-decoration: none;
}

.front-page-newsletter-soc-icons .soc-icons-div a.btn-facebook {
  background-color: #4267b2;
  border: 2px solid #4267b2;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .soc-icons-div a.btn-instagram {
  background-color: #dd2a7b;
  border: 2px solid #dd2a7b;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.front-page-newsletter-soc-icons .soc-icons-div a.btn-facebook:hover,
.front-page-newsletter-soc-icons .soc-icons-div a.btn-instagram:hover {
  opacity: .7;
}

.front-page-newsletter-soc-icons .soc-icons-div a i {
  margin-right: .75rem;
}

.front-page-newsletter-soc-icons .soc-icons-div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .front-page-newsletter-soc-icons .newsletter-div {
    width: 90%;
    margin-left: 7.5%;
    margin-right: 2.5%;
  }

  .front-page-newsletter-soc-icons .soc-icons-div {
    width: 90%;
    margin-left: 2.5%;
    margin-right: 7.5%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .front-page-newsletter-soc-icons .newsletter-div,
  .front-page-newsletter-soc-icons .soc-icons-div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .front-page-newsletter-soc-icons .soc-icons-div a i {
    display: none;
  }

  .front-page-newsletter-soc-icons p {
    width: 85%;
    margin-left: 7.5%;
    margin-right: 7.5%;
  }

  .front-page-newsletter-soc-icons .newsletter-div input {
    width: 190px;
  }
}

@media (max-width: 991px) {
  .front-page-newsletter-soc-icons {
    padding-bottom: 3.5rem;
  }

  .front-page-newsletter-soc-icons .newsletter-div,
  .front-page-newsletter-soc-icons .soc-icons-div {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .front-page-newsletter-soc-icons .soc-icons-div {
    margin-top: 2.25rem;
  }

  .front-page-newsletter-soc-icons .newsletter-div > div {
    flex-direction: column;
  }

  .front-page-newsletter-soc-icons .newsletter-div input {
    width: 100%;
    text-align: center;
    border-right: 2px solid #ddd;
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 40px;
  }

  .front-page-newsletter-soc-icons .newsletter-div a {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-left-radius: 40px;
  }

  .front-page-newsletter-soc-icons .soc-icons-div > div {
    flex-direction: column;
    gap: 1.25rem;
  }

  .front-page-newsletter-soc-icons .soc-icons-div a {
    width: 100%;
  }
}

/* footer */

footer {
  height: 460px;
  padding-top: 180px;
  background-image: url("../images/footer_background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

footer h4 {
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
}

footer p {
  margin-bottom: 0;
  color: #333;
  font-size: .9rem;
  line-height: 1.75rem;
}

footer ul {
  margin-bottom: 0;
  list-style-type: none;
  padding-inline-start: 0;
  color: #333;
  font-size: .9rem;
  line-height: 1.75rem;
}

footer ul li i {
  width: 23px;
}

footer a {
  position: relative;
  color: #333;
  text-decoration: none;
}

footer a:hover {
  color: #333;
  text-decoration: none;
}

footer a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

footer a:hover:before {
  background-color: #0b1632;
}

footer .logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1.75rem;
}

footer .logos img {
  height: 16px;
  width: auto;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  footer .logos {
    gap: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  footer .logos {
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  footer {
    height: auto;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #bceaea;
    background-image: none;
  }

  footer ul li i {
    text-align: left;
  }

  footer .logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

/* about page cover */

.about-page-cover p {
  width: 90%;
}

.about-page-cover .about-page-div p {
  margin-bottom: 1rem;
}

.about-page-cover .about-page-div p:last-child {
  margin-bottom: 0;
}

/* about page about */

.about-page-about {
  padding-top: 0;
}

.about-page-about h2 {
  display: inline-block;
  position: relative;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
  color: #0b1632;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 3rem;
}

.about-page-about h2 span {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
  z-index: 0;
}

.about-page-about h2 span:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #efe6d8;
  border-radius: 10px;
  z-index: -1;
}

.about-page-about p {
  margin-bottom: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.6;
}

.about-page-about p:last-child {
  margin-bottom: 0;
}

.about-page-about .quote-div {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 0;
}

.about-page-about .quote-div p {
  display: inline-block;
  margin-bottom: 0;
  padding: 2rem 2.5rem;
  padding-bottom: 0;
  font-style: italic;
  background-color: #efe6d8;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.about-page-about .quote-div img {
  position: absolute;
  bottom: -20px;
  right: 17%;
  width: 130px;
  height: auto;
}

.about-page-about .quote-div div.square {
  display: inline-block;
  margin-bottom: 0;
  width: 20px;
  height: 20px;
  background-color: #efe6d8;
}

.about-page-about .quote-div div.square span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-bottom-left-radius: 30px;
}

.about-page-about .description {
  position: relative;
  padding: 2rem 2.5rem;
  background-color: #efe6d8;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
}

.about-page-about .founders-word p:nth-last-child(2) {
  margin-bottom: 2.25rem;
}

.about-page-about .founders-image  {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-page-about .founders-image img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
}

.about-page-about .founders-image p {
  font-style: italic;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .about-page-about h2 {
    font-size: 2rem;
  }

  .about-page-about .quote-div img {
    right: 11%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .about-page-about h2 {
    font-size: 2rem;
  }

  .about-page-about .quote-div img {
    right: 2%;
  }
}

@media (max-width: 991px) {
  .about-page-about {
    padding-bottom: 2.25rem;
  }

  .about-page-about h2 {
    margin-top: 2rem;
    font-size: 2rem;
  }

  .about-page-about .quote-div {
    display: block;
    background-color: #efe6d8;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }

  .about-page-about .quote-div p {
    padding: 2rem;
    padding-bottom: 1.5rem;
  }

  .about-page-about .quote-div img {
    display: none;
  }

  .about-page-about .quote-div div.square {
    display: none;
  }

  .about-page-about .description {
    padding: 2rem;
    padding-top: 0;
    border-top-right-radius: 0;
  }

  .about-page-about .founders-image {
    gap: 1.5rem;
  }

  .about-page-about .founders-word p:nth-last-child(2) {
    margin-bottom: 1.5rem;
  }
}

/* about page cta */

.about-page-cta {
  padding-top: 0;
}

.about-page-cta a {
  position: relative;
  padding: 1rem 4rem;
  color: #0b1632;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 50px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.about-page-cta a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.about-page-cta a i {
  margin-left: 1rem;
}

@media (max-width: 991px) {
  .about-page-cta a {
    width: 100%;
    padding: .75rem 3rem;
    color: #0b1632;
    font-size: .9rem;
    font-weight: 500;
  }
}

/* cart bag section */

.cart-bag-section {
  padding-top: calc(103px + 2rem);
  padding-bottom: 4rem;
}

.cart-bag-section h2 {
  margin-bottom: 1rem;
  color: #0b1632;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.cart-bag-section input,
.cart-bag-section textarea,
.cart-bag-section select {
  padding: .75rem 1.25rem;
  font-size: .9rem;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none !important;
  outline: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section input.input-error,
.cart-bag-section textarea.input-error,
.cart-bag-section select.input-error {
  border-color: #f3a59d !important;
}

.cart-bag-section input.post-code-input {
  padding-left: 1rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.cart-bag-section textarea {
  resize: none;
}

.cart-bag-section select {
  width: 100%;
  padding-right: 2.5rem;
  color: #6c757d;
  background-image: url("../images/chevron-down.svg");
  background-size: 14px;
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cart-bag-section select.color {
  color: #0b1632;
}

.cart-bag-section input:hover,
.cart-bag-section textarea:hover,
.cart-bag-section select:hover {
  border: 2px solid #ddd;
}

.cart-bag-section input:focus,
.cart-bag-section textarea:focus,
.cart-bag-section select:focus {
  border: 2px solid #b0e4e2;
}

.cart-bag-section .two-columns {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cart-bag-section .post-code-span {
  padding: .75rem 1.25rem;
  padding-right: .5rem;
  font-size: .9rem;
  font-weight: 500;
  background-color: #ddd;
  border: 2px solid #ddd;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}

.cart-bag-section .free-delivery {
  display: inline-block;
  margin-bottom: 0;
  padding: .6rem 1rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  background-color: #ffa646;
  border-radius: 15px;
}

.cart-bag-section .free-delivery i {
  margin-right: .6rem;
  font-size: 1.25rem;
  vertical-align: -2px;
}

.cart-bag-section .delivery-terminals {
  margin-top: 1rem;
  border: 2px solid #ddd;
  border-radius: 30px;
}

.cart-bag-section .delivery-terminals .individual-terminal {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid #ddd;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section .delivery-terminals .individual-terminal.active {
  background-color: #ebf8f8 !important;
  border-bottom: 2px solid #ddd;
}

.cart-bag-section .delivery-terminals .individual-terminal:hover {
  background-color: #f7f7f7;
}

.cart-bag-section .delivery-terminals .individual-terminal:first-child {
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}

.cart-bag-section .delivery-terminals .individual-terminal:last-child {
  border-bottom: 0;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
}

.cart-bag-section .delivery-terminals .individual-terminal .choice {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-bag-section .delivery-terminals .individual-terminal .choice h3 {
  flex: 1 1 calc(100% - 100px - 2rem);
  width: calc(100% - 100px - 2rem);
  max-width: calc(100% - 100px - 2rem);
  min-width: calc(100% - 100px - 2rem);
  margin-bottom: 0;
  font-size: 1rem;
}

.cart-bag-section .delivery-terminals .individual-terminal .choice h3 span.desc {
  font-size: .8rem;
  font-weight: 400;
}

.cart-bag-section .delivery-terminals .individual-terminal .choice p span.old-price {
  position: relative;
}

.cart-bag-section .delivery-terminals .individual-terminal .choice p span.old-price:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #0b1632;
}

.cart-bag-section .delivery-terminals .individual-terminal .choice > span {
  flex: 1 1 18px;
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
}

.cart-bag-section .delivery-terminals .individual-terminal .description {
  display: none;
  padding-top: .75rem;
  padding-left: 2rem;
  padding-right: 76px;
}

.cart-bag-section .delivery-terminals .individual-terminal.active .description {
  display: block;
}

.cart-bag-section .delivery-terminals .individual-terminal.active .choice > span {
  border: 6px solid #0b1632;
}

.cart-bag-section .delivery-terminals .individual-terminal p {
  flex: 1 1 82px;
  width: 82px;
  min-width: 82px;
  max-width: 82px;
  margin-bottom: 0;
  text-align: right;
  font-weight: 500;
}

.cart-bag-section .cart-bag-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 2rem;
  background-color: #eee;
  border-radius: 20px;
}

.cart-bag-section .cart-bag-content .cart-bag-content-none {
  margin-bottom: 0;
  text-align: center;
  font-size: .9rem;
}

.cart-bag-section .cart-bag-content .individual-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-bag-section .cart-bag-content .individual-product img {
  flex: 1 1 135px;
  width: 135px;
  max-width: 135px;
  min-width: 135px;
  height: auto;
  border-radius: 10px;
}

.cart-bag-section .cart-bag-content .individual-product p {
  flex: 1 1 auto;
  margin-bottom: 0;
  padding-left: 2rem;
  text-align: center;
  font-size: .9rem;
}

.cart-bag-section .cart-bag-content .individual-product p.price {
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}

.cart-bag-section .cart-bag-content .individual-product span {
  flex: 1 1 24px;
  width: 24px;
  max-width: 24px;
  min-width: 24px;
  cursor: pointer;
}

.cart-bag-section .cart-bag-content .individual-product span i {
  color: #e74c3c;
  font-size: 1.5rem;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section .cart-bag-content .individual-product span:hover i {
  opacity: .8;
}

.cart-bag-section .cart-bag-content .individual-product .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 105px;
  width: 105px;
  min-width: 105px;
  max-width: 105px;
  height: 45px;
  margin-left: 2rem;
}

.cart-bag-section .cart-bag-content .individual-product .quantity input {
  flex: 1 1 60px;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
  height: 45px;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
  background-color: #fff;
  border: 2px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  outline: 0;
}

.cart-bag-section .cart-bag-content .individual-product .quantity span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 35px;
  width: 35px;
  min-width: 35px;
  max-width: 35px;
  height: 45px;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #ddd;
  border: 2px solid #ddd;
  cursor: pointer;
  user-select: none;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section .cart-bag-content .individual-product .quantity span:hover {
  background-color: #ccc;
  border: 2px solid #ccc;
}

.cart-bag-section .cart-bag-content .individual-product .quantity span:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.cart-bag-section .cart-bag-content .individual-product .quantity span:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.cart-bag-section .discount-code {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  justify-content: space-between;
  width: 100%;
}

.cart-bag-section .discount-code input {
  padding: .7rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none;
  width: 100%;
  outline: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section .discount-code input:disabled {
  text-transform: uppercase;
}

.cart-bag-section .discount-code input:focus {
  border: 2px solid #b0e4e2;
  border-right: 0;
}

.cart-bag-section .discount-code a {
  padding: .7rem 3rem;
  color: #0b1632;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 2px solid #b0e4e2;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 2px solid #b0e4e2;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section .discount-code a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 2px solid #0b1632;
}

.cart-bag-section .discount-code a.remove {
  color: #fff !important;
  background-color: #e74c3c !important;
  border-color: #e74c3c !important;
}

.cart-bag-section .discount-code a.remove:hover {
  opacity: .8;
}

.cart-bag-section .total-sums {
  margin-bottom: 0;
}

.cart-bag-section .total-sums > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-bag-section .total-sums > div p {
  margin-bottom: 0.5rem;
  font-size: .9rem;
}

.cart-bag-section .total-sums > div h2 {
  margin-bottom: 0;
  margin-top: .5rem;
}

.cart-bag-section a {
  position: relative;
  padding: 1rem 4rem;
  color: #0b1632;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 50px;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section a:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.cart-bag-section a i {
  margin-left: 1rem;
}

.cart-bag-section .cart-bag-name-tag-div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  padding-left: 5px;
  padding-right: 5px;
  gap: 0;
  width: 135px;
  height: 59px;
  color: #000;
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 10px;
}

.cart-bag-section .cart-bag-name-tag-div .cart-bag-name-tag-symbol-div {
  flex: 1;
}

.cart-bag-section .cart-bag-name-tag-div .cart-bag-name-tag-symbol-div img {
  height: 40px;
  width: auto;
  max-width: none;
  min-width: auto;
}

.cart-bag-section .cart-bag-name-tag-text {
  flex: 2;
  text-align: center;
}

.cart-bag-section .cart-bag-name-tag-text .primary-line,
.cart-bag-section .cart-bag-name-tag-text .secondary-line {
  display: block;
  width: auto !important;
  max-width: none !important;
  min-width: auto !important;
  cursor: default !important;
}

.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 42px;
  margin-bottom: 0;
  margin-top: 1.5rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 400;
  line-height: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container span.title {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: .9rem;
}

.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: 2px solid #ddd;
  border-radius: 10px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.checkbox-container .checkmark.input-error {
  border-color: #f3a59d !important;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: transparent;
  border: 2px solid #ddd;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #ebf8f8;
  border: 2px solid #ddd;
}

.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 14px;
  border: solid #0b1632;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cart-bag-section .terminal-choice-div {
  width: 100%;
  padding: .75rem 1.25rem;
  padding-right: 2.75rem;
  color: #6c757d;
  font-size: .9rem;
  background-color: #fff;
  background-image: url("../images/chevron-down.svg");
  background-size: 14px;
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
  border: 2px solid #ddd;
  border-radius: 40px;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cart-bag-section .terminal-choice-div.color {
  color: #0b1632 !important;
}

.cart-bag-section .terminal-choice-div.input-error {
  border-color: #f3a59d !important;
}

.cart-bag-section .terminal-choice-div:hover {
  border: 2px solid #b0e4e2;
}

.venipak-modal {
  display: none;
  width: 770px;
  max-width: 770px;
  min-width: 770px;
  border-radius: 20px;
}

.venipak-modal h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 1.5rem;
  color: #0b1632;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.5rem;
}

.venipak-modal p {
  margin-bottom: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.venipak-modal .select-search-container input {
  width: 100%;
  padding: 1rem 1rem;
  color: #0b1632;
  font-size: .9rem;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  outline: 0;
}

.venipak-modal .select-search-container select {
  width: 100%;
  height: 240px;
  padding: .5rem .5rem;
  color: #0b1632;
  font-size: .9rem;
  background-image: none;
  border: 2px solid #ddd;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 0;
  outline: 0;
}

.venipak-modal .select-search-container select option {
  padding: 8px;
  cursor: pointer;
}

.venipak-modal .select-search-container select option:checked,
.venipak-modal .select-search-container select option:active {
  background-color: rgb(179, 215, 255) !important;
  border-radius: 10px;
}

.venipak-terminals-div-div input {
  width: 100%;
}

.venipak-terminals-div-div .venipak-terminals-div {
  margin-top: 1.5rem;
  height: 222px;
  overflow-y: scroll;
}

.venipak-terminals-div-div .venipak-terminals-div::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.venipak-terminals-div-div .venipak-terminals-div::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 10px;
  cursor: pointer;
  width: calc(100% - 12px);
  margin-left: 6px;
  margin-right: 6px;
}

.venipak-terminals-div-div .venipak-terminals-div::-webkit-scrollbar-thumb {
  background: #b0e4e2;
  border-radius: 10px;
  cursor: pointer;
}

.venipak-terminals-div-div .venipak-terminals-div .individual-venipak-terminal {
  margin-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #b0e4e2;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.venipak-terminals-div-div .venipak-terminals-div .individual-venipak-terminal:has(+ .individual-venipak-terminal.active) {
  border-bottom: 1px solid transparent;
}

.venipak-terminals-div-div .venipak-terminals-div .individual-venipak-terminal.active {
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 15px;
  background-color: #b0e4e2;
}

.venipak-terminals-div-div .venipak-terminals-div .individual-venipak-terminal:last-child {
  border-bottom: 0;
}

.venipak-terminals-div-div .venipak-terminals-div .individual-venipak-terminal p {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  text-align: left;
  font-size: .85rem;
  font-weight: 500;
}

.venipak-terminals-div-div .venipak-terminals-div .individual-venipak-terminal p:last-child {
  font-weight: 600;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cart-bag-section .cart-bag-content .individual-product p {
    padding-left: 1rem;
  }

  .cart-bag-section .cart-bag-content .individual-product p.price {
    padding-right: 0;
  }

  .cart-bag-section .cart-bag-content .individual-product .quantity {
    margin-left: 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-bag-section .cart-bag-content .individual-product .quantity {
    flex: 1 1 auto;
    width: auto;
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 991px) {
  .cart-bag-section {
    padding-top: calc(85px + 1.5rem);
    padding-bottom: 3rem;
  }

  .cart-bag-section .two-columns {
    flex-direction: column;
  }

  .cart-bag-section .free-delivery {
    width: 100%;
    font-size: .85rem;
  }

  .cart-bag-section .free-delivery i {
    display: none;
  }

  .cart-bag-section .delivery-terminals .individual-terminal h3 span {
    display: block;
    margin-top: 4px;
  }

  .cart-bag-section .delivery-terminals .individual-terminal .description {
    padding-right: 0;
  }

  .cart-bag-section .cart-bag-content .individual-product {
    display: block;
    text-align: center;
  }

  .cart-bag-section .cart-bag-content .individual-product p {
    padding-left: 0;
    padding-top: .5rem;
  }

  .cart-bag-section .cart-bag-content .individual-product p.price {
    margin-bottom: .75rem;
    padding-right: 0;
  }

  .cart-bag-section .cart-bag-content .individual-product img {
    margin-bottom: .5rem;
  }

  .cart-bag-section .cart-bag-content .individual-product .quantity {
    margin: auto;
    margin-top: 1rem;
    margin-bottom: .5rem;
  }

  .cart-bag-section .cart-bag-name-tag-div {
    margin-left: auto;
    margin-right: auto;
  }

  .cart-bag-section a {
    width: 100%;
    padding: .75rem 3rem;
    color: #0b1632;
    font-size: .9rem;
    font-weight: 500;
  }

  .checkbox-container {
    line-height: 20px;
  }

  .cart-bag-section .discount-code a {
    padding-left: 0;
    padding-right: 0;
  }

  .venipak-modal {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .checkbox-container span.title {
    padding-top: 0;
    line-height: 1.3rem;
  }

  .venipak-modal .select-search-container select {
    height: 56px;
    padding: 1rem .5rem;
  }
}

/* blog page cover */

.blog-page-cover h1 {
  width: 90%;
  font-size: 2rem;
  line-height: 2.75rem;
}

.blog-page-cover .cover-div {
  background-size: 105%;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.blog-page-cover .cover-div:hover {
  background-size: 110%;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-page-cover .cover-div {
    background-size: 150%;
  }

  .blog-page-cover .cover-div:hover {
    background-size: 155%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .blog-page-cover h1 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }

  .blog-page-cover .cover-div {
    background-size: 150%;
  }

  .blog-page-cover .cover-div:hover {
    background-size: 155%;
  }
}

@media (max-width: 991px) {
  .blog-page-cover h1 {
    width: 100%;
    font-size: 1.75rem;
    line-height: 2.5rem;
  }

  .blog-page-cover p {
    width: 100%;
  }

  .blog-page-cover .cover-div {
    height: 240px;
    background-size: 110%;
  }

  .blog-page-cover .cover-div:hover {
    background-size: 115%;
  }
}

/* blog page blog */

.blog-page-blog {
  padding-top: 0;
}

/* individual entry page cover */

.individual-entry-page-cover {
  padding-bottom: 112px;
}

.individual-entry-page-cover p b {
  font-weight: 600;
}

.individual-entry-page-cover .cover-div {
  cursor: default;
}

.individual-entry-page-cover .cover-div:hover {
  background-size: 105%;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .individual-entry-page-cover .cover-div {
    background-size: 150%;
  }

  .individual-entry-page-cover .cover-div:hover {
    background-size: 150%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .individual-entry-page-cover .cover-div {
    background-size: 150%;
  }

  .individual-entry-page-cover .cover-div:hover {
    background-size: 150%;
  }
}

@media (max-width: 991px) {
  .individual-entry-page-cover {
    padding-bottom: 3rem;
  }

  .individual-entry-page-cover .cover-div {
    height: 240px;
    background-size: 110%;
  }

  .individual-entry-page-cover .cover-div:hover {
    background-size: 110%;
  }
}

/* individual entry page content */

.individual-entry-page-content h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.individual-entry-page-content h3 span {
  margin-right: 1rem;
}

.individual-entry-page-content b {
  font-weight: 600;
}

.individual-entry-page-content .quote-div img {
  right: 27%;
}

.individual-entry-page-content .description ul,
.individual-entry-page-content .description ol {
  padding-inline-start: 18px;
  margin-bottom: 1.5rem;
  color: #333333;
  font-size: .95rem;
  line-height: 1.6;
}

.individual-entry-page-content .description ul li::marker {
  color: #ffa646;
}

.individual-entry-page-content .btn-facebook {
  position: relative;
  margin-top: 2rem;
  padding: .75rem 3rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: #4267b2;
  border: 1px solid #4267b2;
  border-radius: 30px;
  z-index: 1;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-entry-page-content .btn-facebook:hover {
  color: #fff;
  background-color: #4267b2;
  border: 1px solid #4267b2;
  opacity: .7;
}

.individual-entry-page-content .btn-facebook i {
  margin-right: .75rem;
}

.individual-entry-page-content .similar-entries h2 {
  margin-top: -1.25rem;
  margin-bottom: 1.75rem;
}

.individual-entry-page-content .similar-entries > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.individual-entry-page-content .similar-entries .individual-blog-entry {
  cursor: pointer;
}

.individual-entry-page-content .similar-entries .individual-blog-entry h3 {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65rem;
}

.individual-entry-page-content .similar-entries .individual-blog-entry div {
  width: 100%;
  height: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.individual-entry-page-content .similar-entries .individual-blog-entry:hover div {
  background-size: 105%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .individual-entry-page-content .similar-entries .individual-blog-entry div {
    height: 180px;
  }

  .individual-entry-page-content .quote-div img {
    right: 20%;
  }
}

@media (max-width: 991px) {
  .individual-entry-page-content {
    padding-bottom: 3rem;
  }

  .individual-entry-page-content .similar-entries h2 {
    margin-top: 3rem;
  }

  .individual-entry-page-content .similar-entries > div {
    gap: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .individual-entry-page-content .similar-entries .individual-blog-entry {
    flex: 1 1 calc(50% - .75rem);
    width: calc(50% - .75rem);
    max-width: calc(50% - .75rem);
    min-width: calc(50% - .75rem);
  }

  .individual-entry-page-content .similar-entries .individual-blog-entry div {
    height: 140px;
  }
}

/* faq page cover */

.faq-page-cover a {
  padding: 0;
  color: #333 !important;
  font-size: .95rem;
  font-weight: 400;
  text-transform: none;
  text-decoration: underline;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.faq-page-cover a:hover {
  text-decoration: none;
}

/* faq page faq */

.faq-page-faq {
  padding-top: 0;
}

.faq-page-faq .technical-information-div h2 {
  margin-bottom: 2rem;
}

.faq-page-faq .technical-information-div p,
.faq-page-faq .technical-information-div ul {
  font-size: .95rem;
  line-height: 1.6;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .faq-page-faq .technical-information-div {
    display: block;
    margin-top: 0;
  }

  .faq-page-faq .technical-information-div > div {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

/* information page content */

.information-page-content {
  padding-top: 170px;
  padding-bottom: 3rem;
}

.information-page-content h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}

.information-page-content p {
  width: 100%;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: .95rem;
  line-height: 1.6rem;
}

.information-page-content ul {
  width: 100%;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: .95rem;
  line-height: 1.6rem;
}

.information-page-content ul li::marker {
  color: #ffa646;
}

.information-page-content a {
  padding: 0;
  color: #333 !important;
  font-size: .95rem;
  font-weight: 400;
  text-transform: none;
  text-decoration: underline;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.information-page-content a:hover {
  text-decoration: none;
}

.information-page-content table {
  width: 100%;
  margin-bottom: 1.5rem;
  color: #333;
  font-size: .95rem;
  line-height: 1.6rem;
  background-color: #f5f5f5;
  border-spacing: 0;
}

.information-page-content table td {
  padding: 1rem;
  border: 2px solid #fff;
}

.information-page-content table tr:first-child td {
  text-align: center;
  font-weight: 600;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .information-page-content h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991px) {
  .information-page-content {
    padding-top: 134px;
    padding-bottom: 4.5rem;
  }
}

/* cookie bar */

.cookies-bar {
  position: fixed;
  display: flex;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem 2rem;
  align-items: center;
  z-index: 9999;
  background-color: #eee;
  color: #333;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.5;
}

.cookies-bar div:nth-child(1) {
  flex: 3.75;
  padding-right: 2rem;
}

.cookies-bar div:nth-child(2) {
  flex: 1;
}

.cookies-bar a {
  color: #333;
  text-decoration: underline;
}

.cookies-bar a:hover {
  color: #333;
  text-decoration: none;
}

.cookies-bar button {
  position: relative;
  display: block;
  width: 100%;
  padding: .75rem 3rem;
  text-align: center;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 0;
  font-size: .9rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #0b1632;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.cookies-bar button:hover {
  background-color: #0b1632;
  border: 1px solid #0b1632;
  color: #fff;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .cookies-bar div:nth-child(1) {
    flex: 3;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cookies-bar div:nth-child(1) {
    flex: 2;
  }
}

@media (max-width: 991px) {
  .cookies-bar {
    display: block;
    text-align: center;
  }

  .cookies-bar div:nth-child(2) {
    margin-top: 1.5rem;
  }
}

.orders-for-venipak-section a.btn {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: .5rem 1.5rem;
  color: #0b1632;
  font-size: 1.05rem;
  font-weight: 500;
  background-color: #b0e4e2;
  border: 1px solid #b0e4e2;
  border-radius: 30px;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.orders-for-venipak-section a.btn i {
  margin-right: .6rem;
}

.orders-for-venipak-section a.btn.btn-venipak {
  color: #fff;
  background-color: #9339f2;
  border: 1px solid #9339f2;
  opacity: 1;
}

.orders-for-venipak-section a.btn.btn-venipak.hidden {
  pointer-events: none;
  cursor: default;
  opacity: .5;
  -webkit-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.orders-for-venipak-section a.btn-venipak i {
  margin-left: .6rem;
  margin-right: 0;
}

.orders-for-venipak-section a.btn:hover {
  color: #fff;
  background-color: #0b1632;
  border: 1px solid #0b1632;
}

.orders-for-venipak-section .checkbox-container {
  height: 20px;
}

.orders-for-venipak-section .checkbox-container .checkmark {
  border: 2px solid #9339f2;
}

.orders-for-venipak-section .checkbox-container:hover input ~ .checkmark {
  border: 2px solid #9339f2;
}

.orders-for-venipak-section .checkbox-container input:checked ~ .checkmark {
  border: 2px solid #9339f2;
}

.orders-for-venipak-section .checkbox-container .checkmark:after {
  border-color: #9339f2;
}

.orders-for-venipak-section .orders-for-venipak-div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.orders-for-venipak-section .orders-for-venipak-div .individual-order-for-venipak {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: #eee;
  border-radius: 20px;
}

.orders-for-venipak-section .orders-for-venipak-div .individual-order-for-venipak .title {
  margin-bottom: 0;
  color: #333;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.5rem;
}

















/* */
