#payment .payment_methods li.payment_method_shopping_os label img{
  margin-left: auto;
  height: 20px;
  width: auto;
  position: relative;
  top: 5px;
  float: right;
}

.sos-footer {
    padding-top: 10px;
}

.icons-list {
    display: flex;
    align-items : center;
    justify-content: center;
    padding-top: 10px;
}

#payment .payment_methods li.payment_method_shopping_os .icons-list #bank-icon {
  margin: 0 17px;
  max-height: 30px;
  transition: transform .2s ease-out;
  will-change: transform;
}

#payment .payment_methods li.payment_method_shopping_os .icons-list #bank-icon:hover {
  transform: scale(1.2);
}

#payment .payment_methods li.payment_method_shopping_os .icons-list #bank-icon:active {
  transform: scale(1.1);
  transition: transform .1s ease-out
}

.sos-footer .footer-text {
  text-align: center;
}

.sos-progress-wrapper {
  margin: 30px 0;
  padding: 10px 40px;
}

.sos-progress {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.bar {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #999;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.bar__fill {
  display: block;
  background: #2862ff;
  height: 100%;
}

.sos-point {
  position: relative;
}
.sos-point:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
.show-radius .sos-point:before {
  background: rgba(0, 0, 0, 0.1);
}

.sos-point--active {
  color: #2862ff;
}

.sos-bullet {
  z-index: 1;
  position: relative;
  background: #2862ff;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  transition: 0.3s ease;
}
.sos-point--complete .sos-bullet, .sos-point--active .sos-bullet {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 6px #2862ff;
}
.sos-point--active .sos-bullet {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 10px #2862ff;
}

.sos-progress label.up {
  position: absolute;
  top: 0%;
  left: 50%;
  margin: 0 0 10px 0;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translate(-50%, -150%);
  white-space: nowrap;
}

.sos-progress label.down {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 10px 0 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translate(-50%, 0);
  white-space: nowrap;
}

/* Select Bank styles  */

.sos-icons-label {
  margin-top: 10px;
}

.sos-select2 .select2-results__option {
  padding: 15px;
}

.sos-select2 .bank-icon {
  float: left;
  width: 30px;
  height: 30px;
  margin-left: 5px;
  background: #fff;
  margin-right: 15px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #dedede;
}

.sos-select2 .select2-results__option:hover .bank-icon {
  box-shadow: 0 0 0 2px #0073aa, 0 0 0 3px #6bbce3;
}

.sos-select2 .bank-icon img {
  width: 100%;
  height: 100%;
  margin-right: 5px;
  border-radius: 25px;
  object-fit: contain;
}