Purpose: learn how to use custom CSS on your Sendcloud tracking page, so you can take your customer experience to the next level.
This feature is currently in closed beta.
We want our users to have the ability to fully customize their shipping process. This includes a branded tracking page but also the option to use custom CSS. Continue reading below to learn more about adding custom CSS to your tracking page.
Basic CSS knowledge required.
How to add custom CSS
- Go to Settings > Tracking page
- Click on
Edit CSS
- Enter your CSS into the field provided
CSS possibilities:
- All kinds of CSS selectors to target the
.tracking-page
container and its content - CSS animations
- Custom fonts using
@font-face
- Custom images using
url()
directive
Note: custom CSS is validated as you edit, and will be immedietaly reflected in the live preview. If you add CSS and don’t see your changes appear live in the preview, then your CSS is invalid or targeting incorrect selectors.
Limitations
- Valid CSS only. All custom CSS is verified as you input it. Invalid code is ignored during editing and will be removed before saving/publishing.
- Pure CSS only; If you write code for pre-processors it won’t be compiled.
- Custom CSS scoped to
.tracking-page
container. You can't customise its parent elements, for examplem, you can't stylebody
element but you can style.tracking-page
child elements like.tracking-page .shop-banner__cta
. @import
is not supported.
Examples
Traditional Truck examples:
Example 1
@font-face {
font-family: "Merriweather";
font-style: normal;
font-weight: 300;
src: local("Merriweather"), url("https://sendv3staging.wpengine.com/fonts/merriweather-thin.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: italic;
font-weight: 300;
src: local("Merriweather"),
url("https://sendv3staging.wpengine.com/fonts/merriweather-thinitalic.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: normal;
font-weight: 400;
src: local("Merriweather"), url("https://sendv3staging.wpengine.com/fonts/merriweather-regular.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: italic;
font-weight: 400;
src: local("Merriweather"),
url("https://sendv3staging.wpengine.com/fonts/merriweather-regularitalic.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: normal;
font-weight: 700;
src: local("Merriweather"), url("https://sendv3staging.wpengine.com/fonts/merriweather-bold.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: italic;
font-weight: 700;
src: local("Merriweather"),
url("https://sendv3staging.wpengine.com/fonts/merriweather-bolditalic.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: normal;
font-weight: 900;
src: local("Merriweather"), url("https://sendv3staging.wpengine.com/fonts/merriweather-extrabold.woff") format("woff");
}
@font-face {
font-family: "Merriweather";
font-style: italic;
font-weight: 900;
src: local("Merriweather"),
url("https://sendv3staging.wpengine.com/fonts/merriweather-extrabolditalic.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: normal;
font-weight: 400;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-regular.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: italic;
font-weight: 400;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-regularitalic.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: normal;
font-weight: 500;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-medium.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: italic;
font-weight: 500;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-mediumitalic.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: normal;
font-weight: 700;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-bold.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: italic;
font-weight: 700;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-bolditalic.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: normal;
font-weight: 900;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-extrabold.woff") format("woff");
}
@font-face {
font-family: "DM Sans";
font-style: italic;
font-weight: 900;
src: local("DM Sans"), url("https://sendv3staging.wpengine.com/fonts/dm-sans-extrabolditalic.woff") format("woff");
}
.tracking-page-layout {
max-width: 1140px;
}
.tracking-page {
background-color: #f8f8f8 !important;
}
.header {
order: 1;
}
.hero-image {
order: 2;
}
.order-tracking {
order: 3;
}
.delivery-information {
order: 4;
}
.instagram-widget {
order: 5;
}
.shop-banner__wrapper {
order: 6;
}
.footer {
order: 7;
}
.ui-logo-footer {
order: 8;
}
.header {
border: 0;
}
.header__toggle-wrapper {
background-color: #ffffff !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper {
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link {
font-family: "Merriweather", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal;
display: block;
padding: 20px 15px;
background-color: #fff1f2 !important;
border-top: 1px solid #fecdd3 !important;
border-left: 1px solid #fecdd3 !important;
border-right: 1px solid #fecdd3 !important;
border-bottom: 1px solid #9f1239 !important;
box-shadow: none !important;
outline: 0 !important;
text-decoration: none !important;
color: #9f1239 !important;
border-radius: 8px;
}
.hero-image .hero-image__estimate-info {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 18px !important;
line-height: 28px !important;
letter-spacing: 1px !important;
text-transform: uppercase !important;
}
.hero-image .hero-image__estimate {
font-family: "Merriweather", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 36px !important;
line-height: 45px !important;
color: #ffffff !important;
margin-bottom: 20px !important;
}
.hero-image .hero-image__status {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 4px 20px !important;
border: 2px solid #fef2f2 !important;
border-radius: 40px !important;
width: 195px;
margin: 0 auto;
}
.hero-image .hero-image__info {
background: #fb7185 !important;
}
.hero-image svg.hero-image__illustration #background {
background-color: linear-gradient(0deg, #fda4af 52.53%, #fb7185 100%);
}
.hero-image svg.hero-image__illustration #b stop:first-child {
stop-color: #fda4af !important;
}
.hero-image svg.hero-image__illustration #b stop:last-child {
stop-color: #fb7185 !important;
}
.hero-image svg.hero-image__illustration #warehouse,
.hero-image svg.hero-image__illustration #warehouse-sign-bg {
fill: #9f1239 !important;
}
.hero-image
svg.hero-image__illustration
path[d="M82 241h23l10 22H72zM333.914 241h16.172L360 263h-37zM661.914 241h16.172L688 263h-37z"] {
fill: #fda4af !important;
}
.hero-image svg.hero-image__illustration g:last-child use {
fill: #fb7185 !important;
}
.hero-image
svg.hero-image__illustration
path[d="M38.5-.689l7.846 12.284-3.319 4.941L38.5 9.373l-5.973 9.273-3.659-4.87z"] {
fill: #fb7185 !important;
}
.hero-image svg.hero-image__illustration #warehouse-windows {
stroke: #fb7185 !important;
}
.hero-image svg.hero-image__illustration g path,
.hero-image svg.hero-image__illustration path[d="M327 174h30v12h-30z"] {
fill: #9f1239 !important;
}
.hero-image svg.hero-image__illustration path[d="M336 217h12a2 2 0 0 1 2 2v22h-16v-22a2 2 0 0 1 2-2z"] {
fill: #fda4af !important;
}
.hero-image svg.hero-image__illustration path[stroke-linecap="round"] {
stroke: #fb7185 !important;
}
.hero-image svg.hero-image__illustration #boxes,
.hero-image
svg.hero-image__illustration
path[d="M600 233.438V241h-3v-7.562h-5L598.5 218l6.5 15.438h-5zM410 233.438V241h-3v-7.562h-5L408.5 218l6.5 15.438h-5zM184 233.438V241h-3v-7.562h-5L182.5 218l6.5 15.438h-5zM170 235v6h-2v-6h-4l5-11 5 11h-4zM20 235v6h-2v-6h-4l5-11 5 11h-4zM423 235v6h-2v-6h-4l5-11 5 11h-4zM586 235v6h-2v-6h-4l5-11 5 11h-4zM720 233.438V241h-3v-7.562h-5L718.5 218l6.5 15.438h-5z"] {
fill: #fb7185 !important;
}
.hero-image svg.hero-image__illustration g rect {
fill: #fda4af !important;
}
.hero-image svg.hero-image__illustration #ground,
.hero-image svg.hero-image__illustration #depot-roof,
.hero-image svg.hero-image__illustration #depot-roof-1,
.hero-image svg.hero-image__illustration #depot-roof-2,
.hero-image svg.hero-image__illustration #depot-roof-3 {
fill: #9f1239 !important;
}
.hero-image svg.hero-image__illustration g use {
fill: #9f1239 !important;
}
.hero-image svg.hero-image__illustration g circle {
fill: #fda4af !important;
}
.hero-image svg.hero-image__illustration #warehouse-door,
.hero-image svg.hero-image__illustration #road {
fill: #fda4af !important;
}
.hero-image svg.hero-image__illustration #road-markings {
stroke: #9f1239 !important;
}
.hero-image
svg.hero-image__illustration
path[d="M38.5-.689l7.846 12.284-3.319 4.941L38.5 9.373l-5.973 9.273-3.659-4.87z"],
.hero-image
svg.hero-image__illustration
path[d="M58.5.311l7.365 11.051-3.246 5.033-4.119-6.022-5.973 9.273-3.659-4.87z"] {
fill: #fecdd3 !important;
}
.hero-image svg.hero-image__illustration #cloud-1 {
fill: rgba(255, 228, 230, 0.5);
}
.hero-image svg.hero-image__illustration #cloud-2 {
fill: rgba(255, 228, 230, 0.3);
}
.hero-image svg.hero-image__illustration #cloud-3 {
fill: rgba(255, 228, 230, 0.3);
}
.hero-image svg.hero-image__illustration #cloud-4 {
fill: rgba(255, 228, 230, 0.5);
}
.hero-image .carrier-image.carrier-image__dhl {
width: 162px !important;
height: 48px !important;
border-radius: 8px !important;
}
.hero-image .hero-image__icon.hero-image__icon--delivered {
background-color: #ffe4e6 !important;
}
.hero-image .hero-image__icon.hero-image__icon--delivered svg {
filter: invert(90%) sepia(77%) saturate(5126%) hue-rotate(335deg) brightness(97%) contrast(92%);
}
.hero-image .hero-image__icon-complete {
background-color: #9f1239 !important;
}
.hero-image .hero-image__progress-bar {
background-color: #9f1239 !important;
}
.hero-image .hero-image__progress {
background-color: #fecdd3 !important;
}
.hero-image .hero-image__progress .hero-image__svg-wrapper {
width: 30px;
height: 30px;
}
.hero-image .hero-image__progress .hero-image__icon .hero-image__svg-wrapper svg {
display: none;
}
.hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-check.svg') no-repeat center / contain;
}
.hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-trolley.svg') no-repeat center / contain;
}
.hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-truck.svg') no-repeat center / contain;
}
.hero-image .hero-image__icon--delivered .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-done.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group svg {
display: none;
}
.order-tracking .order-tracking__list .timeline__group .timeline__item--first .timeline__icon {
top: 6px;
}
.order-tracking .order-tracking__list .timeline__group:first-child .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-truck.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(2) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-trolley.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(3) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-check.svg') no-repeat center / contain;
}
.order-tracking {
padding: 0px;
border: 1px solid #fecdd3 !important;
grid-column: span 1;
box-shadow: none !important;
}
.order-tracking .order-tracking__header {
font-family: "Merriweather", "Source Sans Pro", Arial, sans-serif !important;
padding: 28px 32px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
color: #9f1239 !important;
background: #fff1f2 !important;
border-bottom: 1px solid #9f1239 !important;
}
.order-tracking .order-tracking__timeline {
padding: 16px 32px !important;
}
.order-tracking .order-tracking__list .timeline__dot,
.order-tracking .timeline__group-substatuses .timeline__dot {
box-shadow: none !important;
border: 0 !important;
background-color: #9f1239 !important;
height: 32px !important;
width: 32px !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot {
background-color: #fecdd3 !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot:before {
content: " ";
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-check.svg") !important;
background-size: 100% 100% !important;
width: 20px !important;
height: 20px !important;
display: block !important;
margin: 0 auto !important;
top: 6px !important;
position: relative !important;
}
.order-tracking .order-tracking__list .timeline__line--colored,
.order-tracking .order-tracking__list .timeline__line--colored .timeline__dot {
background-color: #9f1239 !important;
}
.order-tracking .order-tracking__list .timeline__message {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #111827 !important;
padding-top: 5px;
margin-bottom: 15px;
}
.order-tracking .timeline__detailed-info .timeline__message {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #4b5563 !important;
}
.order-tracking .timeline__group-substatuses .timeline__datetime {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #6b7280 !important;
padding-top: 5px !important;
}
.order-tracking .timeline__group-substatuses {
padding-top: 10px;
}
.order-tracking .order-tracking__btn {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4b5563 !important;
height: 60px !important;
outline: 0 !important;
box-shadow: none !important;
}
.order-tracking .order-tracking__btn .chevron {
height: 12px;
margin-left: 12px;
top: 0px;
width: 12px;
}
.order-tracking .order-tracking__btn .chevron.chevron--up {
top: 3px;
}
.order-tracking .order-tracking__btn .chevron:before {
height: 12px;
width: 12px;
}
.delivery-information {
grid-column: span 1;
flex-direction: column !important;
border: 0px !important;
box-shadow: none !important;
background-color: transparent !important;
}
.delivery-information__section {
width: 100% !important;
border-right: 0 !important;
border: 1px solid #fecdd3 !important;
background-color: #fff !important;
margin-bottom: 30px !important;
box-shadow: 0 0 10px 0 #00000012 !important;
border-radius: 6px !important;
padding: 0px 32px 20px !important;
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4b5563 !important;
overflow: hidden;
box-shadow: none !important;
}
.delivery-information .delivery-information__heading,
.delivery-information .carrier-information__heading {
font-family: "Merriweather", "Source Sans Pro", Arial, sans-serif !important;
padding: 28px 32px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
color: #9f1239 !important;
background: #fff1f2 !important;
border-bottom: 1px solid #9f1239 !important;
margin-left: -32px;
margin-right: -32px;
margin-bottom: 20px;
}
.delivery-information .carrier-information__heading::before {
content: "Shipping ";
}
.delivery-information .delivery-information__heading svg,
.delivery-information .carrier-information__heading svg {
display: none !important;
}
.delivery-information .carrier__list dt {
display: none !important;
}
.delivery-information .carrier__list dd {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4b5563 !important;
width: 100% !important;
display: block !important;
padding: 20px 24px;
border: 1px solid #e5e7eb;
border-radius: 8px;
}
.instagram-widget {
border: 1px solid #fecdd3 !important;
box-shadow: none !important;
}
.instagram-widget .instagram-widget__user-link .instagram-widget__username {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 22px !important;
color: #000000 !important;
}
.instagram-widget .instagram-widget__text {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.shop-banner__wrapper {
background-color: #fff1f2 !important;
border: 1px solid #fecdd3 !important;
box-shadow: none !important;
}
.shop-banner__wrapper .shop-banner {
height: 100%;
align-items: start !important;
}
.shop-banner__wrapper .shop-banner__text-wrapper {
text-align: left !important;
}
.shop-banner__wrapper .shop-banner__copy {
font-family: "Merriweather", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 64px !important;
line-height: 77px !important;
color: #9f1239 !important;
}
.shop-banner__wrapper .shop-banner__copy.shop-banner__copy--secondary {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 24px !important;
line-height: 31px !important;
color: #9f1239 !important;
}
.shop-banner__wrapper .shop-banner__cta {
color: #9f1239 !important;
border: 1px dashed #9f1239;
border-radius: 4px;
font-family: "DM Sans";
font-style: normal;
font-weight: 500;
font-size: 18px;
line-height: 23px;
background-color: transparent !important;
}
.footer {
border: 1px solid #fecdd3 !important;
box-shadow: none !important;
}
.footer .footer__address,
.footer .footer__contact {
font-family: "DM Sans", "Source Sans Pro", Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.footer .footer__social svg {
filter: invert(10%) sepia(77%) saturate(5126%) hue-rotate(335deg) brightness(97%) contrast(92%);
}
.shop-banner {
background-size: 550px;
background-color: #FFF1F2 !important;
}
.shop-banner .shop-banner__text-wrapper {
padding-top: 63px;
padding-bottom: 381px;
height: 100%;
}
@media (max-width: 576px) {
.tracking-page .hero-image .carrier-image.carrier-image__dhl {
margin-left: auto !important;
margin-right: auto !important;
margin-bottom: 8px;
}
.hero-image .hero-image__progress .hero-image__svg-wrapper {
width: 19px !important;
height: 19px !important;
}
.delivery-information{
margin-bottom: 0px !important;
}
.instagram-widget{
margin-bottom: 30px !important;
}
.shop-banner__wrapper .shop-banner{
background-size: cover !important;
}
}
Example 2
@font-face {
font-family: 'General Sans';
font-style: normal;
font-weight: 300;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-Thin.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: Italic;
font-weight: 300;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-ThinItalic.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: normal;
font-weight: 400;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-Regular.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: Italic;
font-weight: 400;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-RegularItalic.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: normal;
font-weight: 500;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-Medium.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: Italic;
font-weight: 500;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-MediumItalic.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: normal;
font-weight: 600;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-SemiBold.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: Italic;
font-weight: 600;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-SemiBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: normal;
font-weight: 700;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-Bold.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: Italic;
font-weight: 700;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-BoldItalic.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: normal;
font-weight: 900;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-ExtraBold.woff") format("woff");
}
@font-face {
font-family: 'General Sans';
font-style: Italic;
font-weight: 900;
src: local('General Sans'), url("https://sendv3staging.wpengine.com/fonts/GeneralSans-ExtraBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 400;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-regular.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 400;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-regularitalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-medium.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 500;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-mediumitalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 700;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-bold.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 700;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-bolditalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 900;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-extrabold.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 900;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-extrabolditalic.woff") format("woff");
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page{
background-color: #F8F8F8 !important;
}
.header{
order: 1;
}
.hero-image{
order: 2;
}
.order-tracking{
order: 3;
}
.delivery-information{
order: 4;
}
.instagram-widget{
order: 5;
}
.shop-banner__wrapper{
order: 6;
}
.footer{
order: 7;
}
.ui-logo-footer{
order: 8;
}
.header{
border: 0;
}
.header__toggle-wrapper{
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper{
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal;
font-size: 18px;
display: block;
padding: 20px 15px;
background-color: #FCFFFF !important;
border: 1px solid #002C96 !important;
box-shadow: none !important;
outline: 0 !important;
text-decoration: none !important;
color: #002C96 !important;
border-radius: 0;
box-shadow: 8px 8px 0px rgba(0, 44, 150, 0.2) !important;
}
.hero-image{
border: 1px solid #002C96 !important;
border-radius: 0;
box-shadow: 8px 8px 0px rgba(0, 44, 150, 0.2) !important;
position: relative;
}
.hero-image:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-banner-img.svg') !important;
background-size: 100% 100% !important;
width: 670px !important;
height: 465px !important;
display: block !important;
position: absolute !important;
z-index: 2 !important;
right: 0 !important;
margin-top: 10px;
}
.hero-image .hero-image__info-text{
padding: 78px 40px 0 40px;
}
.hero-image .carrier-image{
display: none;
}
.hero-image .hero-image__estimate-info{
font-style: normal !important;
text-align: left !important;
}
.hero-image .hero-image__illustration{
display: none !important;
}
.hero-image .hero-image__info{
background: linear-gradient(180deg, #FFFFFF 0%, #EFFEFE 100%) !important;
border-bottom: 1px solid #E9E6E6 !important;
}
.hero-image .hero-image__estimate-info .hero-image__estimate-title{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
padding: 4px 24px !important;
display: inline-block !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 28px !important;
color: #FFFFFF !important;
background: #EA3150 !important;
text-transform: capitalize !important;
border-radius: 4px !important;
}
.hero-image .hero-image__estimate{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal;
font-weight: 700 !important;
font-size: 48px !important;
line-height: 65px !important;
color: #002C96 !important;
text-align: left !important;
margin-bottom: 28px !important;
width: 50% !important;
z-index: 5;
}
.hero-image .hero-image__status{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 12px 32px 12px 52px !important;
color: #002C96 !important;
background-color: #fff !important;
border: 1px solid #002C96 !important;
border-radius: 4px !important;
width: 245px;
height: 52px;
position: relative !important;
text-transform: capitalize !important;
box-shadow: 4px 4px 0px rgba(0, 44, 150, 0.2) !important;
z-index: 9 !important;
}
.hero-image .hero-image__status:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-check-blue.svg') !important;
background-size: 100% 100% !important;
width: 24px !important;
height: 24px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
}
.hero-image .hero-image__truck{
display: none !important;
}
.hero-image .hero-image__progress{
margin: 2em 0px 2em;
}
.hero-image .hero-image__svg-wrapper svg{
display: none !important;
}
.hero-image .hero-image__svg-wrapper:before{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #FFFFFF !important;
top: -3px !important;
position: relative !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #0F172A !important;
position: absolute !important;
top: -8px;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before{
content: " " !important;
height: 1px !important;
width: 70px !important;
background-color: #6283f5 !important;
display: block !important;
top: 5px !important;
position: absolute !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before{
left: 21% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before{
left: 46% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before{
left: 71% !important;
}
.hero-image .hero-image__progress-bar, .hero-image .hero-image__progress{
background-color: #FFFFFF !important;
}
.hero-image .hero-image__icon{
width: 32px;
height: 32px;
background-color: #F9FAFB !important;
border: 1px solid #CBD5E1 !important;
}
.hero-image .hero-image__icon--received_shipment_information{
left: 3% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after{
content: 'Shipment Received';
left: 6%;
}
.hero-image .hero-image__icon--handled_by_carrier{
left: 30% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after{
content: 'Shipment Sorted';
left: 33%;
}
.hero-image .hero-image__icon--out_for_delivery{
left: 56% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after{
content: 'Out for Delivery';
left: 59%;
}
.hero-image .hero-image__icon--delivered{
left: 80% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after{
content: 'Shipment Delivered';
left: 83%;
}
.hero-image .hero-image__icon--received_shipment_information {
border: none !important;
}
.hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-check-blue.svg) no-repeat center / contain !important;
}
.hero-image .hero-image__icon--received_shipment_information .hero-image__icon-complete {
background: #EFF6FF !important;
border: 1px solid #bfdbfe!important;
}
.hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before{
content: '2';
}
.hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before{
content: '3';
}
.hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before{
content: '4';
color: #0F172A !important;
}
.hero-image .hero-image__icon-complete{
background-color: #002c96 !important;
border: 1px solid #002c96 !important;
}
.order-tracking{
padding: 0px;
border: 1px solid #002C96 !important;
grid-column: span 1;
box-shadow: none !important;
border-radius: 0 !important;
box-shadow: 8px 8px 0px rgba(0, 44, 150, 0.2) !important;
}
.order-tracking .order-tracking__header{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
padding: 28px 32px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
color: #002C96 !important;
background: #FFFFFF !important;
border-bottom: 1px solid #002C96 !important;
}
.order-tracking .order-tracking__timeline{
padding: 16px 32px !important;
background-color: #FCFFFF !important;
}
.order-tracking .order-tracking__list .timeline__dot, .order-tracking .timeline__group-substatuses .timeline__dot{
box-shadow: none !important;
border: 0 !important;
background-color: #EA3150 !important;
height: 32px !important;
width: 32px !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot{
background-color: #002C96 !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-check.svg') !important;
background-size: 100% 100% !important;
width: 20px !important;
height: 20px !important;
display: block !important;
margin: 0 auto !important;
top: 6px !important;
position: relative !important;
}
.order-tracking .order-tracking__list .timeline__line--colored, .order-tracking .order-tracking__list .timeline__line--colored .timeline__dot{
background-color: #EA3150 !important;
}
.order-tracking .order-tracking__list .timeline__message{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #111827 !important;
padding-top: 5px;
margin-bottom: 15px;
}
.order-tracking .timeline__detailed-info .timeline__message{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #4B5563 !important;
}
.order-tracking .timeline__group-substatuses .timeline__datetime{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #6B7280 !important;
padding-top: 5px !important;
}
.order-tracking .timeline__group-substatuses{
padding-top: 10px;
}
.order-tracking .order-tracking__btn{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
height: 60px !important;
outline: 0 !important;
box-shadow: none !important;
}
.order-tracking .order-tracking__btn .chevron{
height: 12px;
margin-left: 12px;
top: 0px;
width: 12px;
}
.order-tracking .order-tracking__btn .chevron.chevron--up{
top: 3px;
}
.order-tracking .order-tracking__btn .chevron:before{
height: 12px;
width: 12px;
}
.order-tracking .order-tracking__list .timeline__group svg {
display: none;
}
.order-tracking .order-tracking__list .timeline__group:first-child .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-truck.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(2) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-trolley.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(3) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-check.svg') no-repeat center / contain;
}
.delivery-information{
grid-column: span 1;
flex-direction: column !important;
border: 0px !important;
box-shadow: none !important;
background-color: transparent !important;
}
.delivery-information__section{
width: 100% !important;
border-right: 0 !important;
border: 1px solid #002C96 !important;
background-color: #FCFFFF !important;
margin-bottom: 30px !important;
box-shadow: 0 0 10px 0 #00000012 !important;
border-radius: 0 !important;
padding: 0px 32px 20px !important;
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
overflow: hidden;
box-shadow: 8px 8px 0px rgba(0, 44, 150, 0.2) !important;
}
.delivery-information .delivery-information__heading, .delivery-information .carrier-information__heading{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
padding: 28px 32px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
color: #002C96 !important;
background: #FFFFFF !important;
border-bottom: 1px solid #002C96 !important;
margin-left: -32px;
margin-right: -32px;
margin-bottom: 20px;
}
.delivery-information .carrier-information__heading::before{
content: 'Shipping ';
}
.delivery-information .delivery-information__heading svg, .delivery-information .carrier-information__heading svg{
display: none !important;
}
.delivery-information .carrier__list dt{
display: none !important;
}
.delivery-information .carrier__list dd{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
width: 100% !important;
display: block !important;
padding: 20px 0;
border: 0;
border-radius: 8px;
}
.instagram-widget{
border: 1px solid #002c96!important;
background-color: #fcffff!important;
border-radius: 0 !important;
box-shadow: 8px 8px 0 rgba(0,44,150,.2)!important;
}
.instagram-widget .instagram-widget__user-link .instagram-widget__username{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 22px !important;
color: #000000 !important;
}
.instagram-widget .instagram-widget__text{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.shop-banner__wrapper{
border: 1px solid #002c96 !important;
background-color: #fcffff !important;
border-radius: 0 !important;
box-shadow: 8px 8px 0 rgba(0,44,150,.2)!important;
}
.shop-banner__wrapper .shop-banner {
height: 100%;
align-items: start !important;
background-position: right;
background-size: contain;
background-color: #fff !important;
}
.shop-banner__wrapper .shop-banner__text-wrapper{
text-align: left !important;
padding: 56px 40px !important;
padding-bottom: 328px !important;
}
.shop-banner__wrapper .shop-banner__text-wrapper:before{
content: 'Promo';
font-family: "General Sans","Source Sans Pro",Arial,sans-serif !important;
padding: 4px 24px !important;
display: inline-block !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 28px !important;
color: #fff !important;
background: #ea3150 !important;
text-transform: capitalize !important;
border-radius: 4px !important;
margin-bottom: 26px !important;
}
.shop-banner__wrapper .shop-banner__copy{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 64px !important;
line-height: 77px !important;
color: #002C96 !important;
}
.shop-banner__wrapper .shop-banner__copy.shop-banner__copy--secondary{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 24px !important;
line-height: 31px !important;
color: #002C96 !important;
}
.shop-banner__wrapper .shop-banner__cta{
font-family: 'General Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 12px 32px !important;
color: #002C96 !important;
background-color: #fff !important;
border: 1px solid #002C96 !important;
border-radius: 4px !important;
height: 52px;
text-transform: capitalize !important;
box-shadow: 4px 4px 0px rgba(0, 44, 150, 0.2) !important;
}
.footer{
border: 1px solid #002c96!important;
background-color: #fcffff!important;
border-radius: 0 !important;
box-shadow: 8px 8px 0 rgba(0,44,150,.2)!important;
}
.footer .footer__address, .footer .footer__contact{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.footer .footer__social svg{
filter: invert(44%) sepia(100%) saturate(7253%) hue-rotate(232deg) brightness(74%) contrast(108%);
}
@media (max-width: 576px) {
.tracking-page .hero-image .hero-image__info-text {
padding-top: 50px;
}
.tracking-page .hero-image .hero-image__estimate {
font-size: 32px !important;
line-height: 42px !important;
margin-bottom: 18px !important;
width: 70% !important;
}
.tracking-page .hero-image:before {
width: 310px !important;
height: 175px !important;
right: -52px !important;
top: 100px;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress-bar {
background-color: rgb(0, 0, 153) !important;
}
.tracking-page .hero-image .hero-image__progress {
background-color: rgb(153, 153, 255) !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery {
left: 50% !important;
}
.tracking-page .hero-image .hero-image__icon--delivered {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-box-check-blue.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-trolley.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--out_for_delivery .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-truck.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--delivered .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-box-done-blue.svg) no-repeat center / contain !important;
}
.delivery-information{
margin-bottom: 0px !important;
}
.instagram-widget{
margin-bottom: 30px !important;
}
.shop-banner__wrapper .shop-banner{
background-size: cover !important;
}
}
Example 3
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 300;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-Thin.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: Italic;
font-weight: 300;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-ThinItalic.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 400;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-Regular.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: Italic;
font-weight: 400;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-RegularItalic.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 500;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-Medium.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: Italic;
font-weight: 500;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-MediumItalic.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 600;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-SemiBold.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: Italic;
font-weight: 600;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-SemiBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 700;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-Bold.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: Italic;
font-weight: 700;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-BoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 900;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-ExtraBold.woff") format("woff");
}
@font-face {
font-family: 'Plus Jakarta Sans';
font-style: Italic;
font-weight: 900;
src: local('Plus Jakarta Sans'), url("https://sendv3staging.wpengine.com/fonts/PlusJakartaSans-ExtraBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 400;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-regular.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 400;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-regularitalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-medium.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 500;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-mediumitalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 700;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-bold.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 700;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-bolditalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 900;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-extrabold.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 900;
src: local('DM Sans'), url("https://sendv3staging.wpengine.com/fonts/dm-sans-extrabolditalic.woff") format("woff");
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page{
background-color: #F8F8F8 !important;
}
.header{
order: 1;
}
.hero-image{
order: 2;
}
.order-tracking{
order: 3;
}
.delivery-information{
order: 4;
}
.instagram-widget{
order: 5;
}
.shop-banner__wrapper{
order: 6;
}
.footer{
order: 7;
}
.ui-logo-footer{
order: 8;
}
.header{
border: 0;
}
.header__toggle-wrapper{
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper{
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal;
font-size: 18px;
display: block;
padding: 20px 15px;
background-color: #FCFFFF !important;
outline: 0 !important;
text-decoration: none !important;
color: #51B0A7 !important;
border-radius: 8px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.hero-image{
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
position: relative !important;
border: 0 !important;
}
.hero-image:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-banner-img.svg') !important;
background-size: 100% 100% !important;
width: 662px !important;
height: 500px !important;
display: block !important;
position: absolute !important;
z-index: 2 !important;
right: 0 !important;
}
.hero-image .hero-image__info-text{
padding: 78px 40px 0 40px;
}
.hero-image .carrier-image{
display: none;
}
.hero-image .hero-image__estimate-info{
font-style: normal !important;
text-align: left !important;
}
.hero-image .hero-image__illustration{
display: none !important;
}
.hero-image .hero-image__info{
background: #ffff !important;
border-bottom: 1px solid #E9E6E6 !important;
padding-bottom: 45% !important;
}
.hero-image .hero-image__estimate-info .hero-image__estimate-title{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
display: inline-block !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 28px !important;
color: #6283F5 !important;
text-transform: capitalize !important;
border-radius: 4px !important;
}
.hero-image .hero-image__estimate{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal;
font-weight: 700 !important;
font-size: 48px !important;
line-height: 65px !important;
color: #51B0A7 !important;
text-align: left !important;
margin-bottom: 28px !important;
width: 50% !important;
z-index: 5;
position: relative !important;
}
.hero-image .hero-image__status{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 12px 32px 12px 32px !important;
color: #51B0A7 !important;
background-color: #fff !important;
border-radius: 40px !important;
border: 1px solid #51B0A7 !important;
width: 225px;
position: relative !important;
text-transform: capitalize !important;
box-shadow: none !important;
z-index: 9;
}
.hero-image .hero-image__truck{
display: none !important;
}
.hero-image .hero-image__progress{
margin: 2em 0px 2em;
}
.hero-image .hero-image__svg-wrapper svg{
display: none !important;
}
.hero-image .hero-image__svg-wrapper:before{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #FFFFFF !important;
top: -3px !important;
position: relative !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #0F172A !important;
position: absolute !important;
top: -8px;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before{
content: " " !important;
height: 1px !important;
width: 70px !important;
background-color: #6283f5 !important;
display: block !important;
top: 5px !important;
position: absolute !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before{
left: 21% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before{
left: 46% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before{
left: 71% !important;
}
.hero-image .hero-image__progress-bar, .hero-image .hero-image__progress{
background-color: #FFFFFF !important;
}
.hero-image .hero-image__icon{
width: 32px;
height: 32px;
background-color: #F9FAFB !important;
border: 1px solid #CBD5E1 !important;
}
.hero-image .hero-image__icon--received_shipment_information{
left: 3% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after{
content: 'Shipment Received';
left: 6%;
}
.hero-image .hero-image__icon--handled_by_carrier{
left: 30% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after{
content: 'Shipment Sorted';
left: 33%;
}
.hero-image .hero-image__icon--out_for_delivery{
left: 56% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after{
content: 'Out for Delivery';
left: 59%;
}
.hero-image .hero-image__icon--delivered{
left: 80% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after{
content: 'Shipment Delivered';
left: 83%;
}
.hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper:before{
content: '1';
}
.hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before{
content: '2';
}
.hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before{
content: '3';
}
.hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before{
content: '4';
}
.hero-image .hero-image__icon-complete{
background-color: #6283f5 !important;
border: 1px solid #6283f5 !important;
}
.order-tracking{
padding: 0px;
border: 0 !important;
grid-column: span 1;
box-shadow: none !important;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.order-tracking .order-tracking__header{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
margin: 16px 24px !important;
padding: 16px 16px 16px 60px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
background-color: #51B0A7 !important;
color: #FFFFFF !important;
border-radius: 8px !important;
position: relative !important;
}
.order-tracking .order-tracking__header:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-1.svg') !important;
background-size: 100% 100% !important;
width: 26px !important;
height: 26px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
}
.order-tracking .order-tracking__timeline{
padding: 16px 32px !important;
background-color: #FCFFFF !important;
}
.order-tracking .order-tracking__list .timeline__dot, .order-tracking .timeline__group-substatuses .timeline__dot{
box-shadow: none !important;
border: 0 !important;
background-color: #6283F5 !important;
height: 32px !important;
width: 32px !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot{
background-color: #51B0A7 !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-check.svg') !important;
background-size: 100% 100% !important;
width: 20px !important;
height: 20px !important;
display: block !important;
margin: 0 auto !important;
top: 6px !important;
position: relative !important;
}
.order-tracking .order-tracking__list .timeline__line--colored, .order-tracking .order-tracking__list .timeline__line--colored .timeline__dot{
background-color: #6283F5 !important;
}
.order-tracking .order-tracking__list .timeline__message{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #111827 !important;
padding-top: 5px;
margin-bottom: 15px;
}
.order-tracking .timeline__detailed-info .timeline__message{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #4B5563 !important;
}
.order-tracking .timeline__group-substatuses .timeline__datetime{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #6B7280 !important;
padding-top: 5px !important;
}
.order-tracking .timeline__group-substatuses{
padding-top: 10px;
}
.order-tracking .order-tracking__btn{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
height: 60px !important;
outline: 0 !important;
box-shadow: none !important;
}
.order-tracking .order-tracking__btn .chevron{
height: 12px;
margin-left: 12px;
top: 0px;
width: 12px;
}
.order-tracking .order-tracking__btn .chevron.chevron--up{
top: 3px;
}
.order-tracking .order-tracking__btn .chevron:before{
height: 12px;
width: 12px;
}
.order-tracking .order-tracking__list .timeline__group svg {
display: none;
}
.order-tracking .order-tracking__list .timeline__group:first-child .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-truck.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(2) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-trolley.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(3) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-check.svg') no-repeat center / contain;
}
.delivery-information{
grid-column: span 1;
flex-direction: column !important;
border: 0px !important;
box-shadow: none !important;
background-color: transparent !important;
}
.delivery-information__section{
width: 100% !important;
border-right: 0 !important;
border: 0 !important;
background-color: #FCFFFF !important;
margin-bottom: 30px !important;
box-shadow: 0 0 10px 0 #00000012 !important;
padding: 16px 24px !important;
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
overflow: hidden;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.delivery-information .delivery-information__heading, .delivery-information .carrier-information__heading{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
padding: 16px 16px 16px 60px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
background-color: #51b0a7!important;
color: #fff!important;
border-radius: 8px !important;
position: relative !important;
}
.delivery-information .delivery-information__heading:before, .delivery-information .carrier-information__heading:after{
content: ' ';
background-size: 100% 100% !important;
width: 26px !important;
height: 26px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
top: 15px !important;
}
.delivery-information .delivery-information__heading:before{
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-2.svg') !important;
}
.delivery-information .carrier-information__heading:after{
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-3.svg') !important;
}
.delivery-information .carrier-information__heading::before{
content: 'Shipping ';
}
.delivery-information .delivery-information__heading svg, .delivery-information .carrier-information__heading svg{
display: none !important;
}
.delivery-information .carrier__list dt{
display: none !important;
}
.delivery-information .carrier__list dd{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
width: 100% !important;
display: block !important;
padding: 20px 0;
border: 0;
border-radius: 8px;
}
.instagram-widget{
background-color: #fcffff!important;
border-radius: 8px !important;
border: 0 !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.instagram-widget .instagram-widget__user-link .instagram-widget__username{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 22px !important;
color: #000000 !important;
}
.instagram-widget .instagram-widget__text{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.shop-banner__wrapper{
background-color: #fcffff!important;
border-radius: 8px !important;
border: 0 !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.shop-banner__wrapper .shop-banner {
height: 100%;
align-items: start !important;
}
.shop-banner__wrapper .shop-banner__text-wrapper{
text-align: left !important;
padding: 56px 40px !important;
}
.shop-banner__wrapper .shop-banner__copy{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 56px !important;
line-height: 71px !important;
color: #51B0A7 !important;
}
.shop-banner__wrapper .shop-banner__copy.shop-banner__copy--secondary{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 24px !important;
line-height: 31px !important;
color: #475569 !important;
}
.shop-banner__wrapper .shop-banner__cta{
font-family: 'Plus Jakarta Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 16px 32px !important;
color: #FFFFFF !important;
background-color: #51B0A7 !important;
border: 1px solid #51B0A7 !important;
border-radius: 40px !important;
height: 60px;
text-transform: capitalize !important;
box-shadow: none !important;
}
.footer{
background-color: #fcffff!important;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.footer .footer__address, .footer .footer__contact{
font-family: 'DM Sans', 'Source Sans Pro', Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.footer .footer__social svg{
filter: invert(85%) sepia(4%) saturate(6181%) hue-rotate(159deg) brightness(71%) contrast(92%);
}
@media (max-width: 576px) {
.hero-image__header-content {
position: relative;
z-index: 3;
}
.tracking-page .hero-image .hero-image__estimate {
font-size: 32px !important;
line-height: 42px !important;
margin-bottom: 18px !important;
width: 70% !important;
}
.tracking-page .hero-image:before {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-banner-img.svg) no-repeat center / cover !important;
height: calc(100% - 73px) !important;
top: -5% !important;
right: -23%!important;
width: 80%!important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery {
left: 50% !important;
}
.tracking-page .hero-image .hero-image__icon--delivered {
left: initial !important;
}
.tracking-page .hero-image .hero-image__progress-bar {
background-color: #6283F5 !important;
}
.tracking-page .hero-image .hero-image__progress {
background-color: #CBD5E1 !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon--received_shipment_information {
background-color: #f9fafb!important;
border: 1px solid #cbd5e1!important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon--received_shipment_information .hero-image__icon-complete {
background-color: transparent !important;
border: none !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-box-check-light-blue.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-trolley.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--out_for_delivery .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-truck.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--delivered .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-box-done-light-blue.svg) no-repeat center / contain !important;
}
.delivery-information{
margin-bottom: 0px !important;
}
.instagram-widget{
margin-bottom: 30px !important;
}
.shop-banner__wrapper .shop-banner{
background-size: cover !important;
}
}
Example 4
@font-face {
font-family: "Space Grotesk";
font-style: normal;
font-weight: 300;
src: local("Space Grotesk"), url("https://sendv3staging.wpengine.com/fonts/SpaceGrotesk-Light.woff") format("woff");
}
@font-face {
font-family: "Space Grotesk";
font-style: normal;
font-weight: 400;
src: local("Space Grotesk"), url("https://sendv3staging.wpengine.com/fonts/SpaceGrotesk-Regular.woff") format("woff");
}
@font-face {
font-family: "Space Grotesk";
font-style: normal;
font-weight: 500;
src: local("Space Grotesk"), url("https://sendv3staging.wpengine.com/fonts/SpaceGrotesk-Medium.woff") format("woff");
}
@font-face {
font-family: "Space Grotesk";
font-style: normal;
font-weight: 700;
src: local("Space Grotesk"), url("https://sendv3staging.wpengine.com/fonts/SpaceGrotesk-Bold.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 300;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-Thin.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: Italic;
font-weight: 300;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-ThinItalic.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 400;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-Regular.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: Italic;
font-weight: 400;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-RegularItalic.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 500;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-Medium.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: Italic;
font-weight: 500;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-MediumItalic.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 600;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-SemiBold.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: Italic;
font-weight: 600;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-SemiBoldItalic.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 700;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-Bold.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: Italic;
font-weight: 700;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-BoldItalic.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: normal;
font-weight: 900;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-ExtraBold.woff") format("woff");
}
@font-face {
font-family: "Work Sans";
font-style: Italic;
font-weight: 900;
src: local("Work Sans"), url("https://sendv3staging.wpengine.com/fonts/WorkSans-ExtraBoldItalic.woff") format("woff");
}
.tracking-page-layout {
max-width: 1140px;
}
.tracking-page {
background-color: #f8f8f8 !important;
}
.header {
order: 1;
}
.hero-image {
order: 2;
}
.order-tracking {
order: 3;
}
.delivery-information {
order: 4;
}
.instagram-widget {
order: 5;
}
.shop-banner__wrapper {
order: 6;
}
.footer {
order: 7;
}
.ui-logo-footer {
order: 8;
}
.header {
border: 0;
}
.header__toggle-wrapper {
background-color: #ffffff !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper {
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal;
font-size: 18px;
display: block;
padding: 20px 15px;
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
outline: 0 !important;
text-decoration: none !important;
color: #ffffff !important;
border-radius: 8px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.hero-image {
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
position: relative !important;
border: 0 !important;
}
.hero-image:before {
content: " ";
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-banner-img.svg") !important;
background-size: 100% 100% !important;
width: 516px !important;
height: 516px !important;
display: block !important;
position: absolute !important;
z-index: 2 !important;
right: 0 !important;
top: -30px !important;
}
.hero-image .hero-image__info-text {
padding: 78px 40px 0 40px;
}
.hero-image .carrier-image {
display: none;
}
.hero-image .hero-image__estimate-info {
font-style: normal !important;
text-align: left !important;
}
.hero-image .hero-image__illustration {
display: none !important;
}
.hero-image .hero-image__info {
background: #ffff !important;
border-bottom: 1px solid #e9e6e6 !important;
padding-bottom: 39.5% !important;
}
.hero-image .hero-image__info:before {
content: " ";
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-banner-star-1.svg") !important;
background-size: 100% 100% !important;
width: 320px !important;
height: 415px !important;
display: block !important;
position: absolute !important;
left: 0 !important;
bottom: 0 !important;
}
.hero-image .hero-image__info:after {
content: " ";
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-banner-star-2.svg") !important;
background-size: 100% 100% !important;
width: 444px !important;
height: 363px !important;
display: block !important;
position: absolute !important;
right: 0 !important;
top: 0 !important;
}
.hero-image .hero-image__estimate-info .hero-image__estimate-title {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
display: inline-block !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 28px !important;
color: #703e78 !important;
text-transform: capitalize !important;
border-radius: 4px !important;
}
.hero-image .hero-image__estimate {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal;
font-weight: 700 !important;
font-size: 48px !important;
line-height: 65px !important;
color: #703e78 !important;
text-align: left !important;
margin-bottom: 28px !important;
width: 50% !important;
z-index: 5;
}
.hero-image .hero-image__status {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 12px 32px 12px 32px !important;
color: #ffffff !important;
border-radius: 40px !important;
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
border: 0 !important;
width: 225px;
position: relative !important;
text-transform: capitalize !important;
box-shadow: none !important;
z-index: 9 !important;
}
.hero-image .hero-image__truck {
display: none !important;
}
.hero-image .hero-image__progress {
margin: 2em 0px 2em;
}
.hero-image .hero-image__svg-wrapper svg {
display: none !important;
}
.hero-image .hero-image__svg-wrapper:before {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #ffffff !important;
top: -3px !important;
position: relative !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after,
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after,
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after,
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #0f172a !important;
position: absolute !important;
top: -8px;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before,
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before,
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before {
content: " " !important;
height: 1px !important;
width: 70px !important;
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
display: block !important;
top: 5px !important;
position: absolute !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before {
left: 21% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before {
left: 46% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before {
left: 71% !important;
}
.hero-image .hero-image__progress-bar,
.hero-image .hero-image__progress {
background-color: #ffffff !important;
}
.hero-image .hero-image__icon {
width: 32px;
height: 32px;
background-color: #f9fafb !important;
border: 1px solid #cbd5e1 !important;
}
.hero-image .hero-image__icon--received_shipment_information {
left: 3% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after {
content: "Shipment Received";
left: 6%;
}
.hero-image .hero-image__icon--handled_by_carrier {
left: 30% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after {
content: "Shipment Sorted";
left: 33%;
}
.hero-image .hero-image__icon--out_for_delivery {
left: 56% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after {
content: "Out for Delivery";
left: 59%;
}
.hero-image .hero-image__icon--delivered {
left: 80% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after {
content: "Shipment Delivered";
left: 83%;
}
.hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper:before {
content: "1";
}
.hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before {
content: "2";
}
.hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before {
content: "3";
}
.hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before {
content: "4";
}
.hero-image .hero-image__icon-complete {
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
border: 1px solid #6c1e79 !important;
}
.order-tracking {
padding: 0px;
border: 0 !important;
grid-column: span 1;
box-shadow: none !important;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.order-tracking .order-tracking__header {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
margin: 16px 24px !important;
padding: 16px 16px 16px 60px !important;
font-style: normal !importafnt;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
color: #ffffff !important;
border-radius: 8px !important;
position: relative !important;
}
.order-tracking .order-tracking__header:before {
content: " ";
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-1.svg") !important;
background-size: 100% 100% !important;
width: 26px !important;
height: 26px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
}
.order-tracking .order-tracking__timeline {
padding: 16px 32px !important;
background-color: #fcffff !important;
}
.order-tracking .order-tracking__list .timeline__dot,
.order-tracking .timeline__group-substatuses .timeline__dot {
box-shadow: none !important;
border: 0 !important;
background-color: #a78bfa !important;
height: 32px !important;
width: 32px !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot {
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot:before {
content: " ";
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-check.svg") !important;
background-size: 100% 100% !important;
width: 20px !important;
height: 20px !important;
display: block !important;
margin: 0 auto !important;
top: 6px !important;
position: relative !important;
}
.order-tracking .order-tracking__list .timeline__line--colored,
.order-tracking .order-tracking__list .timeline__line--colored .timeline__dot {
background-color: #a78bfa !important;
}
.order-tracking .order-tracking__list .timeline__message {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #111827 !important;
padding-top: 5px;
margin-bottom: 15px;
}
.order-tracking .timeline__detailed-info .timeline__message {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #4b5563 !important;
}
.order-tracking .timeline__group-substatuses .timeline__datetime {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #6b7280 !important;
padding-top: 5px !important;
}
.order-tracking .timeline__group-substatuses {
padding-top: 10px;
}
.order-tracking .order-tracking__btn {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4b5563 !important;
height: 60px !important;
outline: 0 !important;
box-shadow: none !important;
}
.order-tracking .order-tracking__btn .chevron {
height: 12px;
margin-left: 12px;
top: 0px;
width: 12px;
}
.order-tracking .order-tracking__btn .chevron.chevron--up {
top: 3px;
}
.order-tracking .order-tracking__btn .chevron:before {
height: 12px;
width: 12px;
}
.order-tracking .order-tracking__list .timeline__group svg {
display: none;
}
.order-tracking .order-tracking__list .timeline__group:first-child .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-truck.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(2) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-trolley.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(3) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-check.svg') no-repeat center / contain;
}
.delivery-information {
grid-column: span 1;
flex-direction: column !important;
border: 0px !important;
box-shadow: none !important;
background-color: transparent !important;
}
.delivery-information__section {
width: 100% !important;
border-right: 0 !important;
border: 0 !important;
background-color: #fcffff !important;
margin-bottom: 30px !important;
box-shadow: 0 0 10px 0 #00000012 !important;
padding: 16px 24px !important;
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4b5563 !important;
overflow: hidden;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.delivery-information .delivery-information__heading,
.delivery-information .carrier-information__heading {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
padding: 16px 16px 16px 60px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 24px !important;
line-height: 24px !important;
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
color: #fff !important;
border-radius: 8px !important;
position: relative !important;
}
.delivery-information .delivery-information__heading:before,
.delivery-information .carrier-information__heading:after {
content: " ";
background-size: 100% 100% !important;
width: 26px !important;
height: 26px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
top: 15px !important;
}
.delivery-information .delivery-information__heading:before {
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-2.svg") !important;
}
.delivery-information .carrier-information__heading:after {
background-image: url("https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-3.svg") !important;
}
.delivery-information .carrier-information__heading::before {
content: "Shipping ";
}
.delivery-information .delivery-information__heading svg,
.delivery-information .carrier-information__heading svg {
display: none !important;
}
.delivery-information .carrier__list dt {
display: none !important;
}
.delivery-information .carrier__list dd {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4b5563 !important;
width: 100% !important;
display: block !important;
padding: 20px 0;
border: 0;
border-radius: 8px;
}
.instagram-widget {
background-color: #fcffff !important;
border-radius: 8px !important;
border: 0 !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.instagram-widget .instagram-widget__user-link .instagram-widget__username {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 22px !important;
color: #000000 !important;
}
.instagram-widget .instagram-widget__text {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.shop-banner__wrapper {
background-color: #fcffff !important;
border-radius: 8px !important;
border: 0 !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.shop-banner__wrapper .shop-banner {
height: 100%;
align-items: start !important;
}
.shop-banner__wrapper .shop-banner__text-wrapper {
text-align: left !important;
padding: 56px 40px !important;
}
.shop-banner__wrapper .shop-banner__copy {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 56px !important;
line-height: 71px !important;
color: #ffffff !important;
}
.shop-banner__wrapper .shop-banner__copy.shop-banner__copy--secondary {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 24px !important;
line-height: 31px !important;
color: #ffffff !important;
}
.shop-banner__wrapper .shop-banner__cta {
font-family: "Space Grotesk", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 8px 32px !important;
color: #ffffff !important;
background: linear-gradient(90.01deg, #51b0a7 0.01%, #6c1e79 0.02%, #e22eff 97.92%) !important;
border: 0 !important;
border-radius: 40px !important;
height: 44px;
text-transform: capitalize !important;
box-shadow: none !important;
}
.footer {
background-color: #fcffff !important;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !imporant;
}
.footer .footer__address,
.footer .footer__contact {
font-family: "Work Sans", "Source Sans Pro", Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.footer .footer__social svg {
filter: invert(30%) sepia(39%) saturate(5381%) hue-rotate(273deg) brightness(85%) contrast(111%);
}
@media (max-width: 576px) {
.tracking-page .hero-image .hero-image__info-text {
z-index: 4;
}
.tracking-page .hero-image .hero-image__estimate {
font-size: 32px !important;
line-height: 42px !important;
margin-bottom: 18px !important;
width: 70% !important;
}
.tracking-page .hero-image:before {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-banner-img.svg) no-repeat center /
cover !important;
height: calc(100% - 73px) !important;
top: 0 !important;
right: -15% !important;
width: 60% !important;
}
.hero-image .hero-image__info:before{
width: 170px !important;
height: 265px !important;
}
.hero-image .hero-image__info:after{
width: 294px!important;
height: 213px!important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after {
content: none;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery {
left: 50% !important;
}
.tracking-page .hero-image .hero-image__icon--delivered {
left: initial !important;
}
.tracking-page .hero-image .hero-image__progress-bar {
background-color: #9F64A9 !important;
}
.tracking-page .hero-image .hero-image__progress {
background-color: #CBD5E1 !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-box-check-purple.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-trolley.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--out_for_delivery .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-truck.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--delivered .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-4-box-done-purple.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon--received_shipment_information .hero-image__icon-complete {
background: transparent !important;
border: none !important;
}
.delivery-information{
margin-bottom: 0px !important;
}
.instagram-widget{
margin-bottom: 30px !important;
}
.shop-banner__wrapper .shop-banner{
background-size: cover !important;
}
}
Example 5
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE0tDMPKzSQ.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE0tMMPKzSQ.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 100;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE0tCMPI.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 200;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21lVF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLucXtAKPY.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLufntAKPY.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLucHtA.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hVF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19VFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19VGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19VF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15VFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15VGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15VF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111VFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111VGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 800;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111VF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xVFteOcEg.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xVGdeOcEg.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: italic;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xVF9eO.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTucXtAKPY.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTufntAKPY.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTucHtA.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5Z11lFc-K.woff2) format('woff2');
unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(https://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page{
background-color: #F8F8F8 !important;
}
.header{
order: 1;
}
.hero-image{
order: 2;
}
.order-tracking{
order: 3;
}
.delivery-information{
order: 4;
}
.instagram-widget{
order: 5;
}
.shop-banner__wrapper{
order: 6;
}
.footer{
order: 7;
}
.ui-logo-footer{
order: 8;
}
.header{
border: 0;
}
.header__toggle-wrapper{
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper{
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal;
font-size: 18px;
display: block;
padding: 16px 15px;
background-color: #EAB308 !important;
outline: 0 !important;
text-decoration: none !important;
color: #000000 !important;
border-radius: 0px;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.hero-image{
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
position: relative !important;
border: 0 !important;
}
.hero-image:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-5-banner-img.svg') !important;
background-size: 100% 100% !important;
width: 622px !important;
height: 414px !important;
display: block !important;
position: absolute !important;
z-index: 2 !important;
right: 0 !important;
}
.hero-image .hero-image__info-text{
padding: 78px 40px 0 40px;
}
.hero-image .carrier-image{
display: none;
}
.hero-image .hero-image__estimate-info{
font-style: normal !important;
text-align: left !important;
}
.hero-image .hero-image__illustration{
display: none !important;
}
.hero-image .hero-image__info{
background: #ffff !important;
border-bottom: 1px solid #E9E6E6 !important;
padding-bottom: 38% !important;
}
.hero-image .hero-image__estimate-info .hero-image__estimate-title{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
display: inline-block !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 28px !important;
color: #EAB308 !important;
text-transform: capitalize !important;
border-radius: 4px !important;
}
.hero-image .hero-image__estimate{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal;
font-weight: 800 !important;
font-size: 48px !important;
line-height: 65px !important;
color: #000000 !important;
text-align: left !important;
margin-bottom: 28px !important;
width: 50% !important;
z-index: 5;
}
.hero-image .hero-image__status{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 8px 32px 8px 32px !important;
color: #000000 !important;
background-color: #EAB308 !important;
border-radius: 0px !important;
border: 1px solid #EAB308 !important;
width: 225px;
position: relative !important;
text-transform: capitalize !important;
box-shadow: none !important;
z-index: 9 !important;
}
.hero-image .hero-image__truck{
display: none !important;
}
.hero-image .hero-image__progress{
margin: 2em 0px 2em;
}
.hero-image .hero-image__svg-wrapper svg{
display: none !important;
}
.hero-image .hero-image__svg-wrapper:before{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #FFFFFF !important;
top: -3px !important;
position: relative !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 24px !important;
color: #0F172A !important;
position: absolute !important;
top: -8px;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before, .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before{
content: " " !important;
height: 1px !important;
width: 70px !important;
background-color: #EAB308 !important;
display: block !important;
top: 5px !important;
position: absolute !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before{
left: 21% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before{
left: 46% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before{
left: 71% !important;
}
.hero-image .hero-image__progress-bar, .hero-image .hero-image__progress{
background-color: #FFFFFF !important;
}
.hero-image .hero-image__icon{
width: 32px;
height: 32px;
background-color: #F9FAFB !important;
border: 1px solid #CBD5E1 !important;
}
.hero-image .hero-image__icon--received_shipment_information{
left: 3% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after{
content: 'Shipment Received';
left: 6%;
}
.hero-image .hero-image__icon--handled_by_carrier{
left: 30% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after{
content: 'Shipment Sorted';
left: 33%;
}
.hero-image .hero-image__icon--out_for_delivery{
left: 56% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after{
content: 'Out for Delivery';
left: 59%;
}
.hero-image .hero-image__icon--delivered{
left: 80% !important;
}
.hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after{
content: 'Shipment Delivered';
left: 83%;
}
.hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper:before{
content: '1';
}
.hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before{
content: '2';
}
.hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before{
content: '3';
}
.hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before{
content: '4';
}
.hero-image .hero-image__icon-complete{
background-color: #EAB308 !important;
border: 1px solid #EAB308 !important;
}
.order-tracking{
padding: 0px;
border: 0 !important;
grid-column: span 1;
box-shadow: none !important;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.order-tracking .order-tracking__header{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
margin: 16px 24px !important;
padding: 16px 16px 16px 60px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 20px !important;
line-height: 24px !important;
background-color: #EAB308 !important;
color: #000000 !important;
border-radius: 0px !important;
position: relative !important;
}
.order-tracking .order-tracking__header:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-1.svg') !important;
background-size: 100% 100% !important;
width: 26px !important;
height: 26px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
filter: invert(100%) sepia(100%) saturate(17%) hue-rotate(308deg) brightness(95%) contrast(104%);
}
.order-tracking .order-tracking__timeline{
padding: 16px 32px !important;
background-color: #FCFFFF !important;
}
.order-tracking .order-tracking__list .timeline__dot, .order-tracking .timeline__group-substatuses .timeline__dot{
box-shadow: none !important;
border: 0 !important;
background-color: #EAB308 !important;
height: 32px !important;
width: 32px !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot{
background-color: #EAB308 !important;
}
.order-tracking .timeline__group-substatuses .timeline__dot:before{
content: ' ';
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-2-check.svg') !important;
background-size: 100% 100% !important;
width: 20px !important;
height: 20px !important;
display: block !important;
margin: 0 auto !important;
top: 6px !important;
position: relative !important;
}
.order-tracking .order-tracking__list .timeline__line--colored, .order-tracking .order-tracking__list .timeline__line--colored .timeline__dot{
background-color: #EAB308 !important;
}
.order-tracking .order-tracking__list .timeline__message{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #111827 !important;
padding-top: 5px;
margin-bottom: 15px;
}
.order-tracking .timeline__detailed-info .timeline__message{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 20px !important;
color: #4B5563 !important;
}
.order-tracking .timeline__group-substatuses .timeline__datetime{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #6B7280 !important;
padding-top: 5px !important;
}
.order-tracking .timeline__group-substatuses{
padding-top: 10px;
}
.order-tracking .order-tracking__btn{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
height: 60px !important;
outline: 0 !important;
box-shadow: none !important;
}
.order-tracking .order-tracking__btn .chevron{
height: 12px;
margin-left: 12px;
top: 0px;
width: 12px;
}
.order-tracking .order-tracking__btn .chevron.chevron--up{
top: 3px;
}
.order-tracking .order-tracking__btn .chevron:before{
height: 12px;
width: 12px;
}
.order-tracking .order-tracking__list .timeline__group svg {
display: none;
}
.order-tracking .order-tracking__list .timeline__group:first-child .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-truck.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(2) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-trolley.svg') no-repeat center / contain;
}
.order-tracking .order-tracking__list .timeline__group:nth-child(3) .timeline__item--first .hero-image__svg-wrapper {
background: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-1-box-check.svg') no-repeat center / contain;
}
.delivery-information{
grid-column: span 1;
flex-direction: column !important;
border: 0px !important;
box-shadow: none !important;
background-color: transparent !important;
}
.delivery-information__section{
width: 100% !important;
border-right: 0 !important;
border: 0 !important;
background-color: #FCFFFF !important;
margin-bottom: 30px !important;
box-shadow: 0 0 10px 0 #00000012 !important;
padding: 16px 24px !important;
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
overflow: hidden;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.delivery-information .delivery-information__heading, .delivery-information .carrier-information__heading{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
padding: 16px 16px 16px 60px !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 20px !important;
line-height: 24px !important;
background-color: #EAB308!important;
color: #000000 !important;
border-radius: 0px !important;
position: relative !important;
}
.delivery-information .delivery-information__heading:before, .delivery-information .carrier-information__heading:after{
content: ' ';
background-size: 100% 100% !important;
width: 26px !important;
height: 26px !important;
display: block !important;
position: absolute !important;
left: 25px !important;
top: 15px !important;
}
.delivery-information .delivery-information__heading:before{
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-2.svg') !important;
filter: invert(100%) sepia(100%) saturate(17%) hue-rotate(308deg) brightness(95%) contrast(104%);
}
.delivery-information .carrier-information__heading:after{
background-image: url('https://sendv3staging.wpengine.com/icons/tradional-truck-template-3-icon-3.svg') !important;
filter: invert(100%) sepia(100%) saturate(17%) hue-rotate(308deg) brightness(95%) contrast(104%);
}
.delivery-information .carrier-information__heading::before{
content: 'Shipping ';
}
.delivery-information .delivery-information__heading svg, .delivery-information .carrier-information__heading svg{
display: none !important;
}
.delivery-information .carrier__list dt{
display: none !important;
}
.delivery-information .carrier__list dd{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #4B5563 !important;
width: 100% !important;
display: block !important;
padding: 20px 0;
border: 0;
border-radius: 8px;
}
.instagram-widget{
background-color: #fcffff!important;
border-radius: 8px !important;
border: 0 !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.instagram-widget .instagram-widget__user-link .instagram-widget__username{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 22px !important;
color: #000000 !important;
}
.instagram-widget .instagram-widget__text{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.shop-banner__wrapper{
background-color: #fcffff!important;
border-radius: 8px !important;
border: 0 !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !important;
}
.shop-banner__wrapper .shop-banner {
height: 100%;
align-items: start !important;
}
.shop-banner__wrapper .shop-banner__text-wrapper{
text-align: left !important;
padding: 56px 40px !important;
}
.shop-banner__wrapper .shop-banner__copy{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 700 !important;
font-size: 56px !important;
line-height: 71px !important;
color: #EAB308 !important;
}
.shop-banner__wrapper .shop-banner__copy.shop-banner__copy--secondary{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 400 !important;
font-size: 24px !important;
line-height: 31px !important;
color: #FFFFFF !important;
}
.shop-banner__wrapper .shop-banner__cta{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 28px !important;
padding: 8px 32px !important;
color: #000000 !important;
background-color: #EAB308 !important;
border: 1px solid #EAB308 !important;
border-radius: 0px !important;
height: 44px;
text-transform: capitalize !important;
box-shadow: none !important;
}
.footer{
background-color: #fcffff!important;
border-radius: 8px !important;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06) !imporant;
}
.footer .footer__address, .footer .footer__contact{
font-family: 'Poppins', 'Source Sans Pro', Arial, sans-serif !important;
font-size: 14px !important;
line-height: 150% !important;
color: #111827 !important;
}
.footer .footer__social svg{
filter: invert(67%) sepia(95%) saturate(594%) hue-rotate(358deg) brightness(94%) contrast(95%);
}
@media (max-width: 576px) {
.tracking-page .hero-image .hero-image__estimate {
font-size: 32px !important;
line-height: 42px !important;
margin-bottom: 18px !important;
width: 70% !important;
}
.tracking-page .hero-image:before {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-5-banner-img.svg) no-repeat center /
cover !important;
height: calc(75% - 73px) !important;
top: inherit !important;
bottom: 70px !important;
right: -2%!important;
width: 50%!important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):after {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(5):after {
content: none;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__icon--delivered .hero-image__svg-wrapper:before {
content: none;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(3):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(2):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon-wrapper:nth-child(4):before {
content: none !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--handled_by_carrier {
left: initial !important;
}
.tracking-page .hero-image .hero-image__icon--out_for_delivery {
left: 50% !important;
}
.tracking-page .hero-image .hero-image__icon--delivered {
left: initial !important;
}
.tracking-page .hero-image .hero-image__progress-bar {
background-color: #EAB308 !important;
}
.tracking-page .hero-image .hero-image__progress {
background-color: #CBD5E1 !important;
}
.tracking-page .hero-image .hero-image__icon--received_shipment_information .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-5-box-check-yellow.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--handled_by_carrier .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-5-trolley.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--out_for_delivery .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-5-truck.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image__icon--delivered .hero-image__svg-wrapper {
background: url(https://sendv3staging.wpengine.com/icons/tradional-truck-template-5-box-done-yellow.svg) no-repeat center / contain !important;
}
.tracking-page .hero-image .hero-image__progress .hero-image__icon--received_shipment_information .hero-image__icon-complete {
background: transparent !important;
border: none !important;
}
.delivery-information{
margin-bottom: 0px !important;
}
.instagram-widget{
margin-bottom: 30px !important;
}
.shop-banner__wrapper .shop-banner{
background-size: cover !important;
}
}
Modern mosaic examples:
Example 1
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 400;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Regular.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 400;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Italic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 300;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Light.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 300;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-LightItalic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 500;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Medium.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 500;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-MediumItalic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 700;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Bold.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 700;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-BoldItalic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 900;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Black.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 900;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-BlackItalic.woff") format("woff");
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page {
background-color: #f8f8f8 !important;
font-family: 'Satoshi';
}
header.header,
footer.footer {
border: 0 !important;
}
footer.footer {
background-color: #ffffff !important;
color: #000000;
border: 0 !important;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
border-radius: 8px !important;
}
footer.footer svg {
filter: invert(47%) sepia(82%) saturate(3229%) hue-rotate(204deg) brightness(101%) contrast(108%);
}
footer .footer__address,
footer .footer__contact {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #000000 !important;
}
footer .footer__contact a {
text-decoration: none !important;
box-shadow: none !important;
}
.ui-button--borderless.order-tracking__btn,
footer .footer-social {
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
background-color: transparent !important;
}
.footer__address-item.footer__address-brand,
.footer__contact-title {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em !important;
color: #000000 !important;
opacity: 0.6 !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
display: block !important;
}
.tt-component,
.header__home-link,
.header__navigation-inner-wrapper {
background-color: #ffffff !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.tt-component {
border: 0 !important;
box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
border-radius: 8px !important;
}
.tt-component.order-tracking {
border: 0 !important;
box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
border-radius: 8px !important;
}
.tracking-page .tt-component.shop-banner__wrapper,
.tracking-page .tt-component.instagram-widget {
padding: 0 !important;
}
.tracking-page .tt-component.instagram-widget {
background-color: #fff !important;
}
.header__toggle-wrapper {
background-color: #ffffff !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper {
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link {
display: block;
padding: 20px 15px;
background-color: #ffffff !important;
color: #111827 !important;
border: 0 !important;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
border-radius: 8px !important;
text-decoration: none !important;
}
.tt-component,
.order-tracking {
padding: 30px !important;
}
.min-hero__estimate {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 40px !important;
line-height: 54px;
text-transform: capitalize;
margin-top: 0 !important;
margin-bottom: 27px !important;
color: #111827;
}
.min-hero__header-content {
opacity: 1 !important;
color: #111827;
width: initial;
}
.min-hero__estimate-info .min-hero__estimate-title {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 19px !important;
letter-spacing: 0.5px;
color: #4b5563;
opacity: 1 !important;
text-transform: uppercase;
margin-bottom: 0px !important;
}
.min-hero__estimate-info {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em;
color: #ffffff;
opacity: 1;
text-transform: uppercase;
margin-bottom: 8px !important;
}
.min-hero__status {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
margin-top: 0 !important;
display: inline-block !important;
text-transform: capitalize;
font-size: 20px !important;
font-weight: 500;
line-height: 28px;
color: #3b82f6;
padding: 8px 18px 8px 65px;
background: #eff6ff;
width: max-content;
border-radius: 50px;
margin-bottom: 27px;
position: relative;
}
.min-hero__status:before {
position: absolute;
left: 25px;
top: 10px;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-1-delivery.svg");
width: 28px;
height: 28px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.tt-component hr {
display: none;
}
.delivery-information__section,
.delivery-information__section {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 28px;
color: #0f172a;
}
.delivery-information__section span,
.delivery-information__section span {
font-weight: 500;
font-size: 18px;
}
.delivery-information__section {
padding: 20px 24px;
background: #f9fafb;
margin-bottom: 15px;
border: 1px solid #e5e7eb;
border-radius: 8px;
position: relative;
}
.delivery-information h3.delivery-information__heading,
.delivery-information__section h3.carrier-information__heading,
.order-tracking__header {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
color: #000000;
opacity: 1;
text-transform: uppercase;
letter-spacing: 1px;
}
.delivery-information__section h3.carrier-information__heading:before {
content: "Shipment";
}
.delivery-information h3.delivery-information__heading,
.delivery-information__section h3.carrier-information__heading {
color: #475569;
opacity: 1;
}
.delivery-information h3.delivery-information__heading,
.delivery-information__section h3.carrier-information__heading {
margin-bottom: 15px !important;
}
.order-tracking__header {
color: #4b5563;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 30px !important;
opacity: 1 !important;
}
.order-tracking__header span {
font-size: 16px!important;
letter-spacing: 0px;
color: #4b5563;
opacity: 1!important;
margin-bottom: 0 !important;
font-weight: 600!important;
line-height: 19px!important;
}
.carrier-image.carrier-image__dhl {
width: 175px !important;
height: 85px !important;
border-radius: 0px;
background-color: transparent;
right: 0;
top: 5px;
position: absolute;
}
.carrier-image.carrier-image__dhl img {
display: none;
}
.carrier-image.carrier-image__dhl:before {
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-1-van.png");
width: 175px;
height: 85px;
background-size: 100% 100%;
}
.expanded-timeline__item--first .expanded-timeline__message {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6b7280 !important;
/* text-transform: capitalize; */
margin-bottom: 0 !important;
padding-top: 5px;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:first-child .expanded-timeline__dot {
top: 19px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__dot {
top: 6px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__message {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 20px !important;
/* letter-spacing: 0.15em !important; */
color: #6B7280 !important;
/* text-transform: uppercase; */
margin-bottom: 0 !important;
padding-top: 10px;
opacity: 1 !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.expanded-timeline__detailed-info {
margin-bottom: 30px !important;
padding-top: 15px;
}
.expanded-timeline__detailed-info .expanded-timeline__message,
.expanded-timeline__detailed-info .expanded-timeline__datetime {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 400 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0em !important;
color: #000000 !important;
opacity: 0.6 !important;
margin-bottom: 0 !important;
text-transform: inherit;
}
.expanded-timeline__detailed-info .expanded-timeline__datetime{
font-weight: 700 !important;
font-size: 14px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__datetime {
font-weight: 700 !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message {
margin-bottom: 0px !important;
}
.expanded-timeline__line:before {
background-size: 6px 16px !important;
width: 3px !important;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state,
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state {
border: 0 !important;
width: 32px !important;
height: 32px !important;
}
.timeline__group--current .hero-image__svg-wrapper svg,
.timeline__group--past .hero-image__svg-wrapper svg {
display: none;
}
.timeline__group--current .hero-image__svg-wrapper,
.timeline__group--past .hero-image__svg-wrapper {
position: relative;
}
.timeline__group--current .hero-image__svg-wrapper:before,
.timeline__group--past .hero-image__svg-wrapper:before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-1-order-tracking.svg");
width: 20px;
height: 20px;
top: -5px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state {
background-color: #3b82f6 !important;
}
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state {
background-color: #3b82f6 !important;
}
.timeline__group--past .hero-image__svg-wrapper svg path {
fill: #ffffff !important;
}
.expanded-timeline__dot.expanded-timeline__dot--inlined {
box-shadow: inset 0 10px 0 #d0f1ef, inset -10px 0 0 #d0f1ef, inset 0 -10px 0 #d0f1ef, inset 10px 0 0 #d0f1ef,
inset -7.5px 7.5px 0 #d0f1ef, inset -7.5px -7.5px 0 #d0f1ef, inset 7.5px -7.5px 0 #d0f1ef,
inset 7.5px 7.5px 0 #d0f1ef;
border: 4px solid #14b8a6;
}
.expanded-timeline__line .status-history__icon-img {
top: 12px !important;
}
.order-tracking__timeline{
padding-bottom: 55px;
}
.order-tracking__timeline .order-tracking__list {
-webkit-padding-start: 16px !important;
padding-inline-start: 25px !important;
}
.expanded-timeline__item .expanded-timeline__dot {
width: 32px !important;
height: 32px !important;
border: 0 !important;
box-shadow: none !important;
background-color: #14b8a6;
top: 8px !important;
}
.expanded-timeline__item .expanded-timeline__dot::before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-1-check.svg");
width: 20px;
height: 20px;
top: 5px;
left: 6px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.order-tracking__btn {
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 500 !important;
font-size: 20px !important;
line-height: 20px !important;
text-align: center;
color: #4b5563 !important;
}
.order-tracking__btn .chevron:before {
left: 10px !important;
}
.shop-banner.shop-banner--single-column {
justify-content: flex-start !important;
text-align: left !important;
align-items: flex-start !important;
position: relative !important;
height: 100%;
}
.shop-banner__text-wrapper {
justify-content: start !important;
text-align: start !important;
align-items: start !important;
z-index: 5;
padding: 65px 40px;
}
.shop-banner__text-wrapper .shop-banner__cta {
margin-top: 30px !important;
display: inline-block !important;
padding: 12px 24px;
background-color: #fff !important;
text-transform: capitalize;
color: #3b82f6 !important;
font-weight: 700;
font-size: 16px !important;
line-height: 18px;
letter-spacing: 2px;
text-align: center;
cursor: pointer;
border-radius: 50px;
border: 2px solid #fff;
}
.shop-banner .shop-banner__copy {
font-size: 64px;
font-weight: 900;
font-family: 'Satoshi';
}
.shop-banner .shop-banner__copy--secondary {
font-family: 'Satoshi';
font-weight: 500;
font-size: 24px;
}
.instagram-widget__header .instagram-widget__username{
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-size: 18px !important;
line-height: 22px !important;
color: #000 !important;
font-weight: 700 !important;
}
.instagram-widget__text{
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-size: 14px !important;
line-height: 21px !important;
color: #111827 !important;
font-weight: 400 !important;
}
.instagram-widget__text a{
color: #000 !important;
font-weight: 700 !important;
}
Example 2
@font-face {
font-family: "Clash Display";
font-style: normal;
font-weight: 400;
src: local("Clash Display"), url("https://fonts.cdnfonts.com/s/65008/ClashDisplayRegular.woff") format("woff");
}
@font-face {
font-family: "Clash Display";
font-style: normal;
font-weight: 200;
src: local("Clash Display"), url("https://fonts.cdnfonts.com/s/65008/ClashDisplayExtralight.woff") format("woff");
}
@font-face {
font-family: "Clash Display";
font-style: normal;
font-weight: 300;
src: local("Clash Display"), url("https://fonts.cdnfonts.com/s/65008/ClashDisplayLight.woff") format("woff");
}
@font-face {
font-family: "Clash Display";
font-style: normal;
font-weight: 500;
src: local("Clash Display"), url("https://fonts.cdnfonts.com/s/65008/ClashDisplayMedium.woff") format("woff");
}
@font-face {
font-family: "Clash Display";
font-style: normal;
font-weight: 600;
src: local("Clash Display"), url("https://fonts.cdnfonts.com/s/65008/ClashDisplaySemibold.woff") format("woff");
}
@font-face {
font-family: "Clash Display";
font-style: normal;
font-weight: 700;
src: local("Clash Display"), url("https://fonts.cdnfonts.com/s/65008/ClashDisplayBold.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 400;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Regular.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 400;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Italic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 300;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Light.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 300;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-LightItalic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 500;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Medium.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 500;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-MediumItalic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 700;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Bold.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 700;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-BoldItalic.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: normal;
font-weight: 900;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-Black.woff") format("woff");
}
@font-face {
font-family: "Satoshi";
font-style: italic;
font-weight: 900;
src: local("Satoshi"), url("https://fonts.cdnfonts.com/s/85546/Satoshi-BlackItalic.woff") format("woff");
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 400;
src: local('DM Sans'), url('https://fonts.cdnfonts.com/s/29932/DMSans-Regular.woff') format('woff');
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 400;
src: local('DM Sans'), url('https://fonts.cdnfonts.com/s/29932/DMSans-Italic.woff') format('woff');
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 500;
src: local('DM Sans'), url('https://fonts.cdnfonts.com/s/29932/DMSans-Medium.woff') format('woff');
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 500;
src: local('DM Sans'), url('https://fonts.cdnfonts.com/s/29932/DMSans-MediumItalic.woff') format('woff');
}
@font-face {
font-family: 'DM Sans';
font-style: normal;
font-weight: 700;
src: local('DM Sans'), url('https://fonts.cdnfonts.com/s/29932/DMSans-Bold.woff') format('woff');
}
@font-face {
font-family: 'DM Sans';
font-style: italic;
font-weight: 700;
src: local('DM Sans'), url('https://fonts.cdnfonts.com/s/29932/DMSans-BoldItalic.woff') format('woff');
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page {
background-color: #f8f8f8 !important;
}
header.header,
footer.footer {
border: 0 !important;
}
footer.footer {
background-color: #ffffff !important;
color: #000000;
border: 0 !important;
box-shadow: none !important;
border-radius: 0 !important;
border: 1px solid #e3f7f9 !important;
}
footer.footer svg {
filter: invert(24%) sepia(20%) saturate(1471%) hue-rotate(127deg) brightness(93%) contrast(90%);
}
footer .footer__address,
footer .footer__contact {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #000000 !important;
}
footer .footer__contact a {
text-decoration: none !important;
box-shadow: none !important;
}
.ui-button--borderless.order-tracking__btn,
footer .footer-social {
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
background-color: transparent !important;
}
.footer__address-item.footer__address-brand,
.footer__contact-title {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 17px !important;
line-height: 19px !important;
letter-spacing: 0 !important;
color: #6b7280 !important;
opacity: 1 !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
display: block !important;
}
.tt-component,
.header__home-link,
.header__navigation-inner-wrapper {
background-color: #ffffff !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.tt-component {
border: 1px solid rgba(1, 55, 60, 0.2) !important;
border-radius: 2px !important;
}
.tt-component.order-tracking {
border: 1px solid #e3f7f9 !important;
border-radius: 2px !important;
}
.tracking-page .tt-component.shop-banner__wrapper,
.tracking-page .tt-component.instagram-widget {
padding: 0 !important;
}
.tracking-page .tt-component.instagram-widget {
background-color: #fff !important;
}
.header__toggle-wrapper {
background-color: #ffffff !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper {
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link {
display: block;
padding: 20px 15px;
background-color: #e3f7f9 !important;
border: 0 !important;
box-shadow: none !important;
outline: 0 !important;
text-decoration: none !important;
color: #0f172a !important;
}
.tt-component,
.order-tracking {
padding: 30px !important;
}
.order-tracking {
padding: 30px 25px 15px !important;
}
.min-hero__estimate {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 36px !important;
line-height: 40px;
text-transform: capitalize;
margin-top: 0 !important;
color: #0f172a;
margin-bottom: 0px !important;
position: relative;
z-index: 3;
}
.min-hero__header-content::after {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-vector-2.svg");
background-size: 100% 100%;
width: 300px;
height: 17px;
background-repeat: no-repeat;
left: 27px;
bottom: 61px;
z-index: 1;
display: block;
}
.min-hero__header-content {
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 50px 30px;
background-color: #e3f7f9;
opacity: 1 !important;
color: #ffffff;
width: initial;
position: relative;
}
.min-hero__header-content:before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-vector-1.svg");
background-size: 100% 100%;
width: 165px;
height: 120px;
background-repeat: no-repeat;
right: 0;
top: 0;
z-index: 1;
}
.min-hero__estimate-info .min-hero__estimate-title {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500 !important;
font-size: 18px !important;
line-height: 24px !important;
letter-spacing: 1px;
color: #475569;
opacity: 1 !important;
text-transform: uppercase;
margin-bottom: 0px !important;
}
.min-hero__estimate-info {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em;
color: #ffffff;
opacity: 1;
text-transform: uppercase;
margin-bottom: 8px !important;
position: relative;
z-index: 3;
}
.min-hero__status {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
margin-top: 10px !important;
display: inline-block !important;
color: #0f172a;
text-transform: uppercase;
font-weight: 600;
font-size: 20px !important;
line-height: 28px;
letter-spacing: 1px;
position: relative;
padding-left: 0;
position: absolute;
bottom: -50px;
z-index: 3;
}
.delivery-information::before {
position: relative;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-vector-3.svg");
background-size: 100% 100%;
width: 180px;
height: 21px;
background-repeat: no-repeat;
left: -4px;
top: 0;
z-index: 1;
margin-top: 28px;
margin-bottom: 10px;
}
.tt-component hr {
display: none;
}
.delivery-information__section,
.delivery-information__section {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 22px;
color: #0f172a;
}
.delivery-information__section span,
.delivery-information__section span {
font-weight: 600;
font-size: 18px;
font-family: 'DM Sans';
}
.delivery-information__section {
border: 0;
border-radius: 2px;
padding: 20px 24px;
background: #f8fcfc;
margin-bottom: 15px;
box-shadow: 6px 6px 0px #e3f7f9;
font-family: 'DM Sans';
}
.delivery-information h3.delivery-information__heading,
.delivery-information__section h3.carrier-information__heading,
.order-tracking__header {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 19px;
letter-spacing: 1px;
color: #475569;
opacity: 1;
text-transform: uppercase;
}
.delivery-information__section h3.carrier-information__heading:before {
content: "Shipment";
}
.delivery-information h3.delivery-information__heading,
.delivery-information__section h3.carrier-information__heading {
color: #475569;
opacity: 1;
}
.delivery-information h3.delivery-information__heading,
.delivery-information__section h3.carrier-information__heading {
margin-bottom: 15px !important;
}
.order-tracking__header {
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 30px 30px !important;
background-color: #e3f7f9;
color: #fff;
margin-bottom: 20px !important;
opacity: 1 !important;
position: relative;
overflow: hidden;
}
.order-tracking__header:before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-vector-1.svg");
background-size: 100% 100%;
width: 165px;
height: 120px;
background-repeat: no-repeat;
right: 0;
top: 0;
z-index: 1;
}
.order-tracking__header span {
color: #475569;
margin-bottom: 0 !important;
font-size: 18px;
font-family: 'Clash Display';
font-weight: 500;
letter-spacing: 1px;
}
.carrier-image.carrier-image__dhl {
width: 72px !important;
height: 72px !important;
border-radius: 0px;
background-color: transparent;
padding: 0 !important;
}
.carrier-image.carrier-image__dhl img {
display: none;
}
.carrier-image.carrier-image__dhl:before {
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-dhl.svg");
width: 72px;
height: 72px;
background-size: 100% 100%;
}
.expanded-timeline__item--first .expanded-timeline__message {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 700 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6b7280 !important;
/* text-transform: capitalize; */
margin-bottom: 0 !important;
padding-top: 5px;
font-family: 'DM Sans';
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:first-child .expanded-timeline__dot {
top: 10px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__dot {
top: 0px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__message {
font-family: "DM Sans", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 800 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6b7280 !important;
text-transform: capitalize;
margin-bottom: 0 !important;
opacity: 1 !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.expanded-timeline__detailed-info {
margin-bottom: 30px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message,
.expanded-timeline__detailed-info .expanded-timeline__datetime {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-style: normal;
font-weight: 500 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0em !important;
color: #000000 !important;
opacity: 0.6 !important;
margin-bottom: 0 !important;
text-transform: inherit;
}
.expanded-timeline__detailed-info .expanded-timeline__datetime {
color: #6b7280 !important;
opacity: 1 !important;
font-weight: 700 !important;
font-family: "Satoshi";
font-size: 14px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message {
margin-bottom: 20px !important;
top: 7px;
position: relative;
font-family: 'DM Sans';
font-weight: 400;
}
.expanded-timeline__line:before {
background-size: 2px 13px !important;
width: 2.5px !important;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state,
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state {
border: 0 !important;
width: 32px !important;
height: 32px !important;
}
.timeline__group--current .hero-image__svg-wrapper svg,
.timeline__group--past .hero-image__svg-wrapper svg {
display: none;
}
.timeline__group--current .hero-image__svg-wrapper,
.timeline__group--past .hero-image__svg-wrapper {
position: relative;
}
.timeline__group--current .hero-image__svg-wrapper:before,
.timeline__group--past .hero-image__svg-wrapper:before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-order-tracking.svg");
width: 20px;
height: 20px;
top: -6px;
left: -1px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state {
background-color: #e4f708 !important;
}
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state {
background-color: #e4f708 !important;
}
.timeline__group--past .hero-image__svg-wrapper svg path {
fill: #e3f7f9 !important;
}
.expanded-timeline__dot.expanded-timeline__dot--inlined {
box-shadow: inset 0 10px 0 #e4f708, inset -10px 0 0 #e4f708, inset 0 -10px 0 #e4f708, inset 10px 0 0 #e4f708,
inset -7.5px 7.5px 0 #e4f708, inset -7.5px -7.5px 0 #e4f708, inset 7.5px -7.5px 0 #e4f708,
inset 7.5px 7.5px 0 #e4f708;
border: 4px solid #e3f7f9;
}
.expanded-timeline__line .status-history__icon-img {
top: 12px !important;
}
.order-tracking__timeline {
padding: 20px 20px 0px 20px;
background: #f8fcfc;
box-shadow: 6px 6px 0px #e3f7f9;
border-radius: 2px;
margin-bottom: 20px;
}
.order-tracking__timeline .order-tracking__list {
-webkit-padding-start: 16px !important;
padding-inline-start: 15px !important;
}
.expanded-timeline__item .expanded-timeline__dot {
top: 12px !important;
}
.expanded-timeline__item .expanded-timeline__dot {
width: 32px !important;
height: 32px !important;
border: 0 !important;
box-shadow: none !important;
background-color: #01373c;
top: 5px !important;
}
.expanded-timeline__item .expanded-timeline__dot::before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-1-check.svg");
width: 20px;
height: 20px;
top: 5px;
left: 6px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.order-tracking__btn {
font-family: "DM Sans", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 500 !important;
font-size: 17px !important;
line-height: 20px !important;
text-align: center;
color: #4b5563 !important;
}
.order-tracking__btn .chevron:before {
left: 10px !important;
}
.shop-banner.shop-banner--single-column {
justify-content: flex-start !important;
text-align: left !important;
align-items: flex-start !important;
position: relative !important;
height: 100%;
}
.shop-banner.shop-banner--single-column:before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-vector-1.svg");
background-size: 100% 100%;
width: 165px;
height: 120px;
background-repeat: no-repeat;
right: 0;
top: 0;
z-index: 1;
}
.shop-banner__text-wrapper {
justify-content: start !important;
text-align: start !important;
align-items: start !important;
z-index: 5;
padding: 75px 40px;
background: transparent;
position: relative;
}
.shop-banner__text-wrapper:before {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-vector-1.svg");
background-size: 100% 100%;
width: 165px;
height: 120px;
background-repeat: no-repeat;
right: 0;
top: 0;
z-index: 1;
}
.shop-banner__text-wrapper .shop-banner__copy,
.shop-banner__text-wrapper .shop-banner__cta {
z-index: 3;
position: relative;
}
.shop-banner__text-wrapper .shop-banner__copy {
font-family: "Clash Display", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-weight: 700 !important;
font-size: 56px !important;
line-height: 66px !important;
color: #0f172a !important;
}
.shop-banner__text-wrapper .shop-banner__copy.shop-banner__copy--secondary {
font-family: "DM Sans", "Be Vietnam", "Source Sans Pro", Arial, sans-serif;
font-weight: 400 !important;
font-size: 20px !important;
line-height: 28px !important;
color: #475569 !important;
}
.shop-banner__text-wrapper .shop-banner__cta {
background: #f1fc73 !important;
margin-top: 30px !important;
display: inline-block !important;
padding: 13px 50px 13px 24px;
color: #626a00 !important;
text-transform: capitalize;
font-weight: 700;
font-size: 18px !important;
line-height: 22px;
letter-spacing: 0;
text-align: center;
cursor: pointer;
box-shadow: 4px 4px 0px #626a00 !important;
border-radius: 2px !important;
}
.shop-banner__text-wrapper .shop-banner__cta:after {
position: absolute;
content: " ";
background-image: url("https://www.sendcloud.com/wp-content/templates/modern-template-2-button-arrow.svg");
width: 24px;
height: 24px;
background-size: 100% 100%;
background-repeat: no-repeat;
right: 15px;
top: 12px;
z-index: 1;
}
.instagram-widget__header .instagram-widget__username{
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-size: 18px !important;
line-height: 22px !important;
color: #000 !important;
font-weight: 700 !important;
}
.instagram-widget__text{
font-family: "Satoshi", "Source Sans Pro", Arial, sans-serif;
font-size: 14px !important;
line-height: 21px !important;
color: #111827 !important;
font-weight: 400 !important;
}
.instagram-widget__text a{
color: #000 !important;
font-weight: 700 !important;
}
Example 3
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 200;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Thin.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 200;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-ThinItalic.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 400;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Regular.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 400;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Italic.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 300;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Light.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 300;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-LightItalic.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 500;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Medium.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 500;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-MediumItalic.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 600;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-SemiBold.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 600;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-SemiBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 700;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Bold.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 700;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-BoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 900;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-Black.woff") format("woff");
}
@font-face {
font-family: 'Noto Serif';
font-style: italic;
font-weight: 900;
src: local('Noto Serif'), url("https://sendv3staging.wpengine.com/fonts/NotoSerif-BlackItalic.woff") format("woff");
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 300;
src: local('Hind'), url("https://sendv3staging.wpengine.com/fonts/hind-light.woff") format("woff");
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 400;
src: local('Hind'), url("https://sendv3staging.wpengine.com/fonts/hind-regular.woff") format("woff");
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 500;
src: local('Hind'), url("https://sendv3staging.wpengine.com/fonts/hind-Medium.woff") format("woff");
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 600;
src: local('Hind'), url("https://sendv3staging.wpengine.com/fonts/hind-semibold.woff") format("woff");
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 700;
src: local('Hind'), url("https://sendv3staging.wpengine.com/fonts/hind-bold.woff") format("woff");
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page{
background-color: #F8F8F8 !important;
}
header.header, footer.footer{
border: 0 !important;
}
footer.footer{
background-color: #FFFFFF !important;
color: #000000;
border: 0 !important;
box-shadow: none !important;
border-radius: 0 !important;
border: 1px solid #134E4A !important;
}
footer.footer svg{
filter: invert(24%) sepia(20%) saturate(1471%) hue-rotate(127deg) brightness(93%) contrast(90%);
}
footer .footer__address, footer .footer__contact{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #000000 !important;
}
footer .footer__contact a{
text-decoration: none !important;
box-shadow: none !important;
}
.ui-button--borderless.order-tracking__btn, footer .footer-social{
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
background-color: transparent !important;
}
.footer__address-item.footer__address-brand, .footer__contact-title{
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 20px!important;
line-height: 24px !important;
letter-spacing: 0 !important;
color: #6b7280 !important;
opacity: 1 !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
display: block !important;
}
.tt-component, .header__home-link, .header__navigation-inner-wrapper {
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.tt-component{
border: 1px solid rgba(1, 55, 60, 0.2) !important;
border-radius: 2px !important;
}
.tt-component.order-tracking {
border: 1px solid #134E4A !important;
border-radius: 2px !important;
}
.tracking-page .tt-component.shop-banner__wrapper, .tracking-page .tt-component.instagram-widget{
padding: 0 !important;
}
.tracking-page .tt-component.instagram-widget{
background-color: #fff !important;
}
.header__toggle-wrapper{
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper{
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link{
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif;
display: block;
padding: 20px 15px;
background-color: #134e4a !important;
color: #FFFFFF !important;
border: 0 !important;
box-shadow: none !important;
outline: 0 !important;
text-decoration: none !important;
}
.tt-component, .order-tracking{
padding: 30px !important;
}
.order-tracking{
padding: 30px 25px 15px !important;
}
.min-hero__estimate{
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 40px !important;
line-height: 54px;
text-transform: capitalize;
margin-top: 0 !important;
margin-bottom: 8px !important;
}
.min-hero__header-content{
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 50px 30px;
background-color: #134E4A;
opacity: 1 !important;
color: #FFFFFF;
width: initial;
}
.min-hero__estimate-info .min-hero__estimate-title{
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 18px !important;
line-height: 24px !important;
letter-spacing: 0;
color: #FFFFFF;
opacity: 1 !important;
text-transform: uppercase;
margin-bottom: 0px !important;
}
.min-hero__estimate-info{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em;
color: #FFFFFF;
opacity: 1;
text-transform: uppercase;
margin-bottom: 8px !important;
}
.min-hero__status{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
margin-top: 10px !important;
display: inline-block !important;
color: #fff;
text-transform: capitalize;
font-weight: 500;
font-size: 20px !important;
line-height: 28px;
letter-spacing: 0;
position: relative;
padding-left: 35px;
}
.min-hero__status:before{
position: absolute;
left: 0px;
top: 1px;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-3-delivery.svg');
width: 28px;
height: 28px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.tt-component hr{
display: none;
}
.delivery-information__section, .delivery-information__section{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 22px;
color: #0F172A;
}
.delivery-information__section span, .delivery-information__section span{
font-weight: 600;
font-size: 18px;
}
.delivery-information::before{
content: 'OUT FOR DELIVERY';
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 24px;
color: #134E4A;
display: block;
padding: 24px 0 16px;
}
.delivery-information__section{
border: 2px solid rgba(1, 55, 60, 0.4);
border-radius: 2px;
padding: 20px 24px;
background: #F8FCFC;
margin-bottom: 15px;
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading, .order-tracking__header{
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.05px;
color: #000000;
opacity: 1;
text-transform: uppercase;
}
.delivery-information__section h3.carrier-information__heading:before{
content: 'Shipment';
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading{
color: #475569;
opacity: 1;
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading{
margin-bottom: 15px !important;
}
.order-tracking__header{
margin-left: -25px;
margin-right: -25px;
margin-top: -30px;
padding: 30px 25px !important;
background-color: #134E4A;
color: #fff;
margin-bottom: 55px !important;
opacity: 1 !important;
}
.order-tracking__header span{
font-family: 'Noto Serif', 'Hind', 'Source Sans Pro', Arial, sans-serif;
color: #FFFFFF;
margin-bottom: 0 !important;
font-size: 24px;
letter-spacing: 1px;
}
.carrier-image.carrier-image__dhl{
width: 72px !important;
height: 72px !important;
border-radius: 0px;
background-color: transparent;
padding: 0 !important;
}
.carrier-image.carrier-image__dhl img{
display: none;
}
.carrier-image.carrier-image__dhl:before{
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-dhl.svg');
width: 72px;
height: 72px;
background-size: 100% 100%;
}
.expanded-timeline__item--first .expanded-timeline__message{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6B7280 !important;
text-transform: capitalize;
margin-bottom: 0 !important;
padding-top: 5px;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:first-child .expanded-timeline__dot{
top: 20px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__dot{
top: 10px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__message {
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 800 !important;
font-size: 16px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6B7280 !important;
text-transform: capitalize;
margin-bottom: 0 !important;
opacity: 1 !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.expanded-timeline__detailed-info{
margin-top: 15px !important;
margin-bottom: 40px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message, .expanded-timeline__detailed-info .expanded-timeline__datetime{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 500 !important;
font-size: 18px !important;
line-height: 20px !important;
letter-spacing: 0em !important;
color: #000000 !important;
opacity: 0.6 !important;
margin-bottom: 0 !important;
text-transform: inherit;
}
.expanded-timeline__detailed-info .expanded-timeline__datetime{
font-size: 16px !important;
line-height: 20px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message{
margin-bottom: 0px !important;
}
.expanded-timeline__line:before{
background-size: 6px 16px !important;
width: 3px !important;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state, .timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
border: 0 !important;
width: 32px !important;
height: 32px !important;
}
.timeline__group--current .hero-image__svg-wrapper svg, .timeline__group--past .hero-image__svg-wrapper svg{
display: none;
}
.timeline__group--current .hero-image__svg-wrapper, .timeline__group--past .hero-image__svg-wrapper{
position: relative;
}
.timeline__group--current .hero-image__svg-wrapper:before, .timeline__group--past .hero-image__svg-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-3-order-tracking.svg');
width: 20px;
height: 20px;
top: -6px;
left: -1px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
background-color: #D0F1EF !important;
}
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
background-color: #D0F1EF !important;
}
.timeline__group--past .hero-image__svg-wrapper svg path{
fill: #134E4A !important;
}
.expanded-timeline__dot.expanded-timeline__dot--inlined{
box-shadow: inset 0 10px 0 #D0F1EF, inset -10px 0 0 #D0F1EF, inset 0 -10px 0 #D0F1EF, inset 10px 0 0 #D0F1EF, inset -7.5px 7.5px 0 #D0F1EF, inset -7.5px -7.5px 0 #D0F1EF, inset 7.5px -7.5px 0 #D0F1EF, inset 7.5px 7.5px 0 #D0F1EF;
border: 4px solid #134E4A;
}
.expanded-timeline__line .status-history__icon-img{
top: 12px !important;
}
.order-tracking__timeline{
padding-bottom: 50px;
}
.order-tracking__timeline .order-tracking__list{
-webkit-padding-start: 16px !important;
padding-inline-start: 15px !important;
}
.expanded-timeline__item .expanded-timeline__dot{
width: 32px !important;
height: 32px !important;
border: 0 !important;
box-shadow: none !important;
background-color: #134E4A;
top: 10px !important;
}
.expanded-timeline__item .expanded-timeline__dot::before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-1-check.svg');
width: 20px;
height: 20px;
top: 5px;
left: 6px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.order-tracking__btn{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 800 !important;
font-size: 17px !important;
line-height: 20px !important;
text-align: center;
color: #4B5563 !important;
}
.order-tracking__btn .chevron:before{
left: 10px !important;
}
.shop-banner.shop-banner--single-column{
justify-content: flex-end !important;
text-align: left !important;
align-items: flex-end !important;
position: relative !important;
height: 100%;
}
.shop-banner__text-wrapper{
justify-content: start !important;
text-align: start !important;
align-items: start !important;
z-index: 5;
padding: 38px 55px;
background: #134E4A !important;
position: relative;
}
.shop-banner__text-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-3-vector.svg');
width: 50%;
height: 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
left: 0;
bottom: 0;
z-index: 1;
}
.shop-banner__text-wrapper .shop-banner__copy, .shop-banner__text-wrapper .shop-banner__cta{
z-index: 3;
position: relative;
}
.shop-banner__text-wrapper .shop-banner__copy{
font-family: 'Noto Serif', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 56px !important;
line-height: 76px;
color: #F9FAFB !important;
text-transform: capitalize;
}
.shop-banner__text-wrapper .shop-banner__copy.shop-banner__copy--secondary{
font-family: 'Hind', 'Source Sans Pro', Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 400 !important;
font-size: 17px !important;
line-height: 20px !important;
color: #F9FAFB !important;
}
.shop-banner__text-wrapper .shop-banner__cta{
background: transparent !important;
margin-top: 30px !important;
display: inline-block!important;
padding: 13px 50px 13px 24px;
color: #FFFFFF !important;
text-transform: capitalize;
font-weight: 700;
font-size: 18px !important;
line-height: 18px;
letter-spacing: 0;
text-align: center;
cursor: pointer;
border-radius: 0;
border: 2px solid #fff;
}
.shop-banner__text-wrapper .shop-banner__cta:after{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-5-button-arrow.svg');
width: 24px;
height: 24px;
background-size: 100% 100%;
background-repeat: no-repeat;
right: 10px;
top: 10px;
z-index: 1;
}
.instagram-widget__header .instagram-widget__username{
font-family: 'Hind', "Source Sans Pro", Arial, sans-serif;
font-size: 18px !important;
line-height: 22px !important;
color: #000 !important;
font-weight: 700 !important;
}
.instagram-widget__text{
font-family: 'Hind', "Source Sans Pro", Arial, sans-serif;
font-size: 14px !important;
line-height: 21px !important;
color: #111827 !important;
font-weight: 400 !important;
}
.instagram-widget__text a{
color: #000 !important;
font-weight: 700 !important;
}
Example 4
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 200;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-Thin.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 200;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-ThinItalic.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 400;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-Regular.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 400;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-Italic.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 300;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-Light.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 300;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-LightItalic.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 500;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-Medium.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 500;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-MediumItalic.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 600;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-SemiBold.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 600;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-SemiBoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 700;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-Bold.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 700;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-BoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: normal;
font-weight: 800;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-ExtraBold.woff") format("woff");
}
@font-face {
font-family: 'Be Vietnam';
font-style: italic;
font-weight: 800;
src: local('Be Vietnam'), url("https://sendv3staging.wpengine.com/fonts/BeVietnam-ExtraBoldItalic.woff") format("woff");
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page{
background-color: #F8F8F8 !important;
}
header.header, footer.footer{
border: 0 !important;
}
footer.footer{
background-color: #F3EEDF !important;
color: #000000;
border: 0 !important;
box-shadow: none !important;
border-radius: 0 !important;
}
footer .footer__address, footer .footer__contact{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #000000 !important;
}
footer .footer__contact a{
text-decoration: none !important;
box-shadow: none !important;
}
.ui-button--borderless.order-tracking__btn, footer .footer-social{
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
background-color: transparent !important;
}
.footer__address-item.footer__address-brand, .footer__contact-title{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em !important;
color: #000000 !important;
opacity: 0.6 !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
display: block !important;
}
.tt-component, .header__home-link, .header__navigation-inner-wrapper {
background-color: #F3EEDF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.tracking-page .tt-component.shop-banner__wrapper, .tracking-page .tt-component.instagram-widget{
padding: 0 !important;
}
.tracking-page .tt-component.instagram-widget{
background-color: #fff !important;
}
.header__toggle-wrapper{
background-color: #F3EEDF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper{
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link{
display: block;
padding: 20px 15px;
background-color: #F3EEDF !important;
border: 0 !important;
box-shadow: none !important;
outline: 0 !important;
text-decoration: none !important;
}
.tt-component, .order-tracking{
padding: 30px !important;
}
.min-hero__estimate{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 35px !important;
line-height: 40px;
text-transform: uppercase;
margin-top: 0 !important;
margin-bottom: 30px !important;
}
.min-hero__estimate-info{
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 20px 30px;
background-color: #000000;
opacity: 1 !important;
color: #FFF6DC;
}
.min-hero__estimate-info .min-hero__estimate-title{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em;
color: #FFF6DC;
opacity: 1 !important;
text-transform: uppercase;
margin-bottom: 0px !important;
}
.min-hero__estimate-info{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em;
color: #000000;
opacity: 0.6;
text-transform: uppercase;
margin-bottom: 55px !important;
}
.min-hero__status{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
background: #000000;
margin-top: 0 !important;
display: inline-block !important;
padding: 22px 43px 22px;
color: #fff;
text-transform: uppercase;
font-weight: 700;
font-size: 12px !important;
line-height: 18px;
letter-spacing: 2px;
width: 230px;
text-align: center;
}
.tt-component hr{
margin-top: 25px;
margin-bottom: 25px;
width: 100%;
opacity: 0.8;
border: 0 !important;
border-bottom: 1.5px solid #c3c5c7 !important;
}
.delivery-information__section, .delivery-information__section{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 20px;
color: #000000;
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading, .order-tracking__header{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 13px;
line-height: 19px;
letter-spacing: 0.15em;
color: #000000;
opacity: 0.6;
text-transform: uppercase;
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading{
margin-bottom: 15px !important;
}
.order-tracking__header{
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 20px 30px !important;
background-color: #000;
color: #000;
margin-bottom: 55px !important;
opacity: 1 !important;
}
.order-tracking__header span{
color: #fff6dc;
margin-bottom: 0 !important;
}
.carrier-image.carrier-image__dhl{
width: 75px !important;
height: 63px !important;
}
.expanded-timeline__item--first .expanded-timeline__message{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 800 !important;
font-size: 14px !important;
line-height: 20px !important;
letter-spacing: 0.15em !important;
color: #000000 !important;
text-transform: uppercase;
margin-bottom: 0 !important;
padding-top: 10px;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:first-child .expanded-timeline__dot{
top: 25px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__dot{
top: -13px !important;
background-color: #C9C9C9 !important;
box-shadow: none !important;
border: 0 !important;
width: 45px!important;
height: 45px!important;
box-shadow: 0 0 6px #0000001a !important;
display: block;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__dot:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-4-order-tracking-4.svg');
width: 25px;
height: 23px;
top: 10px;
left: 12px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__message {
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 800 !important;
font-size: 14px !important;
line-height: 20px !important;
letter-spacing: 0.15em !important;
color: #000000 !important;
text-transform: uppercase;
margin-bottom: 0 !important;
padding-top: 10px;
opacity: 1 !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.expanded-timeline__detailed-info{
margin-bottom: 30px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message, .expanded-timeline__detailed-info .expanded-timeline__datetime{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
letter-spacing: 0em !important;
color: #000000 !important;
opacity: 0.6 !important;
margin-bottom: 0 !important;
text-transform: inherit;
}
.expanded-timeline__detailed-info .expanded-timeline__message{
margin-bottom: 20px !important;
}
.timeline__group--current .hero-image__svg-wrapper svg, .timeline__group--past .hero-image__svg-wrapper svg{
display: none;
}
.timeline__item .hero-image__svg-wrapper:before, .timeline__group--past .hero-image__svg-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-4-order-tracking-1.svg');
width: 24px;
height: 13px;
top: -6px;
left: -1px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--current .hero-image__svg-wrapper:before, .timeline__group--past .hero-image__svg-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-4-order-tracking-1.svg');
width: 24px;
height: 13px;
top: 4px;
left: -2px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--past .hero-image__svg-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-4-order-tracking-2.svg');
width: 45px;
height: 7px;
top: 5px;
left: -14px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--past.timeline__group--last .hero-image__svg-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-4-order-tracking-3.svg');
width: 18px;
height: 15px;
top: 3px;
left: -2px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.expanded-timeline__line:before{
background-size: 2px 13px !important;
width: 2.5px !important;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state, .timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
border: 0 !important;
width: 45px !important;
height: 45px !important;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
background-color: #000000 !important;
}
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
background-color: #C9C9C9 !important;
}
.expanded-timeline__line .status-history__icon-img{
top: 12px !important;
}
.order-tracking__timeline .order-tracking__list{
-webkit-padding-start: 16px !important;
padding-inline-start: 25px !important;
}
.expanded-timeline__item .expanded-timeline__dot{
top: 17px !important;
display: none;
}
.order-tracking__btn{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
text-transform: uppercase;
font-style: normal;
font-weight: 800 !important;
font-size: 14px !important;
line-height: 20px !important;
text-align: center;
letter-spacing: 0.15em;
color: #000000 !important;
}
.shop-banner.shop-banner--single-column{
justify-content: flex-end !important;
text-align: left !important;
align-items: flex-end !important;
position: relative !important;
height: 100%;
}
.shop-banner.shop-banner--single-column::before{
position: absolute !important;
width: 100%;
height: 100%;
content: ' ';
background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%);
z-index: 3;
}
.shop-banner__text-wrapper{
justify-content: start !important;
text-align: start !important;
align-items: start !important;
z-index: 5;
}
.shop-banner__text-wrapper .shop-banner__copy{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 56px !important;
line-height: 68px;
color: #F9FAFB !important;
text-transform: capitalize;
}
.shop-banner__text-wrapper .shop-banner__copy.shop-banner__copy--secondary{
font-family: 'Be Vietnam', 'Source Sans Pro', Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 400 !important;
font-size: 17px !important;
line-height: 20px !important;
color: #F9FAFB !important;
}
.shop-banner__text-wrapper .shop-banner__cta{
background: #F3EEDF !important;
margin-top: 23px !important;
display: inline-block !important;
padding: 22px 43px;
color: #000 !important;
text-transform: uppercase;
font-weight: 700;
font-size: 12px !important;
line-height: 18px;
letter-spacing: 2px;
text-align: center;
cursor: pointer;
border-radius: 0;
}
.instagram-widget__header .instagram-widget__username{
font-family: 'Be Vietnam', "Source Sans Pro", Arial, sans-serif;
font-size: 14px !important;
line-height: 20px !important;
color: #000 !important;
font-weight: 700 !important;
}
.instagram-widget__text{
font-family: 'Be Vietnam', "Source Sans Pro", Arial, sans-serif;
font-size: 14px !important;
line-height: 20px !important;
color: #111827 !important;
font-weight: 400 !important;
}
.instagram-widget__text a{
color: #000 !important;
font-weight: 700 !important;
}
Example 5
@font-face {
font-family: 'Circular Std';
font-style: normal;
font-weight: 400;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-Book.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: italic;
font-weight: 400;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-BookItalic.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: normal;
font-weight: 500;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-Medium.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: italic;
font-weight: 500;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-MediumItalic.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: normal;
font-weight: 700;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-Bold.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: italic;
font-weight: 700;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-BoldItalic.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: normal;
font-weight: 900;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-Black.woff") format("woff");
}
@font-face {
font-family: 'Circular Std';
font-style: italic;
font-weight: 900;
src: local('Circular Std'), url("https://sendv3staging.wpengine.com/fonts/CircularStd-BlackItalic.woff") format("woff");
}
.tracking-page-layout{
max-width: 1140px;
}
.tracking-page{
background-color: #F8F8F8 !important;
}
header.header, footer.footer{
border: 0 !important;
}
footer.footer{
background-color: #FFFFFF !important;
color: #000000;
border: 0 !important;
box-shadow: none !important;
border-radius: 0 !important;
border: 1px solid #BC3081 !important;
}
footer.footer svg{
filter: invert(28%) sepia(34%) saturate(3171%) hue-rotate(294deg) brightness(94%) contrast(94%);
}
footer .footer__address, footer .footer__contact{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 500 !important;
font-size: 14px !important;
line-height: 20px !important;
color: #000000 !important;
}
footer .footer__contact a{
text-decoration: none !important;
box-shadow: none !important;
}
.ui-button--borderless.order-tracking__btn, footer .footer-social{
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
background-color: transparent !important;
}
.footer__address-item.footer__address-brand, .footer__contact-title{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif !important;
font-style: normal !important;
font-weight: 600 !important;
font-size: 17px!important;
line-height: 19px !important;
letter-spacing: 1px !important;
color: #6b7280 !important;
opacity: 1 !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
display: block !important;
}
.tt-component, .header__home-link, .header__navigation-inner-wrapper {
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.tt-component{
border: 1px solid rgba(1, 55, 60, 0.2) !important;
border-radius: 2px !important;
}
.tt-component.order-tracking {
border: 1px solid #BC3081 !important;
border-radius: 2px !important;
}
.tracking-page .tt-component.shop-banner__wrapper, .tracking-page .tt-component.instagram-widget{
padding: 0 !important;
}
.tracking-page .tt-component.instagram-widget{
background-color: #fff !important;
}
.header__toggle-wrapper{
background-color: #FFFFFF !important;
color: #000000;
border-radius: 0 !important;
border: 0 !important;
box-shadow: none !important;
}
.header__navigation-inner-wrapper{
background-color: transparent !important;
padding: 0 !important;
}
.header__menu-link{
display: block;
padding: 20px 15px;
background-color: #bc3081 !important;
border: 0 !important;
box-shadow: none !important;
outline: 0 !important;
text-decoration: none !important;
color: #FFFFFF !important;
}
.tt-component, .order-tracking{
padding: 30px !important;
}
.order-tracking{
padding: 30px 25px 15px !important;
}
.min-hero__estimate{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 40px !important;
line-height: 51px;
text-transform: capitalize;
margin-top: 0 !important;
margin-bottom: 8px !important;
}
.min-hero__header-content{
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 50px 30px;
background-color: #BC3081;
opacity: 1 !important;
color: #FFFFFF;
width: initial;
}
.min-hero__estimate-info{
}
.min-hero__estimate-info .min-hero__estimate-title{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 400 !important;
font-size: 18px !important;
line-height: 24px !important;
letter-spacing: 1px;
color: #FFFFFF;
opacity: 1 !important;
text-transform: uppercase;
margin-bottom: 0px !important;
}
.min-hero__estimate-info{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0.15em;
color: #FFFFFF;
opacity: 1;
text-transform: uppercase;
margin-bottom: 8px !important;
}
.min-hero__status{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
margin-top: 10px !important;
display: inline-block !important;
color: #fff;
text-transform: capitalize;
font-weight: 500;
font-size: 17px !important;
line-height: 28px;
letter-spacing: 0;
position: relative;
padding-left: 35px;
}
.min-hero__status:before{
position: absolute;
left: 0px;
top: 1px;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-3-delivery.svg');
width: 28px;
height: 28px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.tt-component hr{
display: none;
}
.delivery-information__section, .delivery-information__section{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 22px;
color: #0F172A;
}
.delivery-information__section span, .delivery-information__section span{
font-weight: 600;
font-size: 18px;
}
.delivery-information::before{
content: 'OUT FOR DELIVERY';
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 20px;
line-height: 24px;
color: #BC3081;
display: block;
padding: 25px 0 25px;
}
.delivery-information__section{
border: 2px solid #BC3081;
border-radius: 2px;
padding: 20px 24px;
background: #F8FCFC;
margin-bottom: 15px;
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading, .order-tracking__header{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 600;
font-size: 15px;
line-height: 19px;
color: #000000;
opacity: 1;
text-transform: uppercase;
}
.delivery-information__section h3.carrier-information__heading:before{
content: 'Shipment';
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading{
color: #475569;
opacity: 1;
}
.delivery-information h3.delivery-information__heading, .delivery-information__section h3.carrier-information__heading{
margin-bottom: 15px !important;
}
.order-tracking__header{
margin-left: -30px;
margin-right: -30px;
margin-top: -30px;
padding: 30px 30px !important;
background-color: #bc3081;
color: #fff;
margin-bottom: 55px !important;
opacity: 1 !important;
}
.order-tracking__header span{
color: #FFFFFF;
margin-bottom: 0 !important;
font-size: 24px !important;
line-height: 24px !important;
font-weight: 700 !important;
letter-spacing: 1px;
}
.carrier-image.carrier-image__dhl{
width: 72px !important;
height: 72px !important;
border-radius: 0px;
background-color: transparent;
padding: 0 !important;
}
.carrier-image.carrier-image__dhl img{
display: none;
}
.carrier-image.carrier-image__dhl:before{
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-dhl.svg');
width: 72px;
height: 72px;
background-size: 100% 100%;
}
.expanded-timeline__item--first .expanded-timeline__message{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6B7280 !important;
text-transform: capitalize;
margin-bottom: 0 !important;
padding-top: 5px;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:first-child .expanded-timeline__dot{
top: 10px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__dot{
top: 0px !important;
}
.timeline__group--past.timeline__item--distant-past .expanded-timeline__item:last-child .expanded-timeline__message {
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700 !important;
font-size: 18px !important;
line-height: 20px !important;
letter-spacing: 0 !important;
color: #6B7280 !important;
text-transform: capitalize;
margin-bottom: 0 !important;
opacity: 1 !important;
margin-top: 0 !important;
padding-top: 0 !important;
}
.expanded-timeline__detailed-info{
margin-bottom: 30px !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message, .expanded-timeline__detailed-info .expanded-timeline__datetime{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 400 !important;
font-size: 18px !important;
line-height: 24px !important;
letter-spacing: 0em !important;
color: #000000 !important;
opacity: 0.6 !important;
margin-bottom: 0 !important;
text-transform: inherit;
}
.expanded-timeline__detailed-info .expanded-timeline__datetime{
font-size: 14px !important;
line-height: 20px !important;
font-weight: 600 !important;
}
.expanded-timeline__detailed-info .expanded-timeline__message{
margin-bottom: 20px !important;
top: 7px;
position: relative;
}
.expanded-timeline__line:before{
background-size: 2px 13px !important;
width: 2.5px !important;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state, .timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
border: 0 !important;
width: 32px !important;
height: 32px !important;
}
.timeline__group--current .hero-image__svg-wrapper svg, .timeline__group--past .hero-image__svg-wrapper svg{
display: none;
}
.timeline__group--current .hero-image__svg-wrapper, .timeline__group--past .hero-image__svg-wrapper{
position: relative;
}
.timeline__group--current .hero-image__svg-wrapper:before, .timeline__group--past .hero-image__svg-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-5-order-tracking.svg');
width: 20px;
height: 20px;
top: -6px;
left: -1px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.timeline__group--current .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
background-color: #FFEDF7 !important;
}
.timeline__group--past .expanded-timeline__dot.expanded-timeline__dot--grouping-state{
background-color: #FFEDF7 !important;
}
.timeline__group--past .hero-image__svg-wrapper svg path{
fill: #BC3081 !important;
}
.expanded-timeline__dot.expanded-timeline__dot--inlined{
box-shadow: inset 0 10px 0 #FFEDF7, inset -10px 0 0 #FFEDF7, inset 0 -10px 0 #FFEDF7, inset 10px 0 0 #FFEDF7, inset -7.5px 7.5px 0 #FFEDF7, inset -7.5px -7.5px 0 #FFEDF7, inset 7.5px -7.5px 0 #FFEDF7, inset 7.5px 7.5px 0 #FFEDF7;
border: 4px solid #BC3081;
}
.expanded-timeline__line .status-history__icon-img{
top: 12px !important;
}
.order-tracking__timeline{
padding-bottom: 50px;
}
.order-tracking__timeline .order-tracking__list{
-webkit-padding-start: 16px !important;
padding-inline-start: 15px !important;
}
.expanded-timeline__item .expanded-timeline__dot{
top: 12px !important;
}
.expanded-timeline__item .expanded-timeline__dot{
width: 32px !important;
height: 32px !important;
border: 0 !important;
box-shadow: none !important;
background-color: #BC3081;
top: 5px !important;
}
.expanded-timeline__item .expanded-timeline__dot::before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-1-check.svg');
width: 20px;
height: 20px;
top: 5px;
left: 6px;
background-size: 100% 100%;
background-repeat: no-repeat;
}
.order-tracking__btn{
font-family: 'Circular Std', 'Source Sans Pro', Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 800 !important;
font-size: 17px !important;
line-height: 20px !important;
text-align: center;
color: #4B5563 !important;
}
.order-tracking__btn .chevron:before{
left: 10px !important;
}
.shop-banner.shop-banner--single-column{
justify-content: flex-end !important;
text-align: left !important;
align-items: flex-end !important;
position: relative !important;
height: 100%;
}
.shop-banner__text-wrapper{
justify-content: start !important;
text-align: start !important;
align-items: start !important;
z-index: 5;
padding: 38px 55px;
background: #BC3081 !important;
position: relative;
}
.shop-banner__text-wrapper:before{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-5-vector-1.svg');
width: 50%;
height: 100%;
background-size: 100% 100%;
background-repeat: no-repeat;
left: 0;
bottom: 0;
z-index: 1;
}
.shop-banner__text-wrapper:after{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-5-vector-2.svg');
width: 80px;
height: 100px;
background-size: 100% 100%;
background-repeat: no-repeat;
right: -20px;
bottom: 0;
z-index: 1;
}
.shop-banner__text-wrapper .shop-banner__copy, .shop-banner__text-wrapper .shop-banner__cta{
z-index: 3;
position: relative;
}
.shop-banner__text-wrapper .shop-banner__copy{
font-family: 'CircularStd', 'Source Sans Pro', Arial, sans-serif;
font-style: normal;
font-weight: 700;
font-size: 56px !important;
line-height: 76px;
color: #F9FAFB !important;
text-transform: capitalize;
}
.shop-banner__text-wrapper .shop-banner__copy.shop-banner__copy--secondary{
font-family: 'CircularStd', 'Source Sans Pro', Arial, sans-serif;
text-transform: capitalize;
font-style: normal;
font-weight: 400 !important;
font-size: 17px !important;
line-height: 20px !important;
color: #F9FAFB !important;
}
.shop-banner__text-wrapper .shop-banner__cta{
background: transparent !important;
margin-top: 30px !important;
display: inline-block!important;
padding: 13px 50px 13px 24px;
color: #FFFFFF !important;
text-transform: capitalize;
font-weight: 700;
font-size: 18px !important;
line-height: 18px;
letter-spacing: 0;
text-align: center;
cursor: pointer;
border-radius: 0;
border: 2px solid #fff;
}
.shop-banner__text-wrapper .shop-banner__cta:after{
position: absolute;
content: ' ';
background-image: url('https://www.sendcloud.com/wp-content/templates/modern-template-5-button-arrow.svg');
width: 24px;
height: 24px;
background-size: 100% 100%;
background-repeat: no-repeat;
right: 10px;
top: 10px;
z-index: 1;
}
.instagram-widget__header .instagram-widget__username{
font-family: 'Circular Std', "Source Sans Pro", Arial, sans-serif;
font-size: 18px !important;
line-height: 22px !important;
color: #000 !important;
font-weight: 700 !important;
}
.instagram-widget__text{
font-family: 'Circular Std', "Source Sans Pro", Arial, sans-serif;
font-size: 14px !important;
line-height: 21px !important;
color: #111827 !important;
font-weight: 400 !important;
}
.instagram-widget__text a{
color: #000 !important;
font-weight: 700 !important;
}
Related articles: