.fJustifyBetween {
  justify-content: space-between;
}

.fJustifyEvenly {
  justify-content: space-evenly;
}

.fJustifyStart {
  justify-content: flex-start;
}

.fJustifyEnd {
  justify-content: flex-end;
}

.fJustifyCenter {
  justify-content: center;
}

.fItemCenter {
  align-items: center;
}

.hide {
  display: none !important;
}

.mobile {
  display: block !important;
}

@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
}

.pc {
  display: none !important;
}

@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.tCMS {
  line-height: 26px;
}

.tCMS a {
  display: inline;
  color: #e2001a;
}

.btnStyle1, .btnType1, .btnType2, .btnType3, .bUpload .btnUpload p {
  font-family: 'db_heaventroundedcond';
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  width: 100%;
  background-color: #e2001a;
  color: #ffffff;
  border: none;
  padding: 0 15px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  text-align: center;
  max-width: 170px;
  cursor: pointer;
}

.btnStyle1:hover, .btnType1:hover, .btnType2:hover, .btnType3:hover, .bUpload .btnUpload p:hover {
  background-color: #ce0006;
}

.btnType1 {
  font-size: 20px;
  line-height: normal;
  display: block;
  height: 41px;
  line-height: 41px;
  margin: 0 7.5px;
}

.btnType1 img {
  margin-right: 10px;
  display: inline;
  vertical-align: middle;
}

.btnType1 img[src*="barcode"] {
  width: auto;
  height: 15px;
}

.btnType1 img[src*="img"] {
  width: auto;
  height: 20px;
}

.btnType1.gray {
  background-color: #808285;
}

.btnType1.gray:hover {
  background-color: #6c6e71;
}

.btnType2 {
  font-size: 20px;
  line-height: normal;
  display: block;
  height: 41px;
  line-height: 41px;
  max-width: 100%;
}

.btnType3 {
  font-family: 'db_heaventroundedbold_cond';
  font-size: 30px;
  display: block;
  height: 41px;
  line-height: 41px;
  max-width: 100%;
}

@media (min-width: 768px) {
  .btnType3 {
    max-width: 150px;
  }
}

.inputStyle, input[list], input[type="text"], input[type="password"], input[type="textarea"], textarea, input[type="date"], .select > select {
  width: 100%;
  outline: 0;
  border: 0;
  box-shadow: none !important;
  background-color: #ffffff;
  border: 2px solid #e2001a;
  color: #333333;
  font-size: 20px;
  line-height: normal;
  font-family: 'db_heaventroundedcond';
  padding: 7px 18px;
  overflow: hidden;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  -webkit-appearance: none;
}

input[list], input[type="text"], input[type="password"], input[type="textarea"], textarea, input[type="date"] {
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  resize: none;
}

input[list]:disabled, input[type="text"]:disabled, input[type="password"]:disabled, input[type="textarea"]:disabled, textarea:disabled, input[type="date"]:disabled {
  color: #BDBDBD;
  background-color: #E0E0E0;
  border: 1px solid #E0E0E0;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 20px;
  line-height: normal;
}

.control * {
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: 50%;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #F2F2F2;
  border: 1px solid #E0E0E0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  border: 1px solid #e2001a;
}

.control--checkbox input:checked ~ .control__indicator {
  background: #e2001a;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.control--checkbox:hover input:not([disabled]):checked ~ .control__indicator,
.control--checkbox input:checked:focus ~ .control__indicator {
  background-color: #ffffff;
  border: 1px solid #e2001a;
}

.control--radio input:checked ~ .control__indicator {
  background-color: #ffffff;
  border: 1px solid #e2001a;
}

.control--radio:hover input:not([disabled]):checked ~ .control__indicator,
.control--radio input:checked:focus ~ .control__indicator {
  background-color: #ffffff;
  border: 1px solid #e2001a;
}

.control input:disabled ~ .control__indicator {
  background-color: #d2d2d2;
  opacity: 0.6;
  pointer-events: none;
  border-color: #c5c5c5;
}

.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  width: 18px;
  height: 18px;
  background: url(../img/ico-check.svg) center center no-repeat;
  background-size: auto 100%;
}

.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
  left: 3px;
  top: 3px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #e2001a;
}

.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select > select {
  appearance: none;
  box-shadow: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}

.select select::-ms-expand {
  display: none;
}

.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.select__arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  height: 8px;
  background: url(../img/ico-arrowDown.svg) center center no-repeat;
  background-size: auto 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}

.select select:disabled ~ .select__arrow {
  opacity: 0.4;
}

.datalist {
  line-height: 33px;
}

datalist {
  display: none;
}

/* specifically hide the arrow on focus */
input::-webkit-calendar-picker-indicator {
  display: none;
  opacity: 0;
}

