/* Pricing */
.single-price {
    background-color: #fff;
    box-shadow: 0 0 60px rgba(0, 0, 0, .07);
    padding: 57px 15px 60px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.single-price .price-head {
    margin-bottom: 23px;
}

.single-price .price-devider {
    margin-top: 23px;
}

.single-price .price-head h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.single-price .price-text {
    color: #FB9426;
    line-height: 1;
    transition: all .3s ease;
}

.single-price .price-text strong {
    font-size: 48px;
    font-weight: 500;
}

.single-price .price-text sub {
    font-size: 16px;
    position: relative;
    top: -3px;
}

.single-price .price-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-price .price-body ul li {
    font-size: 18px;
    color: #000000;
    transition: all .3s ease;
}

.single-price .price-body ul li:not(:last-child) {
    margin-bottom: 20px;
}

.single-price .btn-wrap .sta-price-btn {
    margin-top: 29px;
}
.single-price .btn-wrap .sta-price-btn {
    font-size: 14px;
    line-height: 1;
    padding: 10px 19px;
    white-space: nowrap;
    background-color: #FB9426;
    border: 1px solid #FB9426;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
}
.monthly-price .single-price.active .btn-wrap .sta-price-btn,
.yearly-price .single-price.active .btn-wrap .sta-price-btn {
    color: #FB9426;
    background-color: #fff;
    border-color: #fff;
}
.sta-price-btn svg, .sta-price-btn img, .sta-price-btn i {
    margin-left: 10px;
}
.monthly-price,
.yearly-price {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    display: none;
}

.monthly-price.show,
.yearly-price.show {
    display: flex;
}

.monthly-price .single-price,
.yearly-price .single-price {
    margin-left: 15px;
    margin-right: 15px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.monthly-price .single-price:after,
.yearly-price .single-price:after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    transform: scale(.9) skew(30deg);
    border-radius: 10px;
    opacity: 0;
    transition: all .3s ease;
}

.monthly-price .single-price.active:after,
.yearly-price .single-price.active:after {
    transform: scale(1) skew(0deg);
    opacity: 1;
}

.monthly-price .single-price.active .price-head .price-text,
.yearly-price .single-price.active .price-head .price-text,
.monthly-price .single-price.active .price-body ul li,
.yearly-price .single-price.active .price-body ul li,
.monthly-price .single-price.active .price-head h5,
.yearly-price .single-price.active .price-head h5 {
    color: #fff;
}
.monthly-price .single-price.active .price-head > svg path,
.yearly-price .single-price.active .price-head > svg path {
    fill: rgba(255, 255, 255, .5);
}

.monthly-price .single-price.active .price-body .btn,
.yearly-price .single-price.active .price-body .btn {
    color: #FB9426;
    background-color: #fff;
    border-color: #fff;
}

.monthly-price .single-price.active .price-body .btn svg path,
.yearly-price .single-price.active .price-body .btn svg path {
    fill: #FB9426;
}

.price-switcher {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.switch-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 0 90px rgba(0, 0, 0, .1);
    border-radius: 50px;
    user-select: none;
    cursor: pointer;
}

.switch-wrap:after {
    height: 100%;
    width: 50%;
    left: auto;
    right: 0;
    top: 0;
    position: absolute;
    content: "";
    background-color: #FB9426;
    border-radius: 50px;
    z-index: -1;
    transition: all .3s ease-in-out;
}

.switch-wrap > * {
    padding: 19px 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FB9426;
    transition: all .3s ease-in-out;
}

.switch-wrap > *:nth-child(2) {
    color: #fff;
}

.switch-wrap.active > *:nth-child(1) {
    color: #fff;
}

.switch-wrap.active > *:nth-child(2) {
    color: #FB9426;
}

.switch-wrap.active:after {
    right: 50%;
}

.switch-wrap.active:after {
    right: 50%;
}
.table-regular-price {
    margin-right: 8px;
}