/*# source 1 1 CSS\landing-pages\fast-track.css */

.fast-track-container {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
}

.fast-track-box {
    box-sizing: border-box;
    margin-bottom: 4%;
    padding-bottom: 1%
}

.fast-track {
    display: inline-block;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.0625em;
    text-transform: uppercase;
    color: #000;
    transform: translate3d(0, 0, 0);
    border-bottom: 0;
    text-decoration: none;
    padding: 0.625em 0 0.3125em;
    font-size:14px;
}

.link-hover,
.left-hover {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}

.link-hover:before,
.left-hover:before {
    content: "";
    position: absolute;
    /* z-index: -1; */
    width: 0%;
    right: auto;
    bottom: 0;
    background: #000;
    padding-bottom: 2px;
    -webkit-transition-property: width;
    transition-property: width;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fast-track__white {
    color: #fff;
}

.fast-track__white:before {
    background: #fff;
}

.link-hover:before {
    transform: translate(-50%);
    left: 50%;
}

.left-hover:before {
    transform: translate(-1%);
    left: 0;
}

.link-hover:hover:before,
.link-hover:focus:before,
.link-hover:active:before,
.left-hover:hover:before,
.left-hover:focus:before,
.left-hover:active:before {
    width: 100%;
}

.region-UK .promo-price {
    display: block;
}

.promo-price {
    color: initial;
    margin: 0;
    line-height: 24px;
    position: absolute;
    right: 0.65em;
    top: 0.65em;
    font-weight: 500;
    font-size: 20px;
    display: none;
    text-align: right;
    z-index:1;
}
.promo-price strong { 
    font-size: 24px;
}

.promo-price.promo-price__left {
    right: auto;
    left: 0.65em;
    text-align: left;
}

@media (min-width: 701px)and (max-width:1200px) {
    .promo-price {
        font-size: 1.8vw;
    }
    .promo-price strong {
        font-size: 2vw;
    }
}

@media (max-width: 700px) {
    
    .link-hover:before {
        content: none;
    }
    
    /*Update: Mandeep wants the underline gone*/
    /*.mob-links .links-section a span,
    .fast-track {
        border-bottom: 2px solid black;
    }
    .fast-track__white {
        color: white;
        border-bottom: 2px solid white;
    }*/
    .links-section {
        width: 100%;
        display: inline-block;
    }
    .links-section ul {
        width: 49%;
        height: auto;
        float: left;
        clear: right;
        text-align: center;
    }
    .links-section ul:nth-child(1) {
        border-right: solid 1px #ccc;
    }
    .links-section ul li {
        font-size: 100%;
        font-weight: 500;
        margin: 7%;
    }
    .links-section ul li a {
        color: #000;
        display: block;
        padding: 2% 1%;
        text-transform: uppercase;
    }
    .promo-price {
        font-size: 14px;
        line-height: 18px;
    }
    .promo-price strong {
        font-size: 16px;
    }
    .promo-price {
        right: 6%;
        top: 2%;
    }
    .promo-price.promo-price__left {
        left: 6%;
    }
}

@media (max-width: 460px) {
    .links-section ul li {
        margin: 0;
    }
    .links-section li {
        padding: 3%;
    }
}