/*---------------------------------------------------------------------
					Pricing
  -----------------------------------------------------------------------*/
.powerhour-price-container {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.powerhour-price-table-1 {
    background: var(--color-theme-white);
    box-shadow: 10px 10px 40px rgba(89, 58, 100, 0.1);
    padding: 64px 32px;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.powerhour-price-table-1.active {
    background-color: var(--global-body-lightbg);
}

.powerhour-price-table-1:hover {
    background: var(--global-body-lightbg);
}

.powerhour-price-table-1 .box-img {
    border: none;
    background: var(--color-theme-primary-light);
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: one-animated 10s infinite;
    margin: 0 auto;
}

.powerhour-price-table-1 .box-img svg {
    width: 100px;
}

.powerhour-price-table-1 .powerhour-price-header .powerhour-price-label {
    font-style: italic;
    color: var(--color-theme-tint);
    font-family: var(--second-font-family);
    position: relative;
    display: inline-block;
    margin-top: 42px;
}

.powerhour-price-table-1 .powerhour-price-header .powerhour-price-label:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-theme-tint);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, -50%);
}

.powerhour-price-table-1 .powerhour-price-header .powerhour-price {
    color: var(--color-theme-primary);
    margin-top: 16px;
}

.powerhour-price-table-1 .powerhour-price-body {
    margin: 40px 0;
}

.powerhour-price-table-1 .powerhour-price-body .powerhour-price-service {
    margin: 0;
    padding: 0;
}

.powerhour-price-table-1 .powerhour-price-body .powerhour-price-service li {
    margin-bottom: 24px;
    list-style-type: none;
}

.powerhour-price-table-1 .powerhour-price-body .powerhour-price-service li:last-child {
    margin-bottom: 0;
}

.powerhour-price-table-1 .powerhour-price-body .powerhour-price-service li span {
    color: var(--global-font-title);
}

@media (max-width: 480px) {

    .powerhour-price-table-1 .powerhour-outerbox,
    .powerhour-price-table-1 .powerhour-inner-box {
        padding: 0;
    }
}

@media (max-width: 359px) {
    .powerhour-price-table-1 {
        padding: 64px 15px;
    }
}

/*---------------------------------------------------------------------
					Pricing-style-2
  -----------------------------------------------------------------------*/

.powerhour-price-table-2 {
    padding: 50px 50px 50px 50px;
    background-color: var(--color-theme-white);
    position: relative;
}

.powerhour-price-table-2:hover,
.powerhour-price-table-2.active {
    background: var(--global-body-lightbg);
}

.powerhour-price-table-2 .powerhour-price-header .powerhour-price-label {
    position: relative;
    display: inline-block;
    color: var(--color-theme-primary);
    font-style: italic;
    font-family: var(--second-font-family);
}

.powerhour-price-table-2 .powerhour-price-header .powerhour-price-label:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-theme-primary);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, -50%);
}

.powerhour-price-table-2 .powerhour-price-description {
    margin: 24px 0 32px;
}

.powerhour-price-table-2 .box-img {
    border: none;
    background: var(--color-theme-primary-light);
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: one-animated 10s infinite;
    margin: 0 auto;
}

.powerhour-price-table-2 .session-time {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.powerhour-price-table-2 .session-time .session-icon {
    border: none;
    background: var(--color-theme-primary-light);
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: one-animated 10s infinite;
}

.powerhour-price-table-2 .session-time .session-text {
    margin-left: 10px;
}

.powerhour-price-table-2 .powerhour-price {
    margin-top: 32px;
    color: var(--color-theme-primary);
}

@media (max-width: 1024px) {
    .powerhour-price-table-2 {
        padding: 30px;
    }

    .powerhour-price-table-2 .powerhour-price-description {
        margin: 20px 0;
    }

    .powerhour-price-table-2 .session-time {
        margin-bottom: 20px;
    }

    .powerhour-price-table-2 .powerhour-price {
        margin-bottom: 30px;
    }

    .powerhour-price-table-2 .box-img {
        height: 100px;
        width: 100px;
        line-height: 100px;
    }
}

@media (max-width: 768px) {
    .powerhour-price-table-2 .box-img {
        height: 75px;
        width: 75px;
        line-height: 75px;
    }
}

@media (max-width: 767px){
    .powerhour-price-table-2{
        padding: 32px;
    }
    
    .powerhour-price-table-2 .row{
        flex-direction: column-reverse;
    }

    .powerhour-price-table-2 .box-img{
        display: inline-block;
        margin-bottom: 16px;
    }

    .powerhour-price-table-2 .box-img svg{
        height: 75px;
        width: 75px;
    }

    .powerhour-price-table-2 .powerhour-price {
        margin-bottom: 0px;
    }
}

@media (max-width: 479px) {
    .powerhour-price-table-2 .session-time {
        display: block;
        margin-bottom: 15px;
    }

    .powerhour-price-table-2 .session-time .session-text {
        margin-left: 0px;
        margin-top: 10px;
    }
}