﻿/* Move down content because we have a fixed navbar that is 50px tall */
body {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 5px;
    padding-right: 5px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
}


/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .jumbotron {
        margin-top: 20px;
    }

    .body-content {
        padding: 0;
    }
}


.return-heading {
    color: #222222;
    font-weight: bolder;
    font-size: 36px;
    font-family: "Mulish", Arial, Helvetica, sans-serif;
}

.tracking-heading {
    font-weight: 600;
    font-size: 20px;
    color: #01415c;
    font-family: 'Mulish';
}

.tracking-heading-bold {
    font-weight: 800;
    font-size: 20px;
    color: #01415c;
    font-family: 'Mulish';
}

.tracking-summary {
    font-weight: normal;
    font-size: 12px;
    color: black;
    font-family: 'Mulish';
}

.header-left {
    text-align: left;
    font: inherit;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
    color: #01415c;
    line-height: 135%;
}

.header-right {
    text-align: right;
    font: inherit;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 10px;
    color: #01415c;
    line-height: 135%;
}

.quantity {
    position: relative;
}

.quantity input {
    width: 45px;
    height: 42px;
    line-height: 1.00;
    float: left;
    display: block;
    padding: 0;
    margin: 0;
    padding-left: 5px;
    border: solid;
    border-color: #eaeaea;
    /* box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08); */
    font-size: 1rem;
    border-radius: 4px;
    border-width: 1px;
}

.quantity input:focus {
    outline: 0;
}

.quantity-nav {
    float: left;
    position: relative;
    height: 42px;
}

.quantity-button {
    position: relative;
    cursor: pointer;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    width: 21px;
    text-align: center;
    color: #333;
    font-size: 13px;
    font-family: "FontAwesome" !important;
    line-height: 1.5;
    padding: 0;
    background: #FAFAFA;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.quantity-button:active {
    background: #EAEAEA;
}

.quantity-button.quantity-up {
    position: absolute;
    height: 50%;
    top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "FontAwesome";
    border-radius: 0 4px 0 0;
    line-height: 1.6
}

.quantity-button.quantity-down {
    position: absolute;
    bottom: 0;
    height: 50%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "FontAwesome";
    border-radius: 0 0 4px 0;
}