/* Minification failed. Returning unminified contents.
(18,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(19,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(34,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(51,22): run-time error CSS1039: Token not allowed after unary operator: '-primary-u-white'
(80,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(81,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(105,23): run-time error CSS1039: Token not allowed after unary operator: '-font-light'
(114,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(123,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(165,32): run-time error CSS1039: Token not allowed after unary operator: '-black'
(175,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(186,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(205,17): run-time error CSS1039: Token not allowed after unary operator: '-black'
(211,17): run-time error CSS1039: Token not allowed after unary operator: '-black'
(280,28): run-time error CSS1039: Token not allowed after unary operator: '-base'
(282,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(290,28): run-time error CSS1039: Token not allowed after unary operator: '-base'
 */
.index {
    float: right;
    width: 100%;
    position: relative;
    min-height: 100vh;
}
.package-item{
    float: right;
    position: relative;
}
.package-item.selectable{
    cursor: pointer;
}
.package-item .package-content{
    float: right;
    width: 100%;
    position: relative;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    padding: 30px;
    overflow: hidden;
}
.package-item .package-content:before{
    content: "";
    width: 60px;
    height: 8px;
    position: absolute;
    bottom: 0;
    border-radius: 0;
    opacity: 0;
    transition: all .3s;
    left: 0;
    z-index: 1;
    background-color: var(--primary);
}
.package-item.selectable input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    right: 0;
}
.package-item.selectable:hover .package-content:before, .package-item.selectable input:checked ~ .package-content:before {
    width: 100%;
    opacity: 1;
    border-radius: 0;
    transition: all .3s
}
.package-item .package-content .bg {
    position: absolute;
    content: '';
    background: var(--primary-u-white);
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: .8s ease;
    z-index: -2;
}
.package-item.selectable:hover .package-content .bg, .package-item.selectable input:checked ~ .package-content .bg {
    height: 100%;
    top: 0;
    transition: .8s ease
}
.package-item .package-content.loading, .package-item .package-content.message{
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}
.package-item.pre-factor .package-content.content, .package-item.pre-factor .package-content.message {
    display: none;
}

.package-item .package-content .title{
    float: right;
    width: 100%;
    padding-right: 18px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 900;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    text-align: center;
    position: relative;
}

.package-item.mini .package-content .title{
    height: 40px;
    line-height: 40px;
    font-size: 17px;
}

.package-item.mini .package-content .discount{
    float: right;
    width: 100%;
    position: absolute;
    bottom: 10px;
    right: 0;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: var(--font-light);
}

.package-item .package-content .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%;
}
.package-item .package-content > .icon{
    float: right;
    width: 100%;
    color: var(--primary);
    font-size: 60px;
    text-align: center;
    position: relative;
    padding: 30px 0;
}
.package-item.mini .package-content > .icon{
    font-size: 45px;
    padding: 25px 0;
}
.package-item .package-content .price-con {
    margin-bottom: 20px;
    padding-bottom: 20px;
    float: right;
    width: 100%;
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.package-item .package-content .price{
    float: right;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-item .package-content .price .value-con{
    float: right;
    width: 160px;
}
.package-item .package-content .price .value-con .price-value-con{
    width: unset;
    position: relative;
}
.package-item .package-content .price.price-discount .value-con .price-value-con:after{
    content: "";
    display: block;
    width: 100%;
    border-top: 2px solid var(--black);
    height: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(9deg);
}
.package-item .package-content .price .value-con .value{
    float: right;
    width: auto;
    color: var(--primary);
    font-size: 27px;
    text-align: center;
    position: relative;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
}
.package-item .package-content .price .value-con .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;
}
.package-item .package-content .price .slash{
    float: right;
    width: 40px;
    text-align: center;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
}

.package-item .package-content .price.price-discount .value-con .value{
    color: var(--black);
    height: 30px;
    line-height: 30px;
    font-size: 20px;
}
.package-item .package-content .price.price-discount .value-con .unit{
    color: var(--black);
    font-size: 10px;
    height: 30px;
}
.package-item .package-content .price.price-discount .slash{
    height: 30px;
    line-height: 30px;
    font-size: 18px;
}
.package-item .package-content .price .per-month{
    float: right;
    width: 70px;
    font-size: 16px;
    text-align: center;
    font-weight: 900;
    height: 40px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-item .package-content .price.price-discount .per-month{
    height: 30px;
}

.package-item.pre-factor .package-content .price .value-con{
    float: right;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-item.pre-factor .package-content .price .slash{
}
.package-item.pre-factor .package-content .price .per-month{
    float: right;
    width: calc(50% - 40px);
}
.package-item .package-content .options{
    float: right;
    width: 100%;
    margin-bottom: 20px;
}
.package-item .package-content .national-num{
    float: right;
    width: 100%;
    margin-bottom: 20px;
}
.package-item .package-content .options .option{
    float: right;
    width: 100%;
    text-align: center;
    font-weight: 200;
    padding: 10px 0;
    font-size: 16px;
}
.package-item .package-content .options .option.deactive{
    text-decoration: line-through;
}

.package-item button .content {
    padding-right: 50px;
}
.package-item button .content i{
    font-size: 17px;
    width: 35px;
    margin: 3px;
    height: 43px;
    line-height: 41px;
    background-color: var(--base);
    padding-right: 7px;
    color: var(--white);
}
.package-item button .content i:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--base);
    right: 9px;
    transform: skew(20deg);
    z-index: -1;
    width: 100%;
}
