/* Order Messaging */

#clickBlocker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(0, 0%, 100%, 0.8);
    z-index: 999;
    overflow: hidden;

    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    
    pointer-events: none;
    opacity: 0;
}

#outsideMessage {
    position: absolute;
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    
    

    z-index: 1;
    background: hsla(143, 0%, 100%, 0.95);
    color: black;

    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    
    opacity: 0;
    pointer-events: none;

}

#outsideMessage .content {
    display: table;
    width: 100%;
    height: 100%;
}

#outsideMessage .inner {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#outsideMessage .message {
    display: block !important;
}

#outsideMessage .message p {
    text-align: left;
    font-size: 14px;
    position: relative;
    margin: 0 auto;
    width: 280px;
    line-height: 1.4em;
    padding: 10px;
    box-sizing: border-box;
}

#outsideMessage .message span {
    display: block;
    margin-top: 20px;
    text-align: left;
    font-size: 12px;
    font-weight: bold;

}

#henrySchein {
    padding: 40px 0 10px 0;
    position: relative;
    width: 100%;
}

#outsideMessage .message button {
    font-size: 15px;
    padding: 5px 10px;

    min-width: 240px;

    background: none;
    border-radius: 3px;
    border: solid 1px rgb(226, 226, 226);
    color: black;

    -webkit-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -moz-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -ms-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -o-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
}

#outsideMessage .message .continueShopping {
    margin-bottom: 15px;
}

#outsideMessage .message button:hover {
    background: rgb(247, 247, 245); 
}


/* Order Message */

#orderMessage {
    position: absolute;
    left: 0;
    top: 0;
    
    width: 100%;
    height: 100%;

    z-index: 1;
    background: hsla(143, 0%, 100%, 0.95);
    color: black;

    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    
    pointer-events: none;
    opacity: 0;

}

#orderMessage.positive {
    background: hsla(143, 100%, 41%, 0.95);
    color: white;
}

#orderMessage.negative {
    background: hsla(0, 100%, 50%, 0.95);
    color: white;
}

#orderMessage .content {
    display: table;
    width: 100%;
    height: 100%;
}

#orderMessage .inner {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#orderMessage .message {
    display: block !important;
}

#orderMessage .message p {
    text-align: center;
    font-size: 18px;
    position: relative;
    margin: 0 auto;
    width: 280px;
    line-height: 1.4em;
}

#orderMessage .message a {
    color: white;
    font-weight: bold;
}

#orderMessage .message button {
    font-size: 15px;
    padding: 5px 10px;

    background: none;
    border-radius: 3px;
    border: solid 1px rgb(226, 226, 226);
    color: black;

    -webkit-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -moz-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -ms-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -o-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
}

#orderMessage.positive .message button, #orderMessage.negative .message button {
    border: none;
    color: white;
}

#orderMessage.positive .message button {
    background: hsla(143, 100%, 37%, 1.0);
    color: hsla(143, 100%, 100%, 1.0);
}

#orderMessage.positive .message button:hover {
    background: hsla(0, 0%, 100%, 1.0);
    color: hsla(143, 100%, 41%, 1.0);
}

#orderMessage.negative .message button {
    background: hsla(0, 100%, 47%, 1.0);
    color: hsla(143, 100%, 100%, 1.0);
}

#orderMessage.negative .message button:hover {
    background: hsla(0, 0%, 100%, 1.0);
    color: hsla(0, 100%, 50%, 1.0);
}

#shop {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	width: 100%;
}

#shop .interface .bag {
    position: absolute;
    right: 25px;
    width: 340px;
    margin-left: -160px;
    top: 15px;
}

#shop .interface .bag .button {
    background: hsla(0, 0%, 100%, 0.0);
    transition: background 100ms ease;
    height: 30px;
    text-align: right;
    display: none;
    float: right;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#shop .interface .bag .button .label {
    background: hsla(0, 0%, 100%, 1.0);
	color: hsla(0, 0%, 0%, 0.5);
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    padding: 0 7px 0 10px;
    cursor: pointer;
    transition: color .4s;
    display: inline-block;
}

