.cart-form {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 98%;
}
.cart-input-wrap {
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    position: relative;
    padding: 20px 8px 0;
    margin: 5px 0;
}
.cart-input-wrap.focused {
    border: 1px solid rgba(40,156,211,0.7);
}
.cart-input-wrap.quarter {
    width: 23.5%;
}
.cart-input-wrap.three-quarter {
    width: 74.5%;
}
.cart-input-wrap.third {
    width: 32.5%;
}
.cart-input-wrap.half {
    width: 49%;
}
.cart-input-wrap.full {
    width: 100%;
}
.cart-input-wrap input,
.cart-input-wrap textarea {
    border: none;
    width: 100%;
    height: 35px;
    font-size: 16px;
    font-weight: 300;
    color: #221f20;
}
.cart-input-wrap input:focus,
.cart-input-wrap textarea:focus {
    outline: none;
}

.cart-input-wrap label {
    position: absolute;
    top: 5px;
    left: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #221f20;
    width: 100%;
    opacity: 0.65;
}

.cart-input-wrap label span {
    opacity: 0.5;
}
.cart-input-wrap textarea {
    height: 125px;
    margin-top: 5px;
}
.opt-in-checkbox,
.same-address-checkbox {
    margin-top: 5px;
    display: block;
    min-width: 100%;
}
.opt-in-checkbox label,
.same-address-checkbox label {
    font-weight: 300;
    font-size: 14px;
    margin-left: 3px;
    position: relative;
    top: -3px;
    cursor: pointer;
}
.opt-in-checkbox input[type="checkbox"],
.same-address-checkbox input[type="checkbox"] {
    position: relative;
    width: 15px;
    height: 15px;
    color: #363839;
    border: 1px solid #bdc1c6;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    cursor: pointer;
    -webkit-transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
    transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
.opt-in-checkbox input[type="checkbox"]::before,
.same-address-checkbox input[type="checkbox"]::before {
    position: absolute;
    content: '';
    display: block;
    top: 1px;
    left: 5px;
    width: 4px;
    height: 9px;
    border-style: solid;
    border-color: #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
}
.opt-in-checkbox input[type="checkbox"]:checked,
.same-address-checkbox input[type="checkbox"]:checked {
    color: #fff;
    border-color: #009dd7;
    background: #009dd7;
}
.opt-in-checkbox input[type="checkbox"]:checked::before,
.same-address-checkbox input[type="checkbox"]:checked::before {
    opacity: 1;
}
.opt-in-checkbox input[type="checkbox"]:checked ~ label::before,
.same-address-checkbox input[type="checkbox"]:checked ~ label::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.cart-input-wrap select {
    width: 100%;
    height: 35px;
    font-size: 16px;
    font-weight: 300;
    background-color: #fff;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(https://d3tvemk8zf61cc.cloudfront.net/cart_2020/drop_down.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 5px) 0;
    background-size: 9px;
}

.cart-input-wrap select::-ms-expand {
    display: none;
}
.cart-input-wrap select option:disabled {
    display: none;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: #231f20;
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    font-family: 'roboto', sans-serif;
}
.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 6px 0;
    font-size: 16px;
    font-weight: 300;
    font-family: 'roboto', sans-serif;
}
.styledSelect:after {
    content: "";
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #231f20 transparent transparent transparent;
    position: absolute;
    top: 6px;
    right: 6px;
    opacity: 0.5;
}
.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: -9px;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #ccc;
    background-color: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    width: 105.5%;
}
.options li {
    margin: 0 0;
    padding: 5px 10px;
}            
.options li:hover {
    background-color: #f58220;
    color: #fff;
}
.options li:first-of-type:hover {
    background-color: #fff;
}

