:root {
    --medium-gray: #6c757d;
    --dark-gray: #181b31;
    --light-gray: #e4e4e4;
    --brand-purple: #6b0bad;
}

.md-mb-30px {
    margin-bottom: 30px !important;
}

.small-screen {
  height: 200px !important;
}

.navbar .navbar-nav li.active > a {
  color: #6b0bad !important;
}

input, select, textarea, .form-control, .form-select {
    border: 1px solid var(--medium-gray);
    color: var(--dark-gray);
}

.alert.alert-success {
    background-color: #f1fbec;
    color: #0c7a40 !important;
    border-color: #0c7a40 !important;
    padding: 10px 20px 10px 20px;
}

/* Rich-text bullet lists on the service detail page only */
.service-description ul li {
    position: relative;
    list-style: none;
    padding-left: 34px;
    margin-bottom: 12px;
}

.service-description ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: var(--brand-purple);
    border-radius: 50%;
}