@import "bootstrap/bootstrap.min.css";

#trackingNumber {
    padding-top: 1rem;
}

#navbar {
    position:absolute;
    height:100%;
    z-index: 5;
}

#formContent {
    width: 100%;
    padding: 0 20px 0 60px;
    min-height: 100vh;
    transition: all 0.3s;
}

#formContent.nav-open {
    padding-left: 310px;
}

#formBody {
    height: 100vh;
}

#formContainer,
#formCard,
#formColumn,
#formRow,
#formContent,
#formWrapper {
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
}

#formTrackingNumber {
    height:3%;
    min-height: 1.4rem;
    font-size: 0.875rem;
}

#formProgressBar {
    height:4%;
}

.form-html-container {
    overflow-y: auto;
    height: 100%;
    margin-bottom: 90px;
}

.text-display-box {
	margin-bottom: 1rem;
	padding: 0.5rem;
	max-height: 200px;
	overflow: auto;
	border: 1px solid rgb(199, 199, 199);
	border-radius: 3px;
    background-color: #d3d3d378;
    font-weight: 500;
}

fieldset {
    padding: 1rem;
}

/*Ensures that only the first fieldset is show by default*/
.msform fieldset:not(:first-of-type) {
    display: none
}

/*********Text Styling*******/
.error-msg, 
.required-msg {
	color: #dc3545;
}

/*****************Breadcrumb styling***************/
.breadcrumb {
    width: 100%;
    border-radius: 0;
    padding: 0.375rem 1.9375rem;
    background-color: #32818c;
    align-items: center;
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #f8fbfb; 
}

.breadcrumb-item {
    font-weight: 300;
    display: inline;
}

.breadcrumb-item.active,
.breadcrumb-item {
    color: #f8fbfb;
}
.breadcrumb-item.active {
    font-weight: 500;
}

.fa-chevron-right {
    color: #f8fbfb;
    font-size: 0.625rem !important;
}

.prompt {
    padding: 1rem 1rem 2rem;
}

.informative-text {
    font-style: italic;
    font-size: 0.875rem;
    color: #007bff;
}

.asterisk {
    color: #DC3545;
}

.instructions {
    font-size: 1.125rem;
}

/*************Form Group Styling********/
.form-block .form-group {
	margin-bottom: 0;
	padding-top: 0;
}

.form-group {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
}

.custom-control {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5625rem;
}

.custom-control-label {
    padding-left: 1rem;
}

.input-group-append {
	margin-left: 0;
}

/*************Button styling**********/

.button-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 -2px 5px 0 rgba(42, 42, 42, 0.2);
    padding: 1.5rem 3.375rem;
    background-color: #FFF;
}

@media (min-width: 375px) and (max-width: 812px) {
    .button-container {
        padding: 1.5rem 2rem;
    }
}

.submit {
    float: right;
    margin-right: 1rem;
}

.next {
    float: right;
}

.back,
.next,
.submit {
    padding: .375rem 2rem;
}

.input-group-append button.input-group-text:hover {
    background: #d7d7d7;
}

/***********Checkbox and Radio Styling*************/

.custom-control-label::before,
.custom-control-label::after {
    top: 0.1875rem;
    width: 1.25rem;
    height: 1.25rem;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #32818C;
    border-color: #32818C;
}

.custom-control-input:checked:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(58,176,195,.5);
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(58,176,195,.5);
}

.custom-control .custom-control-input:active ~ .custom-control-label::before {
    background-color: rgba(58,176,195,.5);
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(58,176,195,.5);
    border-color: rgba(58, 177, 195, 0.836);
}

.data-table-checkbox {
    background-color: #32818C ;
    border-color: #32818C;
    color: #32818C;
    font-size: 0.5em;
}

/*********Select Dropdown Styling *************/

select.form-control {
    width: 75%;
}

@media (min-width: 375px) and (max-width: 812px) {
    select.form-control {
        width: 100%;
    }
}

/********Input Number Stying *****************/

/*Removes arrows/spinners from input type number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*Removes arrows/spinners from input type number */
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(58,176,195,.5);
    border-color: #ced4da;
}

.form-control-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + .75rem);
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: 0.875rem;
    color: #DC3545;
}

/******** Address  *****************/

.address-group {
    display: flex;
    align-items: flex-end;
}

.address-group select {
    min-width: 134px;
    max-width: 134px;
}

.address-group .zip {
    min-width: 120px;
    max-width: 120px;
}

.address-group .invalid-feedback {
    position: absolute;
}

@media (min-width: 375px) and (max-width: 812px) {
    .address-group .invalid-feedback {
        position: inherit;
    }
}

/******** widths *****************/

.max-w-10 {
    max-width: 10rem;
}

@media (min-width: 375px) and (max-width: 812px) {
    .max-w-10 {
        max-width: 100%;
    }
}

/******** Lists *****************/

.line-height-2 li{
    line-height: 2;
}


.datepicker .next
{
    padding: .2rem;
}

.datepicker .prev
{
    padding: .1rem;
}