/**{*/
    /*font-size: 13px;*/
    /*transition:unset !important;*/
/*}*/

/*.product-box {*/
    /*position: relative;*/
    /*margin: 0 auto;*/
/*}*/
/*.product-header ul {*/
    /*position: relative;*/
    /*border-bottom: 1px solid #efefef;*/
/*}*/
/*.product-header ul li {*/
    /*display: inline-block;*/
    /*text-align: center;*/
    /*position: relative;*/
    /*border-bottom: 1px solid #fff;*/
/*}*/
/*.product-header ul li a {*/
    /*display: block;*/
    /*padding: 10px 0;*/

    /*text-decoration: none;*/
    /*margin-right: 60px;*/
/*}*/
/*.product-header ul li a:hover .product-head-tit {*/
   /*color: #fff;*/
/*}*/
/*.product-header ul .on a:after {*/
    /*display: flex;*/
    /*content: "";*/
    /*width: 60%;*/
    /*position: absolute;*/
    /*background: #7b7b7b;*/
    /*z-index: 1;*/
    /*height: 2px;*/
    /*bottom: -2px;*/
    /*margin: 0px auto;*/
/*}*/
/*.product-switch {*/
    /*overflow: hidden;*/
/*}*/
/*.on .product-head-tit {*/
    /*color: #8c8c8c;*/
/*}*/
/*.progress-out {*/
    /*position: relative;*/
    /*border: 1px solid #8a8a8a;*/
    /*background-color: #fff;*/
/*}*/

/*.progress-in {*/
    /*position: absolute;*/
    /*height: 100%;*/
    /*width: 0%;*/
    /*border: none;*/
    /*background-color: #13C2B6;*/
    /*background-image: linear-gradient(top, #4E4E4E 0%, #242625 40%, #000 100%);*/
    /*background-image: -webkit-linear-gradient(top, #4E4E4E 0%, #242625 40%, #000 100%);*/
    /*background-image: -moz-linear-gradient(top, #4E4E4E 0%, #242625 40%, #000 100%);*/
    /*background-image: -o-linear-gradient(top, #4E4E4E 0%, #242625 40%, #000 100%);*/
    /*background-image: -ms-linear-gradient(top, #4E4E4E 0%, #242625 40%, #000 100%);*/
    /*text-align: center;*/
    /*color: #fff;*/
    /*z-index: 1;*/
/*}*/
/*.direction-left{*/
    /*left:0;*/

/*}*/
/*.direction-right{*/
    /*right:0;*/
    /*border-top-left-radius: 2px;*/
    /*border-bottom-left-radius: 2px;*/
/*}*/

/*.percent-show {*/
    /*position: absolute;*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*top: 0;*/
    /*left: 40px;*/
    /*color: #000;*/
    /*text-align: right;*/
    /*z-index: 2;*/
/*}*/


/* Initially hide the app content */
#app-content {
    display: none;
}

/* Style for your loading spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 20% auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.experiential-subs, .silver-subs, .gold-subs, .platinum-subs, .diamond-subs {
    transition: opacity 0.3s ease-in-out;
}

.activeSubs {
    display: block !important;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-sec {
    width: 100%;
    border-top: 1px solid #eee; /* Optional: adds a separator line */
    padding-top: 20px;
}

.btn-outline-black {
    background: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.2s;
}

    .btn-outline-black:hover {
        background: #f4f4f4;
    }

.black-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 4px;
}