/* Minification failed. Returning unminified contents.
(9,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(32,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(64,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(65,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(71,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(73,23): run-time error CSS1039: Token not allowed after unary operator: '-font-bold'
(84,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(103,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-white'
(107,23): run-time error CSS1039: Token not allowed after unary operator: '-font-bold'
(116,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(118,23): run-time error CSS1039: Token not allowed after unary operator: '-font-bold'
 */
#system {
    float: right;
    width: 100%;
    padding: 100px 15%;
}
#system > .title{
    float: right;
    width: 100%;
    color: var(--primary);
    position: relative;
    padding-right: 50px;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 30px;
}

#system > .p-header{
    float: right;
    width: 100%;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

#system > .title:before{
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    right: 0;
    top: calc((100% - 3px) / 2);
    background-color: var(--primary);
}

#system > .description{
    float: right;
    width: 100%;
    font-weight: 700;
    font-size: 35px;
}
#system .packages-con{
    float: right;
    width: 100%;
}
#system .packages-con .pack-con{
    float: right;
    width: 100%;
    margin-bottom: 20px;
}
#system .packages-con .pack-con .item-con{
    float: right;
    width: 100%;
    padding: 20px;
}

#system .packages-con .sys-price{
    float: right;
    width: 100%;
}
#system .packages-con .sys-price .systems-con{
    float: right;
    width: 100%;
    position: relative;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    padding: 30px;
}
#system .packages-con .sys-price .systems-con .title{
    float: right;
    width: 100%;
    color: var(--primary);
    position: relative;
    font-weight: var(--font-bold);
    font-size: 17px;
    margin-bottom: 15px;
    text-align: center;
}
#system .packages-con .sys-price .systems-con .item-con{
    float: right;
    width: 100%;
    position: relative;
    font-weight: 300;
    padding: 10px 0 10px 15px;
    border-radius: var(--border-radius-base);
    background-color: #f5f5f5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}
#system .packages-con .sys-price .systems-con.modules .item-con{
    display: none;
}
#system .packages-con .sys-price .systems-con:not(.modules) .item-con{
    cursor: pointer;
}

#system .packages-con .sys-price .systems-con .item-con:not(:last-of-type){
    margin-bottom: 10px;
}

#system .packages-con .sys-price .systems-con:not(.modules) .item-con:hover, #system .packages-con:not(.modules) .sys-price .systems-con .item-con.selected{
    background-color: var(--primary-white);
}

#system .packages-con .sys-price .systems-con .item-con.active{
    font-weight: var(--font-bold);
}
#system .packages-con .sys-price .price-con{
    position: sticky;
    top: 120px;
}
#system .packages-con .sys-price .price-title{
    float: right;
    width: 100%;
    color: var(--primary);
    position: relative;
    font-weight: var(--font-bold);
    font-size: 17px;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 1099.98px) {
    #system {
        padding: 100px 5%;
    }
}
@media (min-width: 1300px)  and (max-width: 1499.98px) {
    #system {
        padding: 100px 10%;
    }
}

