@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,600,700");
.send-form h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
  color: #1D211F;
  max-width: 900px;
  margin: 0 auto 12px;
}
.send-form p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #1D211F;
  max-width: 900px;
  margin: 0 auto 24px;
}
.send-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.send-form form .line {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}
.send-form form .input-box {
  width: 100%;
}
.send-form form .input-box .input-1 {
  border-radius: 0;
}
.send-form form .input-box textarea {
  padding: 12px;
  color: #202124;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.send-form form .input-box textarea::placeholder {
  color: #202124;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.header {
  position: relative;
  border-bottom: 1px solid var(--Divider, #CDD0E5);
}
.header .burger {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  right: 1rem;
  top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.header .burger > div {
  height: 2px;
  background-color: #000;
  transition: 0.5s;
  z-index: 999;
}
.header .burger.active div:nth-child(1) {
  transform: translateY(15px) rotate(45deg);
}
.header .burger.active div:nth-child(2) {
  opacity: 0;
}
.header .burger.active div:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}
.header__container {
  padding: 20px;
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-areas: "content";
  grid-auto-rows: auto;
  grid-gap: 0 24px;
  align-items: center;
}
.header__header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 100%;
  margin-top: 0;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
}
.header__logo img {
  --height: 52px;
  --width: 190px;
  min-height: var(--height);
  height: 100%;
  width: var(--width);
  object-fit: contain;
}
.header__footer {
  grid-area: footer;
  position: relative;
  border-bottom: 1px solid #E6E6E6;
}
@media (max-width: 768px) {
  .header__container {
    grid-template-columns: auto min-content;
    justify-content: space-between;
  }
}

.footer {
  --background: #000C11;
  --color: #FFFFFF;
  --color--2: $text-color--second;
  margin-top: 80px;
  background: var(--background);
}
.footer__header {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  grid-auto-rows: min-content;
  grid-gap: 24px;
  justify-content: space-between;
}
.footer__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 21px 0;
  margin-top: 80px !important;
  margin-bottom: 24px !important;
  border-top: 1px solid var(--color);
  border-bottom: 1px solid var(--color);
}
.footer__body .footer-item {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--color);
}
.footer__body .footer-item img {
  object-fit: contain;
  width: auto;
  max-height: 40px;
}
.footer__footer {
  --color: white;
  font-family: "Montserrat";
  color: var(--color);
  margin-top: 64px !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid #CDD0E5;
}
.footer__footer > span {
  text-transform: uppercase;
}
.footer__footer .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.footer-item__header {
  font-family: "Montserrat";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  text-transform: uppercase;
  color: var(--color);
  margin-bottom: 24px;
}
.footer-item__body {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 16px;
}
.footer-item__body li {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--color);
}
.footer-item a {
  color: var(--color);
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer__header {
    grid-template-columns: 100%;
    grid-auto-rows: min-content;
  }
}

