html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

@media (max-width: 992px) {

    .navbar .navbar-menu-wrapper.navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        background: #e3e6e1;
        z-index: 20;
        height: 100vh;
        padding: 50px 0px;
        width: 250px;
        transform: translateX(100%);
        transition: transform 0.25s ease-in-out;
    }
}

.header-small .navbar {
    background: #e3e6e1;
    margin-top: 30px;
}

.border-left-md-only {
    border-left: none; /* No left border by default (small screens) */
}

.border-top-sm-only {
    border-top: none; /* No top border by default */
}

/* Apply the top border only for small screens (576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .border-top-sm-only {
        border-top: 1px solid #dee2e6; /* Add top border for small screens only */
    }
}

@media (min-width: 768px) {
    .border-left-md-only {
        border-left: 1px solid #dee2e6; /* Add left border for medium screens and up */
    }
}

.input-group-text {
    padding: 0rem .75rem;
}

.features-overview .content-header {
    padding: 10px 48px;
}