.table > :not(:first-child) {
    border-top: 0;
}

.form-control {
    color: #AAA !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #666 !important;
    opacity: 1 !important; /* Firefox */
  }

.footer-copyright p {
    color: #777 !important;
}

div.dataTables_filter input {
    background-color: #2c3237;;
}

div.dataTables_filter input:focus {
    background-color: #2c3237;
    border: 1px solid #191c1f;
}

.form-select {
    color: white;
    background-color: #2c3237;
    border: 1px solid #191c1f;
}

.file-preview .fileinput-remove {
    background-color: #c5c5c5;
}


/* #################################### */
/* Pricing Boxes */
/* #################################### */
#planrows {
    justify-content: center;
}
.plan-box-area {
    max-width: 500px;
}
.plan-box-subtitle {
    padding: 0 90px;
}
.plan-color-primary, .plan-btn-primary  {
    background-color: #0E87F7;
}
.plan-color-secondary, .plan-btn-secondary  {
    background-color: #6b6b6b;
}
.plan-box.shadow-lg {
    position: relative;
    overflow: hidden;
}
.plan-box.shadow-lg .top-heading {
    margin-bottom: .5rem;
}
.top-heading {
    color: #FDFFFC;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem !important;
    padding-top: .8rem;
    letter-spacing: 0.1rem;
}
.plan-color-primary p, .plan-color-secondary p {
    line-height: 0.5 !important;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: white;
}
.plan-box-subtitle.h5 {
    margin-bottom: 10px!important;
}
@media (max-width: 767px) {
    .pricing.row .px-lg-5.plan-box-area {
        padding-left: 10px!important;
        padding-right: 10px!important;
    }
}
@media (max-width: 575.98px) {
    .plan-box.shadow-lg {
        max-width: 100%!important;
    }
}
@media (max-width: 1439px) and (min-width: 992px){
    .plan-box-area {
        height: 570px;
    }
    .plan-box {
        height: 100%;
    }
}
.plan-box-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 50px;
}
.plan-box .plan-box-pricing-sec > h1 {
    font-weight: 900;
    font-size: 6.5rem;
    line-height: 1;
    margin: 0;
}
.plan-box .plan-box-pricing-sec > p {
    font-weight: 900 !important;
    font-size: 1.5rem;
    line-height: 0.5 !important;
    margin: 0;
}
.plan-box .plan-box-btn {
    font-weight: 900 !important;
    font-size: 1.2rem !important;
}
.plan-box > div:first-child {
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 2rem !important;
    color: #FDFFFC;
}
.plan-box .plan-box-detail-sec .plan-box-subtitle {
    line-height: 1 !important;
    font-weight: 500;
    font-size: 1.0rem !important;
    letter-spacing: 1px!important;
}

/* Spinner */
.spinner {
    position: relative;
    /*width: 88px;*/
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 
 .spinner::before,
 .spinner::after {
    border: 10.6px solid #0e87f7;
    border-radius: 50%;
    position: absolute;
    content: '';
    display: block;
 }
 
 .spinner::before {
    width: 52.8px;
    height: 52.8px;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation: spinner-1o3y8q 1.0499999999999998s infinite linear reverse;
 }
 
 .spinner::after {
    animation: spinner-1o3y8q 0.7s infinite linear;
    height: 88px;
    width: 88px;
    border-right-color: transparent;
    border-top-color: transparent;
 }
 
 @keyframes spinner-1o3y8q {
    to {
       transform: rotate(360deg);
    }
 }