/* здесь все стили для элементов страниц */

@font-face {
  font-family: 'Mulish';
  src: url('../Assets/font/Mulish/static/Mulish-Regular.ttf');
}
@font-face {
  font-family: 'Mulish-bold';
  src: url('../Assets/font/Mulish/static/Mulish-Bold.ttf');
}

@font-face {
  font-family: 'Inter';
  src: url('../Assets/font/Inter/static/Inter-Regular.ttf');
}

:root {
  --white: #ffffff;
  --black: #000000;
  --placeholder-gray: #9d9fb4;
  --info-gray: #545454;
  --lazure: #1ac6bb;
  --light-lazure: #1ac6bb1e;
  --brand-green: #18554d;
  --light-orange: #f773431e;
  --brand-orange: #f77343;
  --brand-yellow: #f7af43;
  --gradient-orange: linear-gradient(90deg, rgba(247, 115, 67, 1) 20%, rgba(26, 198, 187, 1) 100%);
  --gradient-green: linear-gradient(90deg, rgba(24, 85, 77, 1) 20%, rgba(26, 198, 187, 1) 100%);
  --bg-details: #f7f8fb;
  --shadow: #1018281f;
}

html {
  font-family: 'Mulish', sans-serif;
}

input {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  appearance: none;
}

body {
  overflow-x: hidden;
  background-image: url('../Assets/bg-main-sm.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-attachment: fixed;
}

input {
  outline: none;
}

a {
  text-decoration: none;
}

/* состояния кнопок для мобилок */
.li-btn-details:active {
  background-color: var(--gradient-orange);
}

.li-btn-calculate:active {
  background-color: var(--gradient-green);
}

.font-bold {
  font-family: 'Mulish-bold', sans-serif !important;
  font-size: 14px;
  line-height: 19px;
  font-weight: 400;
}

.faq {
  margin-bottom: 400px !important;
}

.policy {
  margin-bottom: 400px !important;
}



.general-heading {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 39px 0px 52px 0px;
  letter-spacing: 0.5px;
  line-height: 120%;
}

.app {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.app__top{ 
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.general-info {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 200;
  color: var(--info-gray);
  margin-top: 34px;
}

.general-info-bottom {
  margin-top: 43px;
}

.hr {
  background-color: var(--black);
  margin: 8px 0px 12px 0px;
  opacity: 100%;
}

.param-name {
  font-family: 'Mulish-bold', sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 33px;
}

.param-input {
  font-family: 'Mulish', sans-serif;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 22px;
  padding: 5px 10px 5px 10px;
  font-weight: 600;
  font-size: 14px;
}

.jar {
  z-index: 1000;
}

.link-transition {
  width: 100%;
  height: 100%;
  display: block;

  transition: all .2s ease;
}
.link-transition a {
  transition: all 0.2s ease;
}

.link-transition:hover svg path {
  fill: var(--lazure);

  background: white;
}

.link-transition svg { 
  transition: all .2s ease;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.link-transition:hover svg { 
  background: var(--white);

  border: 2.5px solid var(--white);
}


#pregnancyTrimester {
  margin: 5px 0px 0px 0px;
  padding: 5px 0px 0px 0px;
}
.pregnancyTrimester {
  margin-top: 20px;
}
#pregnancyTrimester-button {
  font-family: 'Mulish', sans-serif;
  margin-left: 9px;
  border-radius: 15px;
  border-color: black;
  background: white;
  border-radius: 22px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.pregnancyTrimester .ui-icon-triangle-1-s{ 
  margin-top: 4px !important;
}

.param-input:checked {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 22px;
  padding: 5px 10px 5px 10px;
  box-shadow: none;
}

.general-block {
  background-color: var(--white);
  /* height: 750px; */
  height: 1%;
  /* margin-right: 21px; */
  border-radius: 8px;
  margin-right: -13px;
}

.param-radio {
  -webkit-appearance: none;
  /* Сбрасывает нативные стилистили */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--white);
  /* отступы не сбрасываются через appearance */
  margin: 0;

  font: inherit;
  color: var(--black);
  width: 28px;
  height: 28px;
  border: 1px solid var(--black);
  border-radius: 50%;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

.param-radio::before {
  content: '';
  width: 9.88px;
  height: 9.88px;
  border-radius: 90px;
  transform: scale(0);
  transition: 150ms transform ease-in;
  box-shadow: inset 9.88px 9.88px var(--lazure);
  opacity: 1;
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}

.param-radio:checked::before {
  transform: scale(1);
}

.param-radio-label {
  margin: 0px 0px 0px 5px;
}

.param-check {
  cursor: pointer;
  color: var(--black);
}

.pregnancyCheck {
  display: none;
}

.pregnancyTrimester {
  display: none;
}

select {
  border: 1px solid var(--black);
}

option {
  appearance: none;
  background-color: var(--white);
  text-anchor: end;
}

.nutrients-block {
  background-color: var(--white);
  border-radius: 8px;
  margin: 0px 0px 0px 10.5px;
  width: 100%;
  min-height: 570px;

  padding-bottom: 20px;
}

.panel-col {
  margin-top: 33px;
  margin-bottom: 19px;
  padding: 0 35px;
}

.panel-search {
  font-family: 'Mulish', sans-serif;
  width: auto;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 22px;
  padding: 5px 10px 5px 10px;
}

[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 10px;
  width: 10px;
  background-image: url('../Assets/close-icon.svg');
  background-size: 10px 10px;
}

#inputSearchNutrient {
  transition: all 0.2s ease;
}

.form-control:focus {
  box-shadow: inset 0 1px 1px #f773433c;
}

.panel-search:placeholder-shown {
  font-style: italic;
  color: var(--placeholder-gray);
}

.panel-btn {
  font-family: 'Mulish', sans-serif;
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: 22px;
  width: auto;
  height: auto;
  padding: 5px 20px 5px 20px;
  margin: 0px 2.5px 5px 0px;
  font-weight: 600;
  font-size: 12px;

  transition: all 0.2s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.panel-btn:hover {
  background-color: var(--brand-orange);
  color: var(--white);

  border-color: var(--brand-orange);
}

.panel-btn:hover .icon {
  /* fill: red !important; */
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg)
    brightness(100%) contrast(100%);
}

.list-block {
  margin: 8px 0px 0px 0px;
  padding: 2.5px 5px 2.5px 5px;
}

.list {
  background: transparent;
  margin-bottom: 8px;
  padding: 0;
}

.list-btn {
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 0 20px;
  width: 895px;

  position: relative;
}

.list-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 96%;
  height: 1px;
  background-color: black;
}

.list-heading {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 9px 0;

  letter-spacing: 0.5px;
}

.list-hr {
  height: 1px;
  margin: 0px;
  padding: 0px;
  opacity: 100%;
  background-color: var(--black);
}

.li-name {
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 8px;
}

.list-item-info {
  font-family: 'Mulish', sans-serif;
  font-weight: 200;
  font-size: 12px;
  margin: 0px 5px 0px 5px;
}

.list-item {
  margin: 15px 0px 15px 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}

.list-col {
  padding: 0px 2.5px 0px 2.5px;
  width: max-content;
}

.list-row {
}

.list-item-hr {
  margin: 5px 2.5px 1px 0px;
  padding: 0px 2.5px 0px 2.5px;
  background-color: var(--black);
}

.reference {
  border: 1px var(--placeholder-gray);
  text-align: center;
  width: 50px;
}

.li-input {
  margin: 0px 0px 0px 2.5px;
  padding: 2.5px;
  width: 80px;
  height: 33px;
  border: 0;
  border-radius: 22px;

  background-color: transparent;
}

.li-input:placeholder-shown {
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
}

.li-input-recommended-range {
  margin: 0px;
  padding: 0;
  width: 125px;
  height: 33px;
  border: 0;
  border-radius: 8px 0px 0px 8px;
  outline: none;
  margin: 0px 0px 0px 7.5px;

  background-color: transparent;
}

.li-input-recommended-range:placeholder-shown {
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
}

.li-input-recommended-range:active {
  border: 0;
  outline: none;
}

.li-div-input {
  border: 1px solid var(--black);
  border-radius: 22px;
  margin: 0;
  padding: 0;
  height: 36px;
  width: 170px;
}

.li-div-input-ref {
  border: 1px solid var(--placeholder-gray);
  border-radius: 22px;
  margin: 0;
  margin-right: 4%;
  padding: 0;
  height: 36px;
  width: 170px;
}

.li-div-calculation {
  border: 1px solid var(--black);
  border-radius: 22px;
  padding: 2.5px;
  margin: 0px 1px 0px 1px;
  height: 36px;
  width: 243px;
}

.li-btn-calculate {
  width: 83px;
  height: 25px;
  border-radius: 26px;
  font-size: 12px;
  background: var(--brand-green);
  color: var(--white);
}

.li-btn-details {
  background: var(--brand-orange);
  color: var(--white);
  width: 83px;
  height: 25px;
  border-radius: 26px;
  font-size: 12px;
  font-weight: 400;
  border: 0;
  padding: 2.5px;
  margin: 2.5px;
}

.li-btn-details:hover {
  color: var(--white);
  background: var(--gradient-orange);
  transition: 50ms ease-in-out;
}

.li-btn-calculate {
  width: 83px;
  height: 25px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 26px;
  background: var(--brand-green);
  color: var(--white);
  border: 0px;
  padding: 2.5px;
  margin: 2.5px;
}

.li-btn-calculate:hover {
  color: var(--white);
  background: var(--gradient-green);
  transition: 50ms ease-out;
}

.li-btn-content {
  text-align: center;
}

.btn-convert-value {
  width: 69px;
  height: 20px;
  border-radius: 22px;
  font-size: 12px;
  border: 0;
  margin: 0.5px;
  padding: 0.5px;
}

.sel-convert-value {
  width: 69px;
  height: 25px;
  border-radius: 26px;
  font-size: 12px;
  border: 0px;
  padding: 0.5px;
  background: #9d9fb46f;
  font-weight: 400;
}

.sel-convert-value::before {
  border: 0;
}

.sel-convert-value::after {
  border: 0;
}

.ref-range-label {
  margin: 3px 20px 0px 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  max-width: 83px;
}

.rec-range-label {
  margin: 3px 20px 0px -5px;
  font-weight: 600;
  font-weight: 400;
  font-size: 12px;
  /* line-height: 25px; */
  line-height: 14px;

  max-width: 140px;
}

#detail-block {
  width: 1024px;
  height: auto;
  border-radius: 8px;
  background: var(--bg-details);
  color: #000;
  padding: 12px 32px 32px 32px;
  margin: 18px auto 18px auto;
}

