.day-of-juicing h2 {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.day-of-juicing .row-interior .name {
    font-family: Oswald;
    font-size: 32.2px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}

.day-of-juicing .row-interior img {
    object-fit: cover;
}


.day-of-juicing {
    background: #FAFAFA;
    position: relative;
}

.day-of-juicing .floating-image {
    position: absolute;
    bottom: -50%;
    transform: rotate(-7.55deg);
    right: -25%;
}

.day-of-juicing .tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;    
}

.day-of-juicing .tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-content: center;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.day-of-juicing .juicing-row{
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    position: relative;
}

.day-of-juicing .juicing-row.time {
    font-size: 24px;
    font-weight: bold;
    width: 10%;
}

/*Tabbed Juicing Section*/
.day-of-juicing .row-interior {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1em;
    gap: 1em;
    border-radius: 18px;
    border: 3px solid var(--color-black);
    background: var(--color-white);
    width: 90%;
    z-index: 1;
}

.day-of-juicing .row-interior:after {
    content: '';
    height: 3em;
    width: 2px;
    background:var(--color-black);
    position: absolute;
    bottom: -4.5em;
    display: block;
    transform: translate(-50%, -50%);
}

.day-of-juicing .juicing-row:last-child .row-interior:after {
    display: none;
}

.day-of-juicing .row-interior img {
    height: 110px;
    width: 35px;
    object-fit: contain;
}

.day-of-juicing .juicing-row .time{
    font-weight: bold;
    font-size: var(--font-size-quinary-heading);
}

.tabs-buttons {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #CACACA;
	border-radius: 50px;
	max-width: 720px;
	margin: 4em auto;
}


.tabs-buttons button {
	flex: 1;
	background: #CACACA;
	border-radius: 50px;
	border: none;
	font-size: 26px;
	padding: 15px 30px;
	cursor: pointer;
	transition: color 0.3s;
	color: var(--color-white);
	font-weight: bold;
}

.tabs-buttons button.active {
	padding: 15px 30px;
	background: var(--color-green);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {	
.tabs-buttons{
	flex-direction: column;
	background-color: transparent !important;
}
.tabs-buttons button{
	border-radius: 0 !important;
	background-color: #CACACA;
	width: 100%;
}
}
/*Devices 768px in width*/
@media only screen and (min-width: 48em) {
}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {
}
/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {

}