#cart-container {
  position: fixed;
  right: 15px;
  bottom: 25%;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  background-color: #0b4575;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 999;
}
#cart-container:hover {
  background-color: #072a46;
}
.cart-icon {
  position: relative;
  font-size: 24px;
  color: #fff;
}

.cart-icon:before {
  position: absolute;
  content: '';
  left: 15px;
  top: 16px;
  width: 24px;
  height: 24px;
  background: url(/wp-content/themes/bhealthy-premium/assets/img/add-to-cart-icon.svg) 0 50% no-repeat;
}
.cart-count {
  position: absolute;
  top: 9px;
  right: 8px;
  background-color: #fff;
  color: #0b4575;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.b-calc-popup__header {
  position: relative;
  margin: 0 0 30px;
  font-size: 36px;
}

.b-calc-popup-calc-table-wrapper {
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}
.b-calc-popup-calc-table__table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.b-calc-popup-calc-table__tr {
  display: table-row;
  width: 100%;
  border-bottom: 10px solid transparent;
}

.b-calc-popup-calc-table__th {
  display: table-cell;
  font-weight: bold;
  padding: 0 12px;
  white-space: nowrap;
}

.b-calc-popup-calc-table__td {
  display: table-cell;
  position: relative;
  background: #f1f0f0;
  padding: 12px;
}
.b-calc-popup-calc-table__td:first-child {
  -webkit-border-radius: 20px 0 0 20px;
  -moz-border-radius: 20px 0 0 20px;
  border-radius: 20px 0 0 20px;
  padding: 12px 10px 12px 15px;
}
.b-calc-popup-calc-table__td:last-child {
  -webkit-border-radius: 0 20px 20px 0;
  -moz-border-radius: 0 20px 20px 0;
  border-radius: 0 20px 20px 0;
  width: 50px;
}
.b-calc-popup-calc-table__td:nth-child(2), .b-calc-popup-calc-table__td:nth-child(3), .b-calc-popup-calc-table__td:nth-child(4) {
  white-space: nowrap;
}
.b-calc-popup-calc-table__delete {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid #0b4575;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.b-calc-popup-calc-table__delete:hover {
  border: 2px solid #000;
}
.b-calc-popup-calc-table__delete:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -1px;
  width: 1px;
  height: 12px;
  background: #0b4575;
  content: '';
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.b-calc-popup-calc-table__delete:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -1px;
  width: 1px;
  height: 12px;
  background: #0b4575;
  content: '';
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.b-calc-popup-calc-table__result {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 15px 0;
}
.b-calc-popup-calc-table__left, .b-calc-popup-calc-table__right {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.b-calc-popup-calc-table__left {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.b-calc-popup-calc-table__left p {
  margin: 0 0 16px;
}
.b-calc-popup-calc-table__left ul {
  margin: 0 0 0 10px;
}

.b-calc-popup-calc-table__left ul li {
  list-style: disc;
  list-style-position: inside;
  margin: 0;
}
.b-calc-popup-calc-table__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 360px;
  background: #FFEFEF;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  height: 80px;
}
.b-calc-popup-calc-table__caption {
  font-size: 32px;
  font-weight: bold;
  margin: 0 20px 0 0;
}
.b-calc-popup-calc-table__cost {
  font-size: 32px;
  font-weight: 800;
  color: #0b4575;
}
.b-calc-popup-calc-table__cost div {
  display: inline;
}
.b-calc-popup-calc-table__cost span {
  font-size: 18px;
  color: #000;
  font-weight: normal;
}

.b-calc-popup-calc-result {
  background: #F6F6F6;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 20px;
}

.b-calc-popup-calc-result__title {
  text-align: center;
  margin: 0 0 20px;
}

.b-calc-popup-calc-result__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 0 30px;
  margin-left: -10px;
  margin-right: -10px;
}

.popup-calc-form__wrap .b-calc-popup-calc-result__buttons a {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  line-height: 42px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #0b4575;
  margin: 0 10px;
}
.popup-calc-form__wrap .b-calc-popup-calc-result__buttons a:hover {
  opacity: 0.9;
}
.b-calc-popup-calc-result__caption {
  text-align: center;
  margin: 15px 0;
}

.b-calc-popup-calc-result a.b-calc-popup-calc-result__save, .b-calc-popup-calc-result__save {
  background: #FD5E5E;
  color: #fff;
}