.menu__header {
  display: none;
}
.menu__body {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-auto-rows: min-content;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 32px;
}
.menu-item a {
  padding: 0 8px;
  color: #101119;
  font-family: "Montserrat";
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.menu-item:hover a {
  text-decoration-line: underline;
}
.menu-item--active a {
  font-weight: 700;
  text-decoration-line: underline;
}
@media (max-width: 768px) {
  .menu__header {
    display: block !important;
  }
  .menu__body {
    display: none;
    grid-gap: 12px;
    position: absolute;
    left: 0;
    top: 100%;
    background: white;
    width: 100%;
    box-shadow: 0px 20px 20px 15px rgba(0, 0, 0, 0.12);
    margin: 0;
    z-index: 100;
    grid-template-columns: 100%;
    grid-auto-rows: min-content;
  }
  .menu__body.active {
    display: grid !important;
  }
  .menu-item {
    padding: 16px;
  }
}

input, select, textarea {
  background: #fff;
  max-width: 100%;
}

select.input-1 {
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 48px !important;
}

.input-box {
  position: relative;
  margin: 0;
}
.input-box, .input-box * {
  box-sizing: border-box;
}
.input-box textarea ~ .input-label {
  top: 17px;
}
.input-box .input-label {
  z-index: 2;
  position: absolute;
  color: #49454F;
  font-size: 16px;
  font-weight: 400;
  max-width: calc(100% - 16px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 8px;
  top: calc(50% - 8px);
  padding: 0 8px;
  transition: 250ms;
  user-select: none;
  pointer-events: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.005em;
}
.input-box .input-label svg {
  position: relative;
  width: 15px;
  height: 15px;
  top: 2px;
  transition: 250ms;
}
.input-box .input-1 {
  box-sizing: border-box;
  height: 50px;
  width: 100%;
  border-radius: 28px;
  color: #202124;
  border: 1px solid #26C0B7;
  padding: 13px 15px;
  transition: 250ms;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  outline: 1px solid transparent;
}
.input-box .input-1:focus {
  outline: none;
  border: 2px solid #26C0B7;
  transition: 250ms;
  outline: none;
}
.input-box .input-1::placeholder {
  color: #49454F;
}

.input-box.error .input-label {
  color: #FC554C;
  top: -12px;
  background: #fff;
  font-size: 11px;
  transition: 250ms;
}
.input-box.error .input-1 {
  border: 2px solid #FC554C;
}

.input-box.fill .input-label:first-of-type {
  color: #1C1B1F;
}
.input-box.fill.error .input-label:first-of-type {
  color: #FF4741;
}

.input-box.focus .input-label,
.input-box.fill .input-label,
.input-box.active .input-label {
  color: #26C0B7;
  top: -12px;
  background: #fff;
  font-size: 11px;
  transition: 250ms;
}
.input-box.focus .input-label svg,
.input-box.fill .input-label svg,
.input-box.active .input-label svg {
  position: relative;
  width: 11px;
  height: 11px;
  top: 2px;
  transition: 250ms;
}

.input-box.active .input-1 {
  border: 2px solid #26C0B7;
}

.pull-right {
  float: right;
}

.clear {
  clear: both;
}

textarea {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 134px;
}

.v-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101119;
}
.v-check a {
  /*background: var(--Main-L, linear-gradient(90deg, #780629 0%, #F50000 100%));*/
  background: #26C0B7;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration-line: underline;
}
.v-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
input:checked ~ .v-check__checkmark {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='4' fill='%230F2D36'/%3E%3Cg clip-path='url(%23clip0_50_2744)'%3E%3Cpath d='M9.49992 15.5L5.99992 12L4.83325 13.1667L9.49992 17.8334L19.4999 7.83335L18.3333 6.66669L9.49992 15.5Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_50_2744'%3E%3Crect width='20' height='20' fill='white' transform='translate(2 2)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.v-check__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.v-check__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  content: url("data:image/svg+xml,%3Csvg width='25' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.951.045a4.067 4.067 0 0 0-2.628 1.538 4.848 4.848 0 0 0-.707 1.48l-.095.375v17.125l.095.375c.115.456.429 1.113.707 1.479a4.135 4.135 0 0 0 2.245 1.468l.37.094h17.125l.369-.094a4.135 4.135 0 0 0 2.245-1.468 4.854 4.854 0 0 0 .707-1.479l.095-.375V3.438l-.094-.37A4.135 4.135 0 0 0 22.917.823a5.046 5.046 0 0 0-1.459-.706l-.354-.095-8.458-.006C7.994.012 4.081.025 3.951.045m17.071 2.019c.464.12.973.522 1.239.978.253.433.239-.098.239 8.957 0 7.911-.003 8.286-.077 8.551-.178.641-.762 1.219-1.401 1.385-.22.058-1.178.065-8.522.065-9.056 0-8.525.014-8.958-.239a2.656 2.656 0 0 1-.78-.768c-.28-.465-.262.142-.262-8.993s-.018-8.528.262-8.993c.158-.261.515-.614.781-.769.421-.246-.1-.232 8.938-.235 7.344-.003 8.322.004 8.541.061' fill='%23000' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.v-check--cart, .v-check--cart-product, .v-check--product {
  padding: 16px;
  padding-left: 48px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D211F;
}
.v-check--cart .v-check__container, .v-check--cart-product .v-check__container, .v-check--product .v-check__container {
  border-radius: 28px;
  border: 1.5px solid #BCC8CC;
}
.v-check--cart .v-check__checkmark, .v-check--cart-product .v-check__checkmark, .v-check--product .v-check__checkmark {
  top: calc(50% - 12px);
  left: 16px;
  width: 24px;
  height: 24px;
  background-color: transparent !important;
  content: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11.9954' cy='12.0111' r='9.845' stroke='%231D211F' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.v-check--cart .v-check__input:checked ~ .v-check__label, .v-check--cart-product .v-check__input:checked ~ .v-check__label, .v-check--product .v-check__input:checked ~ .v-check__label {
  font-weight: 600;
}
.v-check--cart .v-check__input:checked ~ .v-check__container, .v-check--cart-product .v-check__input:checked ~ .v-check__container, .v-check--product .v-check__input:checked ~ .v-check__container {
  background: #ECF5F5;
  border-color: #26C0B7;
}
.v-check--cart .v-check__input:checked ~ .v-check__checkmark, .v-check--cart-product .v-check__input:checked ~ .v-check__checkmark, .v-check--product .v-check__input:checked ~ .v-check__checkmark {
  content: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 1.41931C9.18955 1.41931 6.49421 2.53576 4.50693 4.52304C2.51964 6.51033 1.4032 9.20567 1.4032 12.0161C1.4032 14.8266 2.51964 17.5219 4.50693 19.5092C6.49421 21.4965 9.18955 22.6129 12 22.6129C14.8104 22.6129 17.5058 21.4965 19.4931 19.5092C21.4804 17.5219 22.5968 14.8266 22.5968 12.0161C22.5968 9.20567 21.4804 6.51033 19.4931 4.52304C17.5058 2.53576 14.8104 1.41931 12 1.41931ZM2.9232 12.0161C2.9232 9.60879 3.8795 7.30007 5.58173 5.59784C7.28396 3.89561 9.59268 2.93931 12 2.93931C14.4073 2.93931 16.716 3.89561 18.4183 5.59784C20.1205 7.30007 21.0768 9.60879 21.0768 12.0161C21.0768 14.4234 20.1205 16.7321 18.4183 18.4344C16.716 20.1366 14.4073 21.0929 12 21.0929C9.59268 21.0929 7.28396 20.1366 5.58173 18.4344C3.8795 16.7321 2.9232 14.4234 2.9232 12.0161ZM12 15.2161C12.8487 15.2161 13.6626 14.879 14.2627 14.2789C14.8629 13.6787 15.2 12.8648 15.2 12.0161C15.2 11.1674 14.8629 10.3535 14.2627 9.75337C13.6626 9.15325 12.8487 8.81611 12 8.81611C11.1513 8.81611 10.3374 9.15325 9.73726 9.75337C9.13714 10.3535 8.8 11.1674 8.8 12.0161C8.8 12.8648 9.13714 13.6787 9.73726 14.2789C10.3374 14.879 11.1513 15.2161 12 15.2161Z' fill='%230078A9'/%3E%3C/svg%3E%0A");
}
.v-check--radio .v-check__checkmark {
  content: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11.9954' cy='12.0111' r='9.845' stroke='%231D211F' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.v-check--radio .v-check__input:checked ~ .v-check__label {
  font-weight: 600;
}
.v-check--radio .v-check__input:checked ~ .v-check__checkmark {
  content: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 1.41931C9.18955 1.41931 6.49421 2.53576 4.50693 4.52304C2.51964 6.51033 1.4032 9.20567 1.4032 12.0161C1.4032 14.8266 2.51964 17.5219 4.50693 19.5092C6.49421 21.4965 9.18955 22.6129 12 22.6129C14.8104 22.6129 17.5058 21.4965 19.4931 19.5092C21.4804 17.5219 22.5968 14.8266 22.5968 12.0161C22.5968 9.20567 21.4804 6.51033 19.4931 4.52304C17.5058 2.53576 14.8104 1.41931 12 1.41931ZM2.9232 12.0161C2.9232 9.60879 3.8795 7.30007 5.58173 5.59784C7.28396 3.89561 9.59268 2.93931 12 2.93931C14.4073 2.93931 16.716 3.89561 18.4183 5.59784C20.1205 7.30007 21.0768 9.60879 21.0768 12.0161C21.0768 14.4234 20.1205 16.7321 18.4183 18.4344C16.716 20.1366 14.4073 21.0929 12 21.0929C9.59268 21.0929 7.28396 20.1366 5.58173 18.4344C3.8795 16.7321 2.9232 14.4234 2.9232 12.0161ZM12 15.2161C12.8487 15.2161 13.6626 14.879 14.2627 14.2789C14.8629 13.6787 15.2 12.8648 15.2 12.0161C15.2 11.1674 14.8629 10.3535 14.2627 9.75337C13.6626 9.15325 12.8487 8.81611 12 8.81611C11.1513 8.81611 10.3374 9.15325 9.73726 9.75337C9.13714 10.3535 8.8 11.1674 8.8 12.0161C8.8 12.8648 9.13714 13.6787 9.73726 14.2789C10.3374 14.879 11.1513 15.2161 12 15.2161Z' fill='%230F2D36'/%3E%3C/svg%3E%0A");
}
.v-check--product {
  padding: 0;
  margin: 0;
}
.v-check--product .v-check__checkmark {
  top: 20px;
  left: 20px;
  width: 24px;
  height: 24px;
  background-color: transparent !important;
  content: url("data:image/svg+xml,%3Csvg width='25' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.951.045a4.067 4.067 0 0 0-2.628 1.538 4.848 4.848 0 0 0-.707 1.48l-.095.375v17.125l.095.375c.115.456.429 1.113.707 1.479a4.135 4.135 0 0 0 2.245 1.468l.37.094h17.125l.369-.094a4.135 4.135 0 0 0 2.245-1.468 4.854 4.854 0 0 0 .707-1.479l.095-.375V3.438l-.094-.37A4.135 4.135 0 0 0 22.917.823a5.046 5.046 0 0 0-1.459-.706l-.354-.095-8.458-.006C7.994.012 4.081.025 3.951.045m17.071 2.019c.464.12.973.522 1.239.978.253.433.239-.098.239 8.957 0 7.911-.003 8.286-.077 8.551-.178.641-.762 1.219-1.401 1.385-.22.058-1.178.065-8.522.065-9.056 0-8.525.014-8.958-.239a2.656 2.656 0 0 1-.78-.768c-.28-.465-.262.142-.262-8.993s-.018-8.528.262-8.993c.158-.261.515-.614.781-.769.421-.246-.1-.232 8.938-.235 7.344-.003 8.322.004 8.541.061' fill='%23000' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.v-check--product .v-check__input:checked ~ .v-check__container {
  background: #ECF5F5;
  border-color: #26C0B7;
}
.v-check--product .v-check__input:checked ~ .v-check__checkmark {
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='4' fill='%230F2D36'/%3E%3Cg clip-path='url(%23clip0_50_2744)'%3E%3Cpath d='M9.49992 15.5L5.99992 12L4.83325 13.1667L9.49992 17.8334L19.4999 7.83335L18.3333 6.66669L9.49992 15.5Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_50_2744'%3E%3Crect width='20' height='20' fill='white' transform='translate(2 2)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.v-check--cart-product {
  padding: 16px;
  padding-right: 0;
  margin: 0;
}

.input-box .selection-box:before {
  display: none;
}
.input-box .selection-box:after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%237D838C' stroke-width='1.6'/%3E%3C/svg%3E%0A");
  width: 24px;
  height: 24px;
  right: 12px;
  top: calc(50% - 8px);
}

input.input--clear {
  background: none;
  border: none;
  outline: none;
}
input.input--clear::placeholder {
  color: inherit;
}

.input-box .password-eye {
  position: absolute;
  top: 0;
  right: 0;
  padding: 13px 16px;
}
.input-box .password-eye svg:not(.active) {
  display: none;
}

.v-form {
  width: 100%;
}
.v-form .input-box.error {
  margin-bottom: 4px;
}
.v-form .input-box.error .alert {
  min-height: 20px;
  height: 100%;
  width: 100%;
}

.input-box--qty {
  display: grid;
  grid-template-columns: 18px 46px 18px;
  grid-auto-rows: 1fr;
  grid-gap: 8px;
  align-items: center;
}
.input-box--qty input {
  text-align: center;
}
.input-box--qty input::-webkit-outer-spin-button,
.input-box--qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-box--qty input[type=number] {
  -moz-appearance: textfield;
}
.input-box--qty .input-box__plus, .input-box--qty .input-box__minus {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 36px;
  text-transform: capitalize;
  color: #070614;
  user-select: none;
}
.input-box--qty .input-box__plus:hover, .input-box--qty .input-box__minus:hover {
  color: #26C0B7;
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
  z-index: 9999;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  padding: 30px;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  max-width: 800px;
  width: fit-content;
  background: #FFFFFF;
  box-shadow: 4px 4px 30px rgba(31, 46, 85, 0.25);
  border-radius: 36px;
}
@media (max-width: 768px) {
  .modal__container {
    border-radius: 0;
    padding: 24px 16px;
  }
}

.modal__header {
  margin-bottom: 32px;
}

.modal__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #2D3748;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 32px;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

body, .wrapper, .wrapper__container {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  min-height: 50px;
}

footer {
  min-height: 50px;
}

.page:not(.page--home):not(.page--product) {
  --offset: 72px;
  margin-top: var(--offset);
}
@media (max-width: 1200px) {
  .page:not(.page--home):not(.page--product) {
    --offset: calc(38px + 20px) ;
  }
}
.page__container {
  width: 100%;
  max-width: 100%;
}

.page__header {
  grid-area: header;
}
.page__body {
  grid-area: body;
}
.page__footer {
  grid-area: footer;
}
.page--dashboard .page__container, .page--food-log .page__container, .page--activity-log .page__container, .page--mood-log .page__container, .page--weight-log .page__container, .page--profile .page__container {
  display: grid;
  grid-template-columns: 8fr 4fr;
  grid-auto-rows: min-content;
  grid-gap: 16px 48px;
  grid-template-areas: "header footer" "body footer";
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .page--dashboard .page__container, .page--food-log .page__container, .page--activity-log .page__container, .page--mood-log .page__container, .page--weight-log .page__container, .page--profile .page__container {
    grid-template-columns: 100%;
    grid-template-areas: "header" "body" "footer";
  }
}
.page--change-password .page__container, .page--forgot-password .page__container, .page--reset-password .page__container {
  align-items: center;
  justify-content: center;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: min-content;
  grid-template-areas: "header" "body" "footer";
  grid-gap: 16px;
}
.page--change-password .page__body, .page--forgot-password .page__body, .page--reset-password .page__body {
  max-width: 600px;
  justify-self: center;
  width: 100%;
}
.page--change-password .page__body .v-form__body, .page--forgot-password .page__body .v-form__body, .page--reset-password .page__body .v-form__body {
  grid-template-columns: 100% !important;
}
.page--forgot-password .page__body, .page--reset-password .page__body {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 8px;
}
.page--forgot-password .page__body p, .page--reset-password .page__body p {
  font-size: 14px;
}
.page--forgot-password .page__body .v-form__header, .page--reset-password .page__body .v-form__header {
  margin-bottom: 16px;
}
.page--forgot-password .page__body .v-form__header h2, .page--reset-password .page__body .v-form__header h2 {
  margin-bottom: 8px;
}
.page--forgot-password .page__body .v-form .button, .page--reset-password .page__body .v-form .button {
  width: 100%;
}
.page--checkout .page__container {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-template-areas: "header" "body";
  grid-gap: 32px;
}
.page--checkout .page__header .checkout {
  display: grid;
  grid-template-columns: auto min-content;
  grid-auto-rows: min-content;
  grid-gap: 32px;
}
.page--checkout .page__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 32px;
}
.page--checkout .page__body .v-form__container {
  padding: 20px;
  border: 1px solid #BCC8CC;
  border-radius: 28px;
}
.page--checkout .page__body .v-form__header {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 56px;
  text-transform: capitalize;
  color: #1D211F;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1.5px solid #E6E6E6;
}
.page--checkout .page__body .v-form__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 16px;
}
.page--checkout .page__body .v-form__body > *:not(:nth-child(13)):not(:nth-child(14)) {
  grid-column: 1/3;
}
.page--checkout .page__body .v-form .cards {
  margin: 18px 0;
  display: flex;
  align-items: center;
}
.page--checkout .page__body .v-form .cards span {
  white-space: nowrap;
}
.page--checkout .page__body .v-form .cards img {
  margin-left: 16px;
  height: 35px;
  width: fit-content;
  object-fit: contain;
}
.page--checkout .page__body .v-form--payment .v-form__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 16px 12px;
}
.page--checkout .page__body .v-form--payment .v-form__content > *:nth-child(1), .page--checkout .page__body .v-form--payment .v-form__content > *:nth-child(2) {
  grid-column: 1/3;
}
.page--checkout .page__body .v-form--payment .v-form__footer {
  margin-top: 16px;
}
.page--checkout .page__body .v-form--payment .v-form__footer button {
  width: 100%;
}
.page--checkout .page__body .v-form .v-check {
  margin-bottom: 18px;
}
.page--checkout .page__body .v-form .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #282C2D;
}
.page--checkout .page__body > button {
  width: 100%;
  margin-top: 18px;
}
.page--checkout .page__body > img {
  margin-top: 12px;
  height: 36px;
  max-height: 36px;
  object-fit: contain;
}
@media (max-width: 1200px) {
  .page--checkout .page__header .checkout {
    grid-template-columns: 100%;
  }
  .page--checkout .page__body {
    grid-template-columns: 100%;
    grid-template-areas: "header" "body";
  }
}
.page--basket .page__header {
  margin-bottom: 24px;
}
.page--basket .page__header h1 {
  color: #1D1D1B;
  text-align: center;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 114.286% */
  letter-spacing: 0.1px;
  text-transform: uppercase;
}
.page--basket .page__body {
  display: grid;
  grid-template-columns: auto min-content;
  grid-auto-rows: min-content;
  grid-gap: 32px;
}
.page--basket .page__body .js-clear-cart {
  min-width: 218px;
  justify-self: center;
}
@media (max-width: 1200px) {
  .page--basket .page__body .js-clear-cart {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .page--basket .page__header .checkout {
    grid-template-columns: 100%;
  }
  .page--basket .page__body {
    grid-template-columns: 100%;
    grid-template-areas: "header" "body";
  }
}
.page--ingredients h1 {
  margin-bottom: 48px;
}
.page--ingredients h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}
.page--ingredients img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.page--thanks .page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page--thanks .page__body svg {
  margin-bottom: 24px;
}
.page--thanks .page__body svg path {
  fill: #5FB01C;
}
.page--thanks .page__body h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: #1D211F;
}
.page--thanks .page__body h4 {
  margin-top: 12px;
  font-family: "Montserrat";
  text-align: center;
  color: #282C2D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.page--thanks .page__body .button {
  margin-top: 40px;
}
.page--catalog .page__header {
  margin-bottom: 40px;
}
.page--catalog .page__header h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  text-transform: capitalize;
  color: #070614;
}
.page--catalog .section {
  margin-top: 72px;
}
.page--catalog .section__header {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  text-transform: capitalize;
  color: #070614;
  margin-bottom: 28px;
}
.page--catalog .section--follow .section__body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #707070;
}
.page--catalog .section--follow .section__footer {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
}
.page--catalog .section--follow .section-item {
  display: grid;
  grid-template-columns: 32px auto;
  grid-auto-rows: min-content;
  grid-gap: 8px 20px;
  grid-template-areas: "header body" "header footer";
}
.page--catalog .section--follow .section-item__header {
  grid-area: header;
}
.page--catalog .section--follow .section-item__body {
  grid-area: body;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  color: #070614;
}
.page--catalog .section--follow .section-item__footer {
  grid-area: footer;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #707070;
}
@media (max-width: 1200px) {
  .page--catalog .section--follow .section__footer {
    grid-template-columns: 100%;
  }
}
.page--catalog .section--why-us .section__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: min-content;
  align-items: center;
  grid-gap: 12px 24px;
  justify-content: space-between;
}
.page--catalog .section--why-us .section-item {
  display: grid;
  grid-template-columns: 40px auto;
  grid-auto-rows: min-content;
  align-items: center;
  grid-gap: 12px;
}
.page--catalog .section--why-us .section-item__body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #070614;
}
@media (max-width: 1200px) {
  .page--catalog .section--why-us .section__body {
    grid-template-columns: 100%;
  }
}
@media (max-width: 1200px) {
  .page--catalog .page__body {
    grid-template-columns: 100%;
    grid-auto-rows: min-content;
  }
}
.page--product .page__header {
  display: grid;
  grid-template-columns: 370px auto;
  grid-auto-rows: min-content;
  grid-gap: 20px;
}
.page--product .page__header img {
  width: 370px;
  height: auto;
  object-fit: contain;
  justify-self: center;
  border-radius: 28px;
}
.page--product .page__header img.deal-label {
  width: 104px;
  height: 104px;
  position: absolute;
  top: 16px;
  left: 16px;
}
.page--product .page__header .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
}
.page--product .page__header .description__header {
  color: var(--Main-text, #101119);
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 12px;
}
.page--product .page__header .description__body {
  font-family: "Montserrat";
  color: var(--Main-text, #101119);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.page--product .page__header .description__body p {
  margin: 4px 0;
}
.page--product .page__header .product-qty {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #E0E0E0;
  display: grid;
  grid-template-columns: auto auto minmax(100px, auto);
  grid-auto-rows: 1fr;
  grid-gap: 28px;
  align-items: center;
  justify-content: flex-end;
}
.page--product .page__header .product-qty .input-box label {
  white-space: nowrap;
}
.page--product .page__header .product-qty .input-box input {
  border: 1px solid #BCC8CC;
  border-radius: 8px;
  height: 32px;
  padding: 4px 8px;
}
.page--product .page__header .product-qty .price {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: right;
  text-transform: capitalize;
  color: #070614;
}
.page--product .page__header .product-options {
  margin: 16px 0;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 12px;
}
.page--product .page__header .product-options > * {
  grid-column: 1 !important;
  width: 100%;
}
.page--product .page__header .product-options > *:last-child {
  margin-top: 12px;
}
.page--product .page__header .product-options-item--price {
  margin-top: 32px;
  width: min-content;
  display: grid;
  grid-template-columns: auto min-content;
  grid-auto-rows: 1fr;
  align-items: center;
  grid-gap: 32px;
  grid-column: 2;
  background: #F5FFFC;
  padding: 32px;
  border: 1.5px solid #5A25B3;
  border-radius: 16px;
}
.page--product .page__header .product-options-item--price .price {
  white-space: nowrap;
  color: #5A25B3;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
}
.page--product .page__header .we-accept {
  margin-top: 24px;
  margin-left: auto;
  white-space: nowrap;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  align-items: center;
  gap: 8px;
}
.page--product .page__header .we-accept > * {
  justify-self: flex-start;
}
.page--product .page__header .we-accept img {
  max-height: 35px;
  object-fit: contain;
  width: auto;
  height: 100%;
}
.page--product .page__header .title-price {
  color: var(--Main-text, #101119);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 20px;
}
.page--product .section {
  margin-top: 72px;
}
.page--product .section__header {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  text-transform: capitalize;
  color: #070614;
  margin-bottom: 28px;
}
.page--product .section--why-us .section__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  align-items: center;
  grid-gap: 12px 24px;
  justify-content: space-between;
}
.page--product .section--why-us .section-item {
  display: grid;
  grid-template-columns: 32px auto;
  grid-auto-rows: min-content;
  grid-gap: 8px 20px;
  grid-template-areas: "header body" "header footer";
}
.page--product .section--why-us .section-item__header {
  grid-area: header;
}
.page--product .section--why-us .section-item__body {
  grid-area: body;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  color: #070614;
}
.page--product .section--why-us .section-item__footer {
  grid-area: footer;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #707070;
}
.page--product .section--why-us .section__footer {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #707070;
  margin-bottom: 40px;
}
.page--product hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #D7D8DB;
}
.page--product .total-item {
  margin: 4px 0;
}
.page--product .total-item--shipping, .page--product .total-item--subtotal {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.page--product .total-item--shipping > *:first-child, .page--product .total-item--subtotal > *:first-child {
  font-weight: 600;
}
.page--product .total-item--total {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
}
.page--product label {
  display: block;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}
.page--product label b {
  font-weight: 600;
}
.page .breadcrumbs {
  margin-bottom: 20px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #05080F;
  padding: 20px 0;
}
.page .breadcrumbs a {
  color: inherit;
}
.page .breadcrumbs > * {
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 1200px) {
  .page .page__header {
    grid-template-columns: 100%;
  }
  .page .page__header .product-options {
    width: 100% !important;
  }
  .page .page__header .product-options-item--price {
    grid-template-columns: 100%;
    width: 100%;
  }
  .page .page__header .product-options-item--price .button {
    width: 100%;
  }
  .page .section--why-us .section__body {
    grid-template-columns: 100%;
  }
}
@media (max-width: 768px) {
  .page--product .page__header .product-options {
    max-width: none;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
}
.pagination li {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1.5px solid #0089B0;
  border-radius: 28px;
  box-sizing: border-box !important;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #0089B0;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  max-height: 48px;
}
.pagination li.active {
  color: #AC5892;
  border-color: #AC5892;
}
.pagination li.disabled {
  pointer-events: none;
  color: gray;
  border-color: lightgray;
}

.layout--dashboard .page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout--dashboard .calendar {
  display: grid;
  grid-template-columns: 32px auto 32px;
  grid-template-rows: 1fr;
  grid-gap: 8px;
  align-items: center;
  justify-content: center;
}
.layout--dashboard .calendar > span {
  font-weight: 600;
}
.layout--dashboard .calendar i {
  color: #0089B0;
}
.layout--dashboard h6.title {
  margin: 8px 0 16px 0;
  background-color: #AC5892;
  color: #ffffff;
  border-bottom: 1px solid #d6d5c9;
  padding: 15px;
  font-size: 14px;
  line-height: normal;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
}
.layout--dashboard .mood-slider > * {
  margin: 8px auto;
}

.v-form--about .v-form, .v-form--email .v-form, .v-form--password .v-form {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid whitesmoke;
}
.v-form--about .v-form__header, .v-form--email .v-form__header, .v-form--password .v-form__header {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 24px;
}
.v-form--about .v-form__body, .v-form--email .v-form__body, .v-form--password .v-form__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 2px 16px;
}
.v-form--about .v-form__footer, .v-form--email .v-form__footer, .v-form--password .v-form__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.basket {
  border-collapse: collapse;
  width: 100%;
}
.basket thead th:nth-child(2), .basket tbody td:nth-child(2) {
  text-align: left !important;
}
.basket thead th {
  padding: 12px 24px;
  border-top: 1px solid var(--Divider, #CDD0E5);
  border-bottom: 1px solid var(--Divider, #CDD0E5);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.basket tbody tr:not(.active) {
  display: none;
}
.basket tbody td {
  padding: 16px 24px;
  text-align: center;
}
.basket tbody td, .basket tbody td a {
  color: #101119;
}
.basket tbody td img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.basket tbody td:nth-child(2) {
  color: var(--Main-text, #101119);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.basket tbody td:nth-child(3) {
  color: var(--Main-text, #101119);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.basket tbody td:nth-child(4) {
  color: var(--Main-text, #101119);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.basket tbody td:nth-child(6) button {
  background: none;
  border: none;
}
@media (max-width: 1200px) {
  .basket thead th {
    padding: 8px;
  }
  .basket tbody td {
    padding: 16px 8px;
    font-size: 14px !important;
  }
  .basket tbody td img {
    width: 48px;
    height: 48px;
  }
}

.basket--total {
  position: sticky;
  top: 10px;
  white-space: nowrap;
  height: fit-content;
  min-height: 136px;
  color: #282828;
  text-align: right;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 163.636% */
  letter-spacing: 0.1px;
  min-width: 270px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--Divider, #CDD0E5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.basket--total > * {
  width: 100%;
}
.basket--total .total__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.basket--total .total__body {
  margin-top: 28px;
}
.basket--total .total__body a, .basket--total .total__body button {
  width: 100%;
}
@media (max-width: 1020px) {
  .basket--total {
    position: static;
  }
}

.variant {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
}
.variant-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 133.333% */
  text-transform: capitalize;
  float: left;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.variant-title:not(:first-child):last-child {
  margin-top: 24px;
}
.variant__body {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.variant__body > * {
  min-width: 115px;
}
.variant-item {
  cursor: pointer;
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  padding: 12px;
  border: 1px solid lightgray;
  border-radius: 16px;
  text-align: center;
}
.variant-item.active {
  background: #ECF5F5;
}
.variant-item.active, .variant-item.active * {
  border-color: #26C0B7;
}
.variant-item__header {
  padding-bottom: 8px;
  border-bottom: 1px solid lightgray;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-transform: uppercase;
}
.variant-item__body {
  padding-top: 8px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 1200px) {
  .variant__body {
    gap: 8px;
  }
}

.section {
  width: 100%;
  height: 100%;
}
.section__container {
  margin-bottom: 72px;
  margin-top: 72px;
}
.section--main .section__header {
  margin-top: 88px;
  margin-bottom: 20px;
}
.section--main .section__header h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  text-transform: capitalize;
  color: #070614;
  margin-bottom: 16px;
}
.section--main .section__header h2 span {
  color: #5A25B3;
}
.section--main .section__header-text {
  margin-top: 12px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #282C2D;
}
.section--main-0 .section__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 0 !important;
  padding: 212px 135px;
  min-height: 800px;
  background-repeat: no-repeat;
  background-image: url("/images/sections/0/background.png");
  background-position: center;
  background-size: cover;
  border: 1px solid #E6E6E6;
  overflow: hidden;
}
.section--main-0 .section__container > * {
  text-align: center;
}
.section--main-0 .section__container:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 17, 25, 0) 33.7%, rgba(16, 17, 25, 0.65) 67.84%, rgba(16, 17, 25, 0.8) 100%);
  z-index: 0;
}
.section--main-0 .section__container > * {
  position: relative;
  z-index: 1;
}
.section--main-0 .section__header h1 {
  position: relative;
  font-family: "Montserrat";
  color: #FFF;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.section--main-0 .section__body {
  margin-top: 20px;
}
.section--main-0 .section__body h3 {
  font-family: "Montserrat";
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
}
.section--main-0 .section__footer {
  margin-top: 64px;
}
.section--main-2 .section__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 24px 40px;
  align-items: center;
}
.section--main-2 .section__container .title {
  font-size: 32px !important;
  line-height: 48px !important;
}
.section--main-2 .section__body img {
  --size: 495px;
  max-height: var(--size);
  max-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: 10000px;
  overflow: hidden;
  object-fit: cover;
}
.section--main-2 .section__footer .sub-title {
  margin-bottom: 16px;
  color: #26C0B7;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 100% */
  letter-spacing: 5px;
  text-transform: uppercase;
}
.section--main-2 .section__footer .title {
  margin-bottom: 24px;
  max-width: 540px;
  color: #101119;
  font-family: "Montserrat";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
}
.section--main-2 .section__footer p {
  margin-bottom: 16px;
  color: #212330;
  font-family: "Montserrat";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.section--main-2 .item {
  padding: 54px;
  background: #0F1C2E;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}
.section--main-2 .item__header {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: white;
  margin-bottom: 24px;
}
.section--main-2 .item__body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  color: white;
  margin-bottom: 44px;
}
.section--main-2 .item__footer {
  margin-top: auto;
}
@media (max-width: 1024px) {
  .section--main-2 .section__container {
    grid-template-columns: 100%;
    justify-content: center;
    text-align: center;
  }
  .section--main-2 .section__container .title {
    max-width: none;
  }
  .section--main-2 .section__body img {
    --size: 280px;
  }
}
@media (max-width: 768px) {
  .section--main-0 .section__container {
    padding: 72px 24px;
    min-height: 450px;
  }
  .section--main-0 .section__header h1 {
    font-size: 44px;
    line-height: 72px;
  }
  .section--main-0 .section__header h1:after, .section--main-0 .section__header h1:before {
    display: none;
  }
  .section--main-0 .section__body h3 {
    font-size: 16px;
  }
}
.section--catalog .section__header h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  text-transform: uppercase;
  color: #070614;
  margin-bottom: 16px;
}
.section--catalog .section__header-text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 56px;
  color: #707070;
  text-transform: none;
  max-width: 980px;
  margin-inline: auto;
}
.section--catalog .section__body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: min-content;
  grid-gap: 24px 20px;
}
@media (max-width: 1200px) {
  .section--catalog .section__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section--catalog .section__body {
    justify-content: center;
    grid-template-columns: 312px;
    grid-gap: 36px;
    grid-auto-rows: min-content;
  }
  .section--catalog .section__body > * {
    justify-self: center;
  }
}
.section--recently-articles {
  margin: 48px 0;
}
.section--recently-articles .section__header {
  margin-bottom: 24px;
}
.section--recently-articles .section__body {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 8px;
}
.section--recently-articles .section-item:nth-child(odd) {
  background: whitesmoke;
}
.section--recently-articles .section-item__container {
  display: grid;
  grid-template-columns: 160px auto;
  grid-auto-rows: 1fr;
  grid-gap: 8px;
  align-items: flex-start;
}
.section--recently-articles .section-item__header {
  min-height: 90px;
  height: 90px;
  max-height: 90px;
}
.section--recently-articles .section-item__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--recently-articles .section-item__body {
  padding: 12px 4px;
}
.section--recently-articles .section-item__body h4 {
  color: #4d4d4d;
  font-weight: 500;
  line-height: normal;
}
.section--user-info {
  margin-bottom: 28px;
}
.section--user-info .section__header {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 12px;
}
.section--user-info .section__body {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 8px;
}
.section--user-info .section-item span {
  font-weight: 600;
}
.section--tags .section__header, .section--social .section__header, .section--articles .section__header {
  text-transform: capitalize;
  font-size: 22px;
  line-height: 28px;
}
.section--tags .section__body ul, .section--social .section__body ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.section--tags .section__body ul .button, .section--social .section__body ul .button {
  padding: 8px 12px;
  font-size: 14px;
  line-height: 16px;
  text-transform: none;
  min-width: 80px;
  height: 36px;
}
.section--articles .section__body {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 24px;
}
.section--social .section__body ul li {
  width: 48px;
  height: 48px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--social .section__body ul li.facebook {
  color: #4267B2;
}
.section--social .section__body ul li.twitter {
  color: #1DA1F2;
}
.section--social .section__body ul li.flickr {
  color: #0063dc;
}
.section--social .section__body ul li.youtube {
  color: #FF0000;
}
.section--social .section__body ul li a {
  font-size: 24px;
  color: inherit;
}
.section--comments .section__body {
  margin-bottom: 48px;
}
.section--comments .section__body .list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.section--comments .section__body .list-item {
  margin: 16px 0;
  display: grid;
  grid-template-columns: auto 90px;
  grid-auto-rows: min-content;
  grid-template-areas: "header footer" "body body";
}
.section--comments .section__body .list-item__header {
  grid-area: header;
  font-weight: 600;
  margin-bottom: 8px;
}
.section--comments .section__body .list-item__body {
  grid-area: body;
  font-size: 14px;
}
.section--comments .section__body .list-item__footer {
  grid-area: footer;
  font-size: 14px;
  color: slategray;
}
.section--contact .section__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 24px;
}
.section--contact .section-item {
  display: grid;
  grid-template-columns: 40px auto;
  grid-auto-rows: min-content;
  grid-gap: 8px 12px;
  align-items: flex-start;
}
.section--contact .section-item__header {
  grid-row: 1/3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.section--contact .section-item__body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #1D211F;
}
.section--contact .section-item__footer {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D211F;
}
.section--contact .section-item:nth-child(1), .section--contact .section-item:nth-child(4) {
  border-right: 1px solid #CDD0E5;
  padding-right: 24px;
}
.section--contact .section-item:nth-child(3), .section--contact .section-item:nth-child(6) {
  border-left: 1px solid #CDD0E5;
  padding-left: 24px;
}
@media (max-width: 1200px) {
  .section--contact .section__body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section--contact .section-item:nth-child(4) {
    border-right: none;
    padding-right: 0;
  }
  .section--contact .section-item:nth-child(3), .section--contact .section-item:nth-child(6) {
    padding-left: 0;
    border-left: none;
  }
  .section--contact .section-item:nth-child(3), .section--contact .section-item:nth-child(5) {
    border-right: 1px solid #CDD0E5;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .section--contact .section__body {
    grid-template-columns: 100%;
  }
  .section--contact .section-item {
    border: none !important;
    padding: 0 !important;
  }
}
.section--cart .section__header {
  margin-bottom: 20px;
}
.section--cart .section__header h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  text-transform: capitalize;
  color: #1D211F;
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1.5px solid #E6E6E6;
}
.section--cart .section__header div {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #282C2D;
}
.section--recommended .section__header {
  margin-bottom: 40px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  text-transform: capitalize;
  color: #070614;
}
.section--recommended .section__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 16px;
}
@media (max-width: 1200px) {
  .section--recommended .section__body {
    grid-template-columns: 100%;
    grid-gap: 32px;
  }
}

