.claims-container {
    min-height: calc(100vh - 310px);
    padding-bottom: 40px;
    align-content: flex-start;
    margin-top: 149px;
}

.title-wrap h2:after {display: inline-block; margin: auto; left: 0px; right:0px;}
.claims-container * {
    box-sizing: border-box;
}

.claims-container .h3-title {
    margin: 20px 0;
    border-bottom: 1px solid #d7d7d7;
}

.claims-container .h3-title:first-of-type {
    margin-top: 0;
}

.claims-container .general-form-wrp {
    width: 100%;
}

.claim-number-wrp {
  /*  position: absolute;
    right: 0;
    top: 5px;*/
    font-size: 18px;
}

.claim-number {
}

.claim-form {
    width: 100%;
    max-width: 1000px;
}

.claim-form .form-item-label__label-added {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-contact-name {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-dealer-name {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-phone {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-sales-order-number {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-email {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-reason {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 250px
}

.form-item__text--underline {
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 15px;
}

.js-claim-submit{
    z-index: 0;
}

.form-item__text-claims {
    margin-bottom: 20px;
}

.form-item__text-yes-no {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 60%;
}

.claim-form .form-item-label__label-yes-no {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 60px;
}

.general-form-wrp .form-item__text-brief {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 1px;
}

.claim-form .form-item-label__label-brief {
    margin-bottom: 20px;
    width: calc(100% - 40px);
    max-width: none;
}

.claim-form .form-item-label__label-company-name {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-attn {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-ship-address1 {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-ship-address2 {
    margin-bottom: 20px;
}

.claim-form .form-item-label__label-ship-city {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 255px;
}

.claim-form .form-item-label__label-ship-state {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 155px;
    z-index: 2;
}

.claim-form .form-item-label__label-ship-zipcode {
    margin-bottom: 20px;
    width: 155px;
}

.claim-form .form-item-label__label-ship-country {
    margin-bottom: 20px;
    margin-right: 20px;
    width: 175px;
    z-index: 1;
}


/* uploads */

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color:  #329bf4;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
    background-color: #329bf4;
}
.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
    background-color: #329bf4;
}
.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
    background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
    background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.item_wrap {float: left; width: 120px;}
.fileinput-button input {    font-size: 20px;}
/* uploads end */


.wait-icon {
    margin-right: 16px;
}

.fa-circle-notch:before {
    -webkit-animation: rotation 1s infinite linear;
    display: block;
}

.fa-circle-notch {
    margin-right: 10px;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

.claim-result {
    text-align: center;
    font-size: 18px;
    justify-content: center;
    line-height: 28px;
    color: #525252;
    margin-top: 40px;
}

@media screen and (max-width: 430px) {

}