/* .pricing {
    display: flex;
} */
/* .pricing-section {
    margin-bottom: 500px;
} */
.pricing {
    display: flex;
}
.pricing-box {
    width: calc(33.3% - 24px);
    float: left;
    margin: 8px;
    border: 1px solid #00acfe;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.pricing-box:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
.pricing .pricing-heading .pricing-title {
    background-color: #00acfe;
    color: #fff;
    font-weight: 600;
    margin: 0 0 20px;
    padding: 5px 0;
    font-size: 20px;
    font-weight: 600;
}
.pricing-box .pricing-body p{
    margin-bottom: 0;
}

.pricing-box .pricing-price {
    font-size: 26px;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

.pricing-box .list-group {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 70px;
}

.pricing-box .list-group .list-group-item {
    padding: 10px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    border-radius: 0;
}

.pricing-box .pricing-footer {
    padding: 10px 15px;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.pricing-box .pricing-footer .pricing-btn {
    width: 100%;
}   

/* --------------------switch--------------------- */
.switch-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.toggler {
    color: #ddd;
    transition: .2s;
    font-weight: bold;
    cursor: pointer;
}
  
.toggler--is-active {
    color: #00acfe;
}
  
.b {
    display: block;
}
  
.toggle {
    position: relative;
    width: 80px;
    height: 35px;
    border-radius: 100px;
    background-color: #00acfe;
    overflow: hidden;
    margin: 0 15px;
    box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}
  
.check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}
  
.check:checked ~ .switch {
    right: 2px;
    left: 57.5%;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: .08s, 0s;
}
  
.switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 57.5%;
    background-color: #fff;
    border-radius: 36px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0s, .08s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hide {
    display: none;
}


@media only screen and (max-width: 767px) {
    .pricing {
        display: grid;
    }
    .pricing-box {
      width: 100%;
    }
    /* .pricing-section {
        margin-bottom: 870px;
    } */
}