/*@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');

* {
    list-style: none;
    font-family: 'Neue Kabel', sans-serif;
    font-size: 13px;
    box-sizing: border-box;
}

.tabs-wrap {
    width: auto;
    padding: 0;
    margin-left: -15px;
    margin-bottom: -10px;
}

.tabs-list {
    display: flex;
    justify-content: flex-start;
}

.tab-item {
  width: auto;
    height: auto;
    text-align: center;
    background: #e9ecf1;
    border-right: 0.5px solid #1E3949;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-item:first-child {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-left: 0;
    border: 1px solid #1E3949;
}

.tab-item:last-child {
    border-right: 0;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border: 1px solid #1E3949;
}

.tab-item:hover,
.tab-item.active {
    background: #F2721C;
    color: #fff;
}
.tab-item.active {
    font-weight: bold;
}


