﻿.crossedText {
    color: red;
    text-decoration: line-through;
}

.tableJustifyAround {
    display: flex;
    justify-content: space-around;
    flex-flow: row wrap;
}

.pricingSubText {
    color: rgba(133, 139, 160, 1);
    font-size: 0.75rem;
}

.pricingTrText {
    font-weight: 500;
}

.spanShadow {
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.packTitle {
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
}

.packSubTitle {
    font-size: 0.5rem;
}

.packBtn {
    border-radius: 10px;
    padding: 2% 10%;
    margin-top: 5%;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}

.discountPackInfo {
    position: absolute;
    right: -10%;
    top: -10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    border-radius: 100%;
    background-color: #167D0D;
    color: white;
    z-index: 10;
    height: 3.5rem;
    width: 3.5rem;
    font-size: 0.8rem;
    animation: zoom-in-out 1.5s linear infinite both;
}


.finalPrice {
    animation: zoom-in-out 1.5s linear infinite both;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pricingInfoBtn {
    position: absolute;
    top: 2%;
    right: 2%;
    border-radius: 100%;
    width: calc(0.8vw + 0.8vh);
    height: calc(0.8vw + 0.8vh);
    font-size: calc(0.5vw + 0.5vh);
    border: 0px solid black;
    background: black;
    color: white;
}

.tabPadding{
    margin-left: 2.5%;
}