#shop .interface .bag .button .count {
    /*float: left;*/
    padding-right: 10px;
    margin-top: 8px;
    display: inline-block;
    float: right;
    cursor: pointer;
}

#shop .interface .bag .button .count .number {
    border-radius: 12px;
    background: #ffffff;
    border: solid 1px rgb(226, 226, 226);

    color: #000;
    display: none;
    font-size: 10px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    margin-top: -4px;

    padding: 0px 7px;
    text-align: center;

    transition: all .4s;

    -webkit-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -moz-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -ms-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -o-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
}

#shop .interface .bag .button:hover .count .number {
    background: rgb(247, 247, 245);    
}

#shop .interface .bag .button .count .number.visible {
    display: block;
}

#shop .interface .bag .button:hover .label {
	color: hsla(0, 0%, 0%, 1.0);
}

#shop .interface .bag .button:active {
}

#shop .interface .bag .dropdown {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;

    -webkit-box-shadow: rgba(0, 0, 0, 0.059) 0px 4px 3px -1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.059) 0px 4px 3px -1px;
    -ms-box-shadow: rgba(0, 0, 0, 0.059) 0px 4px 3px -1px;
    -o-box-shadow: rgba(0, 0, 0, 0.059) 0px 4px 3px -1px;
    box-shadow: rgba(0, 0, 0, 0.059) 0px 4px 3px -1px;

    border: solid 1px rgb(204, 204, 204);
    background: hsla(0, 0%, 100%, 0.95);

    position: absolute;
    right: 0;
    top: 47px;
    width: 340px;
    z-index: 800;
    opacity: 0;

    -webkit-transform-origin: 245px -5px;
    transform-origin: 245px -5px;
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
    -webkit-transition: all 0.4s cubic-bezier(0.34, 1.61, 0.7, 1);
    transition: all 0.4s cubic-bezier(0.34, 1.61, 0.7, 1);
}

#shop .interface .bag .dropdown .item-container {
    display: none;
}

#shop .interface .bag .dropdown.visible {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#shop .interface .bag .dropdown div:first-child {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#shop .interface .bag .dropdown div:first-child div:first-child {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#shop .interface .bag .dropdown .empty {
    padding: 40px;
}


@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    #shop .interface .bag .dropdown .empty div.t-shirt {
        background-image: url("images/tshirt@2x.png");
    };
}

#shop .interface .bag .dropdown .empty p {
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #888;
}

#shop .interface .bag .dropdown .empty p strong {
    font-weight: bold;
    display: block;
}

#shop .interface .bag .dropdown .items {
    overflow: hidden;
    overflow-y: auto;
    max-height: 120px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#shop .interface .bag .dropdown .items:hover {
    max-height: 600px;
}


#shop .interface .bag .dropdown .items .item {
    /*border-bottom: solid 1px rgb(226, 226, 226);*/
    overflow: hidden;
    padding: 12px 16px;
}

#shop .interface .bag .dropdown .items .item .inner {
    -webkit-transform: translateX(-300px);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.23, 1.22, 0.48, 1);
    transform: translateX(-300px);
    transition: transform 0.4s cubic-bezier(0.23, 1.22, 0.48, 1);
}

#shop .interface .bag .dropdown .items .item.visible .inner {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#shop .interface .bag .dropdown .items .item:first-child {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#shop .interface .bag .dropdown .items .item .name {
    color: #292e31;
    float: left;
    font-size: 13px;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 130px;
}

#shop .interface .bag .dropdown .items .item .remove {
    float: right;
    width: 21px;
    height: 21px;
    position: relative;
    top: 0px;
    right: -6px;
    background-image: url("images/remove.png");
    background-size: 21px 21px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .4;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    #shop .interface .bag .dropdown .items .item .remove {
        background-image: url("images/remove@2x.png");
    };
}

#shop .interface .bag .dropdown .items .item .remove:hover {
    opacity: 0.8;
}

#shop .interface .bag .dropdown .items .item .remove.active {
    opacity: 1.0;
}

#shop .interface .bag .dropdown .items .item .price-qty {
    float: right;
    width: 135px;
}

