:root {

  /* colors */
  /* --clr-navy: #21234a;
  --clr-navy72: #21234ab8;
  --clr-navy50: rgba(33, 35, 74, 0.5);
  --clr-navy24: rgba(33, 35, 74, 0.24); */

  --clr-blush: #ffcdd2;
  --clr-blush50: #FFE5E8;
  --clr-blush24: #FFF3F4;

  --clr-red: #ff4632;
  --clr-red72: rgba(255, 70, 50, 0.72);
  --clr-red50: rgba(255, 70, 50, 0.5);
  --clr-red24: rgba(255, 70, 50, 0.24);

  --clr-yellow: #fee100;

  --clr-forrest: #145041;
  --clr-forrest-hover: rgba(20, 80, 65, 0.72);

  --clr-white: #ffffff;

  --clr-btn-primary: var(--clr-red);
  --clr-btn-primary-hover: var(--clr-red72);

  --clr-link-primary: var(--clr-red);
  --clr-link-primary-hover: var(--clr-red72);

  --clr-link-secondary: var(--clr-yellow);

  --clr-input: var(--clr-navy);

  --font-heading: "founders-grotesk-x-cnd-bold";
  --font-paragraph: "founders-grotesk-regular";

  --border-radius: 12px;
  --border-radius-small:8px;

  --clr-navy: #000;
  --clr-navy72: rgba(0, 0, 0, 0.72);
  --clr-navy50: rgba(0, 0, 0, 0.5);
  --clr-navy24: rgba(0, 0, 0, 0.24);
  --clr-navy10: rgba(0,0,0,0.10);

}


/* 3rd Party libraries  */
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: var(--clr-yellow);
  color: var(--clr-navy);
}

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C""\201D""\2018""\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  border-radius: var(--border-radius-small);
}

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

.btn {
  display: inline-block;
  padding: 8px 10px 10px 10px;
  width: 300px;
  height: 48px;
  border: 0;
  background-color: var(--clr-btn-primary);
  color: var(--clr-white);
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  font-size: 1.5rem !important;
  font-family: var(--font-heading);
  line-height: 28px;
  cursor: pointer;
  transition: background-color 150ms ease;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  appearance: none;

  text-transform: capitalize;

  border-radius: var(--border-radius-small);
}

.btn:hover,
.btn:active {
  outline: 0;
  border: 0;
  background-color: var(--clr-btn-primary-hover);
  box-shadow: none;
  color: #fff;
}

.btn:focus {
  color: var(--clr-blush);
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn:disabled:hover {
  background-color: var(--clr-btn-primary-hover);
}

.btn.bdr {
  border: 1px solid var(--clr-btn-primary);
  background-color: transparent;
  color: var(--clr-btn-primary);
}

.btn.bdr:hover,
.btn.bdr:focus {
  border-color: var(--clr-btn-primary-hover);
  /* background-color: var(--clr-btn-primary); */
  color: var(--clr-btn-primary-hover);
}

.btn.btn-green {
  background-color: var(--clr-forrest);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
}

legend {
  margin-bottom: 0.375rem;
  padding: 0;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: normal;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

input,
select,
textarea {
  display: block;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea {
  box-sizing: border-box;
  margin-bottom: 0.75rem;
  padding: 13px 20px 11px;
  width: 100%;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
  color: var(--clr-navy);
  font-size: 0.75rem;
  appearance: none;

  border-radius: var(--border-radius-small);
}

input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input:not([type]):focus,
textarea:focus {
  outline: 0;
  border-color: var(--clr-forrest);
  box-shadow: none;
}

input[type="color"]:disabled,
input[type="date"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="email"]:disabled,
input[type="month"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="time"]:disabled,
input[type="url"]:disabled,
input[type="week"]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}

input[type="color"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="email"]::placeholder,
input[type="month"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="time"]::placeholder,
input[type="url"]::placeholder,
input[type="week"]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: var(--clr-navy24);
}

textarea {
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.375rem;
}

[type="file"] {
  margin-bottom: 0.75rem;
  width: 100%;
}

select {
  margin-bottom: 0.75rem;
  width: 100%;
}

.intl-tel-input {
  display: block;
  outline: 0;
  border: 0;
  box-shadow: none;
}

.intl-tel-input input {
  padding-left: 0 !important;
}

.intl-tel-input .flag-container {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  padding: 0 0 10px;
  width: 75px;
  border-bottom: 1px solid var(--clr-navy);
}

.intl-tel-input .flag-container:hover .selected-flag {
  outline: 0;
  border: 0;
  background-color: transparent !important;
  box-shadow: none;
}

.intl-tel-input .flag-container:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.intl-tel-input .flag-container .selected-flag {
  padding: 0;
  width: 100%;
}

.intl-tel-input .flag-container .selected-flag:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}

.intl-tel-input .flag-container .selected-flag .iti-flag {
  position: relative;
  padding-right: 10.22px;
  width: 100%;
  height: auto;
  background: transparent;
  box-shadow: none;
  color: var(--clr-navy);
  text-align: center;
  font-size: 1rem;
}

.intl-tel-input .flag-container .selected-flag .iti-arrow {
  position: static;
  top: 6px;
  right: 0;
  margin-top: 0;
  border: 0;
}

.intl-tel-input .flag-container .selected-flag .iti-arrow:after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  color: var(--clr-navy);
  content: "\25BE";
  font-size: 1rem;
}

.intl-tel-input .country-list {
  max-height: 120px;
  width: 220px;
  font-size: 1rem;
}

/* FORM STARTING STYLINGS
------------------------------- */
.group {
  position: relative;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 70px;
  width: 100%;
}

.group .error {
  position: absolute;
  bottom: -20px;
  color: var(--clr-red);
  font-size: 0.6875rem;
}

.group input[type="text"],
.group input[type="email"],
.group input[type="number"],
.group input[type="password"],
.group textarea {
  display: block;
  margin-bottom: 0;
  padding: 0 0 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--clr-navy50);
  border-radius: 0;
  box-shadow: none;
  color: var(--clr-navy);
  font-size: 1rem;
}

.group input[type="text"]:disabled,
.group input[type="email"]:disabled,
.group input[type="number"]:disabled,
.group input[type="password"]:disabled,
.group textarea:disabled {
  color: var(--clr-navy50);
}

.group input[type="text"]:disabled~label,
.group input[type="email"]:disabled~label,
.group input[type="number"]:disabled~label,
.group input[type="password"]:disabled~label,
.group textarea:disabled~label {
  color: var(--clr-navy50) !important;
}

.group input[type="text"]:disabled+.bar:before,
.group input[type="text"]:disabled+.bar:after,
.group input[type="email"]:disabled+.bar:before,
.group input[type="email"]:disabled+.bar:after,
.group input[type="number"]:disabled+.bar:before,
.group input[type="number"]:disabled+.bar:after,
.group input[type="password"]:disabled+.bar:before,
.group input[type="password"]:disabled+.bar:after,
.group textarea:disabled+.bar:before,
.group textarea:disabled+.bar:after {
  background: var(--clr-navy50);
}

.group input:focus,
.group textarea:focus {
  outline: none;
}

.group input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 24px;
  opacity: 0;
  cursor: pointer;
}

.group input[type="radio"]+label {
  position: relative;
  top: 0 !important;
  padding-right: 16px;
  padding-left: 31px;
  color: var(--clr-navy);
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.group input[type="radio"]+label:before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--clr-navy);
  content: '';
}

.group input[type="radio"]:checked+label:before {
  background-color: var(--clr-navy);
  font-size: 1rem;
}

.group input[type="radio"]:last-child+label {
  padding-right: 0;
}

.group input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}

.group input[type="checkbox"]+label {
  position: relative;
  top: 0 !important;
  color: var(--clr-navy);
  font-size: 1rem;
  font-family: var(--font-paragraph);
  cursor: pointer;
}

.group input[type="checkbox"]+label .chkbox {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-right: 6px;
  width: 23px;
  height: 23px;
  border-radius: 4px;
  background-color: #FBFBFB;
  box-shadow: inset 0 0 3px 0 #21234a80;
  vertical-align: top;
  text-align: center;
}

.group input[type="checkbox"]+label .chkbox .icon {
  visibility: hidden;
  width: 13px;
  height: 10px;
  color: var(--clr-navy);
  opacity: 0;
  fill: currentColor;
}

.group input[type="checkbox"]:checked+label .chkbox .icon {
  visibility: visible;
  opacity: 1;
}

.group input[type="checkbox"]:last-child+label {
  padding-right: 0;
}

.group:nth-last-child(2) {
  margin-top: 40px;
  margin-bottom: 40px;
}

.group:first-child {
  margin-top: 0;
}

.group:last-child {
  margin-bottom: 0;
}

.group.group-inline {
  margin-bottom: 0;
  padding-bottom: 33px;
}

.group.group-inline .group-option {
  position: relative;
  display: inline-block;
  margin-top: 10px !important;
  margin-bottom: 0;
  width: auto;
}

.group.group-inline .group-option label {
  position: relative;
  margin-bottom: 0;
  font-size: 1rem;
}

/* LABEL
======================================= */
.group label {
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  transition: 0.2s ease all;
  position: absolute;
  bottom: 10px;
  left: 0;
  margin-bottom: 0;
  color: var(--clr-navy72);
  font-weight: normal;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  pointer-events: none;
}

.group-phone label {
  left: 87px;
}

.group-phone.active label {
  bottom: 45px;
  left: 0;
  color: var(--clr-navy);
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.group-phone input[type="text"] {
  width: -webkit-calc(100% - 93px);
  width: calc(100% - 93px);
  display: inline-block;
}

.group input[type="checkbox"]+label {
  pointer-events: auto;
}

/* ACTIVE STATE */
.group input[type="text"]:focus~label,
.group input[type="email"]:focus~label,
.group input[type="number"]:focus~label,
.group input[type="password"]:focus~label,
.group input.valid~label,
.group textarea:focus~label,
.group textarea.valid~label {
  bottom: 45px;
  color: var(--clr-input);
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.group-phone input:focus~label,
.group-phone input.valid~label,
.group-phone textarea:focus~label,
.group-phone textarea.valid~label {
  top: -44px;
  left: 0;
  color: var(--clr-input);

}

/* BOTTOM BARS
================================= */
.group .bar {
  position: relative;
  display: block;
  width: 100%;
}

.group .bar:before,
.group .bar:after {
  -webkit-transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  transition: 0.2s ease all;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--clr-input);
  content: "";
}

.group .bar:before {
  left: 50%;
}

.group .bar:after {
  right: 50%;
}

/* ACTIVE STATE
--------------------------------------*/
.group input:focus~.bar:before,
.group textarea:focus~.bar:before,
.group input:focus~.bar:after,
.group textarea:focus~.bar:after {
  width: 50%;
}

.group input.valid~.bar:before,
.group textarea.valid~.bar:before,
.group input.valid~.bar:after,
.group textarea.valid~.bar:after {
  width: 50%;
}

.group input:disabled,
.group textarea:disabled {
  border-bottom-style: dotted;
  background: transparent;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 0.75rem 0;
  table-layout: fixed;
  width: 100%;
}

th {
  border-bottom: 1px solid var(--clr-navy24);
  font-weight: 600;
  padding: 0.75rem 0;
  text-align: left;
}

td {
  border-bottom: 1px solid #ddd;
  padding: 0.75rem 0;
}

tr,
td,
th {
  vertical-align: middle;
}

body {
  color: var(--clr-navy);
  font-weight: normal;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  color: var(--clr-navy);
  font-weight: normal;
  font-size: 1.333em;
  font-family: var(--font-heading);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;

  text-transform: capitalize;
}

p {
  margin: 0 0 0.75rem;
}

a {
  outline: 0;
  color: var(--clr-link-primary);
  text-decoration: none;
  transition: color 150ms ease;
}

a:active,
a:focus,
a:hover {
  outline: 0;
  color: var(--clr-link-primary-hover);
}

hr {
  margin: 1.5rem 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #ddd;
  border-left: 0;
}

html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

.header {
  background-color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .header.header-left {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .header.header-left .logo {
    margin-left: 20px;
  }
}

.header .header-wrapper {
  position: relative;
}

.header .header-wrapper.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  background-color: #fff;
}

.header .logo {
  margin: 21px 0 13px;
  height: 45px;
}

@media screen and (max-width: 767px) {
  .header .logo {
    margin: 18px 0 10px;
    height: 35px;
  }
}

.header .location-block {
  position: absolute;
  top: 29px;
  left: 30px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .header .location-block {
    top: 77px;
    left: 20px;
  }
}

@media screen and (max-width: 500px) {
  .header .location-block {
    top: 77px;
    left: 20px;
    display: block;
  }
}

.header .location-block .location-img {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 26px;
  height: 13px;
  vertical-align: top;
}

.header .location-block .location-text {
    display: inline-block;
    /* margin-top: 3px; */
    margin-left: 3px;
    color: var(--clr-navy);
    vertical-align: top;
    font-size: 1rem;
    max-width: 250px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.header .menu-block {
  position: relative;
  height: 42px;
  border-top: 1px solid rgba(33, 35, 74, 0.16);
  border-bottom: 1px solid rgba(33, 35, 74, 0.16);
  text-align: left;
}

@media screen and (min-width: 501px) and (max-width: 767px) {
  .header .menu-block {
    height: 41px;
  }
}

@media screen and (max-width: 500px) {
  .header .menu-block {
    height: 80px;
    padding-top: 40px;
  }
}

.header .right-block {
  position: absolute;
  top: 29px;
  right: 30px;
  text-align: right;
}

@media screen and (min-width: 501px) and (max-width: 767px) {
  .header .right-block {
    position: relative;
    top: 0;
    right: 0;
    height: 40px;
    padding-top: 6px;
    padding-right: 20px;
    border-top: 1px solid rgba(218, 218, 218, 0.45);
    text-align: right;
  }
}

@media screen and (max-width: 500px) {
  .header .right-block {
    position: absolute;
    top: 22px;
    display: inline-block;
    right: auto;
    left: 15px;
  }
}

.header .right-block .lang-block {
  display: inline-block;
  color: var(--clr-navy);
}

.header .right-block .lang-block:hover {
  color: var(--clr-link-primary);
}

.header .right-block .lang-block .icon {
  display: none;
  width: 13px;
  height: 19px;
  color: var(--clr-navy72);
}

@media screen and (max-width: 500px) {
  .header .right-block .lang-block span {
    display: none;
  }

  .header .right-block .lang-block .icon {
    margin-top: 3px;
    display: inline-block;
  }
}

.header .my-account-dropdown {
  display: inline-block;
  vertical-align: top;
}

.header .my-account-dropdown.not-logged-in-dropdown .dropdown-menu {
  width: 215px;
}

.header .my-account-dropdown .dropdown-button {
  margin-top: 3px;
  padding-right: 50px;
  border: 0;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.header .my-account-dropdown .dropdown-button:after {
  right: 30px;
  font-size: 0.95rem;
}

.header .my-account-dropdown .dropdown-button .icon {
  display: none;
  position: relative;
  width: 19px;
  height: 19px;
  color: var(--clr-navy72);
}

@media screen and (max-width: 500px) {
  .header .my-account-dropdown .dropdown-button {
    padding-right: 30px;
  }

  .header .my-account-dropdown .dropdown-button .icon {
    display: inline-block;
  }

  .header .my-account-dropdown .dropdown-button span {
    display: none;
  }

  .header .my-account-dropdown .dropdown-button:after {
    right: 10px;
    content: "";
  }
}

@media screen and (max-width: 420px) {
  .header .my-account-dropdown .dropdown-button {
    padding-right: 15px;
  }
}

.header .my-account-dropdown .dropdown-menu {
  top: 27px;
  right: 29px;
  padding: 0;
  width: 170px;
  /* border-radius: 0; */
  font-size: 1rem;
}

.header .my-account-dropdown .dropdown-menu li {
  padding: 11px 12px 10px;
}

.header .my-account-dropdown .dropdown-menu li .btn {
  padding: 0;
  width: 100%;
  height: 36px;
  color: #fff;
  line-height: 36px;
}

.header .my-account-dropdown .dropdown-menu li .login-text {
  display: inline-block;
  padding-top: 8px;
  font-size: 1rem;
}

.header .my-account-dropdown .dropdown-menu li .login-text a {
  color: var(--clr-link-primary);
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 500px) {
  .header .my-account-dropdown .dropdown-menu {
    top: 27px;
    left: 0;
    padding: 0;
  }
}

.header .banner {
  position: relative;
  width: 100%;
  height: 575px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .header .banner {
    height: 450px;
  }
}

.header .banner .banner-img {
  margin: 0 auto;
  width: auto;
  height: 100%;
}

.header .banner .banner-content {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}

.header .banner .banner-content .banner-heading {
  margin: 0 30px;
  color: var(--clr-navy);
  font-size: 3.75rem;
  font-family: var(--font-heading);
  line-height: 60px;
}

@media screen and (max-width: 850px) {
  .header .banner .banner-content .banner-heading {
    margin: 0 20px;
    font-size: 3.15rem;
    line-height: 50px;
  }
}

@media screen and (max-width: 600px) {
  .header .banner .banner-content .banner-heading {
    font-size: 2.5rem;
    line-height: 40px;
  }
}

@media screen and (max-width: 450px) {
  .header .banner .banner-content .banner-heading {
    font-size: 1.5rem;
    line-height: 35px;
  }
}

.header .banner .banner-content .btn {
  margin-top: 40px;
}

@media screen and (max-width: 450px) {
  .header .banner .banner-content .btn {
    width: 200px;
    margin-top: 10px;
    padding: 3px;
    height: 35px;
  }
}

@media screen and (max-width: 340px) {
  .header .banner .banner-content .btn {
    width: 240px;
  }
}

.header .header-meta {
  position: relative;
  float: right;
  margin-right: 30px;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .header .header-meta {
    margin-right: 20px;
  }
}

@media screen and (max-width: 500px) {
  .header .header-meta {
    position: absolute;
    top: -55px;
    right: 20px;
    margin-right: 0;
  }
}

.header .header-meta .cart .cart-no {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-left: 7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--clr-red);
  color: var(--clr-blush);
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  font-weight: bold;
  line-height: 20px;
}

.header .header-meta .icon-cart {
  position: relative;
  top: 5px;
  width: 22px;
  height: 22px;
  color: var(--clr-navy72);
}

.header .header-meta .icon-search {
  position: relative;
  top: 4px;
  z-index: 2;
  width: 19px;
  height: 19px;

  color: var(--clr-navy72);
}

.header .header-meta .search {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.header .header-meta .search:hover .icon-search {
  color: var(--clr-navy);
}

.header .header-meta .search #search-box {
  -webkit-transition: 0.8s ease width;
  -moz-transition: 0.8s ease width;
  transition: 0.8s ease width;
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 0;
  padding-top: 9px;
  padding-bottom: 8px;
  width: 0;
  border-bottom: 1px solid var(--clr-navy);
  background-color: transparent;
  color: var(--clr-navy);
  text-indent: 12px;
  font-size: 1rem;
  opacity: 0;
}

.header .header-meta .search.expanded {
  width: 300px;
}

@media screen and (max-width: 767px) {
  .header .header-meta .search.expanded {
    width: 260px;
  }
}

.header .header-meta .search.expanded #search-box {
  -webkit-transition: 0.8s ease width;
  -moz-transition: 0.8s ease width;
  transition: 0.8s ease width;
  width: 100%;
  opacity: 1;
}

.header .header-meta .icon-download-app {
  position: relative;
  top: 4px;
  width: 12px;
  height: 19px;
}

.header .header-meta .item {
  padding-right: 32px;
}

@media screen and (max-width: 767px) {
  .header .header-meta .item {
    padding-right: 25px;
  }
}

@media screen and (max-width: 420px) {
  .header .header-meta .item {
    padding-right: 15px;
  }
}

.header .header-meta .item:last-child {
  padding-right: 0;
}

.header .header-meta .item.app {
  color: var(--clr-navy);
}

@media screen and (max-width: 767px) {
  .header .header-meta .item.app {
    display: none !important;
  }
}

.header .header-meta .item.app span {
  padding-left: 4px;
  font-size: 1rem;
}

.header .header-meta .item.app:hover {
  color: var(--clr-link-primary);
}

.header.headerv1 {
  padding-right: 20px;
  padding-left: 20px;
  min-height: 79px;
  box-shadow: 0 2px 4px 0 rgba(204, 204, 204, 0.5);
  line-height: 75px;
}

@media screen and (max-width: 767px) {
  .header.headerv1 {
    text-align: center;
  }

  .header.headerv1 .logo {
    display: none;
  }
}

.header.headerv1 .location-block {
  top: 0;
  left: 0;
  float: left;
}

.header.headerv1 .right-block {
  top: 0;
  right: 0;
  float: right;
}

.header.headerv1 .logo-text {
  text-transform: capitalize;
  font-size: 1.75rem;
  font-family: var(--font-heading);
}

.header.header-box-shadow .menu-block {
  box-shadow: 0 2px 4px 0 rgba(204, 204, 204, 0.5);
}

body.grey-bg {
  background-color: #F9F9F9;
}

.wrapper {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper::after {
  clear: both;
  content: "";
  display: block;
}

svg {
  fill: currentColor;
}

.center-align {
  text-align: center;
}

.nav-overlay {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 3;
  display: none;
  margin-top: 152px;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 1, 20, 0.3);
}

.show {
  display: block;
}

.container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.container::after {
  clear: both;
  content: "";
  display: block;
}

.container-page {
  margin-right: auto;
  margin-left: auto;
  max-width: 960px;
}

.container-small {
  margin-right: auto;
  margin-left: auto;
  max-width: 760px;
}

.row {
  display: block;
}

.row::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 1200px) {
  .row {
    padding: 0 20px;
  }
}

