.flag-images img {
  width: 36px;
  height: 36px;
  margin-left: 15px;
}

.retailer-logo {
  max-height: 100px;
  max-width: auto !important;
  width: auto !important;
  /* margin-bottom: 20px !important; */
  margin-bottom: 0px !important;
}

.modal-body h3 {
  font-size: 1.25rem;
}

.steps {
  margin: 40px;
  padding: 0;
  overflow: hidden;
}
.steps a {
  color: white;
  text-decoration: none;
}
.steps em {
  display: block;
  font-size: 1.1em;
  font-weight: bold;
}
.steps li {
  float: left;
  margin-left: 0;
  width: 150px; /* 100 / number of steps */
  height: 70px; /* total height */
  list-style-type: none;
  padding: 5px 5px 5px 30px; /* padding around text, last should include arrow width */
  border-right: 3px solid white; /* width: gap between arrows, color: background of document */
  position: relative;
}
/* remove extra padding on the first object since it doesn't have an arrow to the left */
.steps li:first-child {
  padding-left: 5px;
}
/* white arrow to the left to "erase" background (starting from the 2nd object) */
.steps li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 25px solid white; /* width: arrow width, color: background of document */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}
/* colored arrow to the right */
.steps li::after {
  z-index: 1; /* need to bring this above the next item */
  position: absolute;
  top: 0;
  right: -25px; /* arrow width (negated) */
  display: block;
  border-left: 25px solid #7c8437; /* width: arrow width */
  border-top: 40px solid transparent; /* width: half height */
  border-bottom: 40px solid transparent; /* width: half height */
  width:0;
  height:0;
  content: " ";
}

/* Setup colors (both the background and the arrow) */

