/*
*
* Tracking parcel CSS
*
*/
.not-found-response {
    margin-top: 1rem;
    color: #FF675B;
    padding: 10px 30px;
    display: inline-block;
}

.tracking-response-container {
    text-align: left;
}

.tracking-response-container .trk-title {
    text-align: left;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: var(--cargus-black);
    margin-bottom: 5px;
}

.tracking-response-container .trk-update-time {
    color: #898C94;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
}

.tracking-response-container .trk-response-card {
    padding: 20px;
    /*background: linear-gradient(#F8F8FA, #FAF1FF);*/
    background-image: url("/wp-content/uploads/cargus-theme/tracking-background-gradient.svg");
    background-size: cover;
}

.tracking-response-container .trk-status-container {
    display: flex;
    justify-content: left;
    gap: 5px;
}

.tracking-response-container .trk-status-container span {
    color: var(--cargus-black);
    font-weight: 800;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
}

.trk-progress-bar {
    margin: 10px 0;
    height: 20px;
    width: 100%;
    border-radius: 20px;
    background-color: white;
    border: 1px solid #cacbd3;
}

.trk-progress-bar > div {
    height: 100%;
    border-radius: 10px;
    background-size: 100% 100%;
    transition: width 200ms;
}

.tracking-response-container .trk-progress-account-title {
    color: var(--cargus-black);
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    margin-top:60px;
    margin-bottom:10px;
}

.tracking-response-container .trk-progress-account-creaza-btn {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    border:1px solid var(--cargus-black);
    color: var(--cargus-black);
    padding:17px 40px;
    border-radius: 8px;
    text-decoration: none;
    margin: 1px 0;
    display: inline-block;
}

.tracking-response-container .trk-progress-account-login-txt {
    color: #47494D;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
}

.tracking-response-container .trk-progress-account-login-btn {
    font-weight:700;
    text-decoration: none;
    color: #47494D;
}

.trk-progress-account-cont {
    display: flex;
}

.trk-progress-account-img {
    text-align: center;
    position:relative;
    flex-grow: 1;
}

.trk-progress-account-img img{
    position: absolute;
    right:80px;
}

@media (max-width: 768px) {
    .trk-progress-account-img {
        display: none;
    }
}