.disableScroll {
  overflow: hidden;
}

.block {
  margin: 20px 0;
  background-color: #FFFFFF;
  box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.5);
}

.block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .block:first-child {
    margin-top: 0;
  }
}

.block .block-header {
  position: relative;
  padding: 20px 30px;
  border-bottom: 1px solid #DADADA;
}

.block .block-header::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .block .block-header {
    padding: 20px;
  }
}

.block .block-header.medium {
  font-size: 1.5em;
  font-family: var(--font-heading);
}

.block .block-header .edit-profile {
  position: absolute;
  right: 40px;
  width: 20px;
  height: 20px;
  color: var(--clr-navy50);
}

.block .block-header .edit-profile:hover {
  color: var(--clr-link-primary);
}

.block .block-header .edit-profile .icon {
  width: 100%;
  height: 100%;
}

.block .block-content {
  padding: 20px 30px;
}

@media screen and (max-width: 767px) {
  .block .block-content {
    padding: 20px;
  }
}

.block-last {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .block-last {
    margin-top: 20px;
  }
}

.button-block {
  text-align: center;
  clear: both;
}

.button-block::after {
  clear: both;
  content: "";
  display: block;
}

.back-icon {
  position: absolute;
  top: 48px;
  left: 30px;
  width: 104px;
  height: 13px;
  color: var(--clr-navy);
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 767px) {
  .back-icon {
    display: none;
  }
}

.back-icon .icon {
  margin-right: 12px;
  width: 24px;
  height: 13px;
}

.back-icon span {
  position: relative;
  top: -1px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .back-icon span {
    display: none;
  }
}

.title-back-block {
  position: relative;
  display: none;
  margin: 0 auto;
  padding-bottom: 20px;
  max-width: 560px;
  text-align: center;
  font-size: 20px;
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 767px) {
  .title-back-block {
    display: block;
  }
}

.title-back-block .back-icon {
  top: 0;
  left: 0;
  display: block;
  width: 45px;
}

.title-back-block .back-icon .icon {
  margin-right: 0;
}

.product-banner {
  position: relative;
  background-color: #cccccc;
  text-align: center;
}

.product-banner .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 27, 86, 0.4);
}

.product-banner .content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .product-banner .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 580px) {
  .product-banner .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.product-banner .content h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 5.625rem;
}

@media screen and (max-width: 580px) {
  .product-banner .content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .product-banner .content h1 {
    font-size: 3.75rem;
  }
}

.product-banner .content .rating .icon {
  width: 26px;
  height: 26px;
}

@media screen and (max-width: 580px) {
  .product-banner .content .rating .icon {
    width: 18px;
    height: 18px;
  }
}

