body[template="this-order"] {
    background:var(--theme-light);
    color:var(--theme-dark);
}

body[template="this-order"] .gutters {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body[template="this-order"] .top {
    display:flex;
    text-align:center;
    justify-content: space-evenly;
    
}
body[template="this-order"] .top .left h1 {
    color:var(--theme-color-1);
}
body[template="this-order"] .top * {
    font-family:var(--font-accent);
}
body[template="this-order"] .top .left, body[template="this-order"] .top .right {
    width:50%;
}
body[template="this-order"] .top h3 {
    letter-spacing: 2px;
    color: var(--theme-gray-1);
}
body[template="this-order"] .top h2 {
    
}
body[template="this-order"] hr {
    width:100%;
}
body[template="this-order"] .top hr {
    margin:0;
    width:1px;
}
body[template="this-order"] .completion-estimate {
    text-align: center;
}
body[template="this-order"] h3 {
    font-family: var(--font-body), sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
}
body[template="this-order"] .mid {
    text-align:center;
}
body[template="this-order"] hr {
    border-color:var(--theme-gray-2);
}

body[template="this-order"] .pt-count {
    font-size:24vw;
}

body[template="this-order"] .bottom {
    text-align:center;
    display:flex;
    flex-direction: column;
}
body[template="this-order"] .confirmation {
    color:var(--theme-color-1);
}





body[template="this-order"] .tracker  { 
}
body[template="this-order"] .dot .inner  {
    border: 1px solid white;
    background: var(--theme-dark);
    height: 12px;
    width: 12px;
    border-radius: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    bottom: 0;
}
body[template="this-order"] .step.active .dot .inner  {
    background: var(--theme-color-1);
}
body[template="this-order"] .step {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:32px;
}
body[template="this-order"] .step .num {
    margin-top:16px;
}
body[template="this-order"] .dot .num  {
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    color:var(--theme-gray-1);
    margin: auto;
    top: 24px;
    font-size:12px;
    font-family:var(--font-body);
}

body[template="this-order"] .dots {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding-right:16px;
    padding-left:16px;
    margin-bottom:32px;
    position:relative;
}
body[template="this-order"] .dots .dot {
    height: 13px;
    width: 13px;
    position: relative;
    background: #707070;
    border-radius: 100%;
}
body[template="this-order"] .dots:before {
    content:' ';
    display:block;
    position:absolute;
    background:var(--theme-gray-1);
    width:100%;
    height:1px;
    bottom: 0;
    top: 0;
    margin: auto;
}