#shop .interface .bag .dropdown .items .item .price-qty .price {
    color: #6f7c82;
    float: right;
    font-size: 12px;
    /*font-weight: bold;*/
    line-height: 23px;
    margin-right: 8px;
}

#shop .interface .bag .dropdown .items .item .price-qty .price .value em {
    letter-spacing: 0;
}

#shop .interface .bag .dropdown .items .item .price-qty .qty {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -moz-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -ms-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -o-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    background: #fff;
    border: solid 1px rgb(212, 212, 212);
    color: #000;
    float: right;
    font-size: 10px;
    font-weight: bold;
    height: 20px;
    outline: 0;
    text-align: center;
    width: 24px;
    padding: 0 4px;
}

#shop .interface .bag .dropdown .items .item .price-qty .remove {
    float: right;
    font-size: 14px;
    padding-left: 7px;
    padding-top: 3px;
    cursor: pointer;
}

#shop .interface .bag .dropdown .shipping {
    border-top: solid 1px rgb(226, 226, 226);
    border-bottom: solid 1px rgb(226, 226, 226);
    overflow: hidden;
    padding: 10px 16px;
}

#shop .interface .bag .dropdown .shipping p {
    color: #6f7c82;
    font-size: 13px;
    line-height: 26px;
}

#shop .interface .bag .dropdown .shipping p.label {
    float: left;
    width: 120px;
}

#shop .interface .bag .dropdown .shipping p.value {
    float: right;
    font-size: 13px;
    text-align: right;
}

#shop .interface .bag .dropdown .shipping p.value span {
    letter-spacing: -2px;
}

/* shipping calculation */



#shop .interface .bag .dropdown .shipping p.zipcode input {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -moz-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -ms-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -o-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    background: #fff;
    border: solid 1px rgb(212, 212, 212);
    color: #000;
    float: right;
    font-size: 12px;
    font-weight: normal;
    height: 20px;
    outline: 0;
    text-align: left;
    padding-left: 5px;
    width: 36%;
}

#shop .interface .bag .dropdown .shipping p.telephone input {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -moz-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -ms-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -o-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    background: #fff;
    border: solid 1px rgb(212, 212, 212);
    color: #000;
    float: left;
    font-size: 12px;
    font-weight: normal;
    height: 20px;
    outline: 0;
    text-align: left;
    margin-left: -5px;
    padding: 0px 5px;
    width: 55%;
}

#shop .interface .bag .dropdown .shipping p.email input {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -moz-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -ms-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -o-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    background: #fff;
    border: solid 1px rgb(212, 212, 212);
    color: #000;
    /*float: left;*/
    font-size: 12px;
    font-weight: normal;
    height: 20px;
    outline: 0;
    text-align: left;
    margin-left: -5px;
    margin-bottom: 11px;
    padding: 0px 5px;
    width: 301px;
}

/* Coupon Code */

.applyCoupon
{
    padding: 5px;
    padding-left: 0;
    line-height: 20px;
    font-size: 12px;
    float: left;
    transition: all 0.4s ease;
    opacity: 0;
}

.applyCoupon.visible {
    opacity: 1;
}

.applyCoupon:hover
{
}

.applyCoupon .appliedCoupon
{
    display: none;
}

.applyCoupon .appliedCoupon.visible
{
    display: block;
}

.applyCoupon .appliedCouponDescription
{
    display: inline;
    padding-left: 10px;
    color: #00942d;
    font-size: 13px;
}

.applyCoupon .remove {
    cursor: pointer;
    float: left;
    width: 21px;
    height: 21px;
    position: relative;
    top: 2px;
    right: -6px;
    background-image: url("images/remove.png");
    background-size: 21px 21px;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .4;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .applyCoupon .remove {
        background-image: url("images/remove@2x.png");
    };
}

.applyCoupon .remove:hover {
    opacity: 0.8;
}

.applyCoupon .remove.active {
    opacity: 1.0;
}

.applyCoupon input {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    margin-left: 10px;
    color: #000;
    background: transparent;
    font-size: 13px;
    font-weight: normal;
    height: 20px;
    outline: 0;
    text-align: left;
    border: solid 1px rgba(212, 212, 212, 0);
    transition: all .4s ease;
    display: none;
}