/* контент внутри блока */
#detail-block-content {
  margin: 16px 18px 16px 18px;
}

#analys-block {
  margin: 20px 2.5px 20px 2.5px;
  padding: 2.5px 2.5px 2.5px 2.5px;
  background: var(--white);
  box-shadow: -8px 8px 24px -4px var(--shadow);
  border-radius: 8px;
  height: 228px;
  width: auto;
}

#definition-block {
  margin: 20px 0px 0px 0px;
  padding: 25px 25px 30px 25px;
  background: var(--white);
  box-shadow: -8px 8px 24px -4px var(--shadow);
  border-radius: 8px;
  height: auto;
  width: auto;
}

.analysis-inputs {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-left: 5px;
}

.D-h {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin: 5px 5px 5px 5px;
  padding: 5px 5px 5px 5px;
  vertical-align: text-bottom;
}

.D-h2 {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0px;
  margin: 5px;
  padding: 5px;
}

#hRec {
  margin: 5px 0px 0px 5px;
  padding: 0px 0px 0px 5px;
}

#hDos {
  margin: 0px 0px 0px 5px;
  padding: 0px 0px 5px 5px;
}

.analys-block-content-sm {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
}

.analys-block-content-m {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 5px 0px 0px 0px;
}

.analys-block-content-m-aligned {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin: 0px 0px 0px 10px;
}