#chart {
  border: 1px solid whitesmoke;
}
#chart .title {
  text-align: center;
  font-weight: 600;
  background: #004A5E;
  color: white;
  padding: 16px;
}
#chart #placeholder {
  position: relative;
  margin: 16px;
  height: 244px;
}
#chart ul.legend {
  padding: 0;
  list-style: none;
  margin: 0;
}
#chart ul.legend li {
  padding: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
#chart ul.legend li:nth-child(1) {
  background-color: #ff7992;
}
#chart ul.legend li:nth-child(2) {
  background-color: #FFD0A8;
}
#chart ul.legend li:nth-child(3) {
  background-color: #67F267;
}

table.table, .page--blog-show .page__body table {
  margin: 16px 0;
  border-collapse: collapse;
}
table.table tr th, table.table tr td, .page--blog-show .page__body table tr th, .page--blog-show .page__body table tr td {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  padding: 8px 16px;
  border: 1px solid lightgrey;
}
table.table tr th > *, table.table tr td > *, .page--blog-show .page__body table tr th > *, .page--blog-show .page__body table tr td > * {
  text-align: center;
}
table.table tr th, .page--blog-show .page__body table tr th {
  color: white;
  background-color: #004A5E;
}
table.table tr td.weight-current, .page--blog-show .page__body table tr td.weight-current {
  padding: 16px;
}
table.table tr:nth-child(even), .page--blog-show .page__body table tr:nth-child(even) {
  background: #f6f6f6;
}
.wrapper--change-password .menu--auth {
  display: none !important;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before, .fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before, .fa-users:before {
  content: "\f0c0";
}

.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before, .fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}