@media screen and (max-width: 767px) {
  .product-banner .content .rating .icon {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    width: 260px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 580px) {
  .btn {
    width: 240px;
  }
}

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

ul.delivery-address.delivery-address-col {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  ul.delivery-address.delivery-address-col {
    margin-top: 0;
  }
}

ul.delivery-address.delivery-address-col li {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 48.4375%;
  margin-bottom: 40px;
  min-height: 262px;
}

ul.delivery-address.delivery-address-col li:last-child {
  margin-right: 0;
}

ul.delivery-address.delivery-address-col li:nth-child(2n) {
  margin-right: 0;
}

ul.delivery-address.delivery-address-col li:nth-child(2n+1) {
  clear: left;
}

@media screen and (max-width: 767px) {
  ul.delivery-address.delivery-address-col li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  ul.delivery-address.delivery-address-col li:last-child {
    margin-right: 0;
  }
}

ul.delivery-address.delivery-address-col li.add-new {
  position: relative;
  padding: 0;
  text-align: center;
}

ul.delivery-address.delivery-address-col li.add-new .add-new-block {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}

ul.delivery-address.delivery-address-col li.add-new .add-new-block .icon {
  width: 44px;
  height: 44px;
}

ul.delivery-address.delivery-address-col li.add-new .add-new-btn {
  display: block;
  margin-top: 20px;
  color: var(--clr-red);
  font-size: 1.125rem;
  font-family: var(--font-paragraph);
}

ul.delivery-address.delivery-address-sel li:hover {
  border: 1px solid var(--clr-red);
}

ul.delivery-address.delivery-address-sel li.active {
  border: 1px solid var(--clr-red);
}

ul.delivery-address.delivery-address-sel li.active .content-block .selected-address {
  display: block;
}

ul.delivery-address.delivery-address-sel li:last-child {
  margin-bottom: 0;
}

ul.delivery-address.payment-types::after {
  clear: both;
  content: "";
  display: block;
}

ul.delivery-address.payment-types li {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 40px;
}

ul.delivery-address.payment-types li:last-child {
  margin-right: 0;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  ul.delivery-address.payment-types li {
    padding: 20px 20px;
  }
}

@media screen and (max-width: 767px) {
  ul.delivery-address.payment-types li {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 580px) {
  ul.delivery-address.payment-types li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  ul.delivery-address.payment-types li:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  ul.delivery-address.payment-types li:last-child {
    margin-bottom: 20px;
  }
}

ul.delivery-address .edit-delete-block {
  position: absolute;
  right: 0;
}

ul.delivery-address .edit-delete-block .icon {
  width: 16px;
  height: 16px;
}

ul.delivery-address .edit-delete-block .icon.icon-edit {
  margin-right: 20px;
}

ul.delivery-address .edit-delete-block a {
  color: var(--clr-navy);
}

ul.delivery-address .edit-delete-block a:hover {
  color: var(--clr-navy);
}

ul.delivery-address li {
  margin-bottom: 30px;
  padding: 35px 40px;
  border: 1px solid #F9F9F9;
  background-color: #F9F9F9;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  ul.delivery-address li {
    margin-bottom: 20px;
    padding: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  ul.delivery-address li {
    padding-right: 25px;
    padding-left: 25px;
  }
}

ul.delivery-address li .content-block {
  position: relative;
  position: relative;
  font-size: 1rem;
}

ul.delivery-address li .content-block .selected-address {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--clr-red);
  text-align: center;
}

ul.delivery-address li .content-block .selected-address .icon {
  position: relative;
  top: -3px;
  width: 10px;
  height: 8px;
  color: #fff;
}

ul.delivery-address li .content-block .name {
  padding-bottom: 16px;
  font-size: 1.333rem;
  font-family: var(--font-heading);
}

ul.delivery-address li .content-block .address {
  padding: 5px 0 10px;
}

ul.delivery-address li .content-block .city {
  padding-bottom: 5px;
  font-size: 1.125rem;
}

ul.delivery-address li .content-block .phone-text {
  font-size: 1.125rem;
}

ul.delivery-address li .content-block .establishment span {
  position: relative;
  top: -2px;
}

ul.delivery-address li .content-block .establishment .icon {
  margin-right: 4px;
  width: 18px;
  height: 18px;
}

.save-filters {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 999999;
  display: none;
  padding: 12px 20px;
  width: 210px;
  width: auto;
  height: auto;
  line-height: 1;
}

.title-wrapper-block {
  position: relative;
  padding-bottom: 20px;
}

.title-wrapper-block.no-padding {
  padding-bottom: 0;
}

.title-wrapper-block.large {
  padding-bottom: 27px;
}

.title-wrapper-block .title {
  margin-bottom: 0;
  text-align: left;
  font-size: 2.5rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .title {
    font-size: 1.875rem;
  }
}

.title-wrapper-block .title.title-small {
  font-size: 2rem;
  font-family: var(--font-heading);
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .title.title-small {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 390px) {
  .title-wrapper-block .title.title-small {
    position: relative;
    top: -5px;
    line-height: 1.4;
  }
}

.title-wrapper-block .title.title-medium {
  font-size: 1.75rem;
}

.title-wrapper-block .title.title-border-bottom {
  padding-bottom: 20px;
  border-bottom: 1px solid #DADADA;
}

.title-wrapper-block .call-to-action-button {
  position: relative;
  top: -10px;
  float: right;
  padding: 5px 15px 4px;
  background-color: var(--clr-btn-primary);
  color: var(--clr-white);
  font-size: 1rem;
  font-family: var(--font-heading);

  border-radius: var(--border-radius-small);
}

.title-wrapper-block .call-to-action-button:hover {
  background-color: var(--clr-btn-primary-hover);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .call-to-action-button {
    font-size: 1rem;
  }
}

.title-wrapper-block .call-to-action-button .icon {
  margin-left: 8px;
  width: 24px;
  height: 13px;
}

.title-wrapper-block .call-to-action-button.btn-medium {
  top: -5px;
  padding: 0;
  width: 210px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  font-size: 1.5rem;

  border-radius: var(--border-radius);
}

.title-wrapper-block .text {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--clr-navy);
  font-size: 0.75rem;
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 480px) {
  .title-wrapper-block .text {
    display: none;
  }
}

.title-wrapper-block .text .icon {
  position: relative;
  top: 2px;
  margin-right: 8px;
  width: 12px;
  height: 16px;
}

.title-wrapper-block .sort-dropdown {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown {
    position: relative;
    bottom: 0;
    display: block;
    margin-top: 20px;
  }

  .title-wrapper-block .sort-dropdown::after {
    clear: both;
    content: "";
    display: block;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-container {
  position: relative;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown .dropdown-container {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    display: block;
    float: left;
    margin-left: 10px;
    height: 35px;
    border: 1px solid var(--clr-navy);
    line-height: 35px;
  }
}

@media screen and (min-width: 768px) {
  .title-wrapper-block .sort-dropdown .dropdown-container .sort-mobile {
    display: none;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-container .sort-mobile .dropdown-mobile-text {
  width: 100%;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown .dropdown-container .dropdown-text {
    display: none;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-container .dropdown-mobile-text {
  font-size: 1rem;
}

.title-wrapper-block .sort-dropdown .dropdown-container .dropdown-mobile-text .icon {
  position: relative;
  top: 1px;
  margin-right: 8px;
  width: 15px;
  height: 15px;
}

.title-wrapper-block .sort-dropdown .filter {
  position: relative;
  display: none;
  float: left;
  width: 20px;
  height: 35px;
  line-height: 35px;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown .filter {
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    display: block;
    float: left;
    margin-right: 0;
    margin-right: 10px;
    border: 1px solid var(--clr-navy);
    cursor: pointer;
  }

  .title-wrapper-block .sort-dropdown .filter .icon {
    position: relative;
    top: 2px;
    margin-right: 8px;
  }
}

.title-wrapper-block .sort-dropdown .filter .filter-text {
  font-size: 1rem;
}

.title-wrapper-block .sort-dropdown .filter .icon {
  width: 15px;
  height: 15px;
  color: var(--clr-navy);
}

.title-wrapper-block .sort-dropdown span {
  position: relative;
  top: 7px;
  margin-right: 15px;
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown span {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
    margin-right: 0;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-button {
  padding: 0;
  padding-right: 10px;
  padding-left: 10px;
  width: 200px;
  height: 35px;
  border: 1px solid var(--clr-navy);
  border-radius: 0;
  background-color: transparent;
  text-align: left;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  line-height: 35px;

  border-radius: var(--border-radius-small);
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown .dropdown-button {
    width: 80%;
    opacity: 0;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-button a {
  color: var(--clr-navy);
}

.title-wrapper-block .sort-dropdown .dropdown-button:after {
  right: 10px;
  font-size: 0.95rem;
}

.title-wrapper-block .sort-dropdown .dropdown-menu {
  top: 34px;
  right: 22px;
  padding: 0;
  min-width: 200px;
  width: 200px;
  border-radius: 0;
  text-align: left;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown .dropdown-menu {
    min-width: auto;
    right: 0px;
    width: 100%;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-menu li {
  padding-right: 10px;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .title-wrapper-block .sort-dropdown .dropdown-menu li {
    line-height: 1.5;
  }
}

.title-wrapper-block .sort-dropdown .dropdown-menu a {
  color: var(--clr-navy);
}

.timeline {
  position: relative;
}

.timeline.order-placed li:first-child:after {
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-placed li:first-child:after {
    left: -7px;
  }
}

.timeline.order-shipped li:first-child:after {
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-shipped li:first-child:after {
    left: -7px;
  }
}

.timeline.order-shipped li:first-child:before {
  width: 100%;
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-shipped li:first-child:before {
    width: 3px;
    height: 100%;
  }
}

.timeline.order-shipped li:nth-child(2):after {
  background-color: var(--clr-red);
}

.timeline.order-shipped li:nth-child(2):before {
  /*width: 50%;*/
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-shipped li:nth-child(2):before {
    width: 3px;
    height: 100%;
    background-color: transparent;
  }
}

.timeline.order-delivery li:first-child:after {
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-delivery li:first-child:after {
    left: -7px;
  }
}

.timeline.order-delivery li:first-child:before {
  width: 100%;
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-delivery li:first-child:before {
    width: 3px;
    height: 100%;
  }
}

.timeline.order-delivery li:nth-child(2):after {
  background-color: var(--clr-red);
}

.timeline.order-delivery li:nth-child(2):before {
  width: 100%;
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-delivery li:nth-child(2):before {
    width: 3px;
    height: 100%;
  }
}

.timeline.order-delivery li:last-child:after {
  background-color: var(--clr-red);
}

.timeline.order-delivery li:last-child:before {
  width: 100%;
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline.order-delivery li:last-child:before {
    width: 3px;
    height: 100%;
  }
}

.timeline li {
  position: relative;
  display: inline-block;
  margin-left: -5px;
  width: 50%;
  height: 20px;
}

@media screen and (max-width: 767px) {
  .timeline li {
    margin-left: 0;
    width: 100%;
    height: 70px;
  }
}

.timeline li:first-child {
  margin-left: 0;
}

.timeline li:first-child .text {
  left: -50%;
}

@media screen and (max-width: 767px) {
  .timeline li:first-child .text {
    left: 30px;
  }
}

.timeline li:first-child .date-time-block {
  left: -50%;
}

@media screen and (max-width: 767px) {
  .timeline li:first-child .date-time-block {
    left: 30px;
  }
}

.timeline li:after {
  position: absolute;
  top: -7px;
  left: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D8D8D8;
  content: "";
}

@media screen and (max-width: 767px) {
  .timeline li:after {
    left: -7px;
  }
}

.timeline li:before {
  position: absolute;
  width: 100%;
  height: 3px;
  content: "";
}

@media screen and (max-width: 767px) {
  .timeline li:before {
    width: 3px;
    height: 100%;
  }
}

.timeline li.active:before {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--clr-red);
  content: "";
}

@media screen and (max-width: 767px) {
  .timeline li.active:before {
    width: 3px;
    height: 100%;
  }
}

.timeline li.active:after {
  background-color: var(--clr-red);
}

@media screen and (max-width: 767px) {
  .timeline li:last-child {
    height: 0px;
  }
}

.timeline li:last-child:after {
  right: -5px;
  left: auto;
}

@media screen and (max-width: 767px) {
  .timeline li:last-child:after {
    right: auto;
    left: -7px;
  }
}

.timeline li:last-child .text {
  right: -50%;
}

.timeline li:last-child .date-time-block {
  right: -50%;
}

.timeline li:nth-child(2):after {
  /*-webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      left: 50%;*/
}

@media screen and (max-width: 767px) {
  .timeline li:nth-child(2):after {
    /*left: 1px;*/
  }
}

.timeline li:nth-child(2).active:before {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .timeline li:nth-child(2).active:before {
    width: 3px;
  }
}

.timeline li .text {
  position: absolute;
  top: -47px;
  width: 100%;
  color: var(--clr-navy);
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .timeline li .text {
    position: relative;
    top: -13px;
    left: 30px;
    text-align: left;
  }
}

.timeline li .date-time-block {
  position: absolute;
  top: 26px;
  width: 100%;
  color: var(--clr-navy);
  text-align: center;
  font-size: 0.625rem;
}

@media screen and (max-width: 767px) {
  .timeline li .date-time-block {
    position: relative;
    top: -12px;
    left: 30px;
    text-align: left;
  }
}

.timeline li .date-time-block span {
  display: block;
}

.timeline li .date-time-block .time {
  padding-top: 4px;
}

.timeline:before {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #D8D8D8;
  content: "";
}

@media screen and (max-width: 767px) {
  .timeline:before {
    width: 3px;
    height: 70px;
  }
}

.rating .icon {
  margin-left: 2px;
  margin-right: 2px;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating .icon:last-child {
  margin-right: 0;
}

.rating .icon-star-full {
  color: var(--clr-yellow);
}

.rating .icon-star {
  color: #eeeeee;
}

.main-content {
  position: relative;
  padding: 40px 0 80px 0;
}

@media screen and (max-width: 767px) {
  .main-content {
    padding: 20px 0 20px 0;
  }
}

.main-content.main-content-top {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  .main-content.main-content-top {
    padding-top: 20px;
  }
}

.main-content.main-content-medium {
  padding: 40px 0 55px 0;
}

@media screen and (max-width: 767px) {
  .main-content.main-content-medium {
    padding: 20px 0 20px 0;
  }
}

.main-content.main-content-small {
  padding: 40px 0 40px 0;
}

@media screen and (max-width: 767px) {
  .main-content.main-content-small {
    padding: 20px 0 20px 0;
  }
}

.grey-content {
  background-color: #f9f9f9;
}

.white-section {
  background-color: #fff;
}

.white-section .product-block {
  padding: 45px 0 80px;
}

.white-section .product-block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .white-section .product-block {
    padding: 30px 0;
  }
}

.button {
  display: inline-block;
  padding: 13px 72px;
  background-color: var(--clr-forrest);
  box-shadow: 4px 2px 8px 0 rgba(0, 0, 0, 0.27);
  color: #fff;
  font-weight: 600;
  line-height: 22px;

  border-radius: var(--border-radius);
}

.button:hover {
  color: #fff;
}

.quantity-wrapper {
  display: none;
  font-family: var(--font-paragraph);
  font-size: 1.125rem;
}

.quantity-wrapper .quantity {
  display: inline-block;
  padding: 0;
  width: 34px;
  color: var(--clr-navy);
  text-align: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.quantity-wrapper span {
  display: inline-block;
}

.quantity-wrapper span.minus {
  position: relative;
  top: -4px;
  display: inline-block;
  margin-right: 20px;
  width: 10px;
  height: 30px;
  background-color: transparent;
}

.quantity-wrapper span.minus .minus-text {
  width: 100%;
  height: 2px;
  background-color: var(--clr-red);
}

.quantity-wrapper span.plus {
  margin-left: 20px;
}

ol.products.products-pattern li .price-wrapper {
  font-family: var(--font-paragraph);
  color: var(--clr-navy);
}

ol.products.products-pattern li:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

ol.products li {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

ol.products li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  ol.products li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  ol.products li:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 580px) {
  ol.products li {
    margin-bottom: 10px;
  }

  ol.products li:nth-last-child(2) {
    margin-bottom: 20px;
  }
}

ol.products li:hover .favorite {
  opacity: 1;
}

ol.products li:hover .title-block {
  bottom: 0;
  opacity: 1;
  color: var(--clr-navy);
}

ol.products li.medium {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
}

ol.products li.medium:last-child {
  margin-right: 0;
}

@media screen and (max-width: 580px) {
  ol.products li.medium {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
  }

  ol.products li.medium:last-child {
    margin-right: 0;
  }

  ol.products li.medium:first-child {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  ol.products li.medium:first-child:last-child {
    margin-right: 0;
  }
}

ol.products li.medium:nth-child(3):nth-child(3n) {
  margin-right: 0;
}

ol.products li.medium:nth-child(3):nth-child(3n+1) {
  clear: left;
}

ol.products li.small {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 22.65625%;

  border-radius: var(--border-radius  );
}

ol.products li.small:last-child {
  margin-right: 0;
}

@media screen and (max-width: 580px) {
  ol.products li.small {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
  }

  ol.products li.small:last-child {
    margin-right: 0;
  }
}

ol.products li img {
  -webkit-transition: 0.8s ease all;
  -moz-transition: 0.8s ease all;
  transition: 0.8s ease all;
  display: block;
}

ol.products li .product-title {
  padding-top: 20px;
  padding-right: 6px;
  color: var(--clr-navy);
  font-size: 1rem;
}

ol.products li .price-wrapper {
  float: right;
  font-family: var(--font-heading);
  /* font-size: 1.5rem; */
  /* line-height: 1.5rem; */

  /* background-color: red !important; */
}

.product-block li .price-wrapper {
  font-size: 1.5rem ;
  line-height: 1.5rem ;
}

ol.products li .shop-name {
  padding-top: 6px;
  font-size: 1rem;
}

ol.products li .favorite {
  position: absolute;
  top: 27px;
  right: 27px;
  opacity: 0;
  cursor: pointer;
}

@media screen and (min-width: 581px) and (max-width: 992px) {
  ol.products li .favorite {
    top: 13px;
    right: 13px;
  }
}

@media screen and (max-width: 580px) {
  ol.products li .favorite {
    top: 13px;
    right: 13px;
  }
}

ol.products li .favorite.favorite-sel {
  cursor: pointer;
}

ol.products li .favorite.active {
  opacity: 1;
}

ol.products li .favorite .icon {
  width: 20px;
  height: 20px;
  color: var(--clr-navy);
}

ol.products li .favorite .icon-heart-filled {
  display: none;
}

ol.products li .favorite.active .icon-heart-filled {
  display: block;
}

ol.products li .favorite.active .icon-like {
  display: none;
}

ol.products li .title-block {
  position: absolute;
  bottom: -57px;
  padding: 15px 20px 10px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.87) 14.28%, #FFFFFF 100%);
  /* background-color: var(--clr-forrest); */
  color: #fff;
  font-size: 1rem;
  opacity: 0;
  transition: bottom 150ms ease;
}

@media screen and (min-width: 581px) and (max-width: 992px) {
  ol.products li .title-block {
    padding: 8px;
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 580px) {
  ol.products li .title-block {
    padding: 8px;
    font-size: 0.625rem;
  }
}

ol.products li .title-block .product-title {
  padding-top: 0;
  font-size: 1rem;
}

@media screen and (min-width: 581px) and (max-width: 992px) {
  ol.products li .title-block .product-title {
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 580px) {
  ol.products li .title-block .product-title {
    font-size: 0.625rem;
  }
}

ol.products li .title-block .product-title.add-cart-title {
  text-align: center;
  font-size: 1rem;
}

ol.products li .title-block a {
  color: var(--clr-navy);
}

ol.products li .title-block a:hover {
  color: var(--clr-red);
}

ol.products li .pr-wrapper {
  position: relative;
}

ol.products li .pr-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

ol.products li .pr-wrapper .overlay-text {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

ol.products li.out-of-stock .overlay {
  display: block;
}

/*@media screen and (max-width: 580px) {
  ol.products.products-pattern li:nth-child(5) {
    margin-right: 0; } }*/

.section {
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .section {
    padding-bottom: 60px;
  }
}

.section .title-wrapper {
  text-align: center;
}

.section .title-wrapper .icon {
  position: relative;
  top: 3px;
  margin-right: 8px;
  width: 31px;
  height: 30px;
}

.section .title-wrapper h2 {
  display: inline-block;
  margin-top: 64px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: capitalize;
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  .section .title-wrapper h2 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 340px) {
  .section.shop-section .btn {
    width: 240px;
  }
}

@media screen and (max-width: 340px) {
  .section.instagram-section .btn {
    width: 240px;
  }
}

.section.partner-section {
  background-position: center;
  background-repeat: no-repeat;
}

.section.partner-section .content-text {
  margin: 0 auto;
  /* padding-bottom: 40px; */
  max-width: 760px;
  color: var(--clr-navy);
  text-align: center;
  font-size: 1.5rem;
  line-height: 32px;
}

.section.partner-section .button-block .btn {
  margin-right: 20px;
}

@media screen and (max-width: 700px) {
  .section.partner-section .button-block .btn {
    display: block;
    margin: 0 auto;
  }
}

.section.partner-section .button-block .btn:last-child {
  margin-right: 0;
}

@media screen and (max-width: 700px) {
  .section.partner-section .button-block .btn:last-child {
    display: block;
    margin-top: 20px;
    margin-right: auto;
  }
}

ol.shops li {
  margin-bottom: 25px;
}

ol.shops li img {
  display: block;
}

ol.shops li .title-block {
  position: relative;
  z-index: 1;
  margin: -30px 20px 0;
  min-height: 60px;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  text-align: center;

  border-radius: var(--border-radius);
}

ol.shops li .title-block h3 {
  margin-bottom: 0;
  padding: 8px 0 10px;
  color: var(--clr-navy);
  font-size: 1.5rem;
  line-height: 1rem;
}

ol.shops li .title-block h3 a {
  color: var(--clr-navy72);
}

.section.shop-section ol.shops li .title-block h3 {
  line-height: 175%;
}

ol.shops.shop-layout1 li {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
}

ol.shops.shop-layout1 li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  ol.shops.shop-layout1 li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  ol.shops.shop-layout1 li:last-child {
    margin-right: 0;
  }
}

ol.shops.shop-layout1 li:nth-child(3n) {
  margin-right: 0;
}

ol.shops.shop-layout1 li:nth-child(3n+1) {
  clear: left;
}

ol.instagram li {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 22.65625%;
  margin-bottom: 40px;
}

ol.instagram li:last-child {
  margin-right: 0;
}

ol.instagram li:nth-child(4n) {
  margin-right: 0;
}

ol.instagram li:nth-child(4n+1) {
  clear: left;
}

@media screen and (max-width: 767px) {
  ol.instagram li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
  }

  ol.instagram li:last-child {
    margin-right: 0;
  }

  ol.instagram li:nth-child(2n) {
    margin-right: 0;
  }

  ol.instagram li:nth-child(2n+1) {
    clear: left;
  }
}

@media screen and (max-width: 580px) {
  ol.instagram li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  ol.instagram li:last-child {
    margin-right: 0;
  }

  ol.instagram li:nth-child(1n) {
    margin-right: 0;
  }

  ol.instagram li:nth-child(1n+1) {
    clear: left;
  }
}

ol.instagram li img {
  display: block;
}

.stats-block {
  position: relative;
  height: 311px;
}

@media screen and (max-width: 767px) {
  .stats-block {
    height: auto;
  }
}

.stats-block .flower-item {
  position: absolute;
  top: -50px;
  left: 0;
  width: auto;
}

@media screen and (max-width: 767px) {
  .stats-block .flower-item {
    top: -80px;
    left: -20px;
    height: 259px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .stats-block .flower-item {
    height: 70%;
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  .stats-block .flower-item {
    height: 90%;
  }
}

.stats-block .flower-item-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
}

@media screen and (max-width: 767px) {
  .stats-block .flower-item-2 {
    height: 206px;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .stats-block .flower-item-2 {
    height: 80%;
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  .stats-block .flower-item-2 {
    height: 100%;
  }
}

@media screen and (min-width:1200px) {

  .stats-block .flower-item,
  .stats-block .flower-item-2 {
    bottom: 0;
    top: auto;
  }
}

.stats-block .cork-item {
  position: absolute;
  top: -60px;
  right: 30%;
  width: 75px;
  height: 103px;
}

@media screen and (max-width: 767px) {
  .stats-block .cork-item {
    top: 190px;
    right: 17px;
    width: 52px;
    height: 61px;
  }
}

.stats-block .stat-item {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 22.65625%;
  padding-top: 120px;
  text-align: center;
}

.stats-block .stat-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .stats-block .stat-item {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    padding-top: 80px;
  }

  .stats-block .stat-item:last-child {
    margin-right: 0;
  }

  .stats-block .stat-item:last-child {
    padding-bottom: 80px;
  }
}

.stats-block .stat-item:first-child {
  margin-left: 12.89063%;
}

@media screen and (max-width: 767px) {
  .stats-block .stat-item:first-child {
    margin-left: 0%;
  }
}

.stats-block .stat-item .no {
  color: var(--clr-navy);
  font-size: 4rem;
  font-family: var(--font-heading);
  line-height: 60px;
}

@media screen and (max-width: 767px) {
  .stats-block .stat-item .no {
    font-size: 3.125rem;
    line-height: 50px;
  }
}

.stats-block .stat-item .text {
  color: var(--clr-navy);
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .stats-block .stat-item .text {
    padding-top: 12px;
    font-size: 1rem;
  }
}

.empty-state {
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 100px;
  max-width: 300px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .empty-state {
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 1rem;
  }
}

.empty-state.medium-padding {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .empty-state.medium-padding {
    padding-top: 50px;
  }
}

.empty-state .icon {
  margin-bottom: 30px;
  width: 80px;
  height: 70px;
}

.empty-state .icon.icon-pollen {
  width: 80px;
  height: 80px;
}

.empty-state .icon.icon-no-result {
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
}

.empty-state .title {
  padding-bottom: 10px;
  font-size: 1.25rem;
  font-family: var(--font-paragraph);
  text-align: center;
}

.empty-state .description {
  padding: 0 10px 30px;
  color: var(--clr-navy);
  font-size: 1rem;
}

.empty-state .button-block .btn {
  width: 210px;
  font-family: var(--font-paragraph);
}

.touch ol.products li .title-block {
  bottom: 0;
  opacity: 1;
}

.nav-menu {
  float: left;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .nav-menu {
    margin-left: 20px;
  }
}

@media screen and (max-width: 500px) {
  .nav-menu {
    padding-left: 20px;
    margin-left: 0;
    display: block;
    width: 100%;
    border-top: 1px solid rgba(218, 218, 218, 0.45);
  }
}

.nav-menu>li {
  position: relative;
  display: inline-block;
  margin-right: 36px;
}

@media screen and (max-width: 480px) {
  .nav-menu>li {
    margin-right: 25px;
  }
}

.nav-menu>li:first-child .nav-more {
  left: -30px;
}

@media screen and (max-width: 767px) {
  .nav-menu>li:first-child .nav-more {
    left: 0;
  }
}

.nav-menu>li.small-nav .nav-more {
  left: -30px;
  width: 190px;
}

.nav-menu>li.medium-nav .nav-more {
  left: -30px;
  width: 770px;
}

.nav-menu>li.large-nav .nav-more {
  left: -30px;
  width: 1000px;
}

@media screen and (max-width: 767px) {

  .nav-menu>li.small-nav .nav-more,
  .nav-menu>li.medium-nav .nav-more,
  .nav-menu>li.large-nav .nav-more {
    left: 0;
    width: 100%;
  }
}

.nav-menu>li .nav-more {
  position: absolute;
  z-index: 999999999;
  display: none;
  padding: 40px;
  width: 960px;
  background-color: #F9F9F9;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
  .nav-menu>li .nav-more {
    position: fixed;
    padding: 20px;
    width: 100%;
    height: 70%;
    overflow: auto;
  }
}

@media screen and (min-width: 768px) {
  .nav-menu>li .nav-more:hover {
    display: block;
  }

  .nav-menu>li .nav-more:hover+.arrow-up {
    display: block;
  }
}

.nav-menu>li .nav-more a {
  font-size: 1rem;
  line-height: 1;
}

.nav-menu>li .nav-more .title {
  position: relative;
  padding-bottom: 4px;
  color: var(--clr-navy);
  font-size: 1rem;
}

.nav-menu>li .nav-more .title>a {
  color: var(--clr-navy);
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

.nav-menu>li .nav-more .nav-accordion-btn {
  position: absolute;
  right: 0;
  font-family: var(--font-paragraph);
}

@media screen and (min-width: 768px) {
  .nav-menu>li .nav-more .nav-accordion-btn {
    display: none;
  }
}

.nav-menu>li .nav-more .parent-item ul {
  float: left;
  width: 171px;
}

@media screen and (max-width: 767px) {
  .nav-menu>li .nav-more .parent-item ul {
    float: none;
    width: 100%;
  }
}

.nav-menu>li .nav-more .parent-item ul>li {
  display: block;
  padding: 3px 0;
}

@media screen and (max-width: 767px) {
  .nav-menu>li .nav-more .item {
    float: none;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .nav-menu>li .nav-more .sub-items {
    display: none;
    width: 100%;
  }

  .nav-menu>li .nav-more .sub-items li {
    padding-left: 10px !important;
  }

  .nav-menu>li .nav-more .sub-items li:last-child {
    padding-bottom: 10px;
  }
}

.nav-menu>li .arrow-up {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  top: 31px;
  left: 50%;
  display: none;
  pointer-events: none;
  border-width: 0 10px 9px 10px;
  border-style: solid;
  border-color: transparent transparent #F9F9F9 transparent;
}

.nav-menu>li a {
  padding-top: 9px;
  padding-bottom: 9px;
  color: var(--clr-navy72);
  font-size: 1.2rem;
  font-family: var(--font-paragraph);
  line-height: 40px;
}

@media screen and (min-width: 768px) {
  .nav-menu>li a:hover {
    color: var(--clr-red);
  }

  .nav-menu>li a:hover~.nav-more {
    display: block;
  }

  .nav-menu>li a:hover~.arrow-up {
    display: block;
  }
}

.nav-menu>li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.vertical-tabs-container.category-section {
  overflow: hidden;
}

.vertical-tabs-container.category-section::after {
  clear: both;
  content: "";
  display: block;
}

.vertical-tabs-container.category-section li {
  list-style: none;
}

.vertical-tabs-container.category-section .vertical-tabs {
  width: 100%;
  text-align: center;
}

.vertical-tabs-container.category-section .vertical-tabs::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 580px) {
  .vertical-tabs-container.category-section .vertical-tabs .vertical-tabs-inline {
    padding: 0;
  }
}

.vertical-tabs-container.category-section .vertical-tabs .vertical-tabs-inline .vertical-tab {
  display: inline-block;
}

@media screen and (max-width: 580px) {
  .vertical-tabs-container.category-section .vertical-tabs .vertical-tabs-inline .vertical-tab {
    float: left;
    width: 50%;
    font-size: 0.8125rem;
  }
}

.vertical-tabs-container.category-section .vertical-tab {
  position: relative;
  display: inline-block;
  margin-right: -4px;
  padding-top: 30px;
  padding-right: 5%;
  padding-bottom: 15px;
  padding-left: 5%;
  width: auto;
  color: var(--clr-navy50);
  font-size: 1.5rem;
  line-height: 22px;

  font-family: var(--font-heading);
}

@media screen and (max-width: 767px) {
  .vertical-tabs-container.category-section .vertical-tab {
    display: block;
    margin-right: 0;
    width: auto;
  }
}

@media screen and (max-width: 580px) {
    .vertical-tabs-container.category-section .vertical-tab {
        /*margin-top: 5px;*/
        padding-top: 20px;
    }
}

.vertical-tabs-container.category-section .vertical-tab.is-active {
  color: var(--clr-navy);
  font-family: var(--font-heading);
}

.vertical-tabs-container.category-section .vertical-tab.is-active:before {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 5px;
  background-color: var(--clr-red);
  content: '';

  border-radius: var(--border-radius);
}

.vertical-tabs-container.category-section .vertical-tab:focus {
  outline: none;
}

.vertical-tabs-container.category-section .vertical-tab-content-container {
  padding: 35px 0 40px;
  background-color: rgba(0,0,0,0.05);
}

.vertical-tabs-container.category-section .vertical-tab-content-container::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .vertical-tabs-container.category-section .vertical-tab-content-container {
    padding: 10px 0 20px;
  }
}

.vertical-tabs-container.category-section .vertical-tab-content-container.no-padding {
  padding: 0;
}

.vertical-tabs-container.category-section .vertical-tab-content {
  display: none;
  border: 0;
}

@media screen and (max-width: 340px) {
  .vertical-tabs-container.category-section .vertical-tab-content .btn {
    width: 240px;
  }
}

.vertical-tabs-container.category-section .vertical-tabs-mobile::after {
  clear: both;
  content: "";
  display: block;
}

.vertical-tabs-container.category-section .vertical-tabs-mobile .owl-wrapper::after,
.vertical-tabs-container.category-section .vertical-tabs-mobile .owl-wrapper-outer::after {
  clear: both;
  content: "";
  display: block;
}

.vertical-tabs-container.category-section .vertical-tabs-mobile .owl-nav,
.vertical-tabs-container.category-section .vertical-tabs-mobile .owl-dots {
  display: none;
}

.vertical-tabs-container.category-section .vertical-tabs-mobile .owl-item {
  float: left;
}

.faq .vertical-tabs-container {
  border: none;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq .vertical-tabs-container::after {
  clear: both;
  content: "";
  display: block;
}

.faq .vertical-tabs-container li {
  list-style: none;
}

.faq .vertical-tabs-container a {
  color: var(--clr-link-primary);
  text-decoration: none;
}

.faq .vertical-tabs-container .vertical-tabs {
  display: none;
}

@media screen and (min-width: 600px) {
  .faq .vertical-tabs-container .vertical-tabs {
    background-color: #fff;
    display: inline;
    float: left;
    height: 18.75em;
    width: 35%;
  }
}

@media screen and (min-width: 600px) {
  .faq .vertical-tabs-container .vertical-tab {
    border-bottom: none;
    display: block;
    font-weight: bold;
    margin-right: -1px;
    padding: 0.75rem 10px;
  }

  .faq .vertical-tabs-container .vertical-tab.is-active {
    background-color: #fff;
    margin-right: -1px;
  }
}

.faq .vertical-tabs-container a.vertical-tab-accordion-heading,
.faq .vertical-tabs-container a.vertical-tab {
  color: var(--clr-navy);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.faq .vertical-tabs-container a.vertical-tab-accordion-heading span,
.faq .vertical-tabs-container a.vertical-tab span {
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
  color: var(--clr-navy);
  padding-right: 20px;
  display: table-cell;
}

.faq .vertical-tabs-container a.vertical-tab-accordion-heading p,
.faq .vertical-tabs-container a.vertical-tab p {
  width: -webkit-calc((100% - 20px));
  width: calc((100% - 20px));
  display: table-cell;
  vertical-align: middle;
}

.faq .vertical-tabs-container .vertical-tab:focus {
  outline: none;
}

.faq .vertical-tabs-container .vertical-tab-content-container {
  display: block;
  margin: 0 auto;
}

.faq .vertical-tabs-container .vertical-tab-content-container a:focus {
  outline: none;
}

@media screen and (min-width: 600px) {
  .faq .vertical-tabs-container .vertical-tab-content-container {
    height: 18.75em;
    width: 65%;
    background-color: #fff;
    display: inline-block;
  }
}

.faq .vertical-tabs-container .vertical-tab-content {
  background-color: #fff;
  padding: 1.5rem 20px;
}

.faq .vertical-tabs-container .vertical-tab-content p {
  color: var(--clr-navy);
  font-size: 16px;
  line-height: 25px;
}

@media screen and (min-width: 600px) {
  .faq .vertical-tabs-container .vertical-tab-content {
    border: 0;
    display: none;
  }
}

.faq .vertical-tabs-container .vertical-tab-accordion-heading {
  background-color: #fff;
  border-top: 1px solid #ddd;
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding: 0.75rem 10px;
}

.faq .vertical-tabs-container .vertical-tab-accordion-heading:focus,
.faq .vertical-tabs-container .vertical-tab-accordion-heading:hover {
  color: var(--clr-link-primary-hover);
}

.faq .vertical-tabs-container .vertical-tab-accordion-heading:first-child {
  border-top: 0;
}

.faq .vertical-tabs-container .vertical-tab-accordion-heading.is-active {
  background: #fff;
  border-bottom: 0;
}

@media screen and (min-width: 600px) {
  .faq .vertical-tabs-container .vertical-tab-accordion-heading {
    display: none;
  }
}

.dropdown {
  line-height: 1.5;
}

.dropdown .dropdown-container {
  position: relative;
  display: inline-block;
  text-align: center;
}

.dropdown .dropdown-description {
  float: left;
  margin: 0;
  padding: 0 0.5em 0 1em;
  border-top: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  border-left: 1px solid #DADADA;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: var(--clr-navy);
  font-size: 0.7em;
  line-height: 40px;
}

@media screen and (min-width: 900px) {
  .dropdown .dropdown-description {
    font-size: 1em;
  }
}

.dropdown .dropdown-button {
  position: relative;
  float: right;
  margin: 0;
  padding: 0 2.5em 0 0.5em;
  border-top: 1px solid #DADADA;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.dropdown .dropdown-button a {
  color: var(--clr-navy);
}

.dropdown .dropdown-button::after {
  position: absolute;
  top: 0;
  right: 1em;
  display: block;
  color: var(--clr-navy);
  content: "\25BE";
}

.dropdown .dropdown-menu {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 99999;
  display: none;
  overflow: show;
  margin: 0;
  padding: 0;
  width: 100%;
  border: 1px solid #DADADA;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  color: var(--clr-navy);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease-in-out;

  border-radius: var(--border-radius);
}

.dropdown .dropdown-menu li {
  padding: 0.5em;
  border-bottom: 1px solid var(--clr-navy24);
  color: var(--clr-navy);
  list-style: none;
}

.dropdown .dropdown-menu li a {
  color: var(--clr-navy);
}

.dropdown .show-menu {
  display: block;
}

.modal label {
  margin-bottom: 0;
  cursor: pointer;
}

.modal label img {
  display: block;
  max-width: 300px;
  border-radius: 150px;
}

.modal .modal-state {
  display: none;
}

.modal .modal-trigger {
  padding: 0.8em 1em;
}

.modal .modal-fade-screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999999;
  visibility: hidden;
  padding-top: 0.6em;
  background-color: rgba(3, 1, 20, 0.3);
  text-align: left;
  opacity: 0;
  transition: opacity 0.25s ease;
}

@media screen and (min-width: 900px) {
  .modal .modal-fade-screen {
    padding-top: 10em;
  }
}

.modal .modal-fade-screen .modal-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.modal .modal-close {
  position: absolute;
  right: 1.5em;
  height: 1.5em;
  width: 1.5em;
  background: #fff;
  cursor: pointer;
}

.modal .modal-close::after,
.modal .modal-close::before {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 0;
  left: 50%;
  height: 1.5em;
  width: 0.15em;
  display: block;
  margin: -3px 0 0 -1px;
  background: #ddd;
  content: "";
  transform: rotate(45deg);
}

.modal .modal-close:hover::after,
.modal .modal-close:hover::before {
  background: #c4c4c4;
}

.modal .modal-close::before {
  transform: rotate(-45deg);
}

.modal .modal-inner {
  position: relative;
  overflow: auto;
  margin: auto;
  margin-top: 0;
  padding: 1.5em;
  max-height: 95%;
  width: 95%;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.3);
  transition: opacity 0.25s ease;

  border-radius: var(--border-radius);
}

@media screen and (min-width: 600px) {
  .modal .modal-inner {
    padding: 3em;
    max-height: 80%;
    width: 60%;
  }
}

@media screen and (min-width: 900px) {
  .modal .modal-inner {
    width: 50%;
  }
}

.modal .modal-inner h1 {
  color: var(--clr-navy);
  text-align: left;
  text-transform: capitalize;
}

.modal .modal-inner p {
  color: var(--clr-navy);
  line-height: 1.5;
}

.modal .modal-inner .modal-intro {
  margin-bottom: 1em;
}

.modal .modal-inner .modal-content {
  color: var(--clr-navy);
}

.modal .modal-inner a.cta {
  display: inline-block;
  margin-top: 1em;
  margin-right: 0.5em;
  color: #fff;
}

.modal .modal-inner a.cta:last-child {
  padding: 0 2em;
}

.modal .modal-state:checked+.modal-fade-screen {
  visibility: visible;
  opacity: 1;
}

.modal .modal-state:checked+.modal-fade-screen .modal-inner {
  top: 0.5em;
}

.modal-open {
  overflow: hidden;
}

.address-modal .modal-inner {
  padding: 0;
  width: 560px;
  border-radius: 0;
}

@media screen and (max-width: 580px) {
  .address-modal .modal-inner {
    width: 100%;
  }
}

.address-modal .checkout .checkout-block .checkout-content {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 100%;
}

.address-modal .checkout .checkout-block .checkout-content:last-child {
  margin-right: 0;
}

.address-modal .checkout .checkout-block .checkout-content .checkout-content-block {
  margin-bottom: 0;
  box-shadow: none;
}

.address-modal .group:nth-last-child(3) {
  margin-bottom: 70px;
}

.address-modal .modal-header {
  position: relative;
  padding: 20px 30px;
  border-bottom: 1px solid #DADADA;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

@media screen and (max-width: 767px) {
  .address-modal .modal-header {
    padding: 20px;
  }
}

.location-modal .modal-fade-screen {
  padding-top: 65px;
}

@media screen and (max-width: 767px) {
  .location-modal .modal-fade-screen {
    padding-top: 104px;
  }
}

.location-modal .modal-fade-screen:before {
  position: absolute;
  top: 64px;
  left: 49px;
  z-index: 2;
  width: 0;
  height: 0;
  border-width: 0 10px 9px 10px;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  content: '';
}

@media screen and (max-width: 767px) {
  .location-modal .modal-fade-screen:before {
    top: 103px;
  }
}

.location-modal .modal-inner {
  margin-left: 30px;
  padding: 40px;
  width: 420px;
  border-radius: 0;
}

@media screen and (max-width: 480px) {
  .location-modal .modal-inner {
    margin-left: 0;
    padding: 20px;
    width: 100%;
  }
}

.location-modal .modal-inner h5 {
  font-size: 1.375rem;
}

.location-modal .modal-inner .group-text input {
  width: 190px;
}

.location-modal .country-dropdown {
  display: inline-block;
  vertical-align: top;
}

.location-modal .country-dropdown .dropdown-button {
  margin-top: 0;
  padding-right: 15px;
  padding-left: 15px;
  width: 190px;
  height: 42px;
  border: 1px solid #DADADA;
  border-radius: 0;
  text-align: left;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  line-height: 42px;
}

.location-modal .country-dropdown .dropdown-button:after {
  right: 15px;
  font-size: 0.95rem;
}

.location-modal .country-dropdown .dropdown-button a {
  color: var(--clr-navy);
}

.location-modal .country-dropdown .dropdown-menu {
  top: 42px;
  right: 0;
  padding: 0;
  border-radius: 0;
  text-align: left;
  font-size: 1rem;
}

.location-modal .country-dropdown .dropdown-menu li {
  padding: 0.5em 15px;
}

.location-modal .country-dropdown .dropdown-menu a {
  color: var(--clr-navy);
}

.location-modal .group-text {
  margin-bottom: 15px;

  display: flex;
  align-items: center;
}

.location-modal .group-text input {
  padding: 10px 0;
  min-width: 190px;
  border-bottom: 1px solid #DADADA;
}

.location-modal .group-text input:focus {
  border-color: var(--clr-red);
}

.location-modal .group-text label {
  position: relative;
  /*top: 8px;*/
  font-size: 1rem;
}

.location-modal .group-text:first-child {
  margin-top: 20px;
}

.payment-failed-modal .modal-inner {
  padding: 40px 60px;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .payment-failed-modal .modal-inner {
    width: 560px;
  }
}

.payment-failed-modal .modal-inner h5 {
  margin-bottom: 15px;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.payment-failed-modal .modal-inner .description {
  padding-bottom: 25px;
  color: var(--clr-navy72);
  font-size: 1rem;
}

.payment-failed-modal .modal-inner .action-buttons .btn {
  float: left;
  width: 48%;
  font-size: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .payment-failed-modal .modal-inner .action-buttons .btn {
    display: block;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 210px;
  }
}

@media screen and (max-width: 767px) {
  .payment-failed-modal .modal-inner .action-buttons .btn {
    display: block;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 210px;
  }
}

.payment-failed-modal .modal-inner .action-buttons .btn:last-child {
  float: right;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .payment-failed-modal .modal-inner .action-buttons .btn:last-child {
    float: none;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .payment-failed-modal .modal-inner .action-buttons .btn:last-child {
    float: none;
    margin-bottom: 0;
  }
}

.product-wrapper {
  position: relative;
}

.product-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

.product_left {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 45.4375%;
}

.product_left:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .product_left {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .product_left:last-child {
    margin-right: 0;
  }
}

.product_left img {
  display: block;
  margin: 0 auto;

  border-radius: var(--border-radius);
}

.product_right {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 51.4375%;
}

.product_right:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .product_right {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-top: 30px;
  }

  .product_right:last-child {
    margin-right: 0;
  }
}

.product_right .no-reviews {
  position: relative;
  top: -4px;
  display: inline-block;
  padding-left: 4px;
  color: var(--clr-red);
  font-size: 1rem;
}

.product_right .product-title {
  margin-bottom: 16px;
  font-size: 2.5rem;
  line-height: 1.5625rem;
}

.product_right .shop-name {
  color: var(--clr-navy72);
  font-size: 1rem;
}

.product_right .shop-name a {
  font-family: var(--font-paragraph);
}

.product_right .rating {
  display: inline-block;
  margin-top: 31px;
}

.product_right .rating .icon {
  width: 18px;
  height: 18px;
}

.product_right .price-wrapper {
  margin-top: 40px;
  font-size: 2rem;
  font-family: var(--font-heading);
}

.product_right .product-desc {
  padding: 6px 0 10px;
  color: var(--clr-navy);
  font-size: 1rem;
}

.product_right .attributes {
  color: var(--clr-navy);
  font-size: 1rem;
}

.product_right .attributes .att-title:after {
  position: relative;
  top: -1px;
  padding: 0 10px;
  content: '|';
}

.product_right .attributes .att-title:last-child:after {
  padding: 0;
  content: '';
}

.product_right .addons {
  margin-top: 30px;
}

.product_right .addons::after {
  clear: both;
  content: "";
  display: block;
}

.product_right .addons li {
  position: relative;
}

.product_right .addons li input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.product_right .addons li input[type="checkbox"]:checked+label:before {
  background-color: var(--clr-link-primary);
}

.product_right .addons li label {
  color: var(--clr-navy);
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.product_right .addons li label span {
  float: left;
  padding-left: 31px;
}

.product_right .addons li label:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #FBFBFB;
  box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.5);
  content: '';
}

.product_right .bottom-block {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 48.4375%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.product_right .bottom-block:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .product_right .bottom-block {
    position: relative;
    margin-top: 40px;
    width: 100%;
  }
}

.product_right .bottom-block.rel-position {
  position: relative;
  margin-top: 40px;
  width: 100%;
}

.product_right .bottom-block .action-buttons .btn {
  display: inline-block;
  margin-right: 14px;
  width: 210px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .product_right .bottom-block .action-buttons .btn {
    width: 140px;
  }
}

@media screen and (max-width: 580px) {
  .product_right .bottom-block .action-buttons .btn {
    width: 140px;
  }
}

@media screen and (max-width: 580px) {
  .product_right .bottom-block .action-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 340px) {
  .product_right .bottom-block .action-buttons .btn {
    margin-bottom: 20px;
    width: 100%;
  }

  .product_right .bottom-block .action-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

.product_right .bottom-block .action-buttons .btn:last-child {
  margin-right: 0;
}

.product_right .bottom-block .delivery-block {
  margin-bottom: 40px;
  padding: 5px 0;
}

.product_right .bottom-block .delivery-block li {
  padding: 7px 0;
}

.product_right .bottom-block .delivery-block li .icon {
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
}

.product_right .bottom-block .delivery-block li .delivery-text {
  padding: 0 0 0 11px;
  width: 180px;
  color: var(--clr-navy);
  display: inline-block;
  font-size: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .product_right .bottom-block .delivery-block li .delivery-text {
    padding-right: 25px;
  }
}

@media screen and (max-width: 580px) {
  .product_right .bottom-block .delivery-block li .delivery-text {
    padding-right: 15px;
  }
}

@media screen and (max-width: 480px) {
  .product_right .bottom-block .delivery-block li .delivery-text {
    padding-right: 7px;
    padding-left: 7px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 340px) {
  .product_right .bottom-block .delivery-block li .delivery-text {
    padding-right: 4px;
    padding-left: 4px;
  }
}

.product_right .bottom-block .delivery-block li .delivery-val {
  display: inline-block;
  margin-bottom: 0;
  padding: 0;
  width: 250px;
  color: var(--clr-link-primary);
  font-size: 1rem;
  font-family: var(--font-paragraph);
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .product_right .bottom-block .delivery-block li .delivery-val {
    /*width: 160px;*/
    margin-left: 28px;
  }
}

@media screen and (max-width: 340px) {
  .product_right .bottom-block .delivery-block li .delivery-val {
    font-size: 1rem;
  }
}

.owl-wrapper {
  position: relative;
}

.owl-wrapper .owl-prev {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 8px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  text-align: center;
  line-height: 47px;
  transition: all 150ms ease;
  z-index: 1;
}

.owl-wrapper .owl-prev:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.owl-wrapper .owl-prev .icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.owl-wrapper .owl-next {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 8px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  text-align: center;
  line-height: 47px;
  transition: all 150ms ease;
  z-index: 1;
}

.owl-wrapper .owl-next:hover {
  background-color: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.owl-wrapper .icon {
  width: 11px;
  height: 20px;
}

.product-block {
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  .product-block {
    padding-top: 40px;
  }
}

.product-block:last-child {
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .product-block:last-child {
    padding-bottom: 40px;
  }
}

.product-block.product-block-medium {
  padding-top: 50px;
}

@media screen and (max-width: 767px) {
  .product-block.product-block-medium {
    padding-top: 40px;
  }
}

.product-block.product-block-small {
  padding-top: 24px;
}

@media screen and (max-width: 767px) {
  .product-block.product-block-small {
    padding-top: 40px;
  }
}

.product-block ol.products li {
  margin-bottom: 0;
}

@media screen and (min-width: 391px) and (max-width: 767px) {
  .product-block ol.products li.small {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
    margin-bottom: 20px;
  }

  .product-block ol.products li.small:last-child {
    margin-right: 0;
  }

  .product-block ol.products li.small:nth-child(2n) {
    margin-right: 0;
  }

  .product-block ol.products li.small:nth-child(2n+1) {
    clear: left;
  }

  .product-block ol.products li.small:last-child {
    margin-bottom: 0;
  }

  .product-block ol.products li.small:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 390px) {
  .product-block ol.products li.small {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  .product-block ol.products li.small:last-child {
    margin-right: 0;
  }

  .product-block ol.products li.small:nth-child(1n) {
    margin-right: 0;
  }

  .product-block ol.products li.small:nth-child(1n+1) {
    clear: left;
  }

  .product-block ol.products li.small:last-child {
    margin-bottom: 0;
  }
}

.product-block ol.products li .pr-wrapper {
  position: relative;

  border-radius: var(--border-radius);
  overflow: hidden;

  margin-bottom: 16px;
}

.product-block ol.products li img {
  /* margin-bottom: 16px; */
}

.time-slots-modal .modal-inner {
  padding: 0;
}

.time-slots-modal .modal-inner h5 {
  margin-bottom: 0;
  padding: 20px 40px;
  border-bottom: 1px solid #DADADA;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.time-slots-modal .modal-inner .time-slot {
  padding: 40px;
}

.time-slots-modal .modal-inner .time-slot li {
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
  display: inline-block;
  margin-bottom: 20px;
  height: 48px;
  border: 1px solid var(--clr-navy);
  color: var(--clr-navy);
  text-align: center;
  font-size: 1rem;
  line-height: 48px;
  cursor: pointer;

  font-family: var(--font-heading);
  font-size: 1.4rem;

  border-radius: var(--border-radius-small);
}

.time-slots-modal .modal-inner .time-slot li:hover {
  border-color: var(--clr-btn-primary-hover);
}

.time-slots-modal .modal-inner .time-slot li.active {
  border-color: var(--clr-btn-primary);
  background: var(--clr-btn-primary);
  color: var(--clr-blush);
  /* font-family: var(--font-paragraph); */
}

.time-slots-modal .modal-inner .time-slot li.active:hover {
  background-color: var(--clr-btn-primary-hover);
}

.time-slots-modal .modal-inner .time-slot li:nth-last-child(2) {
  margin-bottom: 0;
}

.time-slots-modal .modal-inner .time-slot li:nth-child(even) {
  float: right;
}

@media screen and (max-width: 1100px) {
  .time-slots-modal .modal-inner {
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  .time-slots-modal .modal-inner {
    width: 80%;
  }
}

@media screen and (max-width: 680px) {

  /*Added by Bleems*/
  .time-slots-modal .modal-inner {
    width: 95%;
  }

  .time-slots-modal .modal-inner .time-slot li {
    width: 100%;
  }

  .time-slots-modal .modal-inner .time-slot li:nth-last-child(2) {
    margin-bottom: 20px;
  }
}

.reviews .item {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
  margin-bottom: 40px;
  padding: 30px;
  background-color: #ffffff;
}

.reviews .item:last-child {
  margin-right: 0;
}

.reviews .item:nth-child(3n) {
  margin-right: 0;
}

.reviews .item:nth-child(3n+1) {
  clear: left;
}

@media screen and (max-width: 767px) {
  .reviews .item {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  .reviews .item:last-child {
    margin-right: 0;
  }

  .reviews .item:nth-child(1n) {
    margin-right: 0;
  }

  .reviews .item:nth-child(1n+1) {
    clear: left;
  }
}

.reviews .item .rating .icon {
  width: 18px;
  height: 18px;
}

.reviews .item .review-text {
  font-size: 1.125rem;
}

.reviews .item .author {
  padding-top: 15px;
  color: var(--clr-navy);
  font-size: 1rem;
  line-height: 1;
}

.reviews .hidden-reviews {
  display: none;
}

.reviews .hidden-reviews::after {
  clear: both;
  content: "";
  display: block;
}

.reviews .pagination {
  text-align: center;
}

.reviews .pagination .icon {
  width: 24px;
  height: 13px;
  color: var(--clr-navy);
}

.reviews .pagination .icon.icon-left-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.reviews .pagination .no {
  padding: 0 15px;
  color: var(--clr-navy);
  font-size: 1.25rem;
}

.reviews .pagination .no:first-child {
  padding-left: 0;
}

.reviews .pagination .no:last-child {
  padding-right: 0;
}

.reviews .pagination .no:hover {
  color: var(--clr-red);
}

.reviews .pagination .no:hover .icon {
  color: var(--clr-red);
}

.reviews .pagination .no.active {
  color: var(--clr-red);
  font-family: var(--font-paragraph);
}

.shops {
  background-color: #F9F9F9;
}

.shops .title {
  margin-bottom: 0;
}

.shops ol.shops::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (min-width: 768px) {
  .shops ol.shops li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 31.1%;
  }

  .shops ol.shops li:last-child {
    margin-right: 0;
  }

  .shops ol.shops li:nth-child(3n) {
    margin-right: 0;
  }

  .shops ol.shops li:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .shops ol.shops li {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 391px) and (max-width: 767px) {
  .shops ol.shops li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
    margin-bottom: 20px;
  }

  .shops ol.shops li:last-child {
    margin-right: 0;
  }

  .shops ol.shops li:nth-child(2n) {
    margin-right: 0;
  }

  .shops ol.shops li:nth-child(2n+1) {
    clear: left;
  }

  .shops ol.shops li:last-child {
    margin-bottom: 0;
  }

  .shops ol.shops li:nth-last-child(2) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 390px) {
  .shops ol.shops li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  .shops ol.shops li:last-child {
    margin-right: 0;
  }

  .shops ol.shops li:nth-child(1n) {
    margin-right: 0;
  }

  .shops ol.shops li:nth-child(1n+1) {
    clear: left;
  }

  .shops ol.shops li:last-child {
    margin-bottom: 0;
  }
}

.shops ol.shops li .title-block {
  position: relative;
  min-height: auto;
}

.shops ol.shops li .title-block {
  margin: 0;
  background-color: transparent;
  box-shadow: none;
  text-align: left;
}

.shops ol.shops li .rating {
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 10px;
}

@media screen and (max-width: 600px) {
  .shops ol.shops li .rating {
    position: relative;
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .shops ol.shops li .rating {
    position: relative;
    padding-top: 0;
  }
}

.shops ol.shops li h3 {
  padding-right: 125px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .shops ol.shops li h3 {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .shops ol.shops li h3 {
    padding-right: 0;
  }
}

@media screen and (max-width: 600px) {
  .shops ol.shops li h3 {
    padding-right: 0;
  }
}

.orders .block {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .orders .block {
    margin-bottom: 20px;
  }
}

.orders .block:last-child {
  margin-bottom: 0;
}

.orders .block.open .order-wrapper {
  display: block;
}

.orders .block.open .product-wrapper {
  display: none;
}

.orders .open .order-no-block .meta .val:after {
  top: 0px;
  content: "\25B4";
  font-size: 0.95rem;
}

.orders .order-meta {
  width: -webkit-calc(100% - 110px);
  width: calc(100% - 110px);
  float: left;
}

.orders .order-meta .meta {
  display: inline-block;
  margin-right: 6%;
  font-size: 1rem;
}

@media screen and (max-width: 580px) {
  .orders .order-meta .meta {
    display: block;
    margin-bottom: 10px;
  }

  .orders .order-meta .meta:last-child {
    margin-bottom: 0;
  }
}

.orders .order-meta .meta .title {
  margin-bottom: 8px;
  font-size: 0.75rem;
}

@media screen and (max-width: 580px) {
  .orders .order-meta .meta .title {
    margin-bottom: 2px;
  }
}

.orders .order-meta .meta .val {
  color: var(--clr-navy);
}

@media screen and (max-width: 580px) {
  .orders .order-meta .meta .val {
    font-size: 1rem;
  }
}

.orders .order-meta .meta:last-child {
  margin-right: 0;
}

.orders .order-no-block {
  float: right;
}

.orders .order-no-block .meta {
  font-size: 1rem;
}

.orders .order-no-block .meta .title {
  margin-bottom: 8px;
  text-align: right;
  font-size: 0.75rem;
}

.orders .order-no-block .meta .val {
  position: relative;
  padding-right: 22px;
  border: 0;
  color: var(--clr-red);
  font-size: 1rem;
  font-family: var(--font-paragraph);
  cursor: pointer;
}

.orders .order-no-block .meta .val:after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "\25BE";
  font-size: 0.95rem;
}

.orders .product-wrapper {
  margin: 20px 0;
}

@media screen and (max-width: 767px) {
  .orders .product-wrapper {
    margin: 0;
  }
}

.orders .product-wrapper .product-col {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 48.4375%;
}

.orders .product-wrapper .product-col:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .orders .product-wrapper .product-col {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  .orders .product-wrapper .product-col:last-child {
    margin-right: 0;
  }

  .orders .product-wrapper .product-col:last-child {
    margin-bottom: 0;
  }
}

.orders .product-wrapper .product-col .img-wrapper {
  display: inline-block;
  width: 122px;
  height: 122px;
  vertical-align: top;
}

.orders .product-wrapper .product-col .img-wrapper img {
  width: 100%;
  height: 100%;
}

.orders .product-wrapper .product-col .product-meta {
  width: -webkit-calc(100% - 128px);
  width: calc(100% - 128px);
  display: inline-block;
  padding-left: 40px;
}

.orders .order-wrapper {
  display: none;
}

.orders .order-wrapper .title {
  margin-bottom: 0;
  padding-bottom: 8px;
  color: var(--clr-navy);
  font-size: 1rem;
  line-height: 1.2;
}

.orders .order-wrapper .order-address-block {
  padding: 20px 0;
  border-bottom: 1px solid #DADADA;
}

.orders .order-wrapper .order-address-block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-address-block:first-child {
    padding-top: 0;
  }
}

.orders .order-wrapper .order-address-block .order-col {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
}

.orders .order-wrapper .order-address-block .order-col:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-address-block .order-col {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  .orders .order-wrapper .order-address-block .order-col:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-address-block .order-col:last-child {
    margin-bottom: 0;
  }
}

.orders .order-wrapper .order-address-block .order-col .title {
  padding-bottom: 12px;
}

.orders .order-wrapper .order-address-block .order-col .establishment-type {
  padding-top: 3px;
  padding-bottom: 4px;
}

.orders .order-wrapper .order-address-block .order-col .establishment-type span {
  position: relative;
  top: -2px;
}

.orders .order-wrapper .order-address-block .order-col .establishment-type .icon {
  margin-right: 4px;
  width: 18px;
  height: 18px;
}

.orders .order-wrapper .order-address-block .order-col .price-cal-details {
  border-bottom: 0;
}

.orders .order-wrapper .order-address-block .order-col .price-cal-details ul li {
  padding: 2px 0;
  font-size: 1rem;
}

.orders .order-wrapper .order-address-block .order-col .price-cal-details ul li:first-child {
  padding-top: 0;
}

.orders .order-wrapper .order-address-block .order-col .price-cal-details ul li .val {
  float: right;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.orders .order-wrapper .order-address-block .order-col .price-cal-details ul li.total {
  padding-top: 5px;
  border-top: 0;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.orders .order-wrapper .order-address-block .order-col .price-cal-details ul li.total .val {
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.orders .order-wrapper .order-items-block {
  padding: 20px 0;
}

.orders .order-wrapper .order-items-block .ordered-item-block {
  margin: 10px 0 20px 0;
  height: 290px;
  background-color: #F9F9F9;
}

.orders .order-wrapper .order-items-block .ordered-item-block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block {
    height: auto;
  }
}

.orders .order-wrapper .order-items-block .ordered-item-block:last-child {
  margin-bottom: 0;
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-content {
  margin: 20px 0 20px 20px;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-content {
    margin: 20px;
  }
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-left {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 26.25%;
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-left:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-left {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .orders .order-wrapper .order-items-block .ordered-item-block .item-left:last-child {
    margin-right: 0;
  }
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-left .item-content .img-wrapper {
  width: 122px;
  height: 122px;
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-left .item-content .img-wrapper img {
  width: 100%;
  height: 100%;
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-left .item-content .product-title {
  padding-top: 12px;
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-right {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 70.625%;
  position: relative;
  height: 100%;
  border-left: 1px solid #DADADA;
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-right:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-right {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    border: 0;
  }

  .orders .order-wrapper .order-items-block .ordered-item-block .item-right:last-child {
    margin-right: 0;
  }
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-right .timeline {
  margin: 0 80px;
  margin-top: 76px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-right .timeline {
    margin-top: 20px;
    margin-right: 20px;
    margin-left: 11px;
    margin-bottom: 0px;
  }
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-right .btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 210px;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-right .btn {
    position: relative;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-right .btn {
    float: right;
  }
}

.orders .order-wrapper .order-items-block .ordered-item-block .item-right .btn-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .orders .order-wrapper .order-items-block .ordered-item-block .item-right .btn-wrapper .btn {
    right: 0;
  }
}

.orders .product-title {
  font-size: 1rem;
}

.orders .shop-name {
  padding-top: 4px;
  color: var(--clr-navy);
  font-size: 1rem;
}

.orders .price-wrapper {
  padding-top: 4px;
  font-size: 1rem;
}

.group-text {
  margin-bottom: 20px;
}

.group-text label {
  display: inline-block;
  width: 84px;
  /* color: var(--clr-navy); */
  color: var(--clr-navy72);
  font-size: 0.75rem;
}

.group-text input,
.group-text select {
  display: inline-block;
  margin-bottom: 0;
  padding: 12px 0 10px;
  min-width: 420px;
  width: auto;
  color: var(--clr-navy);
  font-size: 1rem;
}

@media screen and (max-width: 580px) {

  .group-text input,
  .group-text select {
    min-width: auto;
    width: 100%;
  }
}

.group-text input.ne,
.group-text select.ne {
  color: var(--clr-red);
}

.group-text.submit-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

.group-text.submit-wrapper input {
  padding: 0;
}

.group-text.submit-wrapper .btn {
  float: right;
  min-width: 210px;
  color: #fff;
}

.group-text.edit-mode label {
  position: relative;
  /*bottom: -6px;*/
}

.group-text.edit-mode.submit-wrapper {
  display: block;
}

.group-text.edit-mode input {
  border-bottom: 1px solid #DADADA;
}

.group-text.edit-mode input:focus {
  border-color: var(--clr-red);
}

.profile-fields .group-text .submit-wrapper {
  display: none;
}

.track-order-fields .group-text label {
  min-width: 200px;
}

.favorites .product-block {
  padding-top: 40px;
  padding-bottom: 0;
}

.favorites .product-block::after {
  clear: both;
  content: "";
  display: block;
}

.favorites .product-block ol.products li.small {
  position: relative;
  margin-bottom: 40px;
}

@media screen and (min-width: 581px) and (max-width: 767px) {
  .favorites .product-block ol.products li.small {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
  }

  .favorites .product-block ol.products li.small:last-child {
    margin-right: 0;
  }

  .favorites .product-block ol.products li.small:nth-child(2n) {
    margin-right: 0;
  }

  .favorites .product-block ol.products li.small:nth-child(2n+1) {
    clear: left;
  }
}

@media screen and (max-width: 480px) {
  .favorites .product-block ol.products li.small {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .favorites .product-block ol.products li.small:last-child {
    margin-right: 0;
  }

  .favorites .product-block ol.products li.small:nth-child(1n) {
    margin-right: 0;
  }

  .favorites .product-block ol.products li.small:nth-child(1n+1) {
    clear: left;
  }
}

.favorites .product-block ol.products li.small:nth-child(4n) {
  margin-right: 0;
}

.favorites .product-block ol.products li.small:nth-child(4n+1) {
  clear: left;
}

.favorites .product-block ol.products li.small .rating {
  margin-top: 5px;
}

.category .product-block:first-child {
  padding-top: 30px;
}

.product-filter-wrapper {
  position: relative;
  margin-top: 20px;

  border-radius: var(--border-radius);
}

.product-filter-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .product-filter-wrapper {
    margin-top: 10px;
  }
}

.filter-wrapper {
  display: inline-block;
  padding: 20px;
  width: 260px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  vertical-align: top;
  position: relative;

  border-radius: var(--border-radius);
}

@media screen and (max-width: 767px) {
  .filter-wrapper {
    position: fixed;
    top: 70px;
    right: 0;
    z-index: 999999;
    display: none;
    overflow-y: auto;
    padding-bottom: 100px;
    width: 100%;
    height: 100%;
  }
}

.filter-wrapper .title {
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #DADADA;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.filter-wrapper .filter-block {
  border-bottom: 1px solid #DADADA;
}

.filter-wrapper .filter-block .title-block {
  position: relative;
  cursor: pointer;
}

.filter-wrapper .filter-block .title-block span {
  position: absolute;
  right: 10px;
  bottom: 17px;
  cursor: pointer;
}

/*@media screen and (min-width: 768px) {
          .filter-wrapper .filter-block .title-block .accordion-btn {
            display: none; } }*/
.filter-wrapper .filter-block:last-child {
  border: 0;
}

.filter-wrapper .filter-block .title {
  padding: 30px 0 20px;
  border: 0;
  color: var(--clr-navy);
  font-size: 1.5rem;
}

.filter-wrapper .filter-block .title.np {
  padding-bottom: 0;
}

.filter-wrapper .filter-block .price-min-max-block {
  margin-top: 10px;
  height: 35px;
  line-height: 35px;
}

.filter-wrapper .filter-block .price-min-max-block input {
  display: inline-block;
  padding: 0 10px;
  width: 45px;
  height: 100%;
  border: 1px solid var(--clr-navy24);
}

.filter-wrapper .filter-block .price-min-max-block .filter-price {
  margin-left: 4px;
  padding: 0;
  width: 34px;
  border: none;
  background-color: var(--clr-btn-primary);
  text-align: center;
  font-size: 1rem;
}

.filter-wrapper .filter-block .price-min-max-block .text {
  padding: 0 4px;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.filter-wrapper ul.filters.radio-filter li {
  padding: 7px 0;
}

.filter-wrapper ul.filters.product-type li {
  display: inline-block;
  margin-right: 6px;
  padding: 0;
  width: 66px;
  vertical-align: top;
}

.filter-wrapper ul.filters.product-type li:last-child {
  margin-right: 0;
}

.filter-wrapper ul.filters.product-type li label {
  top: 0;
  padding: 13px 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--clr-navy);
  color: var(--clr-navy);
  text-align: center;
  font-size: 0.75rem;
  line-height: 1;
}

.filter-wrapper ul.filters.product-type li label .chkbox-product {
  position: relative;
  top: -1px;
  display: block;
}

.filter-wrapper ul.filters.product-type li label .text {
  position: relative;
  top: 1px;
  font-family: var(--font-paragraph);
}

.filter-wrapper ul.filters.product-type li input[type="checkbox"]:checked+label {
  background-color: var(--clr-forrest);
  box-shadow: inset 0 0 3px 0 rgba(20, 80, 65, 0.5);

  color: #fff;
}

.filter-wrapper ul.filters.product-type li input[type="checkbox"]:checked+label .chkbox-product .icon {
  color: #fff;
}

.filter-wrapper ul.filters.color-filter li {
  padding: 12px;
}

.filter-wrapper ul.filters.color-filter .chkbox-state {
  width: 35px;
  height: 35px;
  border-radius: 0;
  line-height: 35px;
}

.filter-wrapper ul.filters.color-filter .chkbox-state .icon {
  visibility: hidden;
  width: 16px;
  height: 13px;
  opacity: 0;
}

.filter-wrapper ul.filters.color-filter .chkbox-state.red {
  border-color: var(--clr-red);
  background-color: var(--clr-red);
}

.filter-wrapper ul.filters.color-filter .chkbox-state.yellow {
  border-color: var(--clr-yellow);
  background-color: var(--clr-yellow);
}

.filter-wrapper ul.filters.color-filter .chkbox-state.white {
  border-color: #F4F4F4;
  background-color: #F4F4F4;
}

.filter-wrapper ul.filters.color-filter .chkbox-state.pink {
  border-color: var(--clr-blush);
  background-color: var(--clr-blush);
}

.filter-wrapper ul.filters.color-filter .chkbox-state.others {
  border-color: #DADADA;
}

.filter-wrapper ul.filters.color-filter label {
  top: 6px;
  padding-left: 40px;
}

.filter-wrapper ul.filters li {
  position: relative;
  padding: 7px;
}

.filter-wrapper ul.filters li:first-child {
  padding-top: 0;
}

.filter-wrapper ul.filters li:last-child {
  padding-bottom: 0;
}

.filter-wrapper ul.filters li input[type="checkbox"],
.filter-wrapper ul.filters li input[type="radio"] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state {
  border-color: var(--clr-navy);
  background-color: var(--clr-navy);
  box-shadow: none;
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state .icon {
  visibility: visible;
  opacity: 1;
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.red {
  border-color: var(--clr-red);
  background-color: var(--clr-red);
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.yellow {
  border-color: var(--clr-yellow);
  background-color: var(--clr-yellow);
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.white {
  border-color: #F4F4F4;
  background-color: #F4F4F4;
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.white .icon {
  color: var(--clr-navy);
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.pink {
  border-color: var(--clr-blush);
  background-color: var(--clr-blush);
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.others {
  border-color: #DADADA;
  background-color: transparent;
}

.filter-wrapper ul.filters li input[type="checkbox"]:checked+.chkbox-state.others .icon {
  color: var(--clr-navy);
}

.filter-wrapper ul.filters li .chkbox-state {
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  border: 2px solid var(--clr-navy);

  /* border-radius: 50%; */
  content: '';
  text-align: center;
  line-height: 19px;
}

.filter-wrapper ul.filters li .chkbox-state .icon {
  width: 9px;
  height: 8px;
  color: #fff;
}

.filter-wrapper ul.filters li .chkbox-product .icon {
  width: 21px;
  height: 21px;
  color: var(--clr-navy);
}

.filter-wrapper ul.filters li label {
  position: relative;
  top: -1px;
  display: inline-block;
  margin-bottom: 0;
  padding-left: 25px;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  cursor: pointer;
}

.filter-wrapper ul.filters li label.radio-label {
  padding-left: 32px;
}

.filter-wrapper ul.filters li label.radio-label:before {
  position: absolute;
  left: 0;
  width: 21px;
  height: 21px;
  border: 2px solid var(--clr-navy);

  border-radius: 50%;
  content: '';
  text-align: center;
  line-height: 21px;
}

.filter-wrapper ul.filters li input[type="radio"]:checked+label.radio-label:before {
  border-color: var(--clr-navy);
  background-color: var(--clr-navy);
}

.filter-wrapper ul.filters li input[type="radio"] {
  border: 2px solid var(--clr-navy);

}

.filtered-products {
  width: -webkit-calc(100% - 264px);
  width: calc(100% - 264px);
  display: inline-block;
  padding-left: 35px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .filtered-products {
    display: block;
    padding-left: 0;
    width: 100%;
  }
}

.filtered-products .product-block {
  padding-top: 0;
}

.filtered-products .product-block ol.products li {
  position: relative;
  margin-bottom: 40px;
}

@media screen and (min-width: 993px) {
  .filtered-products .product-block ol.products li:nth-child(3n) {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(3n+1) {
    clear: left;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .filtered-products .product-block ol.products li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
  }

  .filtered-products .product-block ol.products li:last-child {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(2n) {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(2n+1) {
    clear: left;
  }
}

@media screen and (min-width: 391px) and (max-width: 767px) {
  .filtered-products .product-block ol.products li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 48.4375%;
    margin-bottom: 20px;
  }

  .filtered-products .product-block ol.products li:last-child {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(2n) {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(2n+1) {
    clear: left;
  }

  .filtered-products .product-block ol.products li:last-child {
    margin-bottom: 0;
  }

  .filtered-products .product-block ol.products li:nth-last-child(2):nth-child(odd) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 390px) {
  .filtered-products .product-block ol.products li {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 20px;
  }

  .filtered-products .product-block ol.products li:last-child {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(1n) {
    margin-right: 0;
  }

  .filtered-products .product-block ol.products li:nth-child(1n+1) {
    clear: left;
  }

  .filtered-products .product-block ol.products li:last-child {
    margin-bottom: 0;
  }
}

.filtered-products .product-block ol.products li .rating {
  margin-top: 5px;
}

.filter-section,
.filter-shop,
.filter-occasion,
.filter-combo {
  padding-bottom: 30px;
}

/*@media screen and (max-width: 767px) {*/
.filter-section {
  display: none;
}

/*}*/

.cart .cart-block .cart-item-wrapper {
  padding-top: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DADADA;
}

.cart .cart-block .cart-item {
  position: relative;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .cart-item {
    margin-bottom: 30px;
  }
}

.cart .cart-block .cart-item:last-child {
  margin-bottom: 0;
}

.cart .cart-block .cart-item .img-wrapper {
  position: relative;
  display: inline-block;
  width: 161px;
}

.cart .cart-block .cart-item .img-wrapper .price-block {
  position: absolute;
  bottom: 0;
  visibility: hidden;
  padding: 10px 10px 6px;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.87) 14.28%, #FFFFFF 100%);
  color: var(--clr-navy);
  text-align: center;
  font-size: 1rem;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .cart-item .img-wrapper .price-block {
    visibility: visible;
    opacity: 1;
  }
}

.cart .cart-block .cart-content-block {
  width: -webkit-calc(100% - 166px);
  width: calc(100% - 166px);
  display: inline-block;
  padding-left: 33px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .cart-content-block {
    padding-left: 0;
    width: 100%;
  }
}

.cart .cart-block .cart-content-block .title-shop-block {
  float: left;
  width: 35%;
}

.cart .cart-block .cart-content-block .title-shop-block > *:not(:first-child) {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .cart-content-block .title-shop-block {
    width: 50%;
  }
}

@media screen and (max-width: 580px) {
  .cart .cart-block .cart-content-block .title-shop-block {
    width: 100%;
  }
}

.cart .cart-block .cart-content-block .product-title {
  margin-bottom: 6px;
  color: var(--clr-navy);
  text-align: left;
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

.cart .cart-block .cart-content-block .product-title.cart-product-title {
  padding-top: 4px;
  padding-right: 12px;
}

.cart .cart-block .cart-content-block .shop-name {
  padding-bottom: 20px;
  color: var(--clr-navy);
  text-align: left;
  font-size: 1rem;
}

.cart .cart-block .cart-content-block .action-buttons .add-to-cart {
  padding: 0;
  width: 210px;
  height: 48px;
  border-color: var(--clr-red);
  line-height: 48px;
}

@media screen and (max-width: 390px) {
  .cart .cart-block .cart-content-block .action-buttons .add-to-cart {
    width: 180px;
  }
}

.cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper {
  color: var(--clr-red);
}

.cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper .quantity {
  color: var(--clr-red);
}

.cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper span.minus {
  margin-right: 14px;
}

@media screen and (max-width: 390px) {
  .cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper span.minus {
    margin-right: 0;
  }
}

.cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper span.minus .minus-text {
  background-color: var(--clr-red);
}

.cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper span.plus {
  margin-left: 14px;
}

@media screen and (max-width: 390px) {
  .cart .cart-block .cart-content-block .action-buttons .add-to-cart .quantity-wrapper span.plus {
    margin-left: 0;
  }
}

.cart .cart-block .cart-content-block .delivery-block li {
  padding: 3px 0;
}

.cart .cart-block .cart-content-block .delivery-block li:last-child {
  padding-bottom: 0;
}

.cart .cart-block .cart-content-block .delivery-block li .icon {
  position: relative;
  top: 3px;
  width: 16px;
  height: 16px;
}

.cart .cart-block .cart-content-block .delivery-block li .delivery-text {
  padding: 0 0 0 11px;
  color: var(--clr-navy);
  font-size: 0.75rem;
}

.checkout-block .remove-item {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: right;
}

.cart .cart-block .remove-item,
.checkout-block .remove-item {
  color: var(--clr-navy50);
}

.cart .cart-block .remove-item .icon,
.checkout-block .remove-item .icon {
  width: 11px;
  height: 11px;
}

.cart .cart-block .remove-item:hover .icon,
.checkout-block .remove-item:hover .icon {
  color: var(--clr-red);
  fill: currentColor;
}

.cart .cart-block .remove-item.remove-item-mobile {
  position: absolute;
  top: -5px;
  right: 0;
  display: none;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .remove-item.remove-item-mobile {
    display: block;
  }
}

.cart .cart-block .quantity-price-block {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .quantity-price-block {
    text-align: left;
  }
}

.cart .cart-block .quantity-price-block .delivery-location-block {
  padding-top: 19px;
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .quantity-price-block .delivery-location-block {
    padding-top: 12px;
  }
}

.cart .cart-block .quantity-price-block .delivery-location-block .delivery-location-heading {
  color: var(--clr-navy);
  font-size: 0.75rem;
}

.cart .cart-block .quantity-price-block .delivery-location-block .delivery-location-text {
  padding-top: 4px;
  padding-bottom: 16px;
  font-size: 1rem;
}

.cart .cart-block .quantity-price-block.cart-quantity-price-block {
  float: left;
  width: 65%;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .quantity-price-block.cart-quantity-price-block {
    width: 100%;
  }
}

.cart .cart-block .quantity-price-block .quantity-wrapper {
  display: inline-block;
}

.cart .cart-block .quantity-price-block .price-block {
  position: absolute;
  top: 68px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .quantity-price-block .price-block .remove-item {
    display: none;
  }
}

.cart .cart-block .quantity-price-block .price-block .price-wrapper {
  float: left;
  padding-right: 40px;
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

@media screen and (max-width: 767px) {
  .cart .cart-block .quantity-price-block .price-block .price-wrapper {
    padding-right: 0;
  }
}

.cart .cart-block .price-cal-details {
  position: relative;
  border-bottom: 1px solid #DADADA;
}

.cart .cart-block .price-cal-details::after {
  clear: both;
  content: "";
  display: block;
}

.cart .cart-block .price-cal-details .promo-block {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 57.03125%;
  position: relative;
}

.cart .cart-block .price-cal-details .promo-block:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .price-cal-details .promo-block {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .cart .cart-block .price-cal-details .promo-block:last-child {
    margin-right: 0;
  }
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper {
  position: relative;
  padding-top: 68px;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .price-cal-details .promo-block .promo-input-wrapper {
    padding-top: 40px;
  }
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-msg {
  display: none;
  padding-top: 6px;
  font-size: 0.6875rem;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper.promo-applied .promo-msg {
  display: block;
  color: var(--clr-red);
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper.promo-applied .promo-input .promo-applied-icon {
  display: block;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper.promo-applied .promo-input .promo-error-icon {
  display: none;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper.promo-error .promo-msg {
  display: block;
  color: var(--clr-red);
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper.promo-error .promo-input .promo-applied-icon {
  display: none;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper.promo-error .promo-input .promo-error-icon {
  display: block;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input {
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input {
    display: block;
    max-width: 300px;
  }
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input .promo-applied-icon {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 112px;
  display: inline-block;
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--clr-forrest);
  text-align: center;
  line-height: 20px;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input .promo-applied-icon .icon {
  position: relative;
  top: -1px;
  width: 9px;
  height: 8px;
  color: #fff;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input .promo-error-icon {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 112px;
  display: inline-block;
  display: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  cursor: pointer;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input .promo-error-icon .icon {
  position: relative;
  width: 10px;
  height: 10px;
  color: var(--clr-navy);
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input #promocode {
  margin-bottom: 0;
  padding: 0 15px;
  width: 350px;
  height: 40px;
  border: 1px solid var(--clr-navy24);
  font-size: 1rem;
  line-height: 40px;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input #promocode {
    width: 100%;
  }
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input #promo-apply-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 100px;
  height: 40px;
  background-color: var(--clr-btn-primary);
  line-height: 40px;
}

.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input #promo-apply-button:hover,
.cart .cart-block .price-cal-details .promo-block .promo-input-wrapper .promo-input #promo-apply-button:focus {
  background-color: var(--clr-red);
}

.cart .cart-block .price-cal-details .price-details-block {
  float: right;
  display: block;
  margin-right: 3.125%;
  width: 39.84375%;
}

.cart .cart-block .price-cal-details .price-details-block:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .cart .cart-block .price-cal-details .price-details-block {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .cart .cart-block .price-cal-details .price-details-block:last-child {
    margin-right: 0;
  }
}

.cart .cart-block .price-cal-details .price-details-block .shipping-text {
  padding-bottom: 30px;
  color: var(--clr-navy);
  font-size: 0.75rem;
}

.cart .cart-block .price-cal-details .price-details-block ul li {
  padding: 7px 0;
  color: var(--clr-navy);

  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.cart .cart-block .price-cal-details .price-details-block ul li::after {
  clear: both;
  content: "";
  display: block;
}

.cart .cart-block .price-cal-details .price-details-block ul li:first-child {
  padding-top: 29px;
}

.cart .cart-block .price-cal-details .price-details-block ul li:nth-child(3) {
  padding-bottom: 7px;
}

.cart .cart-block .price-cal-details .price-details-block ul li.total {
  padding-top: 21px;
  padding-bottom: 12px;
  border-top: 1px solid #DADADA;
  color: var(--clr-navy);
}

.cart .cart-block .price-cal-details .price-details-block ul li .val {
  float: right;
}

.cart .submit-wrapper .btn {
  float: right;
  margin-top: 20px;
}

.checkout {
  background-color: #F9F9F9;
}

.checkout .submit-wrapper-margin {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .checkout .submit-wrapper-margin {
    margin-top: 20px;
  }
}

.checkout .group-dropdown .area-dropdown .dropdown-container {
  width: 100%;
  text-align: left;
}

.checkout .group-dropdown .area-dropdown .dropdown-container .dropdown-button {
  padding: 0 0 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--clr-navy);
  border-radius: 0;
  box-shadow: none;
  color: var(--clr-navy);
  font-size: 1rem;
}

.checkout .group-dropdown .area-dropdown .dropdown-container .dropdown-button:after {
  top: -13px;
  right: 0;
  color: var(--clr-forrest);
  font-size: 2rem;
}

.checkout .group-dropdown .area-dropdown .dropdown-menu {
  top: 35px;
  border-radius: 0;
}

.checkout .group-dropdown .area-dropdown .dropdown-menu li:last-child {
  border-bottom: 0;
}

.checkout .group-dropdown label {
  position: absolute;
  bottom: 45px;
  left: 0;
  margin-bottom: 0;
  color: var(--clr-navy);
  font-weight: normal;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  pointer-events: none;
}

.checkout .title-wrapper {
  border-bottom: 1px solid #DADADA;
}

.checkout .title-wrapper h4 {
  margin-bottom: 0;
  padding: 20px 30px;
  color: var(--clr-navy);
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .checkout .title-wrapper h4 {
    padding: 20px 20px;
  }
}

.checkout .checkout-tab-header-block .group-inline {
  padding-top: 5px;
  padding-bottom: 65px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-tab-header-block .group-inline {
    margin: 0;
    padding: 0 0 20px;
  }
}

.checkout .checkout-tab-header-block .group-inline .group-option {
  position: relative;
  margin: 0 20px;
  margin-top: 0 !important;
}

@media screen and (max-width: 400px) {
  .checkout .checkout-tab-header-block .group-inline .group-option {
    margin: 0 5px;
  }
}

.checkout .checkout-tab-header-block .group-inline .group-option:last-child {
  margin-right: 0;
}

@media screen and (max-width: 480px) {
  .checkout .checkout-tab-header-block .group-inline .group-option:last-child {
    position: relative;
    left: -1px;
  }
}

.checkout .checkout-tab-header-block .group-inline .group-option input {
  left: 0;
  width: 100%;
  height: 63px;
}

.checkout .checkout-tab-header-block .group-inline .group-option input:checked~label {
  border-color: var(--clr-forrest);
}

.checkout .checkout-tab-header-block .group-inline .group-option input:checked~label .icon {
  color: var(--clr-forrest);
}

.checkout .checkout-tab-header-block .group-inline .group-option label {
  margin-left: 43px;
  padding: 17px;
  border: 1px solid var(--clr-navy);
}

@media screen and (max-width: 580px) {
  .checkout .checkout-tab-header-block .group-inline .group-option label {
    padding: 17px 0;
    border: 0;
  }
}

@media screen and (max-width: 480px) {
  .checkout .checkout-tab-header-block .group-inline .group-option label {
    padding: 10px 0;
  }
}

.checkout .checkout-tab-header-block .group-inline .group-option label:before {
  top: 17px;
  left: -43px;
}

@media screen and (max-width: 480px) {
  .checkout .checkout-tab-header-block .group-inline .group-option label:before {
    top: 10px;
  }
}

.checkout .checkout-tab-header-block .group-inline .group-option label .icon {
  position: relative;
  top: 2px;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  color: var(--clr-navy);
}

@media screen and (max-width: 580px) {
  .checkout .checkout-tab-header-block .group-inline .group-option label .icon {
    display: none;
  }
}

.checkout .checkout-tab-header-block .group-inline .group-option label .icon.icon-multiple {
  width: 26px;
}

.checkout .checkout-tab-header-block .group-inline .label-title {
  position: relative;
  bottom: 0;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-tab-header-block .group-inline .label-title {
    display: block;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-tab-header-block .group-inline .label-title {
    margin-bottom: 10px;
  }
}

.checkout ul.checkout-tab-header {
  margin-bottom: 60px;
  min-height: 36px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .checkout ul.checkout-tab-header {
    display: none;
  }
}

.checkout ul.checkout-tab-header li {
  display: inline-block;
  margin: 0 35px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout ul.checkout-tab-header li {
    margin: 0 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .checkout ul.checkout-tab-header li {
    margin: 0 10px;
  }
}

.checkout ul.checkout-tab-header li a {
  position: relative;
  color: var(--clr-navy);
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.checkout ul.checkout-tab-header li a span.text {
  position: relative;
  top: 5px;
  margin-left: 20px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .checkout ul.checkout-tab-header li a span.text {
    margin-left: 10px;
  }
}

.checkout ul.checkout-tab-header li a span.no {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #DADADA;
  color: #fff;
  content: '1';
  text-align: center;
  line-height: 30px;
}

.checkout ul.checkout-tab-header li a span.no .icon {
  position: relative;
  top: 2px;
  display: none;
  width: 16px;
  height: 13px;
}

.checkout ul.checkout-tab-header li.active a {
  color: var(--clr-navy);
}

.checkout ul.checkout-tab-header li.active a span.no {
  background-color: var(--clr-btn-primary);
  color: #fff;
}

.checkout ul.checkout-tab-header li.active a span.no .icon {
  display: none;
}

.checkout ul.checkout-tab-header li.done a {
  color: var(--clr-navy);
}

.checkout ul.checkout-tab-header li.done a span.no {
  background-color: var(--clr-btn-primary);
  color: #fff;
}

.checkout ul.checkout-tab-header li.done a span.no .number-text {
  display: none;
}

.checkout ul.checkout-tab-header li.done a span.no .icon {
  display: inline-block;
}

.checkout ul.checkout-tab-header li:first-child {
  margin-left: 0;
}

.checkout ul.checkout-tab-header li:last-child {
  margin-right: 0;
}

.checkout .checkout-block::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .checkout-block .checkout-content {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 57.03125%;
}

.checkout .checkout-block .checkout-content:last-child {
  margin-right: 0;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .checkout-content {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 560px;
  }

  .checkout .checkout-block .checkout-content:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto;
    max-width: 560px;
  }

  .checkout .checkout-block .checkout-content:last-child {
    margin-right: 0;
  }
}

.checkout .checkout-block .checkout-content.full {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 100%;
  float: none;
  margin-right: auto !important;
  margin-left: auto;
  max-width: 560px;
}

.checkout .checkout-block .checkout-content.full:last-child {
  margin-right: 0;
}

.checkout .checkout-block .checkout-content .checkout-content-block {
  margin-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.5);

  border-radius: var(--border-radius);
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content .checkout-content-block {
    margin-bottom: 20px;
  }
}

.checkout .checkout-block .checkout-content .checkout-content-block:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content .checkout-content-block:last-child {
    margin-bottom: 20px;
  }
}

.checkout .checkout-block .checkout-content .title-wrapper h4 {
  padding-right: 30px;
  padding-left: 30px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content .title-wrapper h4 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.checkout .checkout-block .checkout-content .vertical-tabs-container.category-section .vertical-tabs {
  border-bottom: 1px solid #DADADA;
}

.checkout .checkout-block .checkout-content .vertical-tabs-container.category-section .vertical-tabs .vertical-tab {
  padding-top: 20px;
  padding-bottom: 20px;
}

.checkout .checkout-block .checkout-content .vertical-tabs-container.category-section .vertical-tab-content-container {
  background-color: #fff;
}

.checkout .checkout-block .checkout-content .login-content .group:nth-last-child(3) {
  margin-bottom: 0;
}

.checkout .checkout-block .checkout-content .login-content .action-buttons {
  padding: 30px 30px 10px;
}

@media screen and (max-width: 550px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons {
    padding-bottom: 0;
  }
}

.checkout .checkout-block .checkout-content .login-content .action-buttons a {
  position: relative;
  display: inline-block;
  padding: 0;
  margin-right: 15px;
  width: 220px;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  color: var(--clr-navy);
  font-family: var(--font-paragraph);
  line-height: 60px;
}

@media screen and (max-width: 550px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons a {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons a {
    width: 100%;
  }
}

.checkout .checkout-block .checkout-content .login-content .action-buttons a span {
  padding-left: 40px;
}

@media screen and (max-width: 340px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons a span {
    padding-left: 35px;
  }
}

.checkout .checkout-block .checkout-content .login-content .action-buttons a:last-child {
  margin-right: 0;
  float: right;
}

@media screen and (max-width: 550px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons a:last-child {
    float: none;
    margin-bottom: 50px;
  }
}

.checkout .checkout-block .checkout-content .login-content .action-buttons a.fb {
  background-color: #3F51B5;
  box-shadow: none;
  color: #fff;
}

.checkout .checkout-block .checkout-content .login-content .action-buttons a .icon {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 13px;
  height: 28px;
}

@media screen and (max-width: 340px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons a .icon {
    left: 30px;
  }
}

.checkout .checkout-block .checkout-content .login-content .action-buttons a .icon.icon-google-plus-icon {
  left: 20px;
  width: 30px;
  height: 30px;
}

@media screen and (max-width: 340px) {
  .checkout .checkout-block .checkout-content .login-content .action-buttons a .icon.icon-google-plus-icon {
    left: 20px;
  }
}

.checkout .checkout-block .checkout-content .or-seperator {
  position: relative;
  position: relative;
  margin: 40px 0 0;
  width: 100%;
  height: 1px;
  background-color: #DADADA;
}

.checkout .checkout-block .checkout-content .or-seperator span {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  top: -23px;
  left: 50%;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid var(--clr-navy);
  border-radius: 50%;
  background-color: #fff;
  color: var(--clr-navy);
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-paragraph);
  line-height: 46px;
}

.checkout .checkout-block .checkout-content .form {
  padding: 30px 30px;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content .form {
    padding: 20px;
  }
}

.checkout .checkout-block .checkout-content .form::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .checkout-block .checkout-content .form .register-text {
  margin: 0;
  padding: 20px 0;
  color: var(--clr-navy);
  font-size: 1rem;
}

.checkout .checkout-block .checkout-content .form .group:first-child {
  margin-top: 25px;
}

.checkout .checkout-block .checkout-content .login-content .form .group:first-child {
  margin-bottom: 50px;
}

.checkout .checkout-block .checkout-content .form .group:last-child {
  margin-top: 0;
}

.checkout .checkout-block .checkout-content .form .submit-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .checkout-content .form .submit-wrapper {
    text-align: center;
  }

  .checkout .checkout-block .checkout-content .form .submit-wrapper .btn {
    float: none;
  }
}

.checkout .checkout-block .checkout-content .form .submit-wrapper .btn {
  float: right;
}

.checkout .checkout-block .checkout-content .guest-checkout .form .group:last-child {
  margin-top: 0;
}

.checkout .checkout-block .checkout-content .guest-checkout .form .group:nth-last-child(3) {
  margin-bottom: 70px;
}

.checkout .checkout-block .checkout-content .delivery-address-block {
  padding: 0 !important;
}

.checkout .checkout-block .checkout-content .delivery-address-block::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .checkout-block .checkout-content .delivery-address-block .form {
  padding: 30px 70px 40px;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content .delivery-address-block .form {
    padding: 30px 20px;
  }
}

.checkout .checkout-block .checkout-content .shipping.shipping-multiple .form {
  padding-top: 30px;
}

.checkout .checkout-block .checkout-content .shipping.shipping-multiple .form .group:first-child {
  margin-top: 0;
}

.checkout .checkout-block .checkout-content .shipping .form .group:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .checkout-content .shipping .form .group:first-child {
    margin-top: 20px;
  }
}

.checkout .checkout-block .order-block {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 39.84375%;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.5);

  border-radius: var(--border-radius);
}

.checkout .checkout-block .order-block:last-child {
  margin-right: 0;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto !important;
    max-width: 560px;
  }

  .checkout .checkout-block .order-block:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .order-block {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto !important;
    max-width: 560px;
  }

  .checkout .checkout-block .order-block:last-child {
    margin-right: 0;
  }
}

.checkout .checkout-block .order-block .form {
  padding: 20px 30px 20px 30px;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .order-block .form {
    padding: 20px;
  }
}

.checkout .checkout-block .order-block .submit-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .checkout-block .order-block .submit-wrapper .btn {
  width: 100%;
}

.checkout .checkout-block .order-block.cart .cart-block .cart-item {
  margin-bottom: 28px;
  height: 131px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-block .cart-item {
    height: 110px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-block .cart-item {
    height: 110px;
  }
}

.checkout .checkout-block .order-block.cart .cart-block .cart-item:last-child {
  margin-bottom: 20px;
}

.checkout .checkout-block .order-block.cart .cart-block .cart-item .img-wrapper {
  width: 131px;
  height: 131px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-block .cart-item .img-wrapper {
    width: 110px;
    height: 110px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-block .cart-item .img-wrapper {
    width: 110px;
    height: 110px;
  }
}

.checkout .checkout-block .order-block.cart .cart-block .cart-item-wrapper {
  padding: 20px 30px;
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-block .cart-item-wrapper {
    padding: 20px 20px;
  }
}

.checkout .checkout-block .order-block.cart .cart-block .cart-item-wrapper .cart-item-border {
  border-bottom: 1px solid #DADADA;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details {
  border-bottom: 0;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 100%;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block:last-child {
  margin-right: 0;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block ul li {
  padding: 2px 0;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block ul li:first-child {
  padding-top: 18px;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block ul li .val {
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block ul li.total {
  padding-top: 13px;
  border-top: 0;
}

.checkout .checkout-block .order-block.cart .cart-block .price-cal-details .price-details-block ul li.total .val {
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

.checkout .checkout-block .order-block.cart .cart-content-block {
  width: -webkit-calc(100% - 136px);
  width: calc(100% - 136px);
  padding-left: 24px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block {
    width: -webkit-calc(100% - 116px);
    width: calc(100% - 116px);
    padding-left: 15px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block {
    width: -webkit-calc(100% - 116px);
    width: calc(100% - 116px);
    padding-left: 15px;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .cart-content-wrapper {
  padding-top: 4px;
  min-height: 131px;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .cart-content-wrapper {
    padding-top: 0;
    min-height: 110px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .cart-content-wrapper {
    padding-top: 0;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .product-title {
  margin-bottom: 6px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .product-title {
    margin-bottom: 3px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .product-title {
    margin-bottom: 3px;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .quantity-price-block {
  margin-bottom: 6px;
  font-size: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .quantity-price-block {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .quantity-price-block {
    margin-bottom: 0;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .quantity-price-block .price-block {
  position: relative;
  top: 0;
}

.checkout .checkout-block .order-block.cart .cart-content-block .quantity-price-block .price-block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .quantity-price-block .price-block {
    display: block;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .quantity-text {
  padding-bottom: 6px;
  font-family: var(--font-paragraph);
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .quantity-text {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .quantity-text {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .delivery-block {
    bottom: 0;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .delivery-block {
    position: relative;
    bottom: 0;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .delivery-block li {
  line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .delivery-block li {
    line-height: 1;
  }
}

@media screen and (max-width: 580px) {
  .checkout .checkout-block .order-block.cart .cart-content-block .delivery-block li {
    line-height: 1;
  }
}

.checkout .checkout-block .order-block.cart .cart-content-block .delivery-block li .delivery-text {
  padding: 0;
  padding-left: 6px;
  font-size: 0.75rem;
}

.checkout .checkout-block .order-block.cart .cart-content-block .delivery-block li .icon {
  top: 1px;
  width: 12px;
  height: 12px;
}

.checkout .img-top {
  position: absolute;
  top: 26px;
  left: -78px;
  z-index: 1;
  width: 244px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .checkout .img-top {
    display: none;
  }
}

.checkout .img-bottom {
  position: absolute;
  top: 181px;
  right: -34px;
  z-index: 1;
  width: 244px;
  height: auto;
}

@media screen and (max-width: 992px) {
  .checkout .img-bottom {
    display: none;
  }
}

.checkout .personalize-wrapper {
  position: relative;
}

.checkout .personalize-wrapper.personalize-multi-wrapper .img-bottom {
  top: 460px;
}

.checkout .personalize-wrapper .content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 560px;
  background-color: #FFFFFF;
  box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.5);
}

.checkout .personalize-wrapper .content .content-block-wrapper {
  padding: 30px;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper .content .content-block-wrapper {
    padding: 20px;
  }
}

.checkout .personalize-wrapper .content .textarea-wrapper .group {
  margin-top: 35px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .checkout .personalize-wrapper .content .textarea-wrapper .group {
    margin-top: 20px;
  }
}

.checkout .personalize-wrapper .content .textarea-wrapper textarea {
  min-height: 130px;
  resize: none;
}

.checkout .personalize-wrapper .content .textarea-wrapper textarea::-webkit-input-placeholder {
  font-style: italic;
}

.checkout .personalize-wrapper .content .textarea-wrapper textarea::-moz-placeholder {
  font-style: italic;
}

.checkout .personalize-wrapper .content .textarea-wrapper textarea:-moz-placeholder {
  font-style: italic;
}

.checkout .personalize-wrapper .content .textarea-wrapper textarea:-ms-input-placeholder {
  font-style: italic;
}

.checkout .personalize-wrapper .content .textarea-wrapper .textarea-counter {
  padding-top: 7px;
  max-width: 495px;
  color: var(--clr-navy);
  text-align: right;
  font-size: 0.75rem;
}

.checkout .personalize-wrapper .content .from-name {
  margin-top: 30px;
  color: var(--clr-navy);
}

@media screen and (max-width: 767px) {
  .checkout .personalize-wrapper .content .from-name {
    margin-top: 10px;
  }
}

.checkout .personalize-wrapper .content .sender-name {
  margin-top: 4px;
  margin-bottom: 0;
  padding: 0 10px;
  width: 152px;
  height: 40px;
  border: 1px solid #DADADA;
  color: var(--clr-navy);
  line-height: 40px;
}

.checkout .personalize-wrapper .content input,
.checkout .personalize-wrapper .content textarea {
  padding: 0;
  color: var(--clr-navy);
  font-size: 1rem;
}

.checkout .personalize-wrapper .content input::-webkit-input-placeholder,
.checkout .personalize-wrapper .content textarea::-webkit-input-placeholder {
  color: var(--clr-navy);
}

.checkout .personalize-wrapper .content input::-moz-placeholder,
.checkout .personalize-wrapper .content textarea::-moz-placeholder {
  color: var(--clr-navy);
}

.checkout .personalize-wrapper .content input:-moz-placeholder,
.checkout .personalize-wrapper .content textarea:-moz-placeholder {
  color: var(--clr-navy);
}

.checkout .personalize-wrapper .content input:-ms-input-placeholder,
.checkout .personalize-wrapper .content textarea:-ms-input-placeholder {
  color: var(--clr-navy);
}

.checkout .personalize-wrapper .content .action-buttons-block {
  margin-top: 40px;
}

.checkout .personalize-wrapper .content .action-buttons-block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 767px) {
  .checkout .personalize-wrapper .content .action-buttons-block {
    margin-top: 30px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper .content .action-buttons-block {
    margin-top: 20px;
  }
}

.checkout .personalize-wrapper .content .action-buttons-block .btn {
  float: right;
  margin-left: 20px;
  width: 200px;
}

@media screen and (max-width: 767px) {
  .checkout .personalize-wrapper .content .action-buttons-block .btn {
    width: 150px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper .content .action-buttons-block .btn {
    width: 100px;
  }
}

.checkout .personalize-wrapper .content .action-buttons-block .btn:last-child {
  margin-left: 0;
}

.checkout .personalize-wrapper.thank-you .img-top {
  top: 10px;
  left: -200px;
  width: 296px;
}

.checkout .personalize-wrapper.thank-you .img-bottom {
  top: inherit;
  right: -100px;
  bottom: 10px;
}

.checkout .personalize-wrapper.thank-you .content {
  padding: 40px 60px;
  max-width: inherit;
}

@media screen and (max-width: 767px) {
  .checkout .personalize-wrapper.thank-you .content {
    padding: 40px;
  }
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content {
    padding: 20px;
  }
}

.checkout .personalize-wrapper.thank-you .content .title-text {
    color: var(--clr-forrest);
    font-family: var(--font-paragraph);
    text-align: center;
}

.checkout .personalize-wrapper.thank-you .content .sub-title {
  padding-top: 8px;
  padding-bottom: 40px;
  color: var(--clr-navy);
  font-size: 1rem;
}

.checkout .personalize-wrapper.thank-you .content .sub-title a {
  font-family: var(--font-paragraph);
}

.checkout .personalize-wrapper.thank-you .content .title {
  padding-bottom: 20px;
  border-bottom: 1px solid #DADADA;
  text-align: left;
  letter-spacing: 0;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-item {
  margin-bottom: 30px;
  text-align: left;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-item .img-wrapper {
  width: 131px;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-item .img-wrapper {
    width: 110px;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-block {
  width: -webkit-calc(100% - 136px);
  width: calc(100% - 136px);
  padding-left: 24px;
}

@media screen and (max-width: 767px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-block {
    padding-left: 0;
    width: 100%;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-block .product-title {
  margin-bottom: 6px;
  letter-spacing: 0;
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-block .product-title {
    font-size: 1rem;
  }
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-block .cart-content-wrapper {
    padding-top: 8px;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-block .cart-content-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .quantity-price-block {
  position: absolute;
  right: 0;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .quantity-price-block .price-block {
  position: static;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .quantity-price-block .price-block .price-wrapper {
  padding-right: 0;
  padding-left: 60px;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .quantity-price-block .quantity {
  float: left;
  color: rgba(136, 136, 136, 0.5);
  font-size: 1.25rem;
  font-family: var(--font-paragraph);
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block {
  position: relative;
  bottom: 0;
  float: left;
  margin-top: 7px;
  width: 50%;
  text-align: left;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block {
    margin-top: 0;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block li {
  float: left;
  width: 50%;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block li {
    display: inline-block;
    float: none;
    padding-right: 20px;
    width: auto;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block li:last-child {
  text-align: right;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block li:last-child {
    padding-right: 0;
    text-align: left;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .delivery-block .icon {
  color: var(--clr-navy);
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .title-shop-block {
  float: left;
  width: 50%;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .title-shop-block {
    width: 100%;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .title-shop-block .shop-name {
  padding-bottom: 6px;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .title-shop-block .price-wrapper {
  padding-bottom: 16px;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .title-shop-block .price-wrapper {
    padding-bottom: 8px;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-item-wrapper {
  padding-bottom: 0;
  border-bottom: none;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper {
  min-height: auto;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper .text-block {
  position: relative;
  float: left;
  width: 50%;
  color: var(--clr-navy);
  text-align: left;
  font-size: 0.75rem;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper .text-block {
    width: 100%;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper .text-block .text-inner-block {
  position: relative;
  padding-left: 27px;
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper .text-block:nth-child(2) {
  padding-left: 30px;
}

@media screen and (max-width: 580px) {
  .checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper .text-block:nth-child(2) {
    padding-top: 10px;
    padding-left: 0;
  }
}

.checkout .personalize-wrapper.thank-you .content .cart .cart-block .cart-content-wrapper .text-block .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
}

.checkout .shipping .label-title {
  position: relative;
  margin-bottom: 0;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

/*.checkout .shipping.shipping-multiple .group:nth-last-child(3), .checkout .shipping.shipping-single .group:nth-last-child(3) {
    margin-bottom: 0; }
  .checkout .shipping.shipping-multiple .group:nth-last-child(2), .checkout .shipping.shipping-single .group:nth-last-child(2) {
    margin-top: 20px;
    margin-bottom: 30px; }*/
.checkout .ordered-item-wrapper {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #D8D8D8;
}

.checkout .ordered-item-wrapper:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checkout .ordered-item-wrapper .img-wrapper {
  display: inline-block;
  width: 160px;
  height: 160px;
  vertical-align: top;
}

@media screen and (max-width: 580px) {
  .checkout .ordered-item-wrapper .img-wrapper {
    width: 130px;
    height: 130px;
  }
}

.checkout .ordered-item-wrapper .ordered-content {
  width: -webkit-calc(100% - 164px);
  width: calc(100% - 164px);
  position: relative;
  display: inline-block;
  padding-left: 17px;
}

@media screen and (max-width: 580px) {
  .checkout .ordered-item-wrapper .ordered-content {
    padding-top: 20px;
    padding-left: 0;
    width: 100%;
  }
}

.checkout .ordered-item-wrapper .ordered-content .product-title {
  margin-bottom: 6px;
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

.checkout .ordered-item-wrapper .ordered-content .price-wrapper {
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 580px) {
  .checkout .ordered-item-wrapper .ordered-content .price-wrapper {
    top: -70px;
  }
}

.checkout .ordered-item-wrapper .ordered-content .shop-name {
  color: var(--clr-navy72);
  font-size: 1rem;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta {
  color: var(--clr-navy);
  font-size: 0.75rem;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: top;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .delivery-date-time {
  padding-top: 27px;
  padding-bottom: 19px;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .delivery-date-time::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 580px) {
  .checkout .ordered-item-wrapper .ordered-content .delivery-meta .delivery-date-time {
    padding-top: 19px;
  }
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .delivery-date-time .delivery-date-block,
.checkout .ordered-item-wrapper .ordered-content .delivery-meta .delivery-date-time .time-delivery-block {
  position: relative;
  float: left;
  padding-left: 27px;
  width: 50%;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .address-text {
  position: relative;
  padding-bottom: 12px;
  padding-left: 27px;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .personalize-text {
  position: relative;
  padding-left: 27px;
}

.checkout .ordered-item-wrapper .ordered-content .delivery-meta .personalize-text .text {
  display: inline-block;
}

.checkout .shipping-header {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #E5E5E5;
  background-color: #F0F0F0;
}

.checkout .shipping-header .img-wrapper {
  display: inline-block;
  width: 160px;
  height: 160px;
}

@media screen and (max-width: 480px) {
  .checkout .shipping-header .img-wrapper {
    width: 130px;
    height: 130px;
  }
}

.checkout .shipping-header .drop-arrow {
  position: absolute;
  right: 20px;
  width: 16px;
  height: 10px;
  cursor: pointer;
}

.checkout .shipping-header .drop-arrow .icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 100%;
  height: 100%;
  color: var(--clr-navy);
}

.checkout .shipping-header .content-block {
  width: -webkit-calc(100% - 164px);
  width: calc(100% - 164px);
  display: inline-block;
  padding-left: 16px;
  vertical-align: top;
}

@media screen and (max-width: 480px) {
  .checkout .shipping-header .content-block {
    padding-top: 10px;
    padding-left: 0;
    width: 100%;
  }
}

.checkout .shipping-header .content-block .product-title {
  margin-bottom: 6px;
  padding-right: 20px;
  letter-spacing: 0;
  font-size: 1rem;
  font-family: var(--font-paragraph);
}

.checkout .shipping-header .content-block .product-title span {
  padding-left: 6px;
  color: var(--clr-navy);
  font-size: 1rem;
}

.checkout .shipping-header .content-block .shop-name {
  color: var(--clr-navy);
  font-size: 1rem;
}

.checkout .shipping-header .content-block .price-wrapper {
  font-size: 1rem;
}

.checkout .shipping-header .content-block .delivery-meta-block {
  margin-top: 16px;
  font-size: 1rem;
}

.checkout .shipping-header .content-block .delivery-meta {
  color: var(--clr-navy);
  font-size: 0.75rem;
}

.checkout .shipping-header .content-block .delivery-meta .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  vertical-align: top;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time {
  padding-top: 22px;
  padding-bottom: 5px;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block {
  position: relative;
  float: left;
  padding-left: 27px;
  width: 50%;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block .delivery-date-header,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block .delivery-time-header,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block .delivery-date-header,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block .delivery-time-header {
  position: relative;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block .delivery-date-header .hidden-overlay,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block .delivery-time-header .hidden-overlay,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block .delivery-date-header .hidden-overlay,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block .delivery-time-header .hidden-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block input,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block input {
  padding: 0;
  background: transparent;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block .text,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block .text {
  display: none;
  padding-bottom: 7px;
}

.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .delivery-date-block .delivery-val,
.checkout .shipping-header .content-block .delivery-meta .delivery-date-time .time-delivery-block .delivery-val {
  color: var(--clr-navy);
}

.checkout .shipping-header .content-block .delivery-meta .address-text {
  position: relative;
  padding-left: 27px;
}

.checkout .shipping-header.open {
  border-bottom: 0;
}

.checkout .shipping-header.open .drop-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  top: 30px;
}

.checkout .shipping-header.open .drop-arrow .icon {
  color: var(--clr-red);
}

.checkout .shipping-header.open .content-block .delivery-meta .delivery-date-time .delivery-date-header .text,
.checkout .shipping-header.open .content-block .delivery-meta .delivery-date-time .delivery-time-header .text {
  display: block;
}

.checkout .shipping-header.open .content-block .delivery-meta .delivery-date-time .delivery-date-header .delivery-val,
.checkout .shipping-header.open .content-block .delivery-meta .delivery-date-time .delivery-time-header .delivery-val {
  color: var(--clr-red);
  font-family: var(--font-paragraph);
}

.checkout .shipping-header.open .content-block .delivery-meta .delivery-date-time .delivery-date-header .hidden-overlay,
.checkout .shipping-header.open .content-block .delivery-meta .delivery-date-time .delivery-time-header .hidden-overlay {
  display: none;
}

.checkout .shipping-header.open .content-block .delivery-meta .address-text {
  display: none;
}

.checkout .shipping-single-multiple {
  display: none;
}

.checkout .payment-group {
  margin: 0;
  padding-bottom: 0;
}

.checkout .payment-group .group-option {
  display: inline-block;
  margin-top: 10px !important;
  padding-bottom: 10px;
}

.checkout .payment-group .group-option label {
  padding-left: 30px;
}

.checkout .payment-group .group-option:last-child {
  padding-bottom: 0;
}

.checkout .payment-summary-block {
  padding: 20px;
  background-color: #F0F0F0;
}

.checkout .payment-summary-block::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .payment-summary-block .price-details-block {
  float: right;
  width: 50%;
  color: var(--clr-navy);
  text-align: right;
  font-size: 1rem;
}

@media screen and (max-width: 480px) {
  .checkout .payment-summary-block .price-details-block {
    float: none;
    width: 100%;
  }
}

.checkout .payment-summary-block .price-details-block ul li {
  padding: 5px 0;
}

.checkout .payment-summary-block .price-details-block ul li::after {
  clear: both;
  content: "";
  display: block;
}

.checkout .payment-summary-block .price-details-block ul li .text {
  float: left;
}

.checkout .payment-summary-block .price-details-block ul li .val {
  float: right;
}

.checkout .payment-summary-block .price-details-block ul li.total {
  padding-bottom: 10px;
  border-top: 0;
  font-family: var(--font-paragraph);
}

.cn .main-content {
  padding-bottom: 0;
}

.contact-banner {
  position: relative;
  background-image: url("../../images/contact-banner.png");
  background-size: cover;
  text-align: center;
}

.contact-banner .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 27, 86, 0.4);
}

.contact-banner .content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact-banner .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 580px) {
  .contact-banner .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.contact-banner .content h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 5.625rem;
}

@media screen and (max-width: 580px) {
  .contact-banner .content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-banner .content h1 {
    font-size: 3.75rem;
  }
}

.contact {
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  line-height: 35px;
  color: var(--clr-navy);
  text-align: center;
}

.contact p {
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  color: var(--clr-navy);
  padding-top: 8px;
}

.contact .contact-details {
  width: 45%;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
}

@media screen and (min-width: max-width) {
  .contact .contact-details {
    width: 100%;
  }
}

.contact .contact-details table {
  width: 80%;
}

.contact .contact-details td {
  border: none;
  padding: 0;
  padding-bottom: 20px;
}

.contact .contact-details td:first-child {
  padding-top: 5px;
  float: right;
  padding-right: 35px;
  font-size: 12px;
  color: var(--clr-navy);
}

.contact .contact-details td:last-child {
  font-size: 18px;
  color: var(--clr-navy);
}

.contact .contact-details td a {
  color: var(--clr-navy);
  text-decoration: underline;
}

.grey-bg {
  background: #f9f9f9;
  padding-bottom: 80px;
}

.contact-info h2 {
  font-size: 36px;
  line-height: 35px;
  color: var(--clr-navy);
  text-align: center;
  padding: 40px;
}

.contact-info .map-card {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}

.contact-info .map-card:last-child {
  margin-right: 0;
}

.contact-info .map-card img {
  width: 100%;
  height: 100%;
}

.contact-info .address {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 82.8125%;
}

.contact-info .address:last-child {
  margin-right: 0;
}

.contact-info .address .name {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
  margin: 30px 20px 20px 40px;
}

.contact-info .address .name:last-child {
  margin-right: 0;
}

@media screen and (max-width: 500px) {
  .contact-info .address .name {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin: 30px 16px 0px 34px;
  }

  .contact-info .address .name:last-child {
    margin-right: 0;
  }
}

.contact-info .address .name h3 {
  font-family: var(--font-paragraph);
  font-size: 18px;
  color: var(--clr-navy);
  line-height: 25px;
  font-weight: 600;
}

.contact-info .address .full-add {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 48.4375%;
  font-size: 14px;
  line-height: 19px;
  color: var(--clr-navy);
  margin: 30px;
  margin-bottom: 10px;
}

.contact-info .address .full-add:last-child {
  margin-right: 0;
}

@media screen and (max-width: 500px) {
  .contact-info .address .full-add {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-top: 0;
  }

  .contact-info .address .full-add:last-child {
    margin-right: 0;
  }
}

.contact-block {
  padding-top: 40px;
}

.contact-block::after {
  clear: both;
  content: "";
  display: block;
}

.contact-block .title-wrapper h4 {
  margin-bottom: 0;
  padding: 20px 30px;
  color: var(--clr-navy);
  border-bottom: 1px solid #dadada;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .contact-block .title-wrapper h4 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.contact-block .contact-form {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 57.03125%;
}

.contact-block .contact-form:last-child {
  margin-right: 0;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .contact-block .contact-form {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 560px;
  }

  .contact-block .contact-form:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact-block .contact-form {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto;
    max-width: 560px;
  }

  .contact-block .contact-form:last-child {
    margin-right: 0;
  }
}

.contact-block .contact-form .contact-form-block {
  margin-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.5);

  border-radius: var(--border-radius);
}

@media screen and (max-width: 767px) {
  .contact-block .contact-form .contact-form-block {
    margin-bottom: 20px;
  }
}

.contact-block .contact-form .contact-form-block:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .contact-block .contact-form .contact-form-block:last-child {
    margin-bottom: 20px;
  }
}

.contact-block .contact-form .form {
  padding: 30px 30px;
}

@media screen and (max-width: 767px) {
  .contact-block .contact-form .form {
    padding: 20px;
  }
}

.contact-block .contact-form .form::after {
  clear: both;
  content: "";
  display: block;
}

.contact-block .contact-form .form .group:first-child {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .contact-block .contact-form .form .group:first-child {
    margin-top: 50px;
  }
}

.contact-block .contact-form .form .group:last-child {
  margin-top: 0;
}

.contact-block .contact-form .form .submit-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

@media screen and (max-width: 580px) {
  .contact-block .contact-form .form .submit-wrapper {
    text-align: center;
  }

  .contact-block .contact-form .form .submit-wrapper .btn {
    float: none;
  }
}

.contact-block .contact-form .form .submit-wrapper .btn {
  float: right;
}

.contact-block .join-team-block {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 39.84375%;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(128, 128, 128, 0.5);

  border-radius: var(--border-radius);
}

.contact-block .join-team-block:last-child {
  margin-right: 0;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .contact-block .join-team-block {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto !important;
    max-width: 560px;
  }

  .contact-block .join-team-block:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact-block .join-team-block {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    float: none;
    margin: 0 auto !important;
    max-width: 560px;
  }

  .contact-block .join-team-block:last-child {
    margin-right: 0;
  }
}

.contact-block .join-team-block p {
  padding: 40px;
  padding-bottom: 0;
}

.contact-block .join-team-block .submit-wrapper {
  padding-left: -webkit-calc((100% - 270px));
  padding-left: calc((100% - 270px));
  padding-bottom: 40px;
}

.contact-block .join-team-block .submit-wrapper::after {
  clear: both;
  content: "";
  display: block;
}

.contact-block .join-team-block .submit-wrapper .btn {
  width: 210px;
}

/* FAQ Page styles */
.faq-banner {
  position: relative;
  background-image: url("../../images/rosepetal.png");
  text-align: center;
}

.faq-banner .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 27, 86, 0.4);
}

.faq-banner .content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .faq-banner .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 580px) {
  .faq-banner .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.faq-banner .content h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 5.625rem;
}

@media screen and (max-width: 580px) {
  .faq-banner .content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .faq-banner .content h1 {
    font-size: 3.75rem;
  }
}

#map {
  width: 100%;
  height: 400px;
  background-color: grey;
}

.contact-block .join-team-block p.pb30 {
  padding-top: 0;
  padding-bottom: 30px;
}

.footer {
  background-color: #fff;
  background-image: url(../../images/footer-flowers.png);
  background-position: bottom right;
  background-repeat: no-repeat;

  border-top: 1px solid rgba(33, 35, 74, 0.16);
}

.footer .newsletter-wrapper {
  background-color: rgba(136, 191, 57, 0.2);
}

.footer .newsletter-wrapper .newsletter-block {
  padding: 10px 0;
  text-align: center;
}

@media screen and (max-width: 580px) {
  .footer .newsletter-wrapper .newsletter-block {
    padding: 20px 0;
  }
  .footer {
    padding-bottom: 150px;
  }
}

.footer .newsletter-wrapper .newsletter-block .newsletter-input-block {
  position: relative;
}

.footer .newsletter-wrapper .newsletter-block .newsletter-input-block .icon-email {
  width: 24px;
  height: 16px;
  color: #fff;
}

@media screen and (max-width: 580px) {
  .footer .newsletter-wrapper .newsletter-block .newsletter-input-block .icon-email {
    right: 10px;
    width: 19px;
    height: 12px;
  }
}

.footer .newsletter-wrapper .newsletter-block .newsletter-input-block .newsletter-button {
  position: absolute;
  top: -9px;
  right: 0;
  width: 54px;
  height: 40px;
  background-color: var(--clr-red);
  text-align: center;
  line-height: 44px;
}

@media screen and (max-width: 580px) {
  .footer .newsletter-wrapper .newsletter-block .newsletter-input-block .newsletter-button {
    top: -4px;
    height: 30px;
    line-height: 34px;
  }
}

.footer .newsletter-wrapper .newsletter-block input {
  display: inline-block;
  margin-bottom: 0;
  width: 39%;
}

@media screen and (max-width: 580px) {
  .footer .newsletter-wrapper .newsletter-block input {
    padding: 8px 10px 6px;
    width: 100%;
  }
}

.footer .newsletter-wrapper .newsletter-block label {
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 28px;
  margin-bottom: 0;
  width: auto;
  color: var(--clr-navy);
  font-weight: normal;
  font-size: 1.125rem;
  font-family: var(--font-heading);
}

@media screen and (max-width: 580px) {
  .footer .newsletter-wrapper .newsletter-block label {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.footer .footer-wrapper {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 580px) {
  .footer .footer-wrapper {
    padding: 0;
  }
}

.footer a {
  color: var(--clr-navy50);

  text-transform: capitalize;
}

.footer .social a {
  color: var(--clr-navy50);
}
.footer .social a:hover {
  color: var(--clr-navy);
}

.footer a:hover {
  color: var(--clr-navy72);
}

.footer .footer-wrapper .title {
  margin-bottom: 17px;
  color: var(--clr-navy);
  text-transform: capitalize;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

@media screen and (max-width: 580px) {
  .footer .footer-wrapper .title {
    padding-left: 20px;
  }
}

.footer .footer-wrapper .footer-img {
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 40%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-img {
    display: none;
  }
}

.footer .footer-wrapper .footer-block {
  padding-top: 50px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .footer .footer-wrapper .footer-block {
    padding-top: 20px;
  }
}

.footer .footer-wrapper .footer-col {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 22.65625%;
  position: relative;
}

.footer .footer-wrapper .footer-col:last-child {
  margin-right: 0;
}

@media screen and (max-width: 580px) {
  .footer .footer-wrapper .footer-col {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .footer .footer-wrapper .footer-col:last-child {
    margin-right: 0;
  }
}

/*@media screen and (max-width: 580px) {*/
.footer .follow {
  margin-top: 40px;
  text-align: center;
}

.footer .social {
  /*.footer-wrapper .footer-col.follow*/
  display: inline-block;
}

@media screen and (max-width: 580px) {
  .footer .footer-wrapper .footer-col.footer-accordion {
    padding: 20px 0;
    border-bottom: 1px solid #B7B7B7;
  }

  .footer .footer-wrapper .footer-col.footer-accordion:first-child {
    padding-top: 0;
  }

  .footer .footer-wrapper .footer-col.footer-accordion .title {
    margin-bottom: 0;
  }

  .footer .footer-wrapper .footer-col.footer-accordion.active .title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 580px) {
  .footer .footer-wrapper .footer-col.footer-accordion ul {
    display: none;
    margin-left: 40px;
  }
}

.footer .footer-wrapper .footer-col.footer-accordion:first-child .footer-accordion-btn {
  top: -1px;
}

.footer .footer-wrapper .footer-col .footer-accordion-btn {
  position: absolute;
  top: 19px;
  right: 20px;
  display: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--clr-blush);
}

@media screen and (max-width: 580px) {
  .footer .footer-wrapper .footer-col .footer-accordion-btn {
    display: block;
  }
}

.footer .footer-wrapper .footer-col ul li {
  padding-bottom: 5px;
  font-size: 1.2rem;
}

.footer .footer-wrapper .footer-col ul li:last-child {
  padding-bottom: 0;
}

.footer ul.social li {
  display: inline-block;
  margin: 0 10px;
}

/*@media screen and (min-width: 581px) and (max-width: 767px) {
          .footer ul.social li {
            margin: 0 3px; } }*/
.footer ul.social li:first-child {
  margin-left: 0;
}

.footer ul.social li:last-child {
  margin-right: 0;
}

.footer ul.social li .icon {
  width: 20px;
  height: 20px;
}

.footer .copyright {
  padding: 30px 0;
  color: var(--clr-navy);
  text-align: center;
  font-size: 1rem;
}

.footer .copyright .copyright-symbol {
  position: relative;
  top: 0;
  display: inline-block;
  margin-right: 10px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--clr-navy);
  border-radius: 50%;
  text-align: center;
  font-size: 0.5625rem;
  font-family: var(--font-paragraph);
}

.about-banner {
  position: relative;
  background-image: url("../../images/about-bg.png");
  text-align: center;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 27, 86, 0.4);
}

.about-banner .content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .about-banner .content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 580px) {
  .about-banner .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.about-banner .content h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 5.625rem;
}

@media screen and (max-width: 580px) {
  .about-banner .content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .about-banner .content h1 {
    font-size: 3.75rem;
  }
}

.intro-section .content-text {
  font-size: 18px;
  color: var(--clr-navy);
  line-height: 25px;
}

.intro-section .social-share {
  display: block;
  margin: 0 auto;
  margin-top: 25px;
  width: 120px;
}

.intro-section .social-share::after {
  clear: both;
  content: "";
  display: block;
}

.intro-section .social-share li {
  float: left;
  width: 40px;
  text-align: center;
}

.intro-section .social-share li a {
  color: var(--clr-navy);
}

.intro-section .social-share li a svg {
  width: 20px;
  height: 20px;
}

.intro-section .social-share li a:hover {
  color: var(--clr-red);
}

.founders-section {
  background-color: #F9F9F9;
}

.founders-section .founders::after {
  clear: both;
  content: "";
  display: block;
}

.founders-section .founders .card {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 48.4375%;
  min-height: 370px;
  padding: 40px;
  background-color: #FFFFFF;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}

.founders-section .founders .card:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .founders-section .founders .card {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
    margin-bottom: 30px;
  }

  .founders-section .founders .card:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .founders-section .founders .card {
    padding: 30px;
  }
}

.founders-section .founders .card .head {
  margin-bottom: 30px;
}

.founders-section .founders .card .head img {
  display: inline-block;
  overflow: hidden;
  margin-right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  vertical-align: middle;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .founders-section .founders .card .head img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.founders-section .founders .card .head .title {
  display: inline-block;
  vertical-align: middle;
}

@media screen and (max-width: 500px) {
  .founders-section .founders .card .head {
    text-align: center;
  }

  .founders-section .founders .card .head .title {
    display: block;
    margin-top: 20px;
  }

  .founders-section .founders .card .head img {
    margin-right: 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .founders-section .founders .card .head .title {
    display: block;
  }
}

.founders-section .founders .card .head .title h3 {
  display: inline;
  margin-bottom: 10px;
  color: var(--clr-navy);
  font-size: 1.125rem;
  font-family: var(--font-paragraph);
}

.founders-section .founders .card .head .title p {
  color: var(--clr-navy);
  font-size: 0.75rem;
  font-family: var(--font-paragraph);
  padding-top: 5px;
}

.founders-section .founders .card .body p {
  font-size: 12px;
  color: var(--clr-navy);
}

.header-list .banner {
  position: relative;
  height: 600px;
  text-align: center;
}

.header-list .banner.list-banner {
  background-image: url("../../images/list-bg.png");
  background-size: cover;
}

.header-list .banner .banner-img {
  margin: 0 auto;
  width: auto;
  height: 100%;
}

.ban-content {
  position: absolute;
  top: 40%;
  left: 8%;
}

@media screen and (max-width: 1240px) {
  .ban-content {
    top: 6%;
    left: 50%;
    margin: 0 auto;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.ban-content .banner-heading {
  margin: 0;
  color: #fff;
  font-size: 5.6875rem;
  font-family: var(--font-heading);
  line-height: 90px;
}

@media screen and (max-width: 767px) {
  .ban-content .banner-heading {
    margin: 0 20px;
    font-size: 3.125rem;
    line-height: 50px;
  }
}

@media screen and (max-width: 580px) {
  .ban-content .banner-heading {
    font-size: 1.875rem;
    line-height: 30px;
  }
}

.ban-content .banner-caption {
  color: #fff;
  font-family: var(--font-paragraph);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.ban-content .btn {
  margin-top: 40px;
}

@media screen and (max-width: 340px) {
  .ban-content .btn {
    width: 240px;
  }
}

.list-business-form {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 31.25%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 60%;
}

.list-business-form:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1240px) {
  .list-business-form {
    width: 60%;
    top: 29%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .list-business-form {
    top: 26%;
  }
}

@media screen and (max-width: 500px) {
  .list-business-form {
    top: 22%;
    width: 90%;
  }
}

.list-business-form .form {
  max-width: 90%;
  background: #fff;
  margin: 0 auto;
  padding: 40px;
}

@media screen and (max-width: 500px) {
  .list-business-form .form {
    padding: 25px 40px;
  }
}

.list-business-form .form .group {
  margin-bottom: 40px;
}

.list-business-form .form .group:last-child {
  margin-bottom: 0;
}

.list-business-form .form .group:nth-last-child(2) {
  margin-bottom: 30px;
}

.list-business {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 40px;
}

.list-business h2 {
  font-size: 36px;
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .list-business h2 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .list-business.list-business1 {
    padding-bottom: 30px;
  }
}

.first {
  margin-top: 20px;
}

.first .col {
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 48.4375%;
  margin-top: 60px;
}

.first .col:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .first .col {
    margin-top: 30px;
  }
}

@media screen and (max-width: 580px) {
  .first .col {
    float: left;
    display: block;
    margin-right: 3.125%;
    width: 100%;
  }

  .first .col:last-child {
    margin-right: 0;
  }
}

.first .col h3 {
  margin-top: 20px;
  color: var(--clr-navy);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  font-family: var(--font-paragraph);
}

.first .col p {
  font-family: var(--font-paragraph);
  font-size: 14px;
  text-align: center;
  line-height: 19px;
  color: var(--clr-navy);
}

.first svg {
  width: 110px;
  height: 110px;
}

.list-business-btn {
  width: 210px;
  margin-left: calc(100% - 210px);
}

.owl-wrapper .testimonial-carousel .item .testimonial-card {
  background: #fff;
  float: left;
  display: block;
  margin-right: 3.125%;
  width: 82.8125%;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  float: none;
  display: inline-block;
}

@media screen and (max-width: 450px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card {
    width: 98%;
  }
}

.owl-wrapper .testimonial-carousel .item .testimonial-card:last-child {
  margin-right: 0;
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .left {
  width: 25%;
  float: left;
}

@media screen and (max-width: 900px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card .left {
    width: 100%;
    float: none;
  }
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .left img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 33px;
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card .left img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -6px;
  }
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .right {
  width: 75%;
  float: right;
  padding: 40px;
  padding-left: 40px;
}

@media screen and (max-width: 450px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card .right {
    padding: 40px 10px;
  }
}

@media screen and (max-width: 900px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card .right {
    width: 100%;
    float: none;
  }
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .right h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 33px;
  color: var(--clr-navy);
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 450px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card .right h3 {
    font-size: 20px;
  }
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .right p.helper {
  font-size: 16px;
  line-height: 22px;
  color: var(--clr-navy);
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .right p.helper span {
  color: var(--clr-navy);
}

.owl-wrapper .testimonial-carousel .item .testimonial-card .right p.text {
  font-size: 18px;
  text-align: center;
  line-height: 25px;
  color: var(--clr-navy);
  font-family: var(--font-paragraph);
}

@media screen and (max-width: 450px) {
  .owl-wrapper .testimonial-carousel .item .testimonial-card .right p.text {
    font-size: 16px;
  }
}

.next-holder {
  position: absolute;
  width: 200px;
  top: 0;
  right: -237px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}

.next-holder .item {
  margin-bottom: 6px;
}

.next-holder img {
  margin-left: 34px;
}

@media screen and (max-width: 1200px) {
  .next-holder {
    display: none;
  }
}

.next-holder .item .testimonial-card .left img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-bottom: 33px;
  margin-top: 40px;
}

.next-holder .item .testimonial-card .right {
  display: none;
}

.testimonial-carousel-wrapper .owl-theme .owl-controls .owl-page.active span {
  background-color: var(--clr-red);
}

.testimonial-carousel-wrapper .owl-theme .owl-controls .owl-page span {
  width: 8px;
  height: 8px;
  background-color: rgba(111, 111, 111, 0.3);
}

.testimonial-carousel-wrapper .owl-theme .owl-dots .owl-dot.active span,
.testimonial-carousel-wrapper .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--clr-red);
}

.testimonial-carousel-wrapper .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 30px;
}

.testimonial-carousel-wrapper .owl-next {
  right: 0;
  top: 42%;
}

.testimonial-carousel-wrapper .owl-next .icon {
  width: 16px;
  height: 29px;
}

.testimonial-carousel-wrapper .owl-next:hover {
  background-color: transparent;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .testimonial-carousel-wrapper .owl-next {
    right: -10px;
  }
}

.testimonial-carousel-wrapper .owl-prev {
  top: 42%;
}

.testimonial-carousel-wrapper .owl-prev .icon {
  width: 16px;
  height: 29px;
}

.testimonial-carousel-wrapper .owl-prev:hover {
  background-color: transparent;
  box-shadow: none;
}

@media screen and (max-width: 767px) {
  .testimonial-carousel-wrapper .owl-prev {
    left: -10px;
  }
}

.testimonial-main-section {
  overflow-x: hidden;
}

.float-right {
  float: right;
}

.ad-overlay {
  position: absolute;
  left: 20px;
  top: 25px;
}

.ad-overlay-bottom {
    position: absolute;
    left: 20px;
    bottom: 25px;
}

.cashback-overlay {
    position: absolute;
    left: 20px;
    top: 0;
    display: inline-block;
    color: #fff;
    width: 50px;
}

.cashback-overlay-content {
    background-color: #ff4632;
    font-family: founders-grotesk-x-cnd-bold;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    padding: 5px;
    line-height: 15px;
    min-height: 25px;
    width: 100%;
}

.img-wrapper > img {
  border-radius: var(--border-radius);
  overflow: hidden;
}