.sec-title {
    position: relative;
    margin-bottom: 45px;
}

.sec-title .title {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 1em;
    color: #ff8a01;
    font-weight: 500;
    background: rgb(247, 0, 104);
    background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    background: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.sec-title h2 {
    position: relative;
    display: inline-block;
    font-size: 48px;
    line-height: 1.2em;
    color: #1e1f36;
    font-weight: 700;
}

.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 28px;
    color: #888888;
    margin-top: 30px;
}

.sec-title.light h2,
.sec-title.light .title {
    color: #ffffff;
    -webkit-text-fill-color: inherit;
}

.pricing-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.pricing-section .outer-box {
    max-width: 1100px;
    margin: 0 auto;
}


.pricing-section .row {
    margin: 0 -30px;
}

.pricing-block {
    position: relative;
    padding: 0 30px;
    margin-bottom: 40px;
}

.pricing-block .inner-box {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 0 0 30px;
    max-width: 370px;
    margin: 0 auto;
    border-bottom: 20px solid #F490ED;
    height: 640px;
}

.pricing-block .icon-box {
    position: relative;
    padding: 50px 30px 0;
    background-color: #F490ED;
    text-align: center;
}

.pricing-block .icon-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 75px;
    width: 100%;
    border-radius: 50% 50% 0 0;
    background-color: #ffffff;
    content: "";
}


.pricing-block .icon-box .icon-outer {
    position: relative;
    height: 150px;
    width: 150px;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    padding: 10px;
}

.pricing-block .icon-box i {
    position: relative;
    display: block;
    height: 130px;
    width: 130px;
    /** Remove By Trainer **/
    /* line-height: 120px; */
    /** Remove By Trainer **/
    border: 5px solid #F490ED;
    border-radius: 50%;
    font-size: 50px;
    color: #F490ED;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
    /** Add By Trainer **/
    display: flex;
    align-items: center;
    justify-content: center;
    /** Add By Trainer **/
}

.pricing-block .inner-box:hover .icon-box i {
    transform: rotate(360deg);
}

.pricing-block .price-box {
    position: relative;
    text-align: center;
    padding: 10px 20px;
    height: 120px;
}

.pricing-block .title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #222222;
    font-weight: 600;
}

.pricing-block .price {
    display: block;
    font-size: 22px;
    color: #222222;
    font-weight: 700;
    color: #F490ED;
    text-transform: uppercase;
}


.pricing-block .features {
    position: relative;
    max-width: 200px;
    margin: 0 auto 20px;
}

.pricing-block .features li {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 30px;
    color: #848484;
    font-weight: 500;
    padding: 5px 0;
    padding-left: 30px;
    border-bottom: 1px dashed #dddddd;
}

.pricing-block .features li:before {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 16px;
    color: #2bd40f;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    margin-top: -8px;
}

.pricing-block .features li.false:before {
    color: #e1137b;
    content: "\f057";
}

.pricing-block .features li a {
    color: #848484;
}

.pricing-block .features li:last-child {
    border-bottom: 0;
}

.pricing-block .btn-box {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    margin-top: 3em;
}

.pricing-block .btn-box button {
    position: relative;
    display: inline-block;
    /** Remove By Trainer **/
    /* font-size: 14px; */
    /** Remove By Trainer **/
    /** Add By Trainer **/
    font-size: 18px;
    /** Add By Trainer **/
    line-height: 25px;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 30px;
    background-color: #F490ED;
    border-radius: 10px;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 300ms ease;
    border-left: 0;
    border-right: 0;
}

.pricing-block .btn-box button:hover {
    color: #ffffff;
}

