﻿* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.visibility-hide {
    visibility: hidden !important;
}
.container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    margin: 0% auto;
    padding: 1% 0%;
}

    .container .price-menu {
        width: 270px;
        height: 43em;
        max-height: 100%;
        margin: 20px 05px;
        display: flex;
        padding: 10px 05px;
        text-align: center;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        background-color: #2e1a4e;
        border-radius: 3px;
        box-shadow: 0 0 2px #999;
        position: relative;
    }

        .container .price-menu .heading {
            color: white;
            width: 100%;
            font-weight: 500;
            font-size: 21px;
            margin: 0;
            padding: 12px 0
        }

        .container .price-menu .btn {
            background: #0096ff;
            padding: 6px 25px;
            border-radius: 20px;
            color: #fff;
            width: auto;
            position: none;
            margin: 10px 20px;
            border: none;
            font-weight: 500;
            font-size: 14px;
            pointer-events: none;
        }

        .container .price-menu .btn-down {
            background: #0096ff;
            padding: 6px 55px;
            border-radius: 20px;
            color: #fff;
            width: auto;
            margin: -4px 0px 0px 0px;
            border: none;
            font-size: 18px;
            font-weight: bold;
        }

        .container .price-menu .btn-down-1 {
            background: #0096ff;
            padding: 6px 55px;
            border-radius: 20px;
            color: #fff;
            width: auto;
            border: none;
            font-size: 18px;
            font-weight: bold;
            position: absolute;
            bottom: 05.5%;
        }

        .container .price-menu ul {
            text-align: left;
            width: 100%;
            padding: 10px 0 12px 15px;
            list-style: none
        }

            .container .price-menu ul li {
                font-size: 14px;
                margin-top: 12px;
                line-height: 18px;
                font-weight: 500;
                color: #fff
            }

                .container .price-menu ul li:before {
                    content: "\f14a";
                    font-family: "font awesome 5 free"
                }

                .container .price-menu ul li.disable:before {
                    content: "\f146";
                    font-family: "font awesome 5 free"
                }

                .container .price-menu ul li.disable {
                    color: #959595;
                    font-weight: 400;
                    font-size: 14px;
                    text-decoration: line-through
                }


        .container .price-menu .buy {
            background: #FFDC80;
            border: none;
            font-size: 13px;
            margin: 0% 0% 0% -15%;
            color: rgb(0, 0, 0);
            text-transform: uppercase;
            padding: 6px 15px;
            border-radius: 3px;
            border-bottom: 3px solid #0072c1;
            cursor: pointer;
            position: absolute;
            bottom: -2%;
        }

        .container .price-menu .price {
            display: block;
            margin: -5px 5px 15px 5px;
            width: 100%;
            background-color: #1617257c;
            border-radius: 2px;
            text-align: center;
            padding: 10px 5px;
        }

            .container .price-menu .price .offline {
                color: rgb(255, 255, 255);
                font-size: 15px;
                width: 100%;
                padding: 0%;
                margin: 5px;
            }

            .container .price-menu .price .online {
                color: rgb(255, 255, 255);
                font-size: 16px;
                font-weight: 700;
                width: 100%;
                padding: 0%;
                margin: 5px;
            }

    .container .price-menu-main {
        width: 270px;
        height: 43em;
        max-height: 100%;
        margin: 20px 05px;
        display: flex;
        padding: 10px 05px;
        text-align: center;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        background-color: #2e1a4e;
        border-radius: 3px;
        /* box-shadow: 0 0 2px #999; */
        position: relative;
        box-shadow: 0px 0px 02px 2px red;
    }
    .container .price-menu-best-value {
        width: 270px;
        height: 43em;
        max-height: 100%;
        margin: 20px 05px;
        display: flex;
        padding: 10px 05px;
        text-align: center;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        background-color: #2e1a4e;
        border-radius: 3px;
        /* box-shadow: 0 0 2px #999; */
        position: relative;
        box-shadow: 0px 0px 02px 2px red;
    }

        .container .price-menu-main::before {
            content: "Most Popular";
            color: white;
            font-size: 18px;
            font-weight: 500;
            position: absolute;
            background-color: #eb2055;
            padding: 03px 3px;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            width: 100%;
            top: -02%;
            font-weight: 500;
            margin: 0%;
            animation: glow 1s ease-in-out infinite alternate;
            border: 2px solid black;
        }
        .container .price-menu-best-value::before {
            content: "Best Value";
            color: white;
            font-size: 18px;
            font-weight: 500;
            position: absolute;
            background-color: #eb2055;
            padding: 03px 3px;
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
            width: 100%;
            top: -02%;
            font-weight: 500;
            margin: 0%;
            animation: glow 1s ease-in-out infinite alternate;
            border: 2px solid black;
        }

@keyframes glow {

    from {
        box-shadow: 0 0 10px -10px #ff0a02;
        border: 2px solid white;
        border-radius: 20px;
    }

    to {
        box-shadow: 0px 0px 05px 05px #5d0fdb;
    }
}

.container .price-menu-main .heading {
    color: white;
    width: 100%;
    font-weight: 500;
    font-size: 21px;
    margin: 0;
    padding: 12px 0
}
.container .price-menu-best-value .heading {
    color: white;
    width: 100%;
    font-weight: 500;
    font-size: 21px;
    margin: 0;
    padding: 12px 0
}