.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}

.fa-won:before, .fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before, .fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

*:not(.v-form) {
  box-sizing: border-box;
  transition: all 0.35s;
}

.hidden:not(.customblock-show) {
  display: none !important;
}

img {
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6, p, fieldset, a, html, body {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  text-decoration: none;
}

html body .container {
  --max-width: calc(1170px + 16px * 2);
  --padding-x: 16px;
  max-width: var(--max-width);
  width: 100%;
  margin: auto;
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
}
html body .container--full {
  --max-width: 100vw;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
html body .container--xl {
  --max-width: calc(1566px + 16px * 2) ;
}
html body .container--padding {
  padding-left: max(16px, (100vw - var(--max-width)) / 2);
  padding-right: max(16px, (100vw - var(--max-width)) / 2);
  max-width: none;
  margin: 0;
}

.v-label--checkbox {
  display: grid;
  grid-template-columns: 17px auto;
  grid-template-rows: min-content;
  grid-column-gap: 8px;
}

button {
  cursor: pointer;
}

.button {
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
  box-sizing: border-box !important;
  height: 56px;
  min-width: 165px;
  padding: 12px 36px;
  font-family: "Montserrat";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  color: var(--color);
}
.button.with-icon {
  --size: 20px;
}
.button.with-icon:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  height: var(--size);
  width: var(--size);
  background-image: url("/images/button/cart.svg");
  background-size: contain;
}
.button--xl {
  height: 56px;
  font-size: 24px;
  line-height: 36px;
}
.button--xl, .button--xl.with-icon {
  --size: 26px;
}
.button--sm {
  height: 40px;
  font-size: 16px;
  line-height: 24px;
}
.button--sm, .button--sm.with-icon {
  --size: 20px;
}
.button--main {
  border: none;
  --color: #101119;
  background: #26C0B7;
  border-radius: 28px;
  color: var(--color);
  transition: 0.5s all;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  border-radius: 28px;
  background: var(--Main-L, #26C0B7);
}
.button--main:hover {
  color: var(--color) !important;
  background: #197B75;
}
.button--second {
  border: none;
  --color: #fff;
  background: #26C0B7;
  border-radius: 28px;
  font-weight: 600;
}
.button--second:hover {
  color: var(--color) !important;
  background: #136DD8;
}
.button--outline {
  --color: $text-color;
  background: #26C0B7;
  /*border: 1px solid var(--Main-L, $main-color--hover);*/
  border-radius: 28px;
}
.button--outline span {
  background: #26C0B7;
  background-clip: text;
  -webkit-background-clip: text;
  /*-webkit-text-fill-color: transparent;*/
}
.button--outline svg path {
  fill: #26C0B7;
}
.button--text {
  padding: 0;
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box !important;
  /*background: var(--Main-L, linear-gradient(90deg, #780629 0%, #F50000 100%));*/
  background: #26C0B7;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.button--text svg {
  margin-left: 8px;
}
.button--text svg path {
  fill: #000;
}
.button--text:hover {
  color: #197B75;
}
.button--text:hover svg path {
  fill: #197B75;
}
.button--txt {
  padding: 0;
  min-width: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #070614;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box !important;
  white-space: nowrap;
}
.button--txt svg {
  margin-left: 8px;
}
.button--txt:hover {
  color: #197B75;
}
.button--txt:hover svg path {
  fill: #197B75;
}

.g-recaptcha {
  display: inline-block;
}

.page {
  font-family: "Montserrat";
  font-style: normal;
  box-sizing: border-box;
}
.page--login h1, .page--register h1, .page--about h1, .page--contact h1, .page--membership h1, .page--terms h1, .page--policy h1, .page--refund h1, .page--shipping h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 54px;
  text-align: center;
  text-transform: capitalize;
  color: #1D211F;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .page--login h1, .page--register h1, .page--about h1, .page--contact h1, .page--membership h1, .page--terms h1, .page--policy h1, .page--refund h1, .page--shipping h1 {
    margin-bottom: 28px;
  }
}
.page--login .container--text, .page--register .container--text, .page--about .container--text, .page--contact .container--text, .page--membership .container--text, .page--terms .container--text, .page--policy .container--text, .page--refund .container--text, .page--shipping .container--text {
  padding: 24px;
  border: 1px solid #D6D8DB;
  border-radius: 16px;
}
.page--policy .container--text, .page--terms .container--text, .page--refund .container--text, .page--shipping .container--text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121A2E;
}
.page--policy .container--text h1, .page--terms .container--text h1, .page--refund .container--text h1, .page--shipping .container--text h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
}
.page--policy .container--text h2, .page--policy .container--text h3, .page--policy .container--text h4, .page--policy .container--text h5, .page--policy .container--text h6, .page--terms .container--text h2, .page--terms .container--text h3, .page--terms .container--text h4, .page--terms .container--text h5, .page--terms .container--text h6, .page--refund .container--text h2, .page--refund .container--text h3, .page--refund .container--text h4, .page--refund .container--text h5, .page--refund .container--text h6, .page--shipping .container--text h2, .page--shipping .container--text h3, .page--shipping .container--text h4, .page--shipping .container--text h5, .page--shipping .container--text h6 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 24px;
  margin-top: 24px;
}
.page--policy .container--text > ul, .page--terms .container--text > ul, .page--refund .container--text > ul, .page--shipping .container--text > ul {
  padding: 0;
}
.page--policy .container--text li > h4, .page--terms .container--text li > h4, .page--refund .container--text li > h4, .page--shipping .container--text li > h4 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #00091F;
}
.page--policy .container--text li > h5, .page--terms .container--text li > h5, .page--refund .container--text li > h5, .page--shipping .container--text li > h5 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #121A2E;
}
.page--policy .container--text li > h6, .page--terms .container--text li > h6, .page--refund .container--text li > h6, .page--shipping .container--text li > h6 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
.page--policy .container--text p, .page--terms .container--text p, .page--refund .container--text p, .page--shipping .container--text p {
  margin-bottom: 16px;
}
.page--policy .container--text ol, .page--terms .container--text ol, .page--refund .container--text ol, .page--shipping .container--text ol {
  padding-left: 32px !important;
  padding-top: 0 !important;
}
.page--policy .container--text ol li::marker, .page--terms .container--text ol li::marker, .page--refund .container--text ol li::marker, .page--shipping .container--text ol li::marker {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}
.page--policy .container--text ol li ul, .page--terms .container--text ol li ul, .page--refund .container--text ol li ul, .page--shipping .container--text ol li ul {
  list-style-type: initial;
  padding-left: 20px !important;
  padding-top: 0 !important;
}
.page--policy .container--text ol li ul::marker, .page--terms .container--text ol li ul::marker, .page--refund .container--text ol li ul::marker, .page--shipping .container--text ol li ul::marker {
  font-size: 20px;
  line-height: 20px;
}
.page--login .page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page--login .v-form {
  margin-top: 52px;
  max-width: 820px;
}
.page--login .v-form__container {
  padding: 50px;
  background: #FFFFFF;
  box-shadow: 0px 4px 28px rgba(0, 46, 94, 0.1);
  border-radius: 24px;
}
.page--login .v-form__body {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-gap: 4px 16px;
}
.page--login .v-form__footer {
  display: flex;
  flex-direction: column;
}
.page--login .v-form__footer div {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.page--login .v-form__footer div a {
  color: #0C5BB0;
}
.page--login .v-form__footer .button {
  margin: 36px auto 0 auto;
}
.page--register .page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page--register .v-form {
  margin-top: 52px;
  max-width: 820px;
}
.page--register .v-form__container {
  padding: 50px;
  background: #FFFFFF;
  box-shadow: 0px 4px 28px rgba(0, 46, 94, 0.1);
  border-radius: 24px;
}
.page--register .v-form__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 4px 16px;
}
@media (max-width: 768px) {
  .page--register .v-form__body {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .page--register .v-form__body > * {
    grid-column: 1 !important;
  }
  .page--register .v-form__body > *:nth-child(1), .page--register .v-form__body .full {
    grid-template-columns: 100% !important;
    grid-template-rows: auto !important;
  }
  .page--register .v-form__body > *:nth-child(1) > *, .page--register .v-form__body .full > * {
    grid-column: 1 !important;
  }
}
.page--register .v-form__footer {
  display: flex;
  flex-direction: column;
}
.page--register .v-form__footer div {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #49454F;
}
.page--register .v-form__footer div a {
  color: #26C0B7;
}
.page--register .v-form__footer .button {
  margin: 36px auto 0 auto;
}
.page--register .v-form hr {
  margin: 12px 0 36px 0;
}
.page--register .v-form .full {
  grid-column: 1/3;
}
.page--register .v-form .full--card {
  display: grid;
  grid-template-columns: auto 136px;
  grid-template-rows: 1fr;
  grid-gap: 16px;
}
.page--register .v-form .full--address {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 16px;
}
.page--about .section {
  background: #FFFFFF;
  border: 1px solid #D6D8DB;
  border-radius: 24px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #00091F;
}
.page--about .section__body {
  padding: 24px;
  border-bottom: 1px solid #D6D8DB;
}
.page--about .section__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.page--about .section__footer a {
  margin-top: 12px;
}
.page--membership .section > * {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page--membership .section__container {
  display: flex;
  flex-direction: column;
}
.page--membership .section__container > * {
  width: 100%;
}
.page--membership .section__content {
  background: #FFFFFF;
  border: 1px solid #D6D8DB;
  border-radius: 24px;
}
.page--membership .section__header {
  padding: 30px;
  border-bottom: 1px solid #D6D8DB;
}
.page--membership .section__body {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page--membership .section__body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page--membership .section__body ul svg {
  margin-right: 8px;
}
.page--membership .section__body ul li {
  display: flex;
  align-items: center;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121A2E;
}
.page--membership .section__body ul li:not(:last-child) {
  margin-bottom: 12px;
}
.page--membership .section__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #0C5BB0;
  margin-bottom: 24px;
}
.page--membership .section__price {
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: #30B067;
}
.page--membership .section__per {
  margin-top: 4px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #676D73;
}
.page--membership .section__footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page--contact .page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page--contact .full--captcha {
  grid-column: 1/3;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page--contact .v-form__container {
  padding: 50px;
  border: 1px solid #D6D8DB;
  border-radius: 24px;
}
.page--contact .v-form__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 0 32px;
}
.page--contact .v-form__body > *:nth-child(1) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 4px 16px;
}
.page--contact .v-form__body > *:nth-child(1) > *:last-child {
  grid-column: 1/3;
}
.page--contact .v-form__footer {
  display: flex;
  flex-direction: column;
}
.page--contact .v-form__footer .button {
  margin: 36px auto 0 auto;
}
@media (max-width: 768px) {
  .page--contact .v-form__body {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .page--contact .v-form__body > * {
    grid-column: 1 !important;
  }
  .page--contact .v-form__body > *:nth-child(1) {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
  .page--contact .v-form__body > *:nth-child(1) > * {
    grid-column: 1 !important;
  }
}
.page--contact .section--info {
  margin: 60px 0;
}
.page--contact .section--info-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page--contact .section--info-1 h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: #00091F;
  margin-bottom: 24px;
}
.page--contact .section--info-1 p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #00091F;
}
.page--contact .section--info-1 p svg {
  margin-right: 12px;
}
.page--contact .section--info-1 p:not(:last-child) {
  margin-bottom: 12px;
}
.page--contact .section--info-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #F2F5FA;
  border-radius: 24px;
}
.page--contact .section--info-2 .button {
  margin-top: 32px;
}
.page--contact .section--info-2 h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #00091F;
}
.page--contact .section--info-2 p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #121A2E;
}
.page--contact .section--info-2 p a {
  color: #00091F;
}
.page--contact .section--info-2 p:not(:last-child) {
  margin-bottom: 4px;
}
.page--contact .section--info-3 h3 {
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  color: #0C5BB0;
  margin-bottom: 16px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #0C5BB0;
}
.page--contact .section--info-3 p {
  font-family: "Montserrat";
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #00091F;
}
.page--shop .page__container {
  display: grid;
  grid-template-columns: 464px auto;
  grid-auto-rows: min-content;
  grid-gap: 80px 32px;
  grid-template-areas: "header body" "footer footer";
}
.page--shop .page__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 84px 62px;
  background: #ECF5F5;
  border: 2px solid #26C0B7;
  border-radius: 20px;
  position: relative;
}
.page--shop .page__header img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  position: sticky;
  top: 32px;
}
.page--shop .page__footer .section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 24px;
  justify-content: space-between;
}
.page--shop .page__footer .section-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page--shop .page__footer .section-item__body {
  margin-top: 22px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  color: #1D211F;
}
@media (max-width: 1200px) {
  .page--shop .page__container {
    grid-template-columns: 100%;
    grid-template-areas: "header" "body" "footer";
  }
  .page--shop .page__footer .section {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page--shop .page__footer .section {
    grid-template-columns: 100%;
  }
}

.cart__header, .cart__body, .cart__footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  grid-gap: 16px;
  margin-bottom: 32px;
}
.cart__header .title, .cart__header .text, .cart__body .title, .cart__body .text, .cart__footer .title, .cart__footer .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #1D211F;
  grid-column: 1/3;
  margin-bottom: 16px;
}
.cart__header .text, .cart__body .text, .cart__footer .text {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D211F;
}
.cart-item__container {
  display: grid;
  grid-template-columns: 90px auto;
  grid-auto-rows: min-content;
  grid-template-areas: "header body" "header footer";
  grid-gap: 0 4px;
}
.cart-item__header {
  grid-area: header;
  width: 90px;
  height: 90px;
}
.cart-item__header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item__body {
  grid-area: body;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #1D211F;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #26C0B7;
}
.cart-item__footer {
  grid-area: footer;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #1D211F;
}
.cart__footer {
  margin-bottom: 0;
  display: block;
}
.cart__footer button {
  width: 100%;
}
.cart__footer img {
  width: 100%;
  object-fit: contain;
}
.cart__footer img:first-of-type {
  max-height: 35px;
  margin: 32px 0;
}
@media (max-width: 768px) {
  .cart__header, .cart__body {
    grid-template-columns: 100%;
  }
  .cart__header > *, .cart__body > * {
    grid-column: 1 !important;
  }
}

