/* Tab */
.tab-wrapper {
    background: #fff;
    border-radius: 10px;
}

.tab-wrapper .tab-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tab-wrapper .tab-btns .btn {
    border: none;
    outline: none;
    background: #fff;
    color: #0098DA;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: 200ms linear;
}

.content .list-group-item{
    margin-bottom: 10px;
    border: 0;
    border-radius: 3px;
}

.content .list-group-item label{
    font-size: 12px;
}

.trek-info-li p{
    font-size: 12px;
    color: #000;
}

.tab-wrapper .tab-btns .tab-btn.active {
    background: #0098DA;
    color: #fff;
}

.tab-wrapper .tab-btns .tab-btn {
    padding: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.tab-wrapper .tab-btns .tab-btn:first-child {
    border-top-left-radius: 10px;
}

.tab-wrapper .tab-btns .tab-btn:last-child {
    border-top-right-radius: 10px;
}

.tab-wrapper .tab-contents {
    height: auto;
}


.tab-wrapper .tab-contents .list-group::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.tab-wrapper .tab-contents .list-group::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px grey;
    border-radius: 10px;
}

/* Handle */
.tab-wrapper .tab-contents .list-group::-webkit-scrollbar-thumb {
    background: #0098DA;
    border-radius: 10px;
}

/* Handle on hover */
.tab-wrapper .tab-contents .list-group::-webkit-scrollbar-thumb:hover {
    background: #009eb3;
}

.tab-wrapper .tab-contents .list-group {
    height: auto;
    overflow-y: auto;
    /* margin-top: 10px; */
}

.tab-wrapper .tab-contents h4 {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.tab-wrapper .tab-contents p {
    letter-spacing: 0.15px;
}

/* show/hide content */
.tab-contents .content {
    display: none;
}

.tab-contents .content.active {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 400ms;
    animation-duration: 400ms;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}