/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,17): run-time error CSS1039: Token not allowed after unary operator: '-bs-body-color'
(20,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(36,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
:root {
    --primary: #f45e2d !important;
    --secondary: #a0327b !important;
    --bs-primary-rgb: 244, 94, 45 !important;
    --bs-secondary-rgb: 160, 50, 123 !important;
    --bs-dark-rgb: 71, 71, 73 !important;
}

a {
    text-decoration: none;
    color: var(--bs-body-color);
    cursor:pointer;
}
.btn {
    border: none;
    border-radius:0;
}

.btn-primary {
    background-color: var(--primary);
}
.btn-primary:hover {
    background-color: black;
}

p {
    margin: 0 0 10px 0;
    line-height: 18px;
    font-weight: 500;
}

#footer a{
    color:white
}
#footer a:hover {
    color: var(--primary)
}

#PageLoadingElement {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0,0,0,.7);
    transition: opacity .2s;
}

    #PageLoadingElement > div {
        position: absolute;
        top: 50%;
        color: #fff;
        width: 100%;
        text-align: center;
    }


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