textarea {
  height: 200px;
  line-height: normal;
  padding: 20px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: transparent;
  background: none;
  z-index: 1;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

input[type="date"]:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  background: url(../img/ico-cal2.svg) center center no-repeat;
  background-size: auto 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

input[type="password"] {
  padding-right: 73px;
}

.controlPass .btnshowPass {
  position: absolute;
  right: 20px;
  bottom: 21px;
  color: #767676;
}

.controlPass .btnshowPass:hover {
  color: #e2001a;
}

.control-group {
  width: 100%;
  position: relative;
  margin-bottom: 8px;
}

.control-group .tTitle {
  color: #e2001a;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedbold_cond';
}

.control-group .tTitle span {
  display: inline;
  color: #ff0000;
}

.control-group label.error {
  color: #ff0000;
  position: absolute;
  bottom: -22px;
  left: 20px;
  display: none;
}

.control-group .floatText {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(30%);
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  -o-transform: translateY(30%);
}

.tCon {
  font-family: 'db_heaventroundedcond';
  font-size: 18px;
}

.tCon a {
  color: #303030;
  font-family: 'db_heaventroundedbold_cond';
  text-decoration: underline;
}

.bFormMain .wrapForm .row {
  display: block;
  margin-bottom: 20px;
}

.bFormMain .wrapForm .row > div {
  float: left;
  margin-right: 20px;
}

.bFormMain .wrapForm .row > div:last-child {
  margin-right: 0;
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row > div {
    float: none;
    margin-right: 0;
    width: 100%;
    height: auto;
  }
  .bFormMain .wrapForm .row > div:last-child {
    margin-bottom: 0px;
  }
}

.bFormMain .wrapForm .row > div.Item1 {
  width: calc(25% - 10px);
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row > div.Item1 {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}

.bFormMain .wrapForm .row > div.Item2 {
  width: calc(50% - 10px);
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row > div.Item2 {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}

.bFormMain .wrapForm .row > div.Item3 {
  width: calc(75% - 10px);
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row > div.Item3 {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}

.bFormMain .wrapForm .row > div.Item4 {
  width: 100%;
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row > div.Item4 {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}

.bFormMain .wrapForm .row.floatR > div {
  float: right;
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row.floatR > div {
    width: 100%;
    margin-right: 0;
    float: none;
  }
}

@media (max-width: 428px) {
  .bFormMain .wrapForm .row .control-group {
    margin-bottom: 30px;
  }
}

.bFormMain .wrapForm .row .ItemFloat > label {
  float: left;
  margin-right: 8px;
}

.bFormMain .wrapForm .row.displayFloat .tTitle {
  clear: both;
}

.bFormMain .wrapForm .row.displayFloat .control--radio {
  display: table;
  float: left;
  margin-right: 36px;
  line-height: 60px;
  margin-bottom: 0;
}

.radioButton {
  margin-bottom: 0;
}

.radioButton .tTitle {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-transform: uppercase;
  line-height: 22px;
  margin-bottom: 10px;
}

.radioButton .control.control--radio {
  width: 100%;
  height: 40px;
  padding: 0;
}

.radioButton .control.control--radio:last-child {
  margin-bottom: 0;
}

.radioButton .control.control--radio input {
  width: 100%;
  height: 40px;
  margin: 0;
}

.radioButton .control.control--radio input ~ .control__indicator {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  border: 2px solid #e2001a;
  text-align: center;
  line-height: 40px;
}

.radioButton .control.control--radio input ~ .control__indicator:after {
  display: none;
}

.radioButton .control.control--radio input:checked ~ .control__indicator {
  background-color: #e2001a;
  color: #ffffff;
}

.radioButton .control.control--radio:hover input ~ .control__indicator {
  border: 2px solid #e2001a;
}

.radioButton.condition1 {
  margin-bottom: 0;
}

.radioButton.condition1 .control.control--radio {
  width: 100%;
  height: auto;
  padding: 0;
  margin-bottom: 0;
}

.radioButton.condition1 .control.control--radio input {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator {
  position: relative;
  left: inherit;
  top: inherit;
  width: 100%;
  height: auto;
  background-color: transparent;
  border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  -moz-border-radius: 7.5px;
  -ms-border-radius: 7.5px;
  -o-border-radius: 7.5px;
  transform: translate(0);
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  border: none;
  color: #333333;
  text-align: center;
  line-height: inherit;
  padding: 15px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .radioButton.condition1 .control.control--radio input ~ .control__indicator {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding: 15px 10px;
  }
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator > div {
  width: 48%;
}

@media (min-width: 768px) {
  .radioButton.condition1 .control.control--radio input ~ .control__indicator > div {
    width: 100%;
  }
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator:after {
  display: none;
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator .bButton {
  font-family: 'db_heaventroundedcond';
  width: 100%;
  margin-right: 20px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  border: 2px solid #e2001a;
  text-align: center;
  line-height: 40px;
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator .tScore {
  font-family: 'db_heaventroundedcond';
  color: #e2001a;
  margin-top: 5px;
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator .bPicCon {
  margin-top: 10px;
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator .bPicCon img {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.radioButton.condition1 .control.control--radio input ~ .control__indicator .tText {
  font-family: 'db_heaventroundedcond';
  text-align: left;
}

.radioButton.condition1 .control.control--radio input:checked ~ .control__indicator {
  color: #333333;
}

.radioButton.condition1 .control.control--radio input:checked ~ .control__indicator .bButton {
  background-color: #e2001a;
  color: #ffffff;
}

.radioButton.condition1 .control.control--radio.score6 input ~ .control__indicator {
  background-color: #fdf0f1;
}

.radioButton.condition1 .control.control--radio.score7 input ~ .control__indicator {
  background-color: #fbe0e3;
}

.radioButton.condition1 .control.control--radio.score8 input ~ .control__indicator {
  background-color: #f9ccd1;
}

.radioButton.condition1 .control.control--radio.score9 input ~ .control__indicator {
  background-color: #f4a5af;
}

.radioButton.condition1 .control.control--radio:last-child input ~ .control__indicator {
  margin-bottom: 0px;
}

.radioButton.condition1 .control.control--radio:hover:last-child input ~ .control__indicator {
  border: none;
}

header {
  height: 73px;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 428px;
  z-index: 998;
  background-color: #ffffff;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 3px #cccccc;
}

@media (min-width: 768px) {
  header {
    max-width: 100%;
    left: 0;
  }
}

.bLogo img {
  height: 40px;
  width: auto;
}

.bLang {
  font-family: 'DIN Pro';
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  position: absolute;
  right: 10px;
}

.bLang a {
  line-height: 11px;
  padding: 0 10px;
  color: #333333;
}

.bLang a:after {
  content: '';
  display: block;
  width: 1px;
  height: 11px;
  background-color: #333333;
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.bLang a:last-child {
  padding-right: 0;
}

.bLang a:last-child::after {
  display: none;
}

.bLang a.active {
  color: #e2001a;
}

.bHome {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.bHome img {
  height: 20px;
  width: auto;
}

.btnContact {
  position: absolute;
  right: 15px;
  bottom: -60%;
}

.btnContact img {
  width: 50px;
  height: auto;
}

.btnFAQ {
  position: fixed;
  left: 15px;
  bottom: 20px;
}

.btnFAQ img {
  display: block;
  width: 50px;
  height: auto;
}

footer {
  margin: 0 15px;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  border-top: 1px solid #d8d8d8;
}

footer .menuFooter {
  font-size: 22px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .menuFooter i {
  display: block;
  background-color: #e2001a;
  background-color: #d8d8d8;
  width: 2px;
  height: 15px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

footer .menuFooter a {
  color: #333333;
  margin: 0 10px;
  text-transform: uppercase;
  color: #e2001a;
}

.pPDPA {
  position: fixed;
  z-index: 999;
  padding: 10px 15px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 16px;
}

.pPDPA .bPDPA {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

@media (min-width: 768px) {
  .pPDPA .bPDPA {
    max-width: 1000px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.pPDPA .tPDPA a {
  color: #e2001a;
  text-decoration: underline;
}

.pPDPA #btnAccept {
  font-family: 'db_heaventroundedbold_cond';
  margin-left: 15px;
  height: 35px;
  line-height: 35px;
  font-size: 26px;
  background-color: #e2001a;
  color: #ffffff;
  border: none;
  padding: 0 15px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  text-align: center;
  max-width: 170px;
  cursor: pointer;
}

.splide__pagination__page {
  margin: 6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 1px solid #ffffff;
  opacity: 1;
}

.splide__pagination__page.is-active {
  border: 1px solid #e2001a;
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.splide__progress {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  width: 100%;
  bottom: 0px;
}

.splide__progress__bar {
  height: 5px;
  background-color: #e2001a;
}

.splide__arrows {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
}

.splide__arrows .splide__arrow {
  border: 1px solid rgba(0, 155, 179, 0.25);
  background: center center no-repeat;
  background-size: 40% auto;
  background-color: transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  width: 60px;
  height: 60px;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}

.splide__arrows .splide__arrow svg {
  display: none;
}

.splide__arrows .splide__arrow:hover {
  background-color: #e2001a;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}

.splide__arrow.splide__arrow--prev {
  background-image: url(../img/ico-arrowR.svg);
  transform: rotate(-180deg);
  transform-origin: 1rem 0.5rem;
}

.splide__arrow.splide__arrow--prev:hover {
  background-image: url(../img/ico-arrowRW.svg);
}

.splide__arrow.splide__arrow--next {
  background-image: url(../img/ico-arrowR.svg);
}

.splide__arrow.splide__arrow--next:hover {
  background-image: url(../img/ico-arrowRW.svg);
}

.splide .bNumber {
  display: table;
  margin: 12px auto 0;
  font-weight: bold;
  background-color: #e2001a;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  padding: 0 12px;
  line-height: 30px;
  color: #FFFFFF;
  width: fit-content;
}

.splide .bNumber span {
  display: inline;
}

.jBox-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.jBox-Modal .jBox-container {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  background-color: transparent;
}

.jBox-Modal .jBox-container, .jBox-Modal.jBox-closeButton-box:before {
  box-shadow: none;
}

@media (max-width: 428px) {
  .jBox-Modal .jBox-content {
    padding: 0;
    margin: 0 auto;
  }
}

@media (max-width: 428px) {
  .jBox-closeButton-box {
    width: 100%;
  }
}

.jBox-closeButton-box .jBox-closeButton {
  background: transparent;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}

.jBox-closeButton > svg {
  display: none;
}

.bModal {
  border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  -moz-border-radius: 7.5px;
  -ms-border-radius: 7.5px;
  -o-border-radius: 7.5px;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.bModal #btnCloseModal {
  position: absolute;
  right: 15px;
  top: 15px;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: url(../img/ico-close.svg) center center no-repeat;
  background-size: auto 40%;
}

@media (max-width: 428px) {
  .bModal #btnCloseModal {
    width: 30px;
    height: 30px;
  }
}

#ModalBoxMessage .bPic img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}

#ModalBoxMessage .bText {
  font-size: 35px;
  line-height: 35px;
  font-family: 'db_heaventroundedbold_cond';
  text-align: center;
  margin: 20px 0;
}

#ModalBoxMessage .bBtn {
  width: 100%;
  padding: 0;
}

#ModalBoxMessage .bBtn .btnClose {
  font-family: 'db_heaventroundedcond';
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  width: 100%;
  background-color: #e2001a;
  color: #ffffff;
  border: none;
  padding: 0 15px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  text-align: center;
  max-width: 150px;
  cursor: pointer;
  margin: 0 auto;
  line-height: 41px;
}

#ModalBoxImage #BoxImg {
  margin-bottom: 20px;
}

#ModalBoxImage #BoxImg img {
  width: 50%;
  height: auto;
  margin: 0 auto;
  display: block;
}

#ModalBoxImage .bText {
  margin-bottom: 20px;
  text-align: center;
}

#ModalBoxImage .bBtn {
  width: 100%;
  padding: 0;
}

#ModalBoxImage .bBtn .btnClose {
  font-family: 'db_heaventroundedcond';
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  width: 100%;
  background-color: #e2001a;
  color: #ffffff;
  border: none;
  padding: 0 15px;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  text-align: center;
  max-width: 150px;
  cursor: pointer;
  margin: 0 auto;
  line-height: 41px;
}

.pPagination .bPagination {
  padding: 0px 0 50px;
  display: -moz-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 428px) {
  .pPagination .bPagination {
    padding-top: 60px;
  }
}

.pPagination .bPagination .btnPagination, .pPagination .bPagination > *, .pPagination .bPagination .bLeft a, .pPagination .bPagination .bRight a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: center center no-repeat;
  background-size: 40% auto;
  background-color: transparent;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  text-align: center;
  font-weight: bold;
  color: #454545;
  cursor: pointer;
  float: left;
  margin: 0 5px;
}

.pPagination .bPagination .btnPagination.active, .pPagination .bPagination > .active, .pPagination .bPagination .bLeft a.active, .pPagination .bPagination .bRight a.active {
  color: #e2001a;
}

.pPagination .bPagination .btnPagination:hover, .pPagination .bPagination > :hover, .pPagination .bPagination .bLeft a:hover, .pPagination .bPagination .bRight a:hover {
  background-color: #e2001a;
  color: #FFFFFF;
}

.pPagination .bPagination .btnPagination.disable, .pPagination .bPagination > .disable, .pPagination .bPagination .bLeft a.disable, .pPagination .bPagination .bRight a.disable {
  background-color: #EBEBEB;
  color: #767676;
  border: none;
  cursor: default;
}

.pPagination .bPagination .btnPagination.disable:hover, .pPagination .bPagination > .disable:hover, .pPagination .bPagination .bLeft a.disable:hover, .pPagination .bPagination .bRight a.disable:hover {
  background-color: #EBEBEB;
  color: #767676;
}

@media (max-width: 428px) {
  .pPagination .bPagination .btnPagination, .pPagination .bPagination > *, .pPagination .bPagination .bLeft a, .pPagination .bPagination .bRight a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.pPagination .bPagination .bLeft, .pPagination .bPagination .bRight {
  width: inherit;
  height: inherit;
  background: none !important;
}

@media (max-width: 428px) {
  .pPagination .bPagination .bLeft, .pPagination .bPagination .bRight {
    position: absolute;
    top: 0px;
  }
}

@media (max-width: 428px) {
  .pPagination .bPagination .bLeft {
    left: 0;
  }
}

.pPagination .bPagination .bLeft a {
  width: 140px;
  background-color: #e2001a;
  color: #ffffff;
  margin-right: 10px;
}

@media (max-width: 428px) {
  .pPagination .bPagination .bLeft a {
    width: 120px;
    height: 35px;
    line-height: 35px;
  }
}

.pPagination .bPagination .bLeft a:before {
  content: '';
  width: 9px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  background-image: url(../img/ico-arrowL.svg);
  background-size: auto 100%;
  top: 2px;
}

.pPagination .bPagination .bLeft a:hover {
  background-color: #f6142e;
}

@media (max-width: 428px) {
  .pPagination .bPagination .bRight {
    right: 0;
  }
}

.pPagination .bPagination .bRight a {
  width: 140px;
  background-color: #e2001a;
  color: #ffffff;
  margin-left: 10px;
}

@media (max-width: 428px) {
  .pPagination .bPagination .bRight a {
    width: 120px;
    height: 35px;
    line-height: 35px;
  }
}

.pPagination .bPagination .bRight a:after {
  content: '';
  width: 9px;
  height: 18px;
  display: inline-block;
  margin-left: 10px;
  background-image: url(../img/ico-arrowR.svg);
  background-size: auto 100%;
  top: 2px;
}

.pPagination .bPagination .bRight a:hover {
  background-color: #f6142e;
  color: #ffffff;
}

html {
  font-family: 'db_heaventroundedmed';
  font-size: 16px;
  line-height: normal;
}

body {
  color: #333333;
  background-color: #808285;
  padding-top: 73px;
  min-height: -webkit-fill-available;
  font-size: 20px;
  line-height: normal;
}

@media (min-width: 768px) {
  body {
    background-color: #f6f6f6;
  }
}

#wrapper {
  width: 100%;
  max-width: 428px;
  background-color: #f6f6f6;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  min-height: calc(100vh - 73px);
}

@media (min-width: 768px) {
  #wrapper {
    max-width: 1000px;
    padding: 0 30px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    padding-bottom: 0;
  }
}

#pContent {
  padding: 15px 0;
}

@media (min-width: 768px) {
  #pContent {
    padding: 3vh;
  }
}

#pin {
  top: 0px;
}

#pinDown {
  position: absolute;
  top: 30%;
  left: 0;
}

.bCard {
  border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  -moz-border-radius: 7.5px;
  -ms-border-radius: 7.5px;
  -o-border-radius: 7.5px;
  padding: 15px;
  margin-bottom: 15px;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

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

.bCard > .tTitle {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-transform: uppercase;
  line-height: 22px;
  align-self: baseline;
  width: 100%;
}

@media (min-width: 768px) {
  .bCard {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 3vh;
    display: flex;
    flex-direction: column;
  }
}

.bBtn {
  padding: 15px 7.5px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 375px) {
  .bBtn.step1 {
    flex-direction: column;
  }
  .bBtn.step1 a {
    margin-bottom: 15px;
    max-width: inherit;
    margin-right: 0;
    margin-left: 0;
  }
  .bBtn.step1 a:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .bBtn {
    width: 50%;
    margin: 0 auto;
  }
  .bBtn a {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .bBtn {
    width: 70%;
  }
}

.bBtn a {
  margin-right: 15px;
}

.bBtn a:last-child {
  margin-right: 0;
}

.pBanner {
  width: 100%;
}

.pBanner img {
  width: 100%;
  height: auto;
}

.bBarcodescan {
  width: 100%;
  margin-bottom: 15px;
}

.bBarcodescan .bScript {
  min-height: 400px;
}

.bBarcodescan #interactive {
  width: 100%;
  height: 400px;
  background-color: #000000;
  overflow: hidden;
}

.bBarcodescan #interactive video {
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
}

.bBarcodescan #interactive .drawingBuffer {
  width: 200%;
  height: 200%;
}

.bBarcodescan .bOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/img-scan.svg) center center no-repeat;
  background-color: rgba(0, 0, 0, 0.15);
  background-size: 90% auto;
}

.bBarcodescan .bOverlay .tTitle {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 100%;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .bBarcodescan {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 3vh;
    border: 15px solid #ffffff;
    border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    -moz-border-radius: 7.5px;
    -ms-border-radius: 7.5px;
    -o-border-radius: 7.5px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .bBarcodescan {
    width: 70%;
  }
}

.bUpload {
  width: 100%;
  margin-top: 15px;
}

.bUpload .btnUpload {
  width: 100%;
  cursor: pointer;
}

.bUpload .btnUpload img {
  display: table;
  width: 80px;
  height: auto;
  margin: 0 auto;
}

.bUpload .btnUpload input[type="file"] {
  display: none;
}

.bUpload .btnUpload p {
  font-size: 20px;
  line-height: normal;
  display: block;
  height: 41px;
  line-height: 41px;
  margin: 20px auto;
  max-width: inherit;
  width: 80%;
}

.bUpload .bPic {
  width: 80%;
  margin: 0 auto;
  border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  -moz-border-radius: 7.5px;
  -ms-border-radius: 7.5px;
  -o-border-radius: 7.5px;
  overflow: hidden;
}

.bUpload .bPic img {
  display: block;
  width: 100%;
  height: auto;
}

.bProductMain .bPic {
  margin: 5px 0;
}

.bProductMain .bPic img {
  width: 55%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bProductMain .bPic img {
    width: 30%;
  }
}

.bProductMain .bName {
  font-family: 'db_heaventroundedbold_cond';
  font-size: 26px;
  line-height: normal;
  text-align: center;
  color: #e2001a;
  text-transform: uppercase;
  line-height: 22px;
}

.bProductMain .bDes {
  font-family: 'db_heaventroundedcond';
  text-align: center;
}

.bDetailsMain {
  border-top: 1px solid #d7d7d7;
  margin-top: 15px;
  padding-top: 15px;
}

.bDetailsMain .tTitle {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-transform: uppercase;
}

.bListDetails ul {
  padding-left: 18px;
}

.bListDetails ul li {
  font-family: 'db_heaventroundedcond';
  position: relative;
  text-align: left;
}

.bListDetails ul li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -11px;
  top: 10px;
  background-color: #e2001a;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.bListDetails ul li span {
  color: #e2001a;
}

.bDisclaimer {
  font-family: 'db_heaventroundedcond';
  border-top: 1px solid #d7d7d7;
  margin-top: 15px;
  padding-top: 15px;
  text-align: left;
  color: #e2001a;
}

.btnAccord img {
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  width: 21px;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.btnAccord.opened img {
  transform: rotate(180deg) translateY(50%);
  -webkit-transform: rotate(180deg) translateY(50%);
  -moz-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  -o-transform: rotate(180deg) translateY(50%);
}

.contentAccord {
  padding-top: 5px;
}

.bResultCup .bTitle .tTitle {
  font-size: 40px;
  line-height: 40px;
  font-family: 'db_heaventroundedbold_cond';
  text-align: center;
  color: #e2001a;
  text-transform: uppercase;
}

.bResultCup .bTitle .tTitle span {
  font-size: 26px;
  line-height: normal;
  color: #333333;
  display: block;
}

.bResultCup i {
  font-family: 'db_heaventroundedbold_cond';
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 100px;
  color: #e2001a;
  transform: translate(-50%, -50%);
  z-index: 100;
}

@media (max-width: 375px) {
  .bResultCup i {
    font-size: 70px;
  }
}

.bResultCup .bPicportion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

@media (min-width: 768px) {
  .bResultCup .bPicportion {
    margin: 15px auto;
    padding: 0 10%;
  }
}

.bResultCup .bPicportion > .bPic {
  width: 48%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bResultCup .bPicportion > .bPic {
    width: 30%;
  }
}

.bResultCup .bPicportion > .bPic > img {
  width: 100%;
  height: auto;
  margin: 0;
}

.bResultCup .bPicportion > .bPic .bText {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 55%;
  width: 57%;
  height: 57%;
  transform: translate(-50%, -60%);
  -webkit-transform: translate(-50%, -60%);
  -moz-transform: translate(-50%, -60%);
  -ms-transform: translate(-50%, -60%);
  -o-transform: translate(-50%, -60%);
}

.bResultCup .bPicportion > .bPic .bText img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.bResultCup .bPicportion > .bPic .bText .tNumber {
  font-size: 65px;
  line-height: 65px;
  font-family: 'db_heaventroundedmed_cond';
  line-height: 40px;
  margin-top: 18%;
}

@media (max-width: 375px) {
  .bResultCup .bPicportion > .bPic .bText .tNumber {
    font-size: 40px;
    line-height: 40px;
    line-height: 30px;
  }
}

.bResultCup .bPicportion > .bPic .bText .tNumber span {
  color: #e2001a;
}

.bResultCup .bPicportion > .bPic .bText .tText {
  font-family: 'db_heaventroundedbold_cond';
}

@media (max-width: 375px) {
  .bResultCup .bPicportion > .bPic .bText .tText {
    font-size: 14px;
  }
}

.bResultCup .bSizeCup {
  font-size: 15px;
  line-height: 15px;
  font-family: 'db_heaventroundedcond';
  text-align: center;
  color: #e2001a;
  width: 80%;
  margin: 0 auto 30px;
}

@media (min-width: 768px) {
  .bResultCup .bSizeCup {
    margin-top: 10px;
  }
}

.bResultCup .bFoodweight .tText {
  font-size: 50px;
  line-height: 50px;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-align: center;
  line-height: 35px;
}

.bResultCup .bFoodweight .tText span {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedcond';
  color: #333333;
  display: block;
}

.bResultCup .bFoodcost .tText {
  font-family: 'db_heaventroundedcond';
  width: 80%;
  margin: 0 auto;
  border: 2px solid #e2001a;
  text-align: center;
  padding: 7px 0;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .bResultCup .bFoodcost .tText {
    font-size: 26px;
    line-height: normal;
  }
}

.bResultCup .bFoodcost .tText span {
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
}

.bResultCup .bFoodcost .tDisclaimer {
  font-size: 15px;
  line-height: 15px;
  font-family: 'db_heaventroundedcond';
  text-align: left;
  color: #e2001a;
  width: 80%;
  margin: 5px auto 0;
}

.bResultCup .bFoodcost .tDisclaimer.textLeft {
  text-align: left;
}

.bResultCup a {
  width: 100%;
  margin: 20px auto 15px;
}

@media (min-width: 768px) {
  .bResultCup a {
    width: 50%;
  }
}

.bResultPouch .bTitle .tTitle {
  font-size: 40px;
  line-height: 40px;
  font-family: 'db_heaventroundedbold_cond';
  text-align: center;
  color: #e2001a;
  text-transform: uppercase;
}

.bResultPouch .bTitle .tTitle span {
  font-size: 26px;
  line-height: normal;
  color: #333333;
  display: block;
}

.bResultPouch i {
  font-family: 'db_heaventroundedbold_cond';
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 100px;
  color: #e2001a;
  transform: translate(-50%, -50%);
  z-index: 100;
}

@media (max-width: 375px) {
  .bResultPouch i {
    font-size: 70px;
  }
}

.bResultPouch .bPicportion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 30px;
}

@media (min-width: 768px) {
  .bResultPouch .bPicportion {
    margin: 15px auto 30px;
    padding: 0 10%;
  }
}

.bResultPouch .bPicportion > .bPic {
  width: 48%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bResultPouch .bPicportion > .bPic {
    width: 30%;
  }
}

.bResultPouch .bPicportion > .bPic > img {
  width: 70%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.bResultPouch .bPicportion > .bPic .bText {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 57%;
  width: 57%;
  height: 57%;
  transform: translate(-50%, -55%);
  -webkit-transform: translate(-50%, -55%);
  -moz-transform: translate(-50%, -55%);
  -ms-transform: translate(-50%, -55%);
  -o-transform: translate(-50%, -55%);
}

.bResultPouch .bPicportion > .bPic .bText img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.bResultPouch .bPicportion > .bPic .bText .tNumber {
  font-size: 65px;
  line-height: 65px;
  font-family: 'db_heaventroundedmed_cond';
  line-height: 40px;
  margin-top: 10%;
}

@media (max-width: 375px) {
  .bResultPouch .bPicportion > .bPic .bText .tNumber {
    font-size: 40px;
    line-height: 40px;
    line-height: 30px;
  }
}

.bResultPouch .bPicportion > .bPic .bText .tNumber span {
  color: #e2001a;
}

.bResultPouch .bPicportion > .bPic .bText .tText {
  font-family: 'db_heaventroundedbold_cond';
}

@media (max-width: 375px) {
  .bResultPouch .bPicportion > .bPic .bText .tText {
    font-size: 14px;
  }
}

.bResultPouch .bFoodweight .tText {
  font-size: 50px;
  line-height: 50px;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-align: center;
  line-height: 35px;
}

.bResultPouch .bFoodweight .tText span {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedcond';
  color: #333333;
  display: block;
}

.bResultPouch .bFoodcost .tText {
  font-family: 'db_heaventroundedcond';
  width: 80%;
  margin: 0 auto;
  border: 2px solid #e2001a;
  text-align: center;
  padding: 7px 0;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .bResultPouch .bFoodcost .tText {
    font-size: 26px;
    line-height: normal;
  }
}

.bResultPouch .bFoodcost .tText span {
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
}

.bResultPouch .bFoodcost .tDisclaimer {
  font-size: 15px;
  line-height: 15px;
  font-family: 'db_heaventroundedcond';
  text-align: left;
  color: #e2001a;
  width: 80%;
  margin: 5px auto 0;
}

.bResultPouch .bFoodcost .tDisclaimer.textLeft {
  text-align: left;
}

.bResultPouch a {
  width: 100%;
  margin: 20px auto 15px;
}

@media (min-width: 768px) {
  .bResultPouch a {
    width: 50%;
  }
}

.bResultCan .bTitle .tTitle {
  font-size: 40px;
  line-height: 40px;
  font-family: 'db_heaventroundedbold_cond';
  text-align: center;
  color: #e2001a;
  text-transform: uppercase;
}

.bResultCan .bTitle .tTitle span {
  font-size: 26px;
  line-height: normal;
  color: #333333;
  display: block;
}

.bResultCan i {
  font-family: 'db_heaventroundedbold_cond';
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 100px;
  color: #e2001a;
  transform: translate(-50%, -50%);
  z-index: 100;
}

@media (max-width: 375px) {
  .bResultCan i {
    font-size: 70px;
  }
}

.bResultCan .bPicportion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 30px;
}

@media (min-width: 768px) {
  .bResultCan .bPicportion {
    margin: 15px auto 30px;
    padding: 0 10%;
  }
}

.bResultCan .bPicportion > .bPic {
  width: 48%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bResultCan .bPicportion > .bPic {
    width: 30%;
  }
}

.bResultCan .bPicportion > .bPic > img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.bResultCan .bPicportion > .bPic .bText {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  left: 50%;
  top: 52%;
  width: 52%;
  height: 52%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.bResultCan .bPicportion > .bPic .bText img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
}

.bResultCan .bPicportion > .bPic .bText .tNumber {
  font-size: 65px;
  line-height: 65px;
  font-family: 'db_heaventroundedmed_cond';
  line-height: 40px;
  margin-top: 30%;
}

@media (max-width: 375px) {
  .bResultCan .bPicportion > .bPic .bText .tNumber {
    font-size: 40px;
    line-height: 40px;
    line-height: 30px;
  }
}

.bResultCan .bPicportion > .bPic .bText .tNumber span {
  color: #e2001a;
}

.bResultCan .bPicportion > .bPic .bText .tText {
  font-family: 'db_heaventroundedbold_cond';
  font-size: 14px;
}

.bResultCan .bFoodweight .tText {
  font-size: 50px;
  line-height: 50px;
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-align: center;
  line-height: 35px;
}

.bResultCan .bFoodweight .tText span {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedcond';
  color: #333333;
  display: block;
}

.bResultCan .bFoodcost .tText {
  font-family: 'db_heaventroundedcond';
  width: 80%;
  margin: 0 auto;
  border: 2px solid #e2001a;
  text-align: center;
  padding: 7px 0;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .bResultCan .bFoodcost .tText {
    font-size: 26px;
    line-height: normal;
  }
}

.bResultCan .bFoodcost .tText span {
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
}

.bResultCan .bFoodcost .tDisclaimer {
  font-size: 15px;
  line-height: 15px;
  font-family: 'db_heaventroundedcond';
  text-align: left;
  color: #e2001a;
  width: 80%;
  margin: 5px auto 0;
}

.bResultCan .bFoodcost .tDisclaimer.textLeft {
  text-align: left;
}

.bResultCan a {
  width: 100%;
  margin: 20px auto 15px;
}

@media (min-width: 768px) {
  .bResultCan a {
    width: 50%;
  }
}

.bPregnancy .bTitle .tTitle {
  font-size: 32px;
  line-height: 32px;
  font-family: 'db_heaventroundedbold_cond';
  text-align: center;
  color: #e2001a;
  text-transform: uppercase;
}

.bPregnancy .bTitle .tTitle span {
  font-size: 26px;
  line-height: normal;
  color: #333333;
  display: block;
}

.bPregnancy .bTitle .tTitle.en {
  font-size: 40px;
  line-height: 40px;
}

.bPregnancy .bTitle .tTitle.en span {
  font-size: 20px;
  line-height: normal;
}

.bPregnancy .bPic {
  width: 100%;
  margin: 15px auto;
}

@media (min-width: 768px) {
  .bPregnancy .bPic {
    width: 50%;
  }
}

.bPregnancy .bPic img {
  width: 100%;
  height: auto;
}

.bPregnancy .bDetails .tText {
  font-size: 26px;
  line-height: normal;
  text-align: center;
}

.bPregnancy .bDetails .tBig {
  font-family: 'db_heaventroundedbold_cond';
  font-size: 55px;
  color: #e2001a;
  text-align: center;
}

.bPregnancy .bDetails .tBig.en {
  font-size: 36px;
}

.bPregnancy .bDetails .tDisclaimer {
  font-size: 15px;
  line-height: 15px;
  font-family: 'db_heaventroundedcond';
  text-align: left;
  color: #e2001a;
  width: 80%;
  margin: 5px auto 0;
}

.bPregnancy .bDetails .tDisclaimer.textLeft {
  text-align: left;
}

.bPregnancy a.btnType2 {
  width: 100%;
  margin: 20px auto 15px;
}

@media (min-width: 768px) {
  .bPregnancy a.btnType2 {
    width: 50%;
  }
}

.bIdealweight {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 28px;
}

@media (min-width: 768px) {
  .bIdealweight {
    font-size: 40px;
    line-height: 40px;
  }
}

.bIdealweight .tTitle {
  font-family: 'db_heaventroundedbold_cond';
  color: #e2001a;
  text-transform: uppercase;
}

.bIdealweight .tWeight {
  margin-left: 10px;
  font-family: 'db_heaventroundedcond';
}

.bIdealweight .tWeight span {
  text-align: center;
}

.bIdealweight .tWeight span.first {
  border-bottom: 1px dashed #333333;
  margin-right: 10px;
  padding: 0 10px;
}

.bResultDiet .bTitle .tTitle {
  font-size: 40px;
  line-height: 40px;
  font-family: 'db_heaventroundedbold_cond';
  text-align: center;
  color: #e2001a;
  text-transform: uppercase;
  text-align: justify;
}

.bResultDiet .bTitle .tTitle span {
  font-size: 26px;
  line-height: normal;
  color: #333333;
  display: block;
  text-align: left;
}

.bResultDiet .bStageMain {
  margin: 15px 0 20px;
}

.bResultDiet .bStageMain .bStage {
  margin: 0 15px;
  border-left: 2px solid #333333;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    border-left: none;
    margin: 0;
  }
  .bResultDiet .bStageMain .bStage:nth-child(2) .bFoodWeight {
    border-left: 2px solid #eaeaea;
    border-right: 2px solid #eaeaea;
  }
  .bResultDiet .bStageMain .bStage:nth-child(2)::before, .bResultDiet .bStageMain .bStage:nth-child(2)::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333333;
    position: absolute;
    z-index: 0;
    top: 15px;
  }
  .bResultDiet .bStageMain .bStage:nth-child(2)::before {
    left: -50%;
  }
  .bResultDiet .bStageMain .bStage:nth-child(2)::after {
    right: -50%;
  }
}

.bResultDiet .bStageMain .bStage .bTitle {
  display: flex;
  margin-left: -17px;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bTitle {
    flex-direction: column;
    justify-content: center;
    margin: 0 0 10px;
  }
}

.bResultDiet .bStageMain .bStage .bTitle i {
  font-family: 'db_heaventroundedbold_cond';
  display: inline-block;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  background-color: #e2001a;
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: -4px;
  margin-right: 10px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  z-index: 1;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bTitle i {
    font-size: 38px;
    margin: 0 auto 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
  }
}

.bResultDiet .bStageMain .bStage .bTitle .tTitle {
  font-size: 35px;
  line-height: 25px;
  text-align: left;
  flex: 1;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bTitle .tTitle {
    flex: 0;
    text-align: center;
    padding: 0 15px;
  }
}

.bResultDiet .bStageMain .bStage .bTitle .tTitle span {
  font-size: 16px;
  display: block;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bTitle .tTitle span {
    display: block;
    text-align: center;
  }
}

.bResultDiet .bStageMain .bStage .bFoodWeight {
  display: flex;
  align-items: center;
  padding: 20px 0px 30px 25px;
  padding-left: 25px;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bFoodWeight {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 2vh 0;
  }
}

.bResultDiet .bStageMain .bStage .bFoodWeight .bPic {
  margin-right: 15%;
}

@media (max-width: 375px) {
  .bResultDiet .bStageMain .bStage .bFoodWeight .bPic {
    margin-right: 9%;
  }
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bFoodWeight .bPic {
    margin-right: 0;
  }
}

.bResultDiet .bStageMain .bStage .bFoodWeight .bPic img {
  width: 100px;
  height: auto;
}

@media (max-width: 375px) {
  .bResultDiet .bStageMain .bStage .bFoodWeight .bPic img {
    width: 80px;
  }
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage .bFoodWeight .bPic img {
    width: auto;
    height: 80px;
  }
}

.bResultDiet .bStageMain .bStage .bFoodWeight .bText {
  text-align: center;
}

.bResultDiet .bStageMain .bStage .bFoodWeight .bText .tWeight {
  font-family: 'db_heaventroundedmed_cond';
  font-size: 85px;
  line-height: 60px;
  color: #e2001a;
}

.bResultDiet .bStageMain .bStage .bFoodWeight .bText .tText {
  font-family: 'db_heaventroundedbold_cond';
  font-size: 35px;
  line-height: 25px;
  color: #333333;
}

@media (max-width: 375px) {
  .bResultDiet .bStageMain .bStage .bFoodWeight .bText .tText {
    font-size: 30px;
  }
}

.bResultDiet .bStageMain .bStage .bFoodWeight .bText .tText span {
  font-family: 'db_heaventroundedcond';
  font-size: 20px;
  line-height: normal;
  display: block;
}

.bResultDiet .bStageMain .bStage:last-child .bFoodWeight {
  padding-bottom: 0px;
}

@media (min-width: 768px) {
  .bResultDiet .bStageMain .bStage:last-child .bFoodWeight {
    padding-bottom: 2vh;
  }
}

.bResultDiet .bFoodcost .tText {
  font-family: 'db_heaventroundedbold_cond';
  width: 80%;
  margin: 0 auto;
  border: 2px solid #e2001a;
  text-align: center;
  padding: 10px 0;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .bResultDiet .bFoodcost .tText {
    font-size: 26px;
    line-height: normal;
  }
}

.bResultDiet .bFoodcost .tText span {
  color: #e2001a;
}

.bResultDiet .bFoodcost .tText i {
  margin: 0 5px;
  padding: 0 10px;
  border-bottom: 1px dashed #e2001a;
}

.bResultDiet .bFoodcost .tDisclaimer {
  font-size: 15px;
  line-height: 15px;
  font-family: 'db_heaventroundedcond';
  text-align: left;
  color: #e2001a;
  width: 80%;
  margin: 5px auto 0;
}

.bResultDiet .bFoodcost .tDisclaimer.textLeft {
  text-align: left;
}

.bResultDiet a.btnType2 {
  width: 100%;
  margin: 20px auto 15px;
}

@media (min-width: 768px) {
  .bResultDiet a.btnType2 {
    width: 50%;
  }
}

.score5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 20px 10px;
}