.applyCoupon input.visible {
    display: block;
}

.applyCoupon input:focus,
.applyCoupon input:valid {
    -webkit-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -moz-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -ms-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    -o-box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    box-shadow: inset 0 1px 2px -1px rgba(0,0,0,0.18);
    background: #fff;
    padding-left: 5px;
    border: solid 1px rgb(212, 212, 212);
}

.applyCoupon input:valid {
    text-transform: uppercase;
}

.applyCoupon ::-webkit-input-placeholder { /* WebKit browsers */
    color:    #08c;
}

.applyCoupon :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #08c;
   opacity:  1;
}
.applyCoupon ::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #08c;
   opacity:  1;
}

.applyCoupon :-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #08c;
}

#shop .interface .bag .dropdown .shipping p input {
    transition: all .4s ease;
}

#shop .interface .bag .dropdown .shipping p input.error {
    border: solid 1px rgb(255, 0, 0);
}

#fromCanada {
    margin-bottom: 0px;
}

#fromCanada span {
    transition: all .4s ease;
    border: solid 1px transparent;
    border-radius: 3px;
}

#fromCanada.error span {
    padding: 10px;
    border: solid 1px rgb(255, 0, 0);
}

#shop .interface .bag .dropdown .shipping p.zipcode input.valid {
    
}

#shop .interface .bag .dropdown .shipping p.not-in-us {
    margin-top: 10px;
    height: 25px;
    display: inline-block;
	float: right;
	font-size: 11px;
	text-align: left;
	width: 115px;
    color: #000;
}

#shop .interface .bag .dropdown .shipping p.detected-location {
    margin-top: 10px;
    height: 25px;
    display: inline-block;
    float: right;
    font-size: 11px;
    text-align: left;
    width: 100px;
    color: rgba(0,0,0,0.40);
    font-style: italic;
}

#shop .interface .bag .dropdown .shipping p.add-special-instructions {
    float: left;
    margin-top: 10px;
    font-size: 11px;
    text-align: left;
    width: 55%;
    margin-left: -4px;
    color: #000;
    cursor: pointer;
}

#shop .interface .bag .dropdown .specialInstructions {
    padding: 15px;
    line-height: 15px;
    font-size: 12px;
    background: #fff;
    background: hsla(0, 0%, 99%, 1.0);
    -webkit-box-shadow: rgba(0, 0, 0, 0.0596078) -0px 1px 2px 0px inset;
    border-bottom: solid 1px rgb(226, 226, 226);
    display: none;
}

#shop .interface .bag .dropdown .specialInstructions p {
    color: rgb(128, 128, 128);
    font-size: 11px;
    margin-top: -6px;
    border-bottom: solid 1px rgb(226, 226, 226);
    padding-bottom: 10px;
}

#shop .interface .bag .dropdown .specialInstructions .specialInstructions-content {
    outline: none;
    margin-top: 15px;
}


/* Shipping Total */

#shop .interface .bag .dropdown .shippingTotal {
    /*border-bottom: 1px solid #e7eef3;*/
    overflow: hidden;
    padding: 0 16px;
    height: 44px;
    transition: all .4s;
}

#shop .interface .bag .dropdown .shippingTotal p {
    color: #000;
    font-size: 13px;
    line-height: 44px;
}

#shop .interface .bag .dropdown .shippingTotal p.label {
    float: left;
    width: 120px;
}

#shop .interface .bag .dropdown .shippingTotal p.value {
    float: right;
    font-size: 13px;
    font-weight: normal;
    text-align: right;
}

#shop .interface .bag .dropdown .shippingTotal p.value span {
    letter-spacing: -2px;
}

#shop .interface .bag .dropdown .shippingTotal select {
    font-size: 12px;
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    background-image: url('images/arrow.png');
    background-size: 12px 4px;
    background-position: right center;
    background-repeat: no-repeat;
    border: solid 1px rgb(226, 226, 226);
    outline: 0;
    height: 22px;
    width: 120px;
    padding-left: 5px;
    margin-left: -5px;

    -webkit-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -moz-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -ms-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -o-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
}


