@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);
@font-face {
    font-family: "lufga";
    src: url(../fonts/lufga/lufgabold.ttf);
    font-weight: 700;
}

@font-face {
    font-family: "lufga";
    src: url(../fonts/lufga/lufgaregular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: "lufga";
    src: url(../fonts/lufga/lufgasemibold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: "lufga";
    src: url(../fonts/lufga/lufgamedium.ttf);
    font-weight: 500;
}

.lufgafont {
    font-family: "lufga";
}

:root {
    --primary: #0068E7;
    --secondary: #051855;
    --gray-200: #D3D7E1;
    --gray-700: #707997;
    --gray-800: #545D76;
    --gray-1000: #25293E;
    --white: #ffffff;
    --black: #000000;
    --body-bg: #EFF2F9;
    --transition: 0.3s all ease;
    --border-gray: 1px solid var(--gray-200);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "lufga", sans-serif;
    padding: 0;
    margin: 0;
    background-color: var(--body-bg);
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

p {
    color: var(--gray-800);
}

.open-screen {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-btn {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary);
    transition: var(--transition);
    padding: 11px 20px;
}

.site-btn:hover {
    background-color: transparent;
    color: var(--primary);
}

.small-wrapper {
    max-width: 575px;
    margin: auto;
}

.logo {
    max-width: 245px;
    margin: auto;
}

.open-screen .text p {
    font-weight: 500;
}

.bg {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    border: var(--border-gray);
    text-align: start;
}

.track-form label {
    color: var(--gray-800);
    margin-bottom: 8px;
}

.track-form input {
    height: 48px;
    border: var(--border-gray);
}

.track-form input::placeholder,
.track-form input {
    color: var(--gray-1000);
    font-weight: 500;
}

.track-form p {
    margin: 8px 0 25px;
    font-size: 14px;
}

.other-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    gap: 5px;
}

.other-options a {
    color: var(--gray-800);
    font-size: 14px;
}

.other-options a:hover {
    text-decoration: underline;
}

.other-options .custmor-support {
    color: var(--gray-1000);
}


/* shirts details oage  */

.wrapper {
    max-width: 1000px;
    margin: auto;
}

.avtar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    min-width: 60px;
    aspect-ratio: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
}

.main-img img,
.main-img iframe,
.main-img video {
    border-radius: 12px;
}

.tracking-card {
    position: relative;
    z-index: 1;
}

.tracking-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 20px;
    right: -35px;
    border: 1px solid var(--primary);
    width: 35%;
    height: 2px;
}

.track-wrapper .row>div:last-child .tracking-card::before {
    display: none;
}

.track-icon {
    min-width: 48px;
    height: 48px;
    margin: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    border: 1px solid transparent;
    cursor: pointer;
}

.tracking-card h5 {
    color: var(--secondary);
    font-size: 16px;
    margin: 8px 0 5px;
    font-weight: 400;
}

.in-progress .track-icon {
    background-color: #FFA600;
}

.in-progress::before,
.pending::before {
    border: 1px dashed var(--gray-200);
}

.pending h5 {
    color: var(--gray-700);
}

.in-progress h5 {
    font-weight: 500;
}

.pending .track-icon {
    background-color: var(--white);
    color: var(--gray-700);
    border-color: #C1C7D7;
}

.tracking-card p {
    font-size: 12px;
}

.steps {
    padding: 40px 0;
}

@media (min-width: 992px) {
    .track-wrapper .col-lg-2 {
        width: 20%;
    }
}

@media (min-width: 768px) {
    .track-wrapper .col-md-3 {
        width: 19%;
    }
}


/* media query  */

@media (max-width:991px) {
    .tracking-card h5 {
        font-size: 14px;
    }
    .track-wrapper .row {
        justify-content: space-between;
    }
    .tracking-card::before {
        right: -24px;
    }
}

@media (max-width:767px) {
    .logo {
        max-width: 180px;
    }
    p {
        font-size: 14px !important;
    }
    .track-form {
        padding: 15px;
    }
    .track-form input {
        height: 45px;
    }
    .track-form label {
        font-size: 14px;
    }
    .bg {
        padding: 16px;
    }
    .avatar {
        min-width: 50px;
        font-size: 22px;
    }
    h3 {
        font-size: 16px;
    }
    .avtar-row p {
        font-size: 12px !important;
    }
    .avtar-row h3 {
        margin-bottom: 3px;
    }
    .steps {
        padding: 20px 0;
    }
    .tracking-card .inner-content {
        display: flex;
        align-items: start;
        justify-content: start;
        text-align: start !important;
        gap: 10px;
        min-height: 85px;
    }
    .tracking-card .inner-content .track-icon {
        margin-top: 0;
    }
    .tracking-card .inner-content .inner-text {
        flex-grow: 1;
    }
    .tracking-card::before {
        width: 2px;
        height: 100%;
        border-width: 0;
        border-left-width: 2px;
        right: unset;
        left: 24px;
        bottom: -42px;
        top: unset;
    }
    .track-wrapper .row>div:last-child .inner-content {
        min-height: unset;
    }
    .tracking-card h5 {
        margin-top: 5px;
    }
}