@media (min-width: 768px) {
  .score5 {
    width: 60%;
    margin: 0 auto;
  }
}

.score5 > div {
  width: 48%;
}

.score5 .tScore {
  font-family: 'db_heaventroundedcond';
  color: #e2001a;
  text-align: left;
  margin-bottom: 5px;
}

.score5 .bButton {
  font-family: 'db_heaventroundedcond';
  font-size: 35px;
  width: 100%;
  margin-right: 20px;
  text-align: center;
  line-height: 20px;
}

.score5 .bPicCon {
  margin-top: 5px;
}

.score5 .bPicCon img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.score5 .tText {
  font-family: 'db_heaventroundedcond';
  text-align: left;
}

.score5 .tHead {
  font-size: 26px;
  line-height: normal;
  font-family: 'db_heaventroundedmed_cond';
}

@media (min-width: 768px) {
  .flexWrap {
    display: flex;
    align-items: stretch;
  }
  .flexWrap > * {
    margin-right: 2vh;
  }
  .flexWrap > *:last-child {
    margin-right: 0;
  }
  .mgBottom {
    margin-bottom: 2vh;
  }
}

#exhiProfileText {
  background-color: #f6f6f6;
  width: 100%;
}

.bBtn#save {
  margin: 15px auto;
  padding: 0 30px 30px;
}

