

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1320px !important;
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--color-dark);
    outline: 0;
    box-shadow: none;
}

.form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--color-dark);
    outline: 0;
    box-shadow: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* button spinner */

.btn .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border: 0.2em solid currentColor;
    border-right-color: transparent;
}

/* Pills */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: transparent;
    color: var(--bg-primary);
    font-weight: 600;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--bg-primary);
}

.nav-link {
    color: #777;
}

a,
a:hover {
    color: var(--bg-primary-2);
}

.page-link {
    color: #212529;
}

.page-item.active .page-link {
    background-color: #212529;
    border-color: var(--bg-primary-2);
}


.form-check-input:checked {
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
}


#MenuLateral {
    position: absolute;
    width: 260px;
    background-color: #fff;
    min-height: 100vh;
    padding-top: 1rem;
    left: -260px;
    /* box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%); */
    transition: all .3s ease;
    z-index: 9;
    border-right: 1px solid #ddd;
}

@media (min-width: 992px) {

    #MenuLateral {
        position: relative;
        width: 16.66666667%;
        background-color: inherit;
        left: 0;
        padding-top: 0;
        min-height: auto;
        border-right: 0;

    }
}

.MenuLateral--show {
    left: 0 !important;
}

#MenuLateral__backdrop {
    background: rgba(0, 0, 0, .46);
    transition: all .3s ease;
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

@media (min-width: 992px) {

    #MenuLateral__backdrop {
        display: none;
    }
}


.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--bg-primary) !important;
}

.link-primary{
    color: var(--color-primary) !important;
    cursor: pointer;
}


.link-primary:hover{
    color: var(--color-primary-dark) !important;
    text-decoration-color: var(--color-primary-dark) !important;
    cursor: pointer;
    text-decoration: underline;
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--color-primary) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgb(147 155 163) !important;
}

@media (min-width: 576px) {
    /* Small devices (landscape phones, 576px and up) */
}

@media (min-width: 768px) {
    /* Medium devices (tablets, 768px and up) */
}

@media (min-width: 992px) {
    /* Large devices (desktops, 992px and up) */
}

@media (min-width: 1200px) {
    /* X-Large devices (large desktops, 1200px and up) */
}

@media (min-width: 1400px) {
    /* XX-Large devices (larger desktops, 1400px and up) */
}