:root {
    --main-blue: #0971FF;
    --dark-blue: #03224D;
    --light-blue: #E1EEFF;
    --light-grey: #8F9DB1;
    --dark-grey: #2C2929;

    --card-border-radius: 20px;
    --button-border-radius: 7px;
}

.title {
    font-weight: bold;
}

.blue-text {
    color: var(--main-blue);
}

.dark-blue-text {
    color: var(--dark-blue);
}

.small-box, .card {
    border-radius: var(--card-border-radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(120, 124, 175, 0.1));
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgb(79, 79, 139, 0.25) 20px 40px 40px -30px, rgba(58, 57, 57, 0.3) 0px 30px 60px -30px;
}

.small-box {
    text-align: center;
    padding-bottom: 1.5em;
}

.small-box h2 {
    font-size: x-large;
    font-weight: bold;
}

.card-footer {
    background-color: rgba(255, 255, 255, 0);
}

.btn, .card-tabs {
    border-radius: var(--button-border-radius);
}

.create-btn {
    width : 80%;
}

button i {
    margin-left: 0.5em;
}

.footer-flex {
    display: flex;
}

.sidebar-dark-primary {
    background-color: var(--dark-blue);
}

.unsubscribe-link {
    display: block;
    text-decoration: underline;
    color: var(--dark-blue);
    padding-top: 2em;
}


.news-description {
    height: 72px;
}