/*
Theme Name: Drinks
*/

.order-link {
    display: flex;
	justify-content: center;
	margin: 40px auto;
}

.order-link a {
	background: #008275;
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
    overflow: hidden;
}
  
.order-link a::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .3;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
 }

.order-link a:hover,
.order-link a:focus,
.order-link a:active {
	background: #008275;
    color: #fff;
	text-decoration: none;
}

.order-link a:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}