.product-item__container {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 12px;
  padding: 44px 20px 20px 20px;
}
.product-item__header {
  margin-bottom: 12px;
}
.product-item__header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 140px;
}
.product-item__body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  color: #1D211F;
}
.product-item__footer {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1D211F;
}

.checkout__container {
  padding: 20px;
  border: 1px solid #BCC8CC;
  border-radius: 28px;
}
.checkout__header, .checkout__footer {
  display: grid;
  grid-template-columns: auto min-content;
  grid-template-rows: 1fr;
  justify-content: space-between;
  grid-gap: 16px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  color: #1D211F;
  padding-bottom: 20px;
  border-bottom: 1px solid #E6E6E6;
}
.checkout__header > *:last-child, .checkout__footer > *:last-child {
  text-align: left;
}
.checkout__body {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: min-content;
}
.checkout__footer {
  padding-top: 16px;
  padding-bottom: 0;
  border-top: 1px solid #EBEBEB;
  border-bottom: none !important;
}
.checkout-item:not(:first-child) {
  border-top: 1px solid #EBEBEB;
}
.checkout-item__container {
  display: grid;
  grid-template-columns: 62px auto min-content min-content;
  grid-gap: 0 16px;
  padding: 12px 0;
}
.checkout-item__header img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.checkout-item__body .title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  color: #1D211F;
}
.checkout-item__body .title--sub {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: none;
}
.checkout-item__qty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-item__qty .input-box--qty input {
  height: 24px !important;
  padding: 0 !important;
}
.checkout-item__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.checkout-item__footer .button--text {
  padding: 0;
}
.checkout-item__footer .price {
  font-family: "Montserrat";
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  text-align: right;
  letter-spacing: 0.5px;
  color: #1D211F;
}
.checkout-item--empty .checkout-item__container {
  grid-template-columns: 100%;
  grid-auto-rows: min-content;
  grid-gap: 24px;
  justify-content: center;
  align-items: center;
}
.checkout-item--empty .checkout-item__container > * {
  grid-column: 1 !important;
  text-align: center;
}
.checkout-item--empty .checkout-item__footer {
  align-items: center;
}
@media (max-width: 768px) {
  .checkout-item__container {
    display: grid;
    grid-template-columns: 62px 34px auto;
    grid-auto-rows: min-content;
    grid-gap: 8px 16px;
  }
  .checkout-item__container > *:nth-child(2) {
    grid-column: 2/4;
  }
  .checkout-item__container > *:nth-child(3) {
    grid-column: 1/3;
  }
}
.checkout--total .checkout-item {
  border-top: none !important;
}
.checkout--total .checkout-item__container {
  grid-template-columns: auto min-content;
  padding: 12px 0;
}
.checkout--total .checkout-item__header {
  font-family: "Montserrat";
}
.checkout--total .checkout__footer {
  grid-template-columns: auto min-content !important;
}
@media (max-width: 768px) {
  .checkout__footer {
    grid-template-columns: 100%;
  }
}

