/* 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'
(54,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(55,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(67,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(68,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(83,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(92,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(111,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(122,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(170,28): run-time error CSS1039: Token not allowed after unary operator: '-base'
(172,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(173,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
 */
#pricing {
    float: right;
    width: 100%;
    padding: 100px 5%;
}
#pricing > .title{
    float: right;
    width: 100%;
    color: var(--primary);
    position: relative;
    padding-right: 50px;
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 30px;
}

#pricing > .p-header{
    float: right;
    width: 100%;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

#pricing > .title:before{
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    right: 0;
    top: calc((100% - 3px) / 2);
    background-color: var(--primary);
}

#pricing > .description{
    float: right;
    width: 100%;
    font-weight: 700;
    font-size: 35px;
}
#pricing .packages-con{
    float: right;
    width: 100%;
}
#pricing .packages-con .item-con{
    float: right;
    width: 100%;
    padding: 20px;
}
#pricing .packages-con .item-con .item{
    float: right;
    width: 100%;
    position: relative;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    padding: 30px 30px 30px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

#pricing .packages-con .item-con .item .title{
    float: right;
    width: 100%;
    padding: 0 19px 0 10px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 900;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    position: relative;
}

#pricing .packages-con .item-con .item .title:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--primary);
    right: 9px;
    transform: skew(20deg);
    z-index: -1;
    width: 100%;
}
#pricing .packages-con .item-con .item .icon{
    float: right;
    width: 100%;
    color: var(--primary);
    font-size: 60px;
    text-align: center;
    position: relative;
    padding: 30px 0;
}
#pricing .packages-con .item-con .item .price{
    float: right;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
#pricing .packages-con .item-con .item .price .value{
    float: right;
    width: auto;
    color: var(--primary);
    font-size: 30px;
    text-align: center;
    position: relative;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
}
#pricing .packages-con .item-con .item .price .unit{
    float: right;
    width: 20px;
    color: var(--primary);
    font-size: 12px;
    text-align: center;
    font-weight: 900;
    height: 40px;
    line-height: 20px;
    writing-mode: sideways-lr;
}
#pricing .packages-con .item-con .item .price .per-month{
    float: right;
    width: auto;
    font-size: 16px;
    text-align: center;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
}
#pricing .packages-con .item-con .item .price .slash{
    float: right;
    width: auto;
    text-align: center;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
    margin: 0 10px;
    font-size: 22px;
}
#pricing .packages-con .item-con .item .options{
    float: right;
    width: 100%;
    margin-bottom: 20px;
}
#pricing .packages-con .item-con .item .options .option{
    float: right;
    width: 100%;
    text-align: center;
    font-weight: 200;
    padding: 10px 0;
    font-size: 16px;
}
#pricing .packages-con .item-con .item .options .option.deactive{
    text-decoration: line-through;
}
#pricing .period-discount {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 6px;
    background-color: var(--base);
    margin: 5px;
    border-radius: var(--border-radius-base);
    color: var(--white);
    height: 15px;
    line-height: 16px;
    font-weight: 700;
}
@media (max-width: 1399.98px) {
}
@media (max-width: 699.98px) {
}
@media (min-width: 700px)  and (max-width: 1099.98px) {
}
@media (min-width: 1300px)  and (max-width: 1499.98px) {
}

