.model-profile-tabs,
.search-tabs {
    margin-bottom: 20px;
}

.model-profile-tabs-item,
.search-tabs-item {
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
    color: #eee;
    position: relative;
    background: #46185f;
    padding: 5px;
    border-radius: 5px;
    transition: all .3s ease;
}

.model-profile-tabs-item:last-child,
.search-tabs-item:last-child {
    margin-right: 0;
}

.model-profile-tabs-item:hover,
.search-tabs-item:hover {
    color: #FE4066;
}

.model-profile-tabs-item.tabs-item-current,
.search-tabs-item.tabs-item-current {
    color: #FE4066;
}

.model-profile-tabs-item.tabs-item-current:after,
.search-tabs-item.tabs-item-current:after {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 10px;
    border-top-color: #46185f;
    content: '';
    pointer-events: none;
}


.tab-icon-webcam {
    background: url("/static/icons/tab-icon-webcam1.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 3px;
}

.tab-icon-photos {
    background: url("/static/icons/tab-icon-photos1.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 3px;
}

.tab-icon-videos {
    background: url("/static/icons/tab-icon-videos1.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 3px;
}

.tab-icon-models {
    background: url("/static/icons/tab-icon-models.png") top left no-repeat;
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 3px;
}


@media all and (min-width: 340px) and (max-width: 500px) {

    .model-profile-tabs-item {
        margin-right: 10px;
        font-size: 12px;
    }
}

@media all and (min-width: 0) and (max-width: 340px) {

    .model-profile-tabs-item {
        margin-right: 0;
        font-size: 11px;
    }
}