.bHeadText {
  padding: 0 3vh;
  margin-bottom: 15px;
  font-family: 'db_heaventroundedbold_cond';
  font-size: 35px;
  line-height: 35px;
  text-align: center;
  color: #e2001a;
  line-height: 28px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .bHeadText {
    margin-bottom: 3vh;
    font-size: 50px;
    line-height: 45px;
  }
}

.bHeadText span {
  font-family: 'db_heaventroundedcond';
  font-size: 28px;
  line-height: 28px;
  color: #333333;
}

@media (min-width: 768px) {
  .bHeadText span {
    font-size: 40px;
    line-height: 45px;
  }
}

.bBtn.start {
  display: flex;
  justify-content: center;
}

#indexStep img {
  width: 90%;
  height: auto;
  padding: 1vh 3vh;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #indexStep img {
    width: 100%;
  }
}

.bHeadStep {
  padding: 3vh 3vh 0;
  text-align: center;
}

.bHeadStep i {
  font-family: 'db_heaventroundedbold_cond';
  display: inline-block;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  background-color: #e2001a;
  width: 35px;
  height: 35px;
  line-height: 35px;
  top: -4px;
  border-radius: 17.5px;
  -webkit-border-radius: 17.5px;
  -moz-border-radius: 17.5px;
  -ms-border-radius: 17.5px;
  -o-border-radius: 17.5px;
  z-index: 1;
}