.glider-dot {
  background: #D6D8DB !important;
}
.glider-dot.active {
  background: #26C0B7 !important;
}
.glider > *:not(.glider-track) {
  visibility: hidden;
}
.glider#mainSlider {
  max-width: 100%;
  width: 100%;
  height: 800px;
  max-height: 800px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .glider#mainSlider {
    max-height: 420px;
  }
}
.glider-contain .dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  left: 0;
}
.glider-track, .glider-track > * {
  max-height: 100%;
  height: 100%;
}
.glider-slide {
  position: relative;
}
.glider-slide.container, .glider-slide .container {
  margin: 0;
  max-width: 100%;
}
.glider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glider-slide .overlay {
  visibility: visible !important;
}
.glider .overlay {
  visibility: hidden;
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.glider .overlay-title {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 150%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0px 4px 8px rgba(9, 63, 90, 0.25);
  max-width: 872px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .glider .overlay-title {
    font-size: 32px;
    line-height: 36px;
    padding-bottom: 16px;
  }
}
.glider .overlay .button--main {
  margin-top: 24px;
}
.glider .overlay-grid {
  display: grid;
  grid-template-columns: 352px auto;
  grid-template-rows: 1fr;
  grid-gap: 36px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .glider .overlay-grid {
    display: none;
    grid-template-columns: 100%;
    grid-gap: 12px;
  }
}
.glider .overlay-grid__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.glider .overlay-grid__item i {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.5px solid #00AD31;
  border-radius: 100%;
  width: 56px;
  height: 56px;
}
.glider .overlay-grid__item i svg path {
  fill: #00AD31;
}
.glider .overlay-grid__item span {
  margin-left: 24px;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #FFFFFF;
}
.glider-prev, .glider-next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(50% - 48px) !important;
  color: white !important;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .glider-prev, .glider-next {
    display: none;
  }
}
.glider-prev {
  left: 24px !important;
}
.glider-next {
  right: 24px !important;
}

