/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* detail order custom style */
 .view-order-tracking-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
 }
 .view-order-tracking-wrap {
    display: flex;
    flex-direction: column;
 }
 .view-order-tracking-header-wrap {
    background-color: #457B6A;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 10px 20px;
 }
 .view-order-tracking-header-title {
    font-family: Stack Sans Headline;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
}
.view-order-tracking-content-wrap {
    padding: 18px 20px 25px 20px;
    background-color: #FFFFFF;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.view-order-tracking-content-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-family: Stack Sans Headline;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}
.view-order-tracking-content-left p {
    color: #000000;
    margin: 0;
}
.view-order-tracking-content-left span {
    color: #8E8E8E;
}
.btn-tracking {
    padding: 10px 38px;
    background-color: #1C3C32;
    color: #FFFFFF !important;
    font-family: Stack Sans Headline;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none !important;
    border-radius: 50px;
}
.view-order-address-wrap {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 23px 20px 29px 20px;
    display: flex;
    flex-direction: column;
}
.view-order-address-title {
    font-family: Stack Sans Headline;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000000;
    margin-bottom: 10px;
}
.view-order-address-content {
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.view-order-address-content-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: Stack Sans Headline;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
}
.view-order-address-content-item p {
    color: #8E8E8E;
    margin: 0;
}
.view-order-address-content-item p:first-of-type {
    margin-top: 5px;
}
.view-order-address-content-item p span {
    color: #000000;
}

@media screen and (max-width: 520px) {
    .view-order-tracking-content-wrap {
        flex-wrap: wrap;
    }
    .view-order-tracking-content-left span {
        font-size: 13px;
    }
}