.bHeadStep .bPic {
  margin: 2vh 0;
}

.bHeadStep .bPic img {
  height: 100px;
  width: auto;
}

@media (min-width: 768px) {
  .bHeadStep .bPic img {
    height: 150px;
  }
}

.bHeadStep h1 {
  font-size: 35px;
  line-height: 35px;
  font-family: 'db_heaventroundedbold_cond';
}

#choosePet .control-group {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
}

@media (min-width: 768px) {
  #choosePet .control-group {
    justify-content: space-evenly;
  }
}

#choosePet .control-group .control.control--radio {
  width: 48%;
  height: auto;
  padding: 0;
  margin-bottom: 0;
}

#choosePet .control-group .control.control--radio input {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}

#choosePet .control-group .control.control--radio input ~ .control__indicator {
  position: relative;
  left: inherit;
  top: inherit;
  width: 100%;
  height: auto;
  background-color: transparent;
  border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  -moz-border-radius: 7.5px;
  -ms-border-radius: 7.5px;
  -o-border-radius: 7.5px;
  transform: translate(0);
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  border: none;
  color: #333333;
  text-align: center;
  line-height: inherit;
  padding: 0;
}

#choosePet .control-group .control.control--radio input ~ .control__indicator:after {
  display: none;
}

#choosePet .control-group .control.control--radio input ~ .control__indicator .bPic img {
  width: 100%;
  height: auto;
}

#choosePet .control-group .control.control--radio input ~ .control__indicator .bButton {
  font-family: 'db_heaventroundedcond';
  width: 70%;
  margin: 10px auto 0;
  height: 40px;
  background-color: #ffffff;
  border-radius: 22px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  border: 2px solid #e2001a;
  text-align: center;
  line-height: 40px;
}

@media (min-width: 768px) {
  #choosePet .control-group .control.control--radio input ~ .control__indicator .bButton {
    width: 50%;
  }
}

#choosePet .control-group .control.control--radio input:checked ~ .control__indicator {
  color: #333333;
}

#choosePet .control-group .control.control--radio input:checked ~ .control__indicator .bButton {
  background-color: #e2001a;
  color: #ffffff;
}