.cart-form-error {
    border: 1px solid #e30046;
    padding: 15px 10px;
    width: 98%;
    border-radius: 3px;
    margin-top: 20px;
    color: #e30046;
}
.cart-form-error i {
    font-size: 22px;
    float: left;
    padding-left: 5px;
    margin: 0;
}
.cart-form-error p {
    padding-left: 40px;
    color: #e30046;
    font-size: 18px;
    font-family: 'roboto', sans-serif;
    font-weight: 300;
    line-height: 20px;
    margin: 0;
}

.ship-opt-wrap,
.payment-opt-wrap,
.gm-opt-wrap {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-left: 5px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ship-opt-wrap input[type="radio"],
.payment-opt-wrap input[type="radio"],
.gm-opt-wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border: 1px solid #009dd7;
    border-radius: 50%;
}
.ship-opt-wrap:hover input[type="radio"] ~ .custom-radio,
.payment-opt-wrap:hover input[type="radio"] ~ .custom-radio,
.gm-opt-wrap:hover input[type="checkbox"] ~ .custom-radio {
    background-color: #eee;
}
.ship-opt-wrap:hover input[type="radio"]:checked ~ .custom-radio,
.payment-opt-wrap:hover input[type="radio"]:checked ~ .custom-radio,
.gm-opt-wrap:hover input[type="checkbox"]:checked ~ .custom-radio {
    background-color: #fff;
}
.custom-radio:after {
    content: "";
    position: absolute;
    display: none;
}
.ship-opt-wrap input[type="radio"]:checked ~ .custom-radio:after,
.payment-opt-wrap input[type="radio"]:checked ~ .custom-radio:after,
.gm-opt-wrap input[type="checkbox"]:checked ~ .custom-radio:after {
    display: block;
}
.ship-opt-wrap .custom-radio:after,
.payment-opt-wrap .custom-radio:after,
.gm-opt-wrap .custom-radio:after {
 	top: 3px;
	left: 3px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #009dd7;
}

.input-icon {
    pointer-events: none;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: calc(50% - 13px);
    font-size: 26px;
    opacity: 0.15;
}
.info-icon {
    pointer-events: auto;
    cursor: pointer;
}

.modal-dialog.ups-modal {
    width: 800px;
}
.ups-modal .loginmodal-container {
    background-color: #fff;
}
.ups-right {
    border-left: 1px solid #d5d5d5;
}
.ups-modal {
    font-family: 'roboto', sans-serif;
}
.ups-modal p {
    font-weight: 300;
    font-size: 18px;
}
.ups-modal label {
    font-size: 20px;
}
.ups-modal input[type="text"] {
    font-size: 20px;
    font-weight: 400;
    font-family: 'roboto', sans-serif;
    height: 40px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    margin: 10px 0;
}
.ups-modal input[type="text"]:focus {
    outline: none;
    border: 1px solid rgba(40,156,211,0.7);
}
.ups-modal input[type="button"] {
    color: #fff;
    background-color: #009dd7;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
}
.ups-modal input[type="button"]:hover {
    background-color: #ff8000;
}
.ups-modal input[type="button"]:hover,
.ups-modal input[type="button"]:active,
.ups-modal input[type="button"]:focus {
    outline: none;
}

.tax-exempt input[type="radio"],
.tax-exempt label {
    display: inline-block;
}
.tax-exempt label {
    font-family: 'roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-left: 2px;
    margin-right: 10px;
}
.tax-exempt input[type="text"] {
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    padding: 8px;
    width: 150%;
}
.tax-exempt input[type="text"]::placeholder {
    opacity: 0.5;
}
.tax-exempt input[type="text"]:focus {
    outline: none;
    border: 1px solid rgba(40,156,211,0.7);
}

