section#pricingVolumes {
    padding: 5rem 0;
}
section#pricingVolumes h2 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 1.5rem;
}
section#pricingVolumes p {
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-bottom: 0;
}
section#pricingVolumes .volumes-heading {
    margin-bottom: 3rem;
}
section#pricingVolumes .volumes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

section#pricingVolumes .volumes-wrapper .volume-item {
    border: 1px solid #cfd2d8;
    border-radius: 20px;
    padding: 2rem 2rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
section#pricingVolumes .volumes-wrapper .volume-item:hover {
    border-color: #1db867;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 184, 103, 0.12);
}
section#pricingVolumes .volumes-wrapper .volume-item .volume-ico {
    max-width: 64px;
    height: auto;
    margin-bottom: 2rem;
}
section#pricingVolumes .volumes-wrapper .volume-item .volume-users {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.8rem;
}
section#pricingVolumes .volumes-wrapper .volume-item .volume-price {
    font-weight: 700;
    font-size: 3rem;
    line-height: 3rem;
    padding-bottom: 1rem;
}

section#pricingVolumes .volumes-wrapper .volume-item .volume-price span {
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.1rem;
    color: #1db867;
}
section#pricingVolumes .volumes-wrapper .volume-item .hr-volume-middle {
    border: 0.5px solid #cfd2d8;
    margin: 2rem 0;
    height: 1px;
    width: 50%;
}
section#pricingVolumes .volumes-wrapper .volume-item .volume-capacity {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1rem;
}
.volumes-button-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 3rem;
}
.btn-neon-green {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1rem;
    text-transform: capitalize;
    border-radius: 10px;
    padding: 0.8rem 1.4rem;
    background: #1db867;
    box-shadow: 0px 4px 18px 0px #1db86752;
    text-decoration: none;
    color: #fff;
    transition:
        background 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.15s ease;
}
.btn-neon-green:hover {
    color: #fff;
    background: #158a4a;
    box-shadow: 0px 10px 28px 0px #1db86770;
    transform: translateY(-2px);
}
.btn-neon-green:active {
    color: #fff;
    transform: translateY(0);
    box-shadow: 0px 4px 12px 0px #1db86740;
}

@media (max-width: 991px) {
    section#pricingVolumes .volumes-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    section#pricingVolumes .volumes-wrapper {
        grid-template-columns: 1fr;
    }
}

/* POPUP */

.pricing-popup {
    z-index: 9;
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.pricing-popup-content {
    position: relative;
    max-width: 544px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.popup-heading {
    max-width: 70%;
}
.pricing-popup-content h5 {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    color: #000000;
}
.pricing-popup-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* FORM FIELDS */

.pricing-form-wrapper {
    width: 100%;
    margin-top: 14px;
}

.pricing-form-wrapper label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #797c7b;
}
.pricing-form-wrapper label.required::before {
    content: ' *';
    color: #f15a24;
    margin-right: 3px;
}

.pricing-form-wrapper input,
.pricing-form-wrapper select,
.pricing-form-wrapper button {
    width: 100%;
    padding: 15px 14px;
    margin-bottom: 20px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

input.filled,
select.filled {
    border-color: #7ece7a;
}
.pricing-form-wrapper input:focus,
.pricing-form-wrapper select:focus {
    border-color: #7ece7a;
    outline: none;
}

.pricing-form-wrapper button {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.pricing-form-wrapper button:hover {
    background-color: #0056b3;
}

.pricing-form-wrapper .btn.btn-green {
    margin-bottom: 0;
    margin-top: 40px;
    height: 48px;
    font-size: 18px;
    font-weight: 600;
    line-height: 16px;
}

/* FORM CODE */
.bob-form {
    border: unset !important;
    text-align: left;
}
.bob-form h3 {
    color: #33475b;
    font-size: 28px;
    font-weight: 700;
    border-bottom: unset !important;
    margin-bottom: 2rem !important;
    padding-bottom: 0 !important;
}

.bob-form input:not([type='file']) {
    background-color: #f5f8fa;
    display: inline-block;
    max-width: 500px;
    height: 40px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border-radius: 15px !important;
    font-weight: normal;
    line-height: 22px;
    color: #33475b;
    border: 1px solid #cbd6e2 !important;
}
.bob-form textarea {
    background-color: #f5f8fa !important;
    border-radius: 15px !important;
    color: #33475b !important;
    border: 1px solid #cbd6e2 !important;
}

.bob-form {
    ::-webkit-input-placeholder {
        /* WebKit browsers */
        color: transparent !important;
    }
    :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: transparent !important;
    }
    ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: transparent !important;
    }
    :-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: transparent !important;
    }
    input::placeholder {
        color: transparent !important;
    }
    textarea::-webkit-input-placeholder {
        /* WebKit browsers */
        color: transparent !important;
    }
    textarea:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: transparent !important;
    }
    textarea::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: transparent !important;
    }
    textarea:-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: transparent !important;
    }
    textarea::placeholder {
        color: transparent !important;
    }
}

.bob-form button[type='submit'] {
    padding-left: 33px !important;
    padding-right: 33px !important;
    background: linear-gradient(90deg, #269943 0%, #337041 100%) !important;
    color: #fff !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
    border: 1px solid #337041 !important;
    border-radius: 72px !important;
    font-weight: 700 !important;
}
.bob-form button[type='submit']:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

.bob-form span,
.bob-form label {
    font-weight: 400 !important;
}

.bob-field label,
.bob-field label span {
    color: #191919 !important;
}

@media screen and (max-width: 768px) {
    #ptable-1 > div,
    #ptable-2 > div,
    #ptable-3 > div {
        width: 100%;
    }
}