#D-rec-dose-block {
  height: 78px;
  margin: 10px 20px 5px 20px;
}

.res-b {
  width: 752px;
}

.res-l {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.reс-b {
  width: 752px;
}

.reс-l {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 400;
}

.defi {
  width: 79.33px;
  height: 15px;
  background: var(--brand-orange);
  border-radius: 90px 0px 0px 90px;
}

.nedo {
  width: 115px;
  height: 15px;
  background: var(--brand-yellow);
}

.dost {
  width: 111.27px;
  height: 15px;
  background: var(--lazure);
}

.izby {
  width: 149px;
  height: 15px;
  background: var(--brand-yellow);
}

.toxi {
  width: 300px;
  height: 15px;
  background: var(--brand-orange);
  border-radius: 0px 90px 90px 0px;
}

#toxi-l {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 400;
}

#listVitamins, #listAmino, #listMacro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#listVitamins hr {
  width: 100%;
}

.green {
  width: 452px;
  height: 15px;
  background: var(--lazure);
  border-radius: 90px 0px 0px 90px;
}

.orange {
  width: 300px;
  height: 15px;
  background: var(--brand-orange);
  border-radius: 0px 90px 90px 0px;
}

#nutrient-photo {
  margin: 15px 0px 0px 0px;
}

.nutrient-detail-diagram__block {
  margin-bottom: 30px;
}