.container .price-menu-main .btn {
    background: #0096ff;
    padding: 6px 25px;
    border-radius: 20px;
    color: #fff;
    width: auto;
    margin: 10px 20px;
    border: none;
    font-weight: 500;
    font-size: 14px;
}
.container .price-menu-best-value .btn {
    background: #0096ff;
    padding: 6px 25px;
    border-radius: 20px;
    color: #fff;
    width: auto;
    margin: 10px 20px;
    border: none;
    font-weight: 500;
    font-size: 14px;
}

.container .price-menu-main .btn-down {
    background: #0096ff;
    padding: 6px 25px;
    border-radius: 20px;
    color: #fff;
    width: 60%;
    margin: 30px 20px;
    border: none;
    font-size: 18px;
    font-weight: bold;
}
.container .price-menu-best-value .btn-down {
    background: #0096ff;
    padding: 6px 25px;
    border-radius: 20px;
    color: #fff;
    width: 60%;
    margin: 30px 20px;
    border: none;
    font-size: 18px;
    font-weight: bold;
}

.container .price-menu-main ul {
    text-align: left;
    padding: 10px 0 12px 15px;
    list-style: none
}
.container .price-menu-best-value ul {
    text-align: left;
    padding: 10px 0 12px 15px;
    list-style: none
}

.container .price-menu .space {
    height: 200px;
}

.container .price-menu-main ul li {
    font-size: 14px;
    margin-top: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #fff
}
.container .price-menu-best-value ul li {
    font-size: 14px;
    margin-top: 12px;
    line-height: 18px;
    font-weight: 500;
    color: #fff
}

    .container .price-menu-main ul li:before {
        content: "\f14a";
        font-family: "font awesome 5 free"
    }
.container .price-menu-best-value ul li:before {
    content: "\f14a";
    font-family: "font awesome 5 free"
}

    .container .price-menu-main ul li.disable:before {
        content: "\f146";
        font-family: "font awesome 5 free"
    }
.container .price-menu-best-value ul li.disable:before {
    content: "\f146";
    font-family: "font awesome 5 free"
}

    .container .price-menu-main ul li.disable {
        color: #959595;
        font-weight: 400;
        font-size: 13px;
        text-decoration: line-through
    }

.container .price-menu-best-value ul li.disable {
    color: #959595;
    font-weight: 400;
    font-size: 13px;
    text-decoration: line-through
}


.container .price-menu-main .buy {
    background: #FFDC80;
    border: none;
    font-size: 13px;
    margin: 0% 0% 0% -15%;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 3px;
    border-bottom: 3px solid #0072c1;
    cursor: pointer;
    position: absolute;
    bottom: -2%;
}
.container .price-menu-best-value .buy {
    background: #FFDC80;
    border: none;
    font-size: 13px;
    margin: 0% 0% 0% -15%;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 3px;
    border-bottom: 3px solid #0072c1;
    cursor: pointer;
    position: absolute;
    bottom: -2%;
}

.container .price-menu-main .price {
    display: block;
    margin: -5px 5px 15px 5px;
    width: 100%;
    background-color: #1617257c;
    border-radius: 2px;
    text-align: center;
    padding: 10px 5px;
}
.container .price-menu-best-value .price {
    display: block;
    margin: -5px 5px 15px 5px;
    width: 100%;
    background-color: #1617257c;
    border-radius: 2px;
    text-align: center;
    padding: 10px 5px;
}

    .container .price-menu-main .price .offline {
        color: rgb(255, 255, 255);
        font-size: 15px;
        width: 100%;
        padding: 0%;
        margin: 5px;
    }

.container .price-menu-best-value .price .offline {
    color: rgb(255, 255, 255);
    font-size: 15px;
    width: 100%;
    padding: 0%;
    margin: 5px;
}

    .container .price-menu-main .price .online {
        color: rgb(255, 255, 255);
        font-size: 16px;
        font-weight: 700;
        width: 100%;
        padding: 0%;
        margin: 5px;
    }
.container .price-menu-best-value .price .online {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    padding: 0%;
    margin: 5px;
}

    .container .price-menu-main .price li {
        list-style: none;
        margin: 10px auto;
        /* font-size: 14px; */
        /* padding:5px; */
        width: 100%;
    }
.container .price-menu-best-value .price li {
    list-style: none;
    margin: 10px auto;
    /* font-size: 14px; */
    /* padding:5px; */
    width: 100%;
}


@media (max-width: 600px) {
    .container {
        width: 100%;
        flex-wrap: wrap;
    }

        .container .price-menu {
            width: 100%;
            margin: 20px;
            height: 100%;
        }

            .container .price-menu .btn-down {
                margin: 20px 0px !important;
            }

            .container .price-menu .space {
                height: 0px;
            }

        .container .price-menu-main {
            width: 100%;
            margin: 20px;
            height: 100%;
        }
        .container .price-menu-best-value  {
            width: 100%;
            margin: 20px;
            height: 100%;
        }

        .container .price-menu .btn-down-1 {
            position: relative;
            margin: 15px 0px;
        }

        .container .price-menu .btn {
            width: 50%;
        }

        .container .price-menu-main .btn {
            width: 50%;
        }
        .container .price-menu-best-value .btn {
            width: 50%;
        }

        .container .price-menu .price {
            margin: 20px 5px !important;
        }

        .container .price-menu-main .price {
            margin: 20px 5px !important;
        }
        .container .price-menu-best-value .price {
            margin: 20px 5px !important;
        }
}
