#floatingATC table.woocommerce-product-attributes.shop_attributes {
    display: flex;
    justify-content: center;
}
.woocommerce #floatingATC table.shop_attributes, .woocommerce #floatingATC table.shop_attributes td {
	border: none;
}
.woocommerce #floatingATC table.shop_attributes th, .woocommerce #floatingATC table.shop_attributes td p{
	padding: 5px;
	font-size: 15px;
	text-align: center;
	width: fit-content;
	border: none;
}
#floatingATC .left-column{
    flex: 1 0 50%;
}
#floatingATC .left-column, #floatingATC .right-column {
    display: flex;
    padding: 5px 10px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
#floatingATC {
  transition: .7s ease;
  animation-duration: .7s;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    flex-wrap: nowrap;
	 z-index: 999;
}
div#floatingATC img {
    object-fit: contain;
    height: 140px;
    width: 140px;
}
a#floatingAddToCart {
  display: flex;
  background: black;
  line-height: 35px;
 width: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: white;
}
@-webkit-keyframes animatetop {
  from {bottom:-300px; opacity:0} 
  to {bottom:0; opacity:1}
}

@keyframes animatetop {
  from {bottom:-300px; opacity:0}
  to {bottom:0; opacity:1}
}
@-webkit-keyframes animateOut {
  from {bottom:0px; opacity:1}
  to {bottom:-300px; opacity:0}
}

@keyframes animateOut {
  from {bottom:0px; opacity:1}
  to {bottom:-300px; opacity:0}
}

@-webkit-@keyframes ShineAnim{
  0%{left: -100%}
  20%{left: 100%}
  100%{left: 100%}
}

@keyframes ShineAnim{
  0%{left: -100%}
  20%{left: 100%}
  100%{left: 100%}
}

#floatingATC:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
90deg, transparent, rgba(255,255,255,.9), transparent);
    animation: ShineAnim 5s ease infinite;
    animation-delay: 1s;
}
@media(max-width:920px){
div#floatingATC img {
    height: 80px;
    width: 80px;
}
.woocommerce #floatingATC .left-column, .woocommerce #floatingATC .right-column{
		justify-content: center
	}
.woocommerce #floatingATC table.shop_attributes th, .woocommerce #floatingATC table.shop_attributes td p{
	font-size: 12px;
}
.woocommerce #floatingATC table.woocommerce-product-attributes.shop_attributes {
    margin: 0;
}
}