.nutrient-detail-diagram__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0px;
}

.nutrient-detail-diagram__chart {
  max-width: 752px;
}

/* .nutrient-detail-diagram__chart-section {
} */

.nutrient-detail-diagram__chart-section--deficit {
  width: 11%;
}

.nutrient-detail-diagram__chart-section--deficiency {
  width: 15%;
}

.nutrient-detail-diagram__chart-section--sufficiency {
  width: 14%;
}

.nutrient-detail-diagram__chart-section--toxicity-not-proven {
  width: 20%;
}

.nutrient-detail-diagram__chart-section--dosage-recommended {
  width: 59%;
}

.nutrient-detail-diagram__chart-section-segment {
  height: 15px;
  border-left: 1px solid var(--black);
}

.nutrient-detail-diagram__chart-section-segment--first {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0em;

  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border: none;

  display: flex;
  align-items: center;
  padding-left: 8px;
}

.nutrient-detail-diagram__chart-section-segment--last {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.nutrient-detail-diagram__chart-section-segment--orange {
  background-color: var(--brand-orange);
}

.nutrient-detail-diagram__chart-section-segment--yellow {
  background-color: var(--brand-yellow);
}

.nutrient-detail-diagram__chart-section-segment--lazure {
  background-color: var(--lazure);
}

.nutrient-detail-diagram__chart-section-segment-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0em;
}

.nutrient-detail-diagram__chart-section-segment-line {
  height: 32px;
  width: 1px;
  background-color: var(--black);
}

.nutrient-detail-diagram__chart-section-segment-line--small {
  height: 10px;
}

.nutrient-detail-diagram__chart-section-segment-line--transparent {
  background-color: transparent;
}

.nutrient-detail-diagram__chart-section-segment-value {
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0em;

  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}

.nutrient-detail-diagram__chart-section-substrate {
  height: 9px;
  background-color: var(--brand-green);
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  width: 57%;
}

.nutrient-detail-diagram__chart-section-substrate-text,
.nutrient-detail-diagram__chart-section-substrate-recommended-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--brand-green);
}

.nutrient-detail-diagram__chart-section-square {
  width: 2px;
  height: 2px;
  background-color: var(--black);
  margin-left: 3px;
}

.nutrient-detail-diagram__chart-section-square-container {
  height: 10px;
  display: flex;
  align-items: end;
}

.nutrient-detail-diagram__result {
  position: absolute;
  bottom: 70%;
  text-wrap: nowrap;
  width: 0;
  z-index: 1;
}

.nutrient-detail-diagram__result-line {
  width: 4px;
  height: 21px;
  border-radius: 8px;
  background-color: var(--brand-green);
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

* html .ui-autocomplete {
  height: 200px;
}

.recalc {
  margin-left: 0;
  margin-top: 10%;
  width: 100%;
  height: 34px;
  font-size: 12px;
  font-weight: 600;
}

#diagram-block {
  /* margin: 10px 10px 15px 10px; */
  /* padding: 10px 10px 15px 10px; */
  padding: 25px;
}

#diagram-result {
  margin: 10px 10px 5px 0px;
  padding: 10px 10px 5px 10px;
}

#diagram-recommend {
  margin: 10px 0px 0px 0px;
  padding: 10px 10px 10px 10px;
}

#imgToggleAmino,
#imgToggleVitamins,
#imgToggleMacro {
  width: 14px;
  height: 9px;
}

#inputSearchNutrient:focus {
  /* border: 2px solid var(--light-orange); */

  -webkit-box-shadow: 0px 0px 5px 3px rgba(247, 175, 67, 1);
  -moz-box-shadow: 0px 0px 5px 3px rgba(247, 175, 67, 1);
  box-shadow: 0px 0px 5px 3px rgba(247, 175, 67, 1);
}

.synergism {
  border: 0;
  border-radius: 18px;
  background: var(--light-lazure);
  width: 125px;
  height: 34px;
  padding: 8px;
  margin: 2.5px;
  text-align: center;
}

.antagonism {
  border: 0;
  border-radius: 18px;
  background: var(--light-orange);
  width: 125px;
  height: 34px;
  padding: 8px;
  margin: 2.5px;
  text-align: center;
}