.input-box.error input, .input-box.error select, .input-box.error textarea {
  margin-bottom: 0 !important;
}

.alert-danger {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.005em;
  color: #FF4741;
}
.alert-success {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 0.005em;
  color: #4BB543;
}

.tab button {
  background: none;
  border: none;
  outline: none;
  padding: 6px 24.5px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #00091F;
}
.tab--calc button:hover {
  border-bottom: 2px solid #26C0B7;
}
.tab--calc button.active {
  font-weight: 600;
  border-bottom: 2px solid #26C0B7;
}

.tabcontent {
  display: none;
}
.tabcontent.active {
  display: block;
}

.v-table--default {
  border-collapse: collapse;
  border-radius: 20px;
  border-style: hidden; /* hide standard table (collapsed) border */
  box-shadow: 0 0 0 1px #D6D8DB; /* this draws the table border  */
  overflow: hidden;
}
.v-table--default th, .v-table--default td {
  padding: 8px 24px;
  border-top: 1px solid #D6D8DB;
  border-bottom: 1px solid #D6D8DB;
}
.v-table--default thead {
  background: #0C5BB0;
}
.v-table--default thead th {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: white;
}
.v-table--default tbody tr:nth-child(odd) {
  background: #F2F5FA;
}
.v-table--default tbody td {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121A2E;
}