/*** Address Verification ***/
#sresults,
#bresults {
    position: absolute;
    left: 0;
    top: calc(100% + 5px);
    width: 100%;
    border: 1px solid #000;
    background-color: #fff;
    z-index: 10;
    border-radius: 3px;
    border: 1px rgba(0,0,0,0.10) solid;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.20);
            box-shadow: 0 0 10px 0 rgba(0,0,0,0.20);
    display: none;
}
.search-results-items {
    position: relative;
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
}
.address-head {
    background-color: #fff;
    height: 40px;
    width: 100%;
    top: 0;
    left: 0;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 12px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    z-index: 10;
}
.form-block .search-results-items h2 {
    font-size: 14px;
    color: #221f20;
    opacity: 0.65;
    letter-spacing: .1px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}
.item-row a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 12px;
    min-height: 45px;
}
.item-row a h3 {
    margin: 0;
    font-size: 18px;
    line-height: 20px;
    color: #221f20;
    opacity: 0.85;
}
.item-row a:hover {
    background-color: rgba(0,0,0,0.08);
    text-decoration: none;
}

/*** Ship Info 2023 Addition ***/
.ship-info-opt-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin: 5px 0 15px;
}
.ship-info-opt {
    width: calc(33% - 10px);
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    text-align: center;
    font-family: 'roboto', sans-serif;
    padding: 15px 10px;
    cursor: pointer;
    transition: .2s ease;
    display: flex;
    justify-content: space-between;
    flex-flow: column nowrap;
    align-items: center;
    position: relative; 
}
/*
.ship-info-opt-wrap.no-pickup .ship-info-opt:nth-of-type(2) {
    display: none;
}
*/
.ship-info-opt-wrap.no-pickup .ship-info-opt {
    width: calc(50% - 10px);
}
.ship-info-opt:hover {
    border: 1px solid #bbb;
}
.ship-info-opt.active {
    border: 1px solid #009dd7;
}
.ship-info-opt .si-icon-wrap {
    width: 45px;
    margin: 5px auto;
}
.ship-info-opt .si-img-wrap {
    position: relative;
    width: 100%;
}
.ship-info-opt .si-img-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.ship-info-opt .si-img-wrap.one-one {
    padding-top: 100%;
}
.ship-info-opt h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 5px;
}
.ship-info-opt p {
    font-size: 14px;
    line-height: 17px;
    font-weight: 300;
    margin: 0 0 10px;
}
.ship-info-opt p span {
    font-weight: 400;
}
.form-block .ship-info-opt button {
    width: 60%;
    height: 32px;
    background-color: #009dd7;
    float: none;
    font-size: 16px;
    margin: 0;
    padding: 5px 0;
    transition: .2s ease;
}
.ship-info-opt:hover button {
    background-color: #f48120;
}
#ship_form {
    display: none;
}
#local-pickup input {
    height: 32px;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: calc(100% - 30px);
    display: inline-block;
    margin: 0;
    padding-left: 5px;
}
.lpu-input-wrap {
    width: 95%;
}
#local-pickup input::placeholder {
    font-size: 13px;
    font-weight: 300;
    font-family: 'roboto', sans-serif;
}
#local-pickup input:focus {
    outline: none;
    border: 1px solid rgba(0,157,215,0.6);
}
#local-pickup button {
    width: 30px;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: inline-block;
    margin: 0;
    margin-left: -5px;
    height: 32px;
    padding: 1px 0;
}
#local-pickup button span {
    top: 2px;
}
#local-pickup:hover button {
    background-color: #009dd7;
}
#local-pickup button:hover {
    background-color: #f48120;
}
.co-tag {
    position: absolute;
    top: -10.5px;
    left: 50%;
    min-width: 50%;
    background-color: #f48120;
    padding: 2px 7px;
    border-radius: 20px;
    transform: translateX(-50%);
}
.co-tag p {
    font-family: 'roboto', sans-serif;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-size: 13px;
}