.no-data {
  margin: 2.5px -2.5px;
  padding: 5px;
}

.vita {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.vita::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  height: 1px;
  width: 99.8%;
  background-color: #9d9fb4;
}
.vita:not(:first-child) {
  margin-top: 30px;
}
#btn-recalc:active {
  box-shadow: 1px 3px 3px var(--lazure);
}

.myElement {
  box-shadow: 0 0 0 4px var(--brand-orange);

  /* Другие стили элемента */
  transition: box-shadow 2s;
}

.footer {
  background-color: #222222;
  margin-top: 20px;
  padding: 40px 0 63px;
  color: #fff;
}
.footer a {
  color: #fff;
  transition: all 0.2s ease;
}

.footer a:hover {
  color: var(--lazure);
  cursor: pointer;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__col-one {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__col-two {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.footer__col-three {
  display: flex;
  flex-direction: column;
  gap: 12.5px;
}

.footer__col-top {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.footer__col-bottom {
  display: flex;
  align-items: center;
  gap: 7px;
}

@media (min-width: 1400px) {
  .general-block {
    width: 70%;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 50px;
    max-width: 343px;
  }
}

@media (max-width: 1399px) {
  .general-block {
    width: 70%;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 50px;
    margin-top: 30px;
  }
  .block_logo{

  }
    

  .main-block {
    margin: 0px 0px 20px 0px;
  }

  .nutrients-block-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nutrients-block {
    max-width: 1200px;

    margin: 0 auto;
  }

  .analysis-inputs {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .ref-range-label {
    margin-left: 0;
  }

  .vita {
    width: 95%;

    justify-content: space-between;
  }
}

@media (max-width: 1170px) {
  
  .block_logo {
    flex-direction: column;
    align-items: center;
  }
  
  img.logo_idvit {
    width: 110%;
  }

  .header__top {
    flex-direction: column;
    margin-top: 30px;
    gap: 20px;
  }
  
  .description {
    text-align: center;
    width: max-content;
    margin: 0 auto;
  }
}

img.logo_idvit {
    width: 110%;
    
}

img.logo_kdl {
    width: 15%;
    margin-bottom: 3px
}

@media (min-width: 1200px){
  header.container-xl{
    max-width: 1300px;
  }
  
}


@media (max-width: 1100px) {

  img.logo_kdl {
    width: 30%;
    margin-bottom: 3px
  }

  .analysis-inputs {
    flex-direction: column;
  }

  .ref-range-label {
    max-width: 100%;
  }

  .rec-range-label {
    max-width: 100%;
  }
}

@media (max-width: 920px) {
  .nutrients-block {
    max-width: 800px;
  }
}

@media (max-width: 820px) {
  .nutrients-block {
    max-width: 700px;
  }
}

@media (max-width: 790px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .nutrients-block {
    max-width: 600px;
  }
}

@media (max-width: 620px) {
  .nutrients-block {
    max-width: 500px;
  }
  .list-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .list-col {
    margin-bottom: 10px;
  }

  .list-heading {
    font-size: 16px;
  }
  .panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .panel-col {
    padding: 0 30px;
    margin: 10px 0 0 0;
  }
}


@media (max-width:520px) {
  .nutrients-block{ 
    max-width: 420px;
  }

  .general-block { 

  }
}

@media (max-width: 500px) {
  .description {
    font-size: 14px !important;
  }


  .app__top{ 
    justify-content: center;
  }
}

@media (max-width: 484px) {
  #pregnancyTrimester-button {
    margin-left: 0;
  }

  .list-heading {
    text-align: left;
  }
}

@media (max-width: 460px) {
  .nutrients-block{ 
    width: 400px;
  }

  .nutrients-block-wrapper {
    padding: 0;
  }

}

@media (max-width: 420px) {
  .general-block {
    width: 80%;

  }

  .nutrients-block{ 
    width: 300px;
  }


  .top-heading {
    font-size: 24px !important;
    font-family: 'Mulish', sans-serif;
  }

  .list-heading {
    text-align: left;
  }

  .second-row {
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 5px;
  }

  .top-content-logo {
    width: 200px;
  }

  .promo {
    display: none;
  }

  .jar {
    height: 109px;
  }

  .azure-block {
    height: 70px !important;
    z-index: -1;
  }

  #brand-logo-white {
    width: 160px;
    margin: 5px;
    padding: 5px;
  }

  .footer {
    display: flex;
    width: auto;
  }
}
