﻿* {
    margin: 0;
    padding: 0
}

.subs_tabs {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 10px 0 10px 0;
    overflow-x: scroll;
    overflow-y: hidden;
}   

.subs_tabs li {
    margin-left: 15px
}

.subs_tabs li:first-child {
    margin-left: 0
}

.subs_tabs li a {
    height: 50px;
    background: #f0f2f6;
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: currentColor;
    width: max-content;
}

.spl_item {
    background: #f0f2f6;
    box-shadow: 0 4px 4px rgba(0,0,0,.25);
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    transition: all ease .3s
}

.subs_tabs li a.active {
    background-color: #1b1b1b;
    color: #fff
}

.subs_tabs li a:hover {
    box-shadow: 0 4px 4px rgba(0,0,0,.15)
}

.spl_item.active {
    background: linear-gradient(180deg,#90dc6c 0,#689e4e 100%);
    color: #fff;
    cursor: pointer
}

.spl_item:hover {
    box-shadow: 0 4px 4px rgba(0,0,0,.15);
    cursor: pointer;
}

.spl_item_info {
    border-bottom: 1px solid rgba(81,82,83,.21);
    padding: 10px
}
.spl_item_info small {
    height: 58px;
    display: block;
    overflow-y: scroll;
    line-height: 18px;
}
.subs_plans h2 {
    text-transform: uppercase;
    font-weight: 700 !important
}

.spl_item_info h4 {
    text-transform: uppercase;
    font-weight: 700 !important;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.subs_plans h2 {
    margin: 0px auto 20px;
    font-size: 24px;
    padding-top: 20px;
    border-top: 1px solid #dedede
}

.spl_item_info p {
    margin-bottom: 0;
    height: 75px;
    overflow-y: scroll;
}

.spl_item_price {
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 700;
    /*text-align: right*/
}

.spl_item .sub-option-row {
    padding-left: 5px;
}

.spl_item_price small {
    margin-right: 5px
}

.sub-option-row .upper_cmt h5 {
    margin-left: 10px;
}

.section_title {
    font-weight: 700 !important;
}

.spl_item_img {
    background-color: white;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.spl_item_img img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    object-position: center;
}
.spl_item_price.spl_item_message {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width:1366px) {
    .subs_tabs {
        padding: 10px 0 15px 0;
        overflow-x: scroll;
        overflow-y: hidden;
    }
}