* {
    margin: 0;
    padding: 0;
    cursor: pointer;
    font-family: "Avenir Book", Helvetica, sans-serif;
}

ul {
    list-style-type: none;
}

a img {
    border: none;
}

#ad {
    background-color: #FFFFFF;
}


/* ===== lifestyle image ===== */

#logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 323px;
    background-image: url("images/160x600_image.png");
}


/* ===== border ===== */

#border {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: solid 1px black;
    pointer-events: none;
}


/* ===== product information & cta ===== */

.feed_content .items .item {
    position: relative;
}

#product_details {
    position: absolute;
    z-index: 2;
    top: 498px;
    left: 10px;
    width: 140px;
    height: 90px;
    text-align: center;
}

.item {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.item_info {
    vertical-align: middle;
    text-align: center;
    width: 170px;
    height: 90px;
    line-height: 11px;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.item_name {
    margin-bottom: auto;
}

.price {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 26px 0 0 0;
}

.item_price {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.on_sale {
    text-decoration: line-through;
    font-size: 12px;
    line-height: 7px;
}

.sale_price {
    color: #c01422;
    font-weight: 100;
    font-size: 18px;
    padding: 0 0 0 2px;
}

.item_cta {
    margin: 12px 0 0 25px;
    width: 90px;
    height: 23px;
    background-color: #000;
    color: #fff;
    line-height: 24px;
    font-size: 10px;
    text-align: center;
}


/* ===== % off element ===== */

.discount {
    position: absolute;
    left: -6px;
    top: -180px;
    font-size: 13px;
    line-height: 13px;
}

.bubble {
    position: relative;
    top: 8px;
    width: 46px;
    height: 34px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-style: italic;
    background-color: #c01422;
    border-radius: 40px;
    display: block;
    padding: 10px 0 0 0;
}


/* ===== product image ===== */

#product_slider {
    position: absolute;
    top: 360px;
    left: 2px;
    height: 130px;
    width: 156px;
}

#product_slider .items_viewport {
    width: 156px;
}

#product_slider .viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* ===== navigation arrows ===== */

.nav_arrows {
    position: absolute;
    z-index: 99;
    top: 166px;
    left: 0px;
}

.nav_arrows li {
    position: absolute;
    top: 0;
}

.nav_arrows li.nav_previous {}

.nav_arrows li.nav_next {
    left: 136px;
}

.nav_arrows li a {
    display: block;
    text-indent: -999em;
    width: 20px;
    height: 23px;
    background-size: 8px;
    background-position: center;
    background-repeat: no-repeat;
}

.nav_arrows li.nav_previous a {
    background-image: url("images/prev.png");
}

.nav_arrows li.nav_next a {
    background-image: url("images/nxt.png");
}