* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Renault Life';
}

header {
    padding: 0 60px;
    height: 90px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DBDBDB;
}

header h2.name {
    font-family: 'NouvelRBold';
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

header .logo {
    height: 58px;
}

header .steps .link {
    font-family: 'NouvelRRegular';
    font-size: 29px;
    margin-right: 83px;
}

header .steps .link.disabled {
    color: #B5B5B5;
    font-weight: 400;
}

header .steps .link.active {
    color: #000000;
    border-bottom: 2px solid #888;
    font-weight: 400;
    padding-bottom: 26px;
}

header .steps .link:hover {
    text-decoration: none;
}

.steps-mobile {
    height: 48px;
    background-color: #fff;
    border-bottom: 1px solid #DBDBDB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.steps-mobile .link {
    padding: 11px;
    text-align: center;
    display: inline-block;
    width: 24%;
    font-size: 16px;
}

.steps-mobile .link.link.active {
    color: #000000;
    border-bottom: 2px solid #888;
    font-weight: 400;
}

.steps-mobile .link.disabled {
    color: #B5B5B5;
    font-weight: 400;
}

.steps-mobile .link:hover {
    text-decoration: none;
}

.site-ajax-loader {    
  background:rgba(0,0,0,0.6);
  /*background: rgba(0, 0, 0, 0);*/
  cursor: wait;
  /*cursor: url(../images/general/icon.png), auto;*/
  /*background-image: url(../images/general/logo.png);
    background-repeat:no-repeat;
    background-position: center center;*/
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: none;
}

.site-ajax-loader-trans {
    background: rgba(0, 0, 0, 0);
    cursor: wait;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: none;
}

@media(orientation:portrait) {
    header {
        height: 55px;
        padding: 0 20px;
    }
    header .name {
        font-size: 14px;
    }
    header .logo {
        height: 31px;
    }
}

@media screen and (max-width:992px) {
    header .steps {
        display: none;
    }
    .steps-mobile {
        display: flex;
    }
}

.fa-chevron-right:before {
    content: "\f054";
    color: #FFF;
}