p,
label,
button {
    /*font-size: 18px;
    font-weight: 600;*/
    letter-spacing: initial;
    /*font-family: "Source Sans Pro", Sans-serif;*/
    font-family: var( --e-global-typography-primary-font-family ), Sans-serif;
}



.weekly-product-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    padding-top: 10px;
    align-items: center;
}

.weekly-product-row p {
    width: 40%;
    font-size: 16px;
    margin-bottom: 0;
}

.product-weekly-options {
    display: flex;
}

.product-weekly-options label {
    margin-bottom: 2.5px;
    align-self: center;
}
.product-weekly-options div {
    margin-right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
input.weekly-input {
    max-width: 75px;
    height: 30px;
    padding: 0 5px 0 17.5px !important;
    text-align: center;
}

.weekly-form-outer-container h5 {
    margin-bottom: 5px;
    text-transform: inherit;
}

.show-weekly-products-button {
    font-size: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.2s all;
}

.show-weekly-products-button .fas {
    margin-left: 5px;
}

.show-weekly-products-button:hover {
    opacity: 0.8;
}


.button-up,
.button-down {
  position: relative;
  padding: 5px;
  margin: 30px auto;
  background: #000;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: all 0.2s linear;
}

.button-down:hover {
  transform: translate3d(0, 10px, 0);
}

.button-up:hover {
  transform: translate3d(0, -10px, 0);
}

.button-up::after,
.button-down::after {
  content: "";
  position: absolute;
  left: 17px;
  z-index: 11;
  display: block;
  width: 25px;
  height: 25px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.button-up::after {
  top: 20px;
  transform: rotate(45deg);
}

.button-down::after {
  top: 10px;
  transform: rotate(225deg);
}

@media screen and (max-width: 960px) {
    .weekly-product-row p {
        margin-bottom: 10px;
        width: 100%;
    }
    .weekly-product-row {
        flex-direction: column;
        align-items: baseline;
    }
    .product-weekly-options {
        overflow: scroll;
    }
    .product-weekly-options label {
        align-self: baseline;
    }
    .product-weekly-options div {
        align-items: baseline;
        min-width: fit-content;
    }
    .product-weekly-options input[type="checkbox"] {
        margin-top: -2px;
    }
    input.weekly-input {
        padding: 0 5px 0 5px !important;
        max-width: 50px;
    }
}

/*@media screen and (max-width: 650px) {
    .weekly-product-row p {
        margin-bottom: 10px;
    }
    .weekly-product-row {
        flex-direction: column;
        align-items: baseline;
    }
    .product-weekly-options label {
        align-items: baseline;
    }
}*/