/* Completed */
.steps li { background-color: #7C8437; }
.steps li::after { border-left-color: #7c8437; }

/* Current */
.steps li.current { background-color: #C36615; }
.steps li.current::after { border-left-color: #C36615; }

/* Following */
.steps li.current ~ li { background-color: #EBEBEB; }
.steps li.current ~ li::after { border-left-color: #EBEBEB; }

/* Hover for completed and current */
.steps li:hover {background-color: #696}
.steps li:hover::after {border-left-color: #696}



.arrows { white-space: nowrap; }
.arrows li {
    display: inline-block;
    line-height: 26px;
    margin: 0 9px 0 -10px;
    padding: 0 20px;
    position: relative;
}
.arrows li::before,
.arrows li::after {
    border-right: 1px solid #666666;
    content: '';
    display: block;
    height: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    transform: skewX(45deg);
}
.arrows li::after {
    bottom: 0;
    top: auto;
    transform: skewX(-45deg);
}

.arrows li:last-of-type::before,
.arrows li:last-of-type::after {
    display: none;
}

.arrows li a {
   font: bold 24px Sans-Serif;
   letter-spacing: -1px;
   text-decoration: none;
}

.arrows li:nth-of-type(1) a { color: hsl(0, 0%, 70%); }
.arrows li:nth-of-type(2) a { color: hsl(0, 0%, 65%); }
.arrows li:nth-of-type(3) a { color: hsl(0, 0%, 50%); }
.arrows li:nth-of-type(4) a { color: hsl(0, 0%, 45%); }

/* Absolute Center Spinner */
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));

  background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

h1 {
  font-size: 44px;
}

.progress {
  margin-bottom: 20px;
  height: 1.5rem;
}

.bg-orange {
  background-color: #D69625;
}

.bg-grey {
  background-color: #E6E6E6;
  color: black;
}

/* language selector with flags  */
#language-form {
  width: 240px;
  margin-left: auto;
}
.contain-select-language {
  position: relative;
}
.selected-language-container {
  margin-top: 15px;
  /* display: block;
  width: 100%; */

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  /* align-items: stretch; */ /* 100% height */
  -ms-flex-direction: row;
  flex-direction: row;

  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

  background-image: url('../images/chevron-down-512.png');
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 10px 10px;
}
.selected-language-container .language-flag-container {
  width: 20px;
}
.selected-language-container .language-text-container {
  width: calc(100% - 30px);
  text-align: left;
  padding-left: 15px;
}
.select-language-list-container-new {
  position: absolute;
  top: 100%;
  right: 0px;
  bottom: auto;
  left: 0px;
  height: 0px;
  overflow-y: auto;
  list-style: none;
  padding-left: 10px;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  border-radius: .25rem;
}
.select-language-list-container-new.opened {
  height: 200px;
  border: 1px solid #ced4da;
}
.select-language-list-container-new li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: row;
  flex-direction: row;
  cursor: pointer;
}
.select-language-list-container-new li.active, 
.select-language-list-container-new li:hover {
  background-color: #00ffff;
}
.select-language-list-container-new li .language-flag-container {
  width: 20px;
}
.select-language-list-container-new li .language-text-container {
  width: calc(100% - 30px);
  text-align: left;
  padding-left: 15px;
}

.navbar-brand {
  max-width: 250px;
}
/* end language selector with flags  */

@media only screen and (max-width: 1199px) {
  /* language selector with flags  */
  .navbar-nav.navbar-right.top-right {
    width: 240px;
  }
  /* end language selector with flags  */
}

@media only screen and (max-width: 992px) {
  .nav.flag-images {
    position: absolute;
    bottom: 100%;
    left: 0px;
    right: 0px;
    flex-direction: row;
    justify-content: center;
  }
  .nav.flag-images img {
    height: 20px;
    width: 20px;
  }
  .section-fixed-top {
    background: #ffffff;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding-bottom: 0px;
    z-index: 100;
  }
  .page-body {
    padding-top: 40px;
  }
  .navbar.navbar-expand-lg.fixed-top {
    position: unset;
  }
}

@media only screen and (max-width: 991px) {
  /* language selector with flags  */
  .container-of-navigation {
    order: 1;
    width: 100%;
  }
  .navbar-toggler {
    margin-left: auto;
    display: block;
  }
  .navbar-brand {
    order: 2;
  }
  .nav.navbar-nav.navbar-right {
    order: 3;
    margin-left: auto;
  }

  .text-navbar li {
    margin-top: 0px !important;
    border-bottom: 1px solid #ced4da;
  }
  .text-navbar li:first-of-type {
    margin-top: 20px !important;
    border-top: 1px solid #ced4da;
  }
  .text-navbar li:last-of-type {
    /* margin-bottom: 10px !important; */
  }
  .text-navbar li a {
    display: inline-block;
    margin: 0px;
    padding: 8px;
  }
  /* end language selector with flags  */
}


.progress-breadcrumb {
  display: flex;
  width: 100%;
  margin-bottom: 25px;
  font-size: 14px;
}
.progress-breadcrumb div {
  margin-right: 30px;
  width: calc( (100% - 120px ) / 5 );
}
.progress-breadcrumb div:last-child {
  margin-right: 0px;
}
.progress-breadcrumb div a {
  display: block;
  width: 100%;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
  background: hsla(34,85%,65%,1);
  position: relative;
  display: flex;
  justify-content: center;
}
.progress-breadcrumb div a::after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 26px solid transparent; /* Go big on the size, and let overflow hide */
  border-bottom: 26px solid transparent;
  border-left: 30px solid hsla(34,85%,65%,1);
  position: absolute;
  top: 50%;
  margin-top: -26px;
  left: 100%;
  z-index: 2;
  -webkit-filter: drop-shadow(1px 0px 0px #fff);
  filter: drop-shadow(1px 0px 0px #fff);
}
.progress-breadcrumb div a::before {
  content: " ";
  display: block;
  width: 30px;
  height: 52px;
  position: absolute;
  top: 0px;
  right: 100%;
  z-index: 1;
  background-color: hsla(34,85%,65%,1);
}
.progress-breadcrumb div:first-child a::before {
  display: none;
}
/* .progress-breadcrumb div:nth-child(2) a        { background:        hsla(34,85%,45%,1); }
.progress-breadcrumb div:nth-child(2) a:before { background-color: hsla(34,85%,45%,1); }
.progress-breadcrumb div:nth-child(2) a:after  { border-left-color: hsla(34,85%,45%,1); }
.progress-breadcrumb div:nth-child(3) a        { background:        hsla(34,85%,55%,1); }
.progress-breadcrumb div:nth-child(3) a:before { background-color: hsla(34,85%,55%,1); }
.progress-breadcrumb div:nth-child(3) a:after  { border-left-color: hsla(34,85%,55%,1); }
.progress-breadcrumb div:nth-child(4) a        { background:        hsla(34,85%,65%,1); }
.progress-breadcrumb div:nth-child(4) a:before { background-color: hsla(34,85%,65%,1); }
.progress-breadcrumb div:nth-child(4) a:after  { border-left-color: hsla(34,85%,65%,1); }
.progress-breadcrumb div:nth-child(5) a        { background:        hsla(34,85%,75%,1); }
.progress-breadcrumb div:nth-child(5) a:before { background-color: hsla(34,85%,75%,1); }
.progress-breadcrumb div:nth-child(5) a:after  { border-left-color: hsla(34,85%,75%,1); }
.progress-breadcrumb div:last-child a          { background:        hsla(34,85%,85%,1); }
.progress-breadcrumb div:last-child a::before  { background-color: hsla(34,85%,85%,1); } */
.progress-breadcrumb div:last-child a::after   { border: none; -webkit-filter: none; filter: none; }

.progress-breadcrumb div span {
  line-height: 20px;
  padding: 5px;
  border: 1px solid #ffffff;
  width: 32px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.progress-breadcrumb div span i {
  display: none;
}
.progress-breadcrumb div span ins {
  text-decoration: none !important;
}
.progress-breadcrumb div.completed-step span i {
  display: unset
}
.progress-breadcrumb div.completed-step span ins {
  display: none;
}

.progress-breadcrumb div.completed-step a,
.progress-breadcrumb div.current-step a  {
  background: hsla(34,85%,45%,1);
}
.progress-breadcrumb div.completed-step a::after,
.progress-breadcrumb div.current-step a::after {
  border-left-color: hsla(34,85%,45%,1);
}
.progress-breadcrumb div.completed-step a::before,
.progress-breadcrumb div.current-step a::before {
  background: hsla(34,85%,45%,1);
}


@media only screen and (max-width: 767px) {
  .progress-breadcrumb div {
    margin-right: 15px;
    width: calc( (100% - 60px ) / 5 );
  }
  .progress-breadcrumb div a {
    padding: 10px;
  }
  .progress-breadcrumb div a::after {
    border-left: 15px solid hsla(34,85%,65%,1);
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    margin-top: -24px;
  }
  .progress-breadcrumb div a::before {
    width: 15px;
    height: 48px;
  }
  .progress-breadcrumb div span {
    line-height: 16px;
    width: 28px;
  }

  /* language selector with flags  */
  .page-body {
    padding-top: 20px;
  }
  .container-of-navigation {
    order: 2;
    width: 100%;
    margin-left: auto;
  }
  .navbar-toggler {
    margin-left: auto;
    display: block;
  }
  .navbar-brand {
    order: 3;
    margin: 15px auto 0px;
  }
  .nav.navbar-nav.navbar-right {
    order: 1;
    margin-left: auto;
  }
  .navbar-nav.navbar-right.top-right {
    width: calc(100% - 68px) !important;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: 0px !important;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .top-right div {
    width: 140px !important;
  }
  .contain-select-language {
    width: 100% !important;
  }
  #language-form {
    width: 160px;
    padding: 0px 10px;
  }
  .selected-language-container {
    margin-top: 0px;
  }
  .selected-language-container .language-flag-container, 
  .select-language-list-container-new li .language-flag-container {
    width: 30px !important;
  }
  .logoimg {
    max-width: 140px;
  }
  .navbar .container {
    align-items: flex-start;
    position: relative;
    justify-content: center;
  }
  /* .navbar.navbar-expand-lg.fixed-top {
    padding: 0rem 1rem;
  } */
  /* .navbar-brand {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-left: 0px;
  } */
  .navbar-nav {
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .text-navbar li {
    margin-top: 0px !important;
    border-bottom: 1px solid #ced4da;
  }
  .text-navbar li:first-of-type {
    margin-top: 20px !important;
    border-top: 1px solid #ced4da;
  }
  .text-navbar li:last-of-type {
    /* margin-bottom: 10px !important; */
  }
  .text-navbar li a {
    display: inline-block;
    margin: 0px;
    padding: 5px;
  }
  .select-language-list-container-new {
    padding-left: 3px;
  }
  .select-language-list-container-new li {
    margin-top: 5px !important;
  }
  .selected-language-container .language-text-container, 
  .select-language-list-container-new li .language-text-container {
    padding-left: 5px;
  }
  /* end language selector with flags  */
}

@media only screen and (max-width: 525px) {
  /* language selector with flags  */
  .navbar {
    justify-content: center;
  }
  /* .navbar-brand {
    margin-right: 0px;
  } */
  .nav.navbar-nav.navbar-right {
    margin-left: auto;
  }
  /* end language selector with flags  */
}

@media only screen and (max-width: 490px) {
  /* language selector with flags  */
  .navbar-nav.navbar-right.top-right {
    /* width: 140px; */
  }
  .logoimg {
    /* max-width: 140px; */
  }
  
  .top-right div {
    /* text-align: center !important; */
  }
  #language-form {
    margin-right: auto;
    /* width: 140px; */
  }
  /* end language selector with flags  */
}

@media only screen and (max-width: 390px) {
  .logoimg {
    max-width: 130px;
  }
  .top-right div {
    width: 130px !important;
  }
  #language-form {
    width: 140px;
    padding: 0px 5px;
  }
  .navbar-nav.navbar-right.top-right {
    width: calc(100% - 58px) !important;
  }
}