.b-calc-popup-calc-result__footnote {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0 0;
  color: #7F7F7F;
  font-size: 14px;
  text-align: center;
}
.submit-order-wrapper {
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 30px;
}
.submit-order-wrapper .form {
  display: flex;
  align-items: center;
  gap: 15px;
}
.submit-order-wrapper .form-group {
  flex: 1;
}
@media all and (max-width: 1024px) {
  .submit-order-wrapper .form {
    display: block;
  }
  .submit-order-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
  }
  .submit-order-wrapper .form-group{
    margin-bottom: 20px;
  }
  .b-calc-popup-calc-table__table {
    display: block;
  }
  .b-calc-popup-calc-table__th {
    display: none;
  }
  .b-calc-popup-calc-table__tr {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    border-bottom: 0;
    margin: 0 0 10px;
  }
  .b-calc-popup-calc-table__td {
    padding-left: 50px;
  }
  .b-calc-popup-calc-table__td:nth-child(1) {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding-left: 50px;
    padding-right: 50px;
    font-weight: bold;
  }
  .b-calc-popup-calc-table__td:nth-child(1) span {
    position: absolute;
    top: 15px;
    left: 15px;
  }
  .b-calc-popup-calc-table__td:nth-child(2), .b-calc-popup-calc-table__td:nth-child(3) {
    padding: 3px 0 3px 50px;
  }
  .b-calc-popup-calc-table__td:nth-child(4) {
    padding: 3px 0 10px 50px;
  }
  .b-calc-popup-calc-table__td:nth-child(2):before, .b-calc-popup-calc-table__td:nth-child(3):before, .b-calc-popup-calc-table__td:nth-child(4):before {
    display: inline-block;
    width: 100px;
    color: #7C7C7C;
    content: attr(aria-label);
    font-size: 12px;
  }
  .b-calc-popup-calc-table__td:nth-child(5) {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0;
    width: 24px;
  }
  .b-calc-popup-calc-table__result {
    display: block;
    padding: 20px 0;
  }
  .b-calc-popup-calc-table__left {
    width: 100%;
    margin: 0 0 30px;
  }
  .b-calc-popup-calc-table__right {
    width: 100%;
    padding: 15px 0;
    height: auto;
  }
  .b-calc-popup-calc-result__buttons {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .popup-calc-form__wrap .b-calc-popup-calc-result__buttons a{
    width: 100%;
    margin: 10px 0;
  }
}
.popup-calc-win {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 100%;
  z-index: 999998;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  overflow: hidden;
  opacity: 0
}
.popup-calc-win__wrap {
  position: relative;
  color: #fff;
  height: 100%;
  overflow-y: scroll;
  z-index: 11;
  padding: 50px 20px
}
.popup-calc-win__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5)
}
.popup-calc-win__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%
}
.popup-calc-win.active {
  opacity: 1;
  bottom: 0;
}

.popup-calc-win.unactive {
  opacity: 0;
  bottom: 0
}

.popup-calc-win.unactive .popup-calc-win__wrap {
  overflow: hidden
}

@media all and (max-width: 640px) {
  .popup-calc-win__wrap {
    padding: 0px
  }
}
.popup-calc-form {
  position: relative;
  padding: 0px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  z-index: 111
}
.popup-calc-form-finally {
  max-width: 1250px
}
.popup-calc-form__wrap {
  padding: 30px;
  background: #F6F8F7;
  color: #000;
  -webkit-box-shadow: 0px 20px 30px rgba(89, 108, 96, 0.25);
  -moz-box-shadow: 0px 20px 30px rgba(89, 108, 96, 0.25);
  box-shadow: 0px 20px 30px rgba(89, 108, 96, 0.25);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px
}
.popup-calc-form__wrap a {
  color: #0a3d67;
  text-decoration: underline;
}
.popup-calc-form__wrap a:hover {
  text-decoration: none;
}
.popup-calc-form__close {
  cursor: pointer;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 15px;
  right: 15px;
  z-index: 11;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background: #0b4575;
  width: 55px;
  height: 55px;
}
.popup-calc-form__close span {
  display: inline-block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  vertical-align: middle
}
.popup-calc-form__close div {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s
}
.popup-calc-form__close div:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -1px;
  width: 2px;
  height: 20px;
  background: #fff;
  content: '';
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s
}
.popup-calc-form__close div:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -1px;
  width: 2px;
  height: 20px;
  background: #fff;
  content: '';
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s
}
.popup-calc-form__close:hover div:after {
  background: #000
}

.popup-calc-form__close:hover div:before {
  background: #000
}
@media all and (max-width: 768px) {
  .popup-calc-form__wrap {
    padding: 20px
  }
  .popup-calc-form__form {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
  }
}
#cart-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 60px;
  height: 60px;
  z-index: 99999999999;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