@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    #shop .interface .bag .dropdown .shippingTotal select {
        background-image: url('images/arrow@2x.png');
    };
}

/* Special Shipping Notifications */

#shop .interface .bag .dropdown .specialShippingNotification {
    border-bottom: 1px solid #e7eef3;
    overflow: hidden;
    padding: 0 16px;
    transition: all .4s;
    display: none;
}

#shop .interface .bag .dropdown .specialShippingNotification p {
    color: #000;
    padding: 10px 0;
    font-size: 11px;
    line-height: 16px;
}

#shop .interface .bag #shippingDeferred {
    display: none;
}

/* Item SubTotal */

#shop .interface .bag .dropdown .itemTotal {
    /*border-bottom: 1px solid #e7eef3;*/
    overflow: hidden;
    padding: 0 16px;
    transition: all .4s;
}

#shop .interface .bag .dropdown .itemTotal p {
    color: #000;
    font-size: 13px;
    line-height: 44px;
}

#shop .interface .bag .dropdown .itemTotal p.label {
    float: left;
    width: 120px;
}

#shop .interface .bag .dropdown .itemTotal p.value {
    float: right;
    font-size: 13px;
    font-weight: normal;
    text-align: right;
}

#shop .interface .bag .dropdown .itemTotal p.value span {
    letter-spacing: -2px;
}

/* Tax Total */

#shop .interface .bag .dropdown .taxTotal {
    /*border-bottom: 1px solid #e7eef3;*/
    overflow: hidden;
    padding: 0 16px;
    transition: all .4s;
}

#shop .interface .bag .dropdown .taxTotal p {
    color: #000;
    font-size: 13px;
    line-height: 44px;
}

#shop .interface .bag .dropdown .taxTotal p.label {
    float: left;
    width: 120px;
}

#shop .interface .bag .dropdown .taxTotal p.value {
    float: right;
    font-size: 13px;
    font-weight: normal;
    text-align: right;
}

#shop .interface .bag .dropdown .taxTotal p.value span {
    letter-spacing: -2px;
}

/* Total */

#shop .interface .bag .dropdown .total {
    /*border-bottom: 1px solid #e7eef3;*/
    overflow: hidden;
    padding: 10px 16px;
}

#shop .interface .bag .dropdown .total p {
    color: #000;
    font-size: 13px;
    line-height: 26px;
}

#shop .interface .bag .dropdown .total p.label {
    float: left;
    width: 120px;
}

#shop .interface .bag .dropdown .total p.value {
    float: right;
    font-size: 13px;
    font-weight: bold;
    text-align: right;
}

#shop .interface .bag .dropdown .total p.value span {
    letter-spacing: -2px;
}

#shop .interface .bag .dropdown form {
    padding: 16px 16px;
}

#shop .interface .bag .dropdown form .stripe-button-el {
    width: 308px;
    color: #333;

    font-size: 13px;
    line-height: 44px;
    cursor: pointer;

    border-radius: 3px;
    border: solid 1px rgb(226, 226, 226);

    background: #ffffff;

    -webkit-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -moz-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -ms-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    -o-box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
    box-shadow: rgba(0, 0, 0, 0.0618) 0px 3px 3px -1px, rgba(0, 0, 0, 0.02) -1px -1px 1px 1px inset;
}

#shop .interface .bag .dropdown form .stripe-button-el.disabled {
    cursor: default;
    color: #9f9f9f;
}

#shop .interface .bag .dropdown form .stripe-button-el:hover {
    color: #000;
    background: rgb(247, 247, 245);
}

#shop .interface .bag .dropdown form .stripe-button-el.disabled:hover {
    color: #9f9f9f;
    background: #ffffff;
}

#shop .interface .bag .dropdown.added .label {
    color: #59717f;
    font-size: 14px;
    line-height: 1.3em;
    padding: 20px 30px;
    text-align: center;
}

#shop .interface .bag .dropdown.added .label span {
    font-weight: bold;
}