#pots{
  margin-top: -1px;
  margin-left: -1px;
}
.PotSelection{
  position: relative;
  margin: 10px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.PotSelection ul li {
  text-align: center;
  padding-bottom: 20px;
  margin-top: 1px;
  margin-left: 1px;
}

.PotSelection ul li label {
  margin: 0;
  padding: 0;
  padding-top: 0.5rem;
}

.PotSelection .pot{
  position: relative;
  background-position-x: center;
  width: 88px;
  margin: 0 auto;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  border-radius: 0;
  height: 72px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  transition: box-shadow 0.3s ease 0s;
}

.PotSelection .pot:before {
  font-family: "FontAwesome";
  position: absolute;
  color: #FFFFFF;
  font-size: 12px;
  line-height: normal;
  top: auto;
  content: '';
  background-color: #00a551;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  right: 8px;
  bottom: 5px;
  visibility: hidden;
  opacity: 0;
}

.PotSelection .pot:hover:before {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.PotSelection .input-color:checked + span:before {
  background-color: white;
  content: '\E86C';
  font-family: 'Material Icons';
  color: #00a551;
  font-size: 25px;
  z-index: 1111;
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.PotSelection .input-color:checked + span,
.PotSelection .input-color:hover + span,
.PotSelection .input-radio:checked + span,
.PotSelection .input-radio:hover + span {
  border: none;
  cursor: pointer ;
}

.PotSelection .pot .sr-only {
  padding: 5px 7px;
  width: 100%;
  transform: none;
  line-height: 14px;
  font-weight: bold;
  left: -5px;
  transition: none;
  background: #232323;
  height: auto;
  clip: inherit;
  color: #FFFFFF;
  overflow: inherit;
  visibility: hidden;
  border-radius: 3px;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 10000;
}

.PotSelection .pot:hover .sr-only {
  background: #00a551;
  opacity: 1;
  display: block;
  padding: 5px 7px;
  text-align: center;
  width: 100%;
  left: -5px;
  bottom: 48%;
  min-width: 100px;
  transform: translateY(-45px);
  visibility: visible;
}

.PotSelection .pot .sr-only:before {
  border-top: 7px solid #00a551;
  left: 46%;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  bottom: -5px;
}

.PotSelection .outstock .pot:hover .sr-only {
  display: none;
}
.PotSelection .outstock .input-color:checked + span,
.PotSelection .outstock .input-color:hover + span,
.PotSelection .outstock .input-radio:checked + span,
.PotSelection .outstock .input-radio:hover + span  {
  cursor: not-allowed;
}
.PotSelection .outstock .input-color:hover + span:before {
  display: none;
}
.PotSelection .input-color:disabled + span{
  opacity: 0.4;
}

.pot-price{
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  color: #6b7383;
}

.total-amount-products .sumary-item{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  align-items: center;
  padding: 10px 0;
}

.total-amount-products .sumary-item:last-child(2){
  border-bottom: none;
}

.total-amount-products .elem-title {
  font-size: 1.2em;
  font-weight: bold;
}
.total-amount-products .elem-price{
  font-size: 1.2em;
  font-weight: bold;
}
