/*

Theme Name: X – Suonentieto Oy
Theme URI: https://theme.co/x/
Author: CTA / Jani Autio
Author URI: https://theme.co/
Description: Make all of your modifications to X in this child theme.
Version: 1.0.0
Template: x

*/



/*
 * Yläpalkin perusväri
 */
.suonentieto-top-menu {
    background: #74204f;
    color: #fff;
    position: relative;
    z-index: 9999;
}


/*
 * Valikko oikealle
 */
.suonentieto-top-menu-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/*
 * UL
 */
.suonentieto-top-menu-items {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}


/*
 * Valikkokohdat
 */
.suonentieto-top-menu-items > li {
    position: relative;
    margin: 0;
    z-index: 1;
}


/*
 * Kolmannesta valikkokohdasta eteenpäin pinkki tausta
 *
 * 1 = Verkkokauppa
 * 2 = Etsi
 * 3 = Asiakastuki
 * 4 = Kirjaudu
 */
.suonentieto-top-menu-items > li:nth-child(n+3) {
    background: #b20e4f;
}


/*
 * Vino värinvaihto ennen kolmatta kohtaa
 */
.suonentieto-top-menu-items > li:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -28px;
    width: 30px;
    background: #b20e4f;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: -1;
}


/*
 * Linkit
 */
.suonentieto-top-menu-items > li > a {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 32px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}


/*
 * Hover – pidetään värimaailma yhtenäisenä
 */
.suonentieto-top-menu-items > li:nth-child(-n+2) > a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.suonentieto-top-menu-items > li:nth-child(n+3) > a:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
}