/*** Local Pickup Modal ***/
.modal-dialog.lpu-modal {
    width: 1000px;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    height: 575px;
    top: 50%;
    transform: translateY(-50%)!important;
    margin-top: 0!important;
}
.lpu-content-wrap {
    height: 100%;
    position: relative;
}
.lpu-content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-flow: column wrap;
    height: 100%;
}
.lpu-map {
    width: calc(100% - 400px);
    height: 100%;
    background-color: #e4f1f7;
    position: relative;
    order: 4;
}
.lpu-modal-close {
    position: absolute;
    top: 57px;
    right: 13px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    transition: .2s ease;
    cursor: pointer;
    z-index: 25;
}
.lpu-modal-close span {
    font-size: 18px;
    line-height: 35px;
    vertical-align: middle;
    color: rgba(0,0,0,0.7);
}
.lpu-modal-close:hover {
    background-color: #f0f3f5;
}
.lpu-head,
.lpu-results,
.lpu-foot {
    width: 400px;    
}
.lpu-head {
    height: 110px;
}
.lpu-head h2 {
    margin: 0;
    padding: 20px 15px 0;
    font-size: 22px!important;
}
.lpu-results {
    height: calc(100% - 180px);
    overflow-y: scroll;
    border-top: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
}
.locate-zip-wrap {
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    width: calc(100% - 30px);
    margin: 10px auto 0;
}
.lz-left {
    width: calc(100% - 76px);
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    height: 42px;
}
.lz-left.focused {
    border: 1px solid rgba(0,157,215,0.6);
}
.lz-left input {
    height: 39px;  
    width: calc(100% - 50px);
    border: none;
    font-family: 'roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    padding-left: 10px;
    margin-left: 1px;
}
.lz-left input::placeholder {
    font-family: 'roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
}
.lz-left input:focus {
    border: none;
    outline: none;
}
.lz-left span {
    color: #009dd7;
    font-size: 22px;
    line-height: 37px;
    float: right;
    margin-right: 8px;
    cursor: pointer;
    transition: .2s ease;
}
.lz-left span.glyphicon-search:hover {
    color: #f48120;
}
.lz-right {
    width: 70px;
    border: 1px solid #009dd7;
    background-color: #009dd7;
    border-radius: 3px;
    height: 42px;
    cursor: pointer;
    transition: .2s ease;
    text-align: center;
    padding-top: 5px;
}
.lz-right:hover {
    border: 1px solid #f48120;
    background-color: #f48120;
}

.lpu-results-head {
    position: sticky;
    height: 30px;
    width: 100%;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid #d5d5d5;
    text-align: center;
    z-index: 10;
}
.lpu-results-head h3 {
    font-family: 'roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: .25px;
}
.result-cell {
    width: 100%;
    border-bottom: 1px solid #d5d5d5;
    padding: 15px;
    font-family: 'roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    cursor: pointer;
    transition: .2s ease;
}
.result-cell.active,
.result-cell.active:hover {
    background-color: #f0f3f5;
}
.result-cell:hover {
    background-color: #fafafa;
}
.r-info {
    width: calc(100% - 100px);
}
.r-distance {
    width: 100px;
}
.r-info h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.r-info p {
    font-size: 15px;
    line-height: 1;
    font-weight: 300;
    margin: 0 0 3px;
}
.r-info .r-hours {
    margin: 8px 0 0;
    opacity: 0.6;
    display: none;
}
.result-cell.active .r-info .r-hours {
    display: block;
}
.r-info .r-hours p {
    font-size: 13px;
}
.r-distance h4 {
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #f48120;
    border-radius: 3px;
    padding: 5px 10px;
    text-align: center;
    color: #f48120;
    margin: 0;
    background: #fff;
    transition: .2s ease;
}
.result-cell.active .r-distance h4 {
    background: #f48120;
    color: #fff;
}

.lpu-foot {
    height: 70px;
    text-align: center;
    order: 3;
}
.lpu-foot button {
    width: calc(100% - 30px)!important;
    float: none!important;
    margin: 10px auto 0!important;
    height: 50px;
    font-size: 17px!important;
}

.lpu-map p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lpu-controls {
    display: none;
}