.crossed {
  text-decoration: line-through;
}

.product {
  --size: 312px;
}
.product--xl {
  --size: 416px;
}
.product__container {
  height: 100%;
  max-width: var(--size);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #CDD0E5;
  border-radius: 28px;
  overflow: hidden;
}
.product__container:hover {
  border-color: #0078A9;
}
.product__container > * {
  width: 100%;
}
.product__container:hover .product__absolute {
  opacity: 1;
  pointer-events: auto;
}
.product__header {
  margin-bottom: 16px;
  position: relative;
}
.product__header img {
  --size: 280px;
  transition: all 0.4s ease 0s;
  min-height: var(--size);
  max-height: var(--size);
  width: 100%;
  height: 100%;
  /*object-fit: contain;*/
}
.product__header img.deal-label {
  --size: 84px;
  width: var(--size);
  position: absolute;
  left: 16px;
  top: 16px;
}
.product__header .product__absolute {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}
.product__header .product__absolute button {
  font-size: 18px;
  line-height: 28px;
}
.product__body {
  padding: 0 20px;
  color: #12131B;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 4px;
}
.product__footer {
  margin-top: auto;
  padding-bottom: 20px;
}
.product__footer .button-view-product {
  margin: 0 auto;
}
.product__price {
  font-family: "Montserrat";
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  color: #101119;
  margin-bottom: 24px;
}

.blog-entry .entry-thumb, .blog-entry .entry-thumb img {
  height: 100%;
  max-height: 234px;
  border-radius: 24px;
  object-fit: cover;
}
.blog-entry .entry-metadata h1:first-of-type, .blog-entry .entry-metadata h1:first-of-type > a, .blog-entry .entry-metadata h2:first-of-type, .blog-entry .entry-metadata h2:first-of-type > a, .blog-entry .entry-metadata h3:first-of-type, .blog-entry .entry-metadata h3:first-of-type > a, .blog-entry .entry-metadata h4:first-of-type, .blog-entry .entry-metadata h4:first-of-type > a, .blog-entry .entry-metadata h5:first-of-type, .blog-entry .entry-metadata h5:first-of-type > a, .blog-entry .entry-metadata h6:first-of-type, .blog-entry .entry-metadata h6:first-of-type > a {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: #00091F;
}
.blog-entry .entry-metadata h2, .blog-entry .entry-metadata h3, .blog-entry .entry-metadata h4, .blog-entry .entry-metadata h5, .blog-entry .entry-metadata h6 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #00091F;
  margin-top: 36px;
  margin-bottom: 24px;
}
.blog-entry .entry-metadata p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121A2E;
  margin-top: 16px;
  margin-bottom: 16px;
}
.blog-entry .entry-metadata ul, .blog-entry .entry-metadata ol {
  font-family: "Montserrat";
}
.blog-entry .entry-metadata ul li, .blog-entry .entry-metadata ol li {
  list-style-type: circle;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #121A2E;
  margin-bottom: 12px;
}

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