﻿/**
*
* Delivery Lookup CSS
* ========================
*
* Used on shopping cart v4 and item page 14
*
**/

.delivery-lookup__title {
    text-transform: uppercase;
    font-size: .95rem;
    font-weight: bold;
}

.delivery-lookup__text {
    font-size: .75em;
}

.delivery-lookup__zip {
    font-size: .85em;
    color: #6d6c6c;
}

.delivery-lookup__zip span {
    font-weight: bold;
    margin-right: .25em;
}

.delivery-lookup__change-zip,
.delivery-lookup__disclaimer a,
.delivery-lookup__desc a {
    text-decoration:underline;
}

.delivery-lookup__input {
    margin-top: .75em;
    display: none;
}

.delivery-lookup__input.__active {
    display: flex;
}

    .delivery-lookup__input > input {
        max-width: 10em;
        border: 1px solid #ece9ee;
        padding: .25em .5em;
        font-size: .9rem;
        height: auto;
        line-height: normal;
    }

.delivery-lookup__submit {
    color: #fff;
    background-color: #767676;
    font-size: .75em;
    min-width: 7.25em;
    text-align: center;
    transition: all .3s ease-in-out;
    margin-left: 1em;
    text-transform: uppercase;
    border:0;
}

.delivery-lookup__submit:hover {
    background-color: #666666;
}

.delivery-lookup__options {
    margin-top: 1em;
    color: #6d6c6c;
}

.delivery-lookup__option {
    display: flex;
    justify-content: space-between;
    margin-bottom:.5em;
    position:relative;
}

.delivery-lookup__option__desc {
    text-transform: lowercase;
    padding-right:.5em;
}

.delivery-lookup__desc {
    margin-top: .5em;
    font-size: .9em;
}

.delivery-lookup__disclaimer {
    margin-top: .5em;
    font-size: .9em;
    color: #c80000;
}

/* tooltip styling */
.delivery-lookupt__tooltip.fdn-tooltip {
    position: absolute;
    right: 0;
}

.delivery-lookupt__tooltip.fdn-tooltip::before {
    min-width: 276px;
    font-size: 0.875rem;
    background-color: #000;
    text-align: left;
    left: -7em;
}

.delivery-lookupt__tooltip.fdn-tooltip::after {
    border-bottom-color: #000;
}

.delivery-lookupt__tooltip.fdn-tooltip ~ .delivery-lookup__option__price {
    padding-right: 1.5rem;
}


/*Check User Zip Code module (only returns whether the zip code is included in delivery rules)*/
/* Hide HTML5 Up and Down arrows. */
.zipcode-lookup input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.zipcode-lookup input[type="number"] {
    -moz-appearance: textfield;
}