﻿body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #f7f7f7;
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6, .display-6, .display-4, .display-3, .display-5 {
    font-family: "Cambria", serif;
    font-style: normal;
    letter-spacing: .02em;
    font-weight: 600;
    /*text-transform: uppercase;*/
}

header .nav-item {
    margin-left: .5rem;
    margin-right: .5rem;
}

#login {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

.banner {
    background-color: #750D37;
    background-size: cover;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


.btn {
    font-weight: 500;
    /*text-transform: uppercase;*/
    border-radius: 1.5rem;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    font-size: 1.1rem;
}

.btn-custom {
    background-color: #750D37;
    color: #ffffff;
}

.btn-custom-footer {
    background-color: #ffffff;
    color: #750D37;
}

    .btn-custom-footer:hover {
        background-color: #ad285e;
        border-color: #ad285e;
        color: #ffffff;
    }


.btn-custom:hover {
    background-color: #ad285e;
    border-color: #ad285e;
    color: #ffffff;
}

    .btn-custom:not(:disabled):not(:disabled):active {
        background-color: #750D37 !important;
        border-color: #750D37 !important;
        color: #ffffff;
    }

.card {
    padding: 1.25rem;
    border-radius: 1rem;
}

.card-links .card {
    border: 0px !important;
    height: 100%;
    box-shadow: 0px 6px 12px #cccccc;
    background-color: #750D37;
    color: #ffffff;
}

    .card-links .card .card-body {
        display: flex;
        flex-direction: column;
    }

.card-links a {
    text-decoration: none;
}

    .card-links a:hover {
        text-decoration: none;
    }

        .card-links a:hover .card {
            box-shadow: 0px 8px 16px #cccccc;
        }

.accordion-button:not(.collapsed) {
    background-color: #750D37;
    color: #fff;
}

.accordion-button {
    text-align: left;
    background-color: #750D37;
    color: #fff;
}

    .accordion-button:not(.collapsed)::after, .accordion-button.collapsed::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

.div-table {
    padding: 0 .5rem 0;
}

    .div-table .row {
        padding: .85rem 0 .85rem;
        border-bottom: 1px solid rgb(0, 0, 0, 0.15);
    }


footer {
    background-color: #750D37;
}

.py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.icon-wrapper {
    text-decoration: none;
    margin-left: .25rem;
    margin-right: .25rem;
}

.icon {
    display: flex;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    font-size: 1.05rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #f8f9fa;
    border: 1px solid #f8f9fa;
}

    .icon:hover {
        background-color: rgba(0,0,0,0.2);
    }


.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.left {
    width: 30%;
    /*background-color: #333;*/
    /*color: white;*/
    /*padding: 20px;*/
    position: sticky;
    top: 0;
    height: 100vh;
}

.right {
    width: 70%;
    overflow-y: auto;
    padding: 20px;
    background-color: #f5f5f5;
}

.content-block {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}