.pricing-block .inner-box:hover .btn-box button {
    color: #000000 !important;
    background-color: #47df47;
    display: inline-block;
    /* font-size: 14px; */
    line-height: 25px;
    border-color: #00ff1d;
    border-radius: 10px;
    font-weight: 700;
    padding: 8px 30px;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .inner-box {
    border-color: #5271FF;
}

.pricing-block:nth-child(2) .btn-box button,
.pricing-block:nth-child(2) .icon-box {
    background-color: #5271FF;
}

.pricing-block:nth-child(2) .inner-box:hover .btn-box button {
    color: #000000 !important;
    background-color: #47df47;
    display: inline-block;
    /** Remove By Trainer **/
    /* font-size: 14px; */
    /** Remove By Trainer **/
    /** Add By Trainer **/
    font-size: 18px;
    /** Add By Trainer **/
    line-height: 25px;
    border-color: #00ff1d;
    border-radius: 10px;
    font-weight: 700;
    padding: 8px 30px;
}

.pricing-block:nth-child(2) .icon-box i,
.pricing-block:nth-child(2) .price {
    color: #5271FF;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .inner-box {
    border-color: #E822D9;
}

.pricing-block:nth-child(3) .btn-box button,
.pricing-block:nth-child(3) .icon-box {
    background-color: #E822D9;
}

.pricing-block:nth-child(3) .icon-box i,
.pricing-block:nth-child(3) .price {
    color: #E822D9;
}

.pricing-block:nth-child(3) .inner-box:hover .btn-box button {
    color: #000000 !important;
    background-color: #47df47;
    display: inline-block;
    /** Remove By Trainer **/
    /* font-size: 14px; */
    /** Remove By Trainer **/
    /** Add By Trainer **/
    font-size: 18px;
    /** Add By Trainer **/
    line-height: 25px;
    border-color: #00ff1d;
    border-radius: 10px;
    font-weight: 700;
    padding: 8px 30px;
}

.price-box .title {
    margin-bottom: 0.2em;
}

.pricing-block .select {
    position: relative;
    width: 10em;
    height: 2em;
    border-radius: .25em;
    text-align: center;
    overflow: hidden;
}

.pricing-block .plan_type_ {
    margin-top: 8em;
    text-align: center;
}

.price-box .sub-title {
    margin-bottom: 2em;
    margin-top: 0px;
    padding: 0;
}

.btn-box.contact-sales {
    margin-top: 3.5em;
}

/** Add By Trainer **/
/* .centering {
        width: 300px;
        height: auto;
        margin: 100px auto;
    } */

.custom-select {
    /* width: 100%; */
    position: relative;
    width: 10em;
    margin: 0 auto;
    /* margin: 20px 0; */
}

.custom-select select {
    display: none;
}

.selected-item {
    padding: 4px 20px;
    color: #000;
    background-color: #b2b7ff;
    cursor: pointer;
    border: 1px solid #000;
    border-radius: 0.25em;
    font-weight: 500;

}

.selected-item:after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    font-size: 20px;
    color: #000;
    right: 10px;
    transition: 0.5s;
}

.arrowanim.selected-item:after {
    transform: rotate(180deg);
}

.item {
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 4px 20px;
    /* border: 1px solid #000; */
}

.item:hover {
    background: #b2b7ff;
}

.all-items {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 100;
    border: 1px solid #000;
}

.all-items .item {
    border-bottom: 1px solid #000;
}

.all-items .item:last-child {
    border-bottom: 0;
}

.all-items-hide {
    display: none;
}

/* .sdf {
    border: 1px solid red;
} */

/** Add By Trainer **/

@media (min-width: 319px) and (max-width: 480px) {

    /* Plans page Responsive */
    .sec-title {
        /** Remove By Trainer **/
        /* margin-top: 1em !important; */
        /** Remove By Trainer **/
    }

    .sec-title h2 {
        font-size: 25px;
    }

    .pricing-block {
        padding: 0px;
    }

    #plan_submit_single_user .pricing-block .plan_type_ {
        margin-top: 2em;
        text-align: center;
    }

}

@media (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
    .sec-title h2 {
        font-size: 25px;
    }

    .pricing-block {
        padding: 0px;
    }

    #plan_submit_single_user .pricing-block .plan_type_ {
        margin-top: 2em;
        text-align: center;
    }

    .sec-title {
        margin-bottom: 25px;
        margin-top: 2em;
    }
}

/** Add Bt Trainer **/
@media (max-width: 767px) {
    .sec-title {
        margin-bottom: 32px;
    }

    .pricing-block .inner-box {
        height: 500px;
    }

    .pricing-block .icon-box {
        padding: 30px 30px 0;
    }

    .pricing-block .price-box {
        height: auto;
    }

    .price-box .sub-title {
        margin-bottom: 1em;
    }

    .pricing-block .plan_type_ {
        margin-top: 1em;
    }

    .pricing-block .btn-box {
        margin-top: 2em;
    }

    .pricing-block .icon-box .icon-outer {
        height: 120px;
        width: 120px;
    }

    .pricing-block .icon-box i {
        height: 100px;
        width: 100px;
        font-size: 40px;
    }

}

/** Add Bt Trainer **/