@media (max-width: 1200px) {
    .co-tag {
        width: 65%;
    }
}

@media (max-width: 1100px) {
    .modal-dialog.lpu-modal {
        width: 900px;
    }
}

@media (max-width: 991px) {
    .cart-form {
        width: 100%;
    }
    .modal-dialog.ups-modal {
        width: auto;
        max-width: 95%;
    }
    .ups-modal {
        text-align: center;
    }
    .ups-modal input[type="text"] {
        max-width: 250px;
        display: block;
    }
    .ups-modal input[type="button"] {
        display: block;
        margin: 0 auto 15px;
    }
    .ups-right {
        border-left: none;
        text-align: left;
    }
    
    
    .modal-dialog.lpu-modal {
        width: 700px;
    }
    .lpu-head,
    .lpu-results,
    .lpu-foot {
        width: 325px;    
    }
    .lpu-map {
        width: calc(100% - 325px);
    }
}

@media (max-width: 768px) {
    .gift-message-form .cart-input-wrap.third {
        width: 100%;
    }
    
    .modal-dialog.lpu-modal {
        width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .lpu-modal-close {
        top: 10px;
    }
    .lpu-head,
    .lpu-results,
    .lpu-foot,
    .lpu-map {
        width: 100%;  
    }
    .lpu-head {
        height: 100px;
    }
    .lpu-results,
    .lpu-map {
        height: calc(100% - 210px);
    }
    .lpu-foot {
        order: 4;
    }
    .lpu-map {
        order: 3;
        display: none;
    }
    .lpu-controls {
        display: flex;
        justify-content: space-between;
        flex-flow: row nowrap;
        height: 40px;
        width: 100%;
        cursor: pointer;
        transition: .2s ease;
    }
    .lpu-ctrl:hover {
        background-color: #f0f3f5;
    }
    .lpu-ctrl {
        width: 50%;
        text-align: center;
        border-bottom: 1px solid #d5d5d5;
    }
    .lpu-ctrl.active {
        border-bottom: 2px solid #009dd7;
    }
    .lpu-ctrl.active:hover {
        background-color: #fff;
    }
    .lpu-ctrl h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 40px;
        margin: 0;
        text-transform: uppercase;
    }
    .lpu-results {
        border-top: none;
    }
}

@media (max-width: 600px) {
    .cart-input-wrap label span {
        font-size: 10px;
    }    
    
    .ship-info-opt-wrap {
        flex-flow: row wrap;
    }
    .ship-info-opt,
    .ship-info-opt-wrap.no-pickup .ship-info-opt {
        width: 100%;
        margin: 0 0 20px;
        padding: 20px;
    }
    .form-block .ship-info-opt button {
        max-width: 150px;
    }
    .ship-info-opt .si-icon-wrap {
        display: none;
    }
    
    .modal-dialog.lpu-modal {
        width: 90%;
    }
    #local-pickup input {
        width: 50%;
        min-width: 200px;
    }
    
    .co-tag {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .cart-input-wrap.half,
    .cart-input-wrap.quarter,
    .cart-input-wrap.three-quarter,
    .cart-input-wrap.third {
        width: 100%;
    }
    .form-block .cart-input-wrap {
        margin: 5px 0;
    }
    .cart-input-wrap label span {
        font-size: 11px;
    }
    
    .item-row a h3 {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .expand-gift-certificate .cart-input-wrap {
        padding-top: 40px;
    }
    .expand-gift-certificate .cart-input-wrap input {
        height: 35px;
    }
    
    .tax-exempt input[type="text"] {
        width: 100%;
    }
    
    .modal-dialog.lpu-modal {
        height: 450px;
        top: 50px;
        transform: none!important;
    }
    .lpu-head h2 {
        font-size: 18px!important;
    }
    .lz-left input::placeholder {
        font-size: 14px;
    }
    .lpu-results-head h3 {
        font-size: 12px;
    }
}





