* {
    outline: none;
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    background: #f7f7f7;
    color: #333333;
    font: 400 16px/20px 'Montserrat', sans-serif;
}
h1 {
    font: 700 32px/36px 'Montserrat', sans-serif;
    margin: 0 0 20px;
    text-align: center;
}
h2 {
    font: 700 22px/27px 'Montserrat', sans-serif;
    margin: 0 0 20px;
}
.container {
    max-width: 1170px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 10%);
    padding: 30px 20px;
    border-top: 5px #286efa solid;
}
.hr {
    margin: 50px -20px;
    background: #d8e2f6;
    height: 1px;
}
.search {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
}
.search input {
    width: 100%;
    height: 55px;
    border: 1px #d8e2f6 solid;
    padding: 0 20px;
    border-radius: 50px 0 0 50px;
    font-size: 20px;
}
.search button {
    width: 200px;
    height: 55px;
    cursor: pointer;
    text-align: center;
    background: #286efa;
    border: 0;
    color: #fff;
    font: 700 14px/14px 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    border-radius: 0 50px 50px 0;
}
.search button svg {
    margin-right: 7px;
}
.track {
  max-width: 100%;
  margin: auto;
  padding: 12px 12px 12px 22px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #d8e2f6;
  border-radius: 5px;
}
.track:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 11px;
    height: calc(100% + 2px);
    background: #d8e2f6;
    border-radius: 5px 0 0 5px;
}
.track.success:before {
    background: #1cbf0e;
}
.track.info:before {
    background: #286efa;
}
.track.warning:before {
    background: #fecc00;
}
.track.dead:before {
    background: #666666;
}
.track__in-black-list {
    margin-left: 35px;
    margin-top: 5px;
    margin-bottom: 8px;
}
.track__name {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    overflow: hidden;
    max-width: 600px;
}
.track__current-status {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 35px;
}
.track__current-step {
    min-width: 50%;
    display: flex;
    width: 100%;
    flex-direction: row;
}
.track__direction {
    display: flex;
    margin: 10px 0 15px;
}
.track__d-country {
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    color: #333333;
    display: block;
}
.track__d-service {
    font-size: 13px;
    line-height: 15px;
    color: #333333;
}
.track__d-arrow {
    margin-left: 15px;
    margin-right: 20px;
    align-self: center;
}
.track__d-arrow > img {
    width: auto;
}
.track__number {
    color: #333333;
    line-height: 20px;
    margin-left: 10px;
}
.track__expand {
    margin-top: 10px;
    padding: 5px 0px 5px;
    color: #999999;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    font: 700 10px/12px 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.track__expand-arrow {
    display: inline-block;
    margin-left: 2px;
    transition: transform 0.4s ease-out;
}
.track__expand-arrow--flipped {
    transform: scaleY(-1);
}
.track__expand-arrow > img {
    width: auto;
}
.track__path {
    margin-top: 50px;
    padding-left: 5px;
}
.track__path--banner {
    margin-top: 0;
}
.track.track-my {
    max-width: 100%;
    margin-top: 25px;
}
.track__ds-logo {
    margin: 0;
    padding-top: 5px;
    display: block;
}
.track__st-delivered {
    border-top-color: #1cbf0e;
}
.track__st-lost {
    border-top-color: #f81515;
}
.track__st-destruction {
    border-top-color: #666666;
}
.track__st-in-progress {
    border-top-color: #0cc4ec;
}
.track-status-icon {
    width: 25px;
    height: 25px;
}
.track-status-icon > img {
    height: inherit;
    width: auto;
}
.ds-logo {
    text-align: right;
    display: block;
}
.ds-logo > img {
    max-height: 70px;
}
.t-step {
    display: flex;
    position: relative;
}
.t-step__date-time {
    min-width: 80px;
    margin-right 10px
}
.t-step__date {
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}
.t-step__time {
    font-size: 12px;
    line-height: 20px;
    color: #666666;
}
.t-step__title {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
}
.t-step__address {
    font-size: 12px;
    line-height: 20px;
    color: #666666;
}
.t-step--head {
    flex-grow: 1;
}
.t-step--path {
    padding-bottom: 25px;
    padding-left: 20px;
    flex-direction: row;
}
.t-step--path:before {
    content: '';
    height: 100%;
    border-left: 1px solid #CCCCCC;
    position: absolute;
    left: 0;
    top: 6px;
}
.t-step--path:after {
    content: '';
    position: absolute;
    height: 11px;
    width: 11px;
    border-radius: 6px;
    border: 1px solid #CCCCCC;
    background: white;
    top: 4px;
    left: -5px;
}
.t-step--path:first-child:after {
    background: #0cc4ec;
    border-color: #0cc4ec;
}
.t-step--path:last-child:before {
    display: none;
}
.t-step--path .t-step__info {
    margin-left: 35px;
    margin-top: 0;
}
.t-step--path .t-step__date {
    font-weight: bold;
}
.success .t-step--path:first-child:after {
    background: #1cbf0e;
    border-color: #1cbf0e;
}
.info .t-step--path:first-child:after {
    background: #286efa;
    border-color: #286efa;
}
.warning .t-step--path:first-child:after {
    background: #fecc00;
    border-color: #fecc00;
}
.dead .t-step--path:first-child:after {
    background: #666666;
    border-color: #666666;
}
.feedback-form-success {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
    display: none;
}
.feedback-form__wrapper {
    width: 100%;
    margin: auto;
}
.feedback-form__label {
    font: 400 14px/30px 'Montserrat', sans-serif;
    margin-top: 20px;
    text-align: left;
}
.feedback-form__contact {
    border: 1px solid #d8e2f6;
    border-radius: 5px;
    height: 40px;
    width: 100%;
    padding: 0 8px;
}
.feedback-form__text {
    margin-top 25px;
    font: 400 18px/26px 'Montserrat', sans-serif;
    text-align: center;
}
.error {
    margin: 20px 0;
    text-align: center;
    color: #fd3c00;
}
.wrapper {
    padding: 12px 12px 12px 22px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #d8e2f6;
    border-radius: 5px;
}
.wrapper:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 11px;
    height: calc(100% + 2px);
    background: #d8e2f6;
    border-radius: 5px 0 0 5px;
}
.feedback-form textarea {
    margin-top: 4px;
    padding: 8px;
    width: 100%;
    resize: none;
    border: 1px solid #d8e2f6;
    border-radius: 5px;
}
.feedback-form .notification-add {
    margin-top: 20px;
    text-align: center;
}
.feedback-form button {
    border: 0;
    background: #286efa;
    color: #fff;
    width: 240px;
    height: 44px;
    border-radius: 50px;
    font: 700 12px/15px 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all .2s ease;
    text-transform: uppercase;
}
.footer {
    margin-top: 50px;
    text-align: center;
}
.loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.loader__message {
    margin-top: 50px;
    font-weight: bold;
    text-align: center;
}
.loader-container {
    width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.📦 {
    width: 33px;
    height: 33px;
    position: relative;
    display: block;
    transform-origin: -50% center;
    border-radius: 15%;
}
.📦:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: lightblue;
    border-radius: 15%;
    box-shadow: 0px 0px 10px 0px rgba(28, 159, 255, 0.4);
}
.📦:nth-child(1) {
    animation: slide 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(1):after {
    animation: color-change 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(2) {
    animation: flip-1 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
    animation: squidge-1 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(3) {
    animation: flip-2 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(3):after {
    animation: squidge-2 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(4) {
    animation: flip-3 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(4):after {
    animation: squidge-3 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(5) {
    animation: flip-4 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(5):after {
    animation: squidge-4 1.5s ease-in-out infinite alternate;
}
.📦:nth-child(2):after {
    background-color: #1c9fff;
}
.📦:nth-child(3):after {
    background-color: #1fb1fd;
}
.📦:nth-child(4):after {
    background-color: #22c7fb;
}
.📦:nth-child(5):after {
    background-color: #23d3fb;
}
@keyframes slide {
    0% {
        background-color: #1795ff;
        transform: translatex(0vw);
    }
    100% {
        background-color: #23d3fb;
        transform: translatex(calc(250px - (33px * 1.25)));
    }
}
@keyframes color-change {
    0% {
        background-color: #1795ff;
    }
    100% {
        background-color: #23d3fb;
    }
}
@keyframes flip-1 {
    0%,
    15% {
        transform: rotate(0);
    }
    35%,
    100% {
        transform: rotate(-180deg);
    }
}
@keyframes squidge-1 {
    5% {
        transform-origin: center bottom;
        transform: scalex(1) scaley(1);
    }
    15% {
        transform-origin: center bottom;
        transform: scalex(1.3) scaley(0.7);
    }
    25%,
    20% {
        transform-origin: center bottom;
        transform: scalex(0.8) scaley(1.4);
    }
    55%,
    100% {
        transform-origin: center top;
        transform: scalex(1) scaley(1);
    }
    40% {
        transform-origin: center top;
        transform: scalex(1.3) scaley(0.7);
    }
}
@keyframes flip-2 {
    0%,
    30% {
        transform: rotate(0);
    }
    50%,
    100% {
        transform: rotate(-180deg);
    }
}
@keyframes squidge-2 {
    20% {
        transform-origin: center bottom;
        transform: scalex(1) scaley(1);
    }
    30% {
        transform-origin: center bottom;
        transform: scalex(1.3) scaley(0.7);
    }
    40%,
    35% {
        transform-origin: center bottom;
        transform: scalex(0.8) scaley(1.4);
    }
    70%,
    100% {
        transform-origin: center top;
        transform: scalex(1) scaley(1);
    }
    55% {
        transform-origin: center top;
        transform: scalex(1.3) scaley(0.7);
    }
}
@keyframes flip-3 {
    0%,
    45% {
        transform: rotate(0);
    }
    65%,
    100% {
        transform: rotate(-180deg);
    }
}
@keyframes squidge-3 {
    35% {
        transform-origin: center bottom;
        transform: scalex(1) scaley(1);
    }
    45% {
        transform-origin: center bottom;
        transform: scalex(1.3) scaley(0.7);
    }
    55%,
    50% {
        transform-origin: center bottom;
        transform: scalex(0.8) scaley(1.4);
    }
    85%,
    100% {
        transform-origin: center top;
        transform: scalex(1) scaley(1);
    }
    70% {
        transform-origin: center top;
        transform: scalex(1.3) scaley(0.7);
    }
}
@keyframes flip-4 {
    0%,
    60% {
        transform: rotate(0);
    }
    80%,
    100% {
        transform: rotate(-180deg);
    }
}
@keyframes squidge-4 {
    50% {
        transform-origin: center bottom;
        transform: scalex(1) scaley(1);
    }
    60% {
        transform-origin: center bottom;
        transform: scalex(1.3) scaley(0.7);
    }
    70%,
    65% {
        transform-origin: center bottom;
        transform: scalex(0.8) scaley(1.4);
    }
    100%,
    100% {
        transform-origin: center top;
        transform: scalex(1) scaley(1);
    }
    85% {
        transform-origin: center top;
        transform: scalex(1.3) scaley(0.7);
    }
}

@media (max-width: 767px) {
    .search {
        margin: 20px 0 0;
        flex-direction: column;
    }
    .search input {
        border-radius: 50px;
        margin-bottom: 20px;
    }
    .search button {
        width: 100%;
        border-radius: 50px;
    }
    .track__current-step {
        flex-direction: column-reverse;
    }
    .track__current-status {
        margin-left: 0;
    }
}
