.sidebar {
    width: 250px;
    margin-right: 50px;
}

.widget.blue {
    background-color: #295175;
}
.widget.aqua {
    background-color: #0084B4;
}
.widget.purple {
    background-color: #77004C;
}
.widget.green {
    background-color: #078944;
}
.widget.shamrock {
    background-color: #27975D;
}
.widget.light-green {
    background-color: #76b333;
}
.widget.black {
    background-color: #DE4830;
}
.widget.pink {
    background-color: rgba(185,32,140,1.0);
}

:not(.sidebar) > .widget {
    width: 250px;
}
:not(.sidebar) > .widget.wide {
    width: 450px;
}
.widget:not(:last-child) {
    margin-bottom: 20px;
}

.widget.align-left {
    float: left;
    margin: 0 20px 0 0;
}
.widget.align-right {
    float: right;
    margin: 0 0 0 20px;
}

.widget {
    color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0 3px 0 black;
}

.widget .header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 5px;
    line-height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    font-family: 'Pacifico', cursive;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}

.widget .header .line {
    flex: 1;
    margin: 0 20px;
    border-bottom: 1px solid #A1B2C2;
}

.widget .header i {
    font-size: 28px;
    padding-right: 7px;
}

.widget .content {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    padding: 20px;
}
.widget .content p {
    font-size: 12px;
    line-height: 23px;
    /*margin: 0 0 15px 0;*/
    margin: 0;
    padding: 0;
}
.sidebar .menu-widget {
    list-style: none;
    padding: 20px 0;
}

.sidebar .menu-widget li a {
    display: block;
    text-decoration: none;
    border-color: #A1B2C2;
    border-style: solid;
    border-bottom-width: 1px;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    padding: 0 20px;
    color: white;
    font-size: 13px;
    line-height: 38px;
    font-weight: 700;
    transition: 300ms all linear;
    cursor: pointer;
}

.sidebar .menu-widget li:first-child a {
    border-top-width: 1px;
}

.sidebar .menu-widget li a:hover {
    background-color: #0b3965;
}

@keyframes current-menu-link {
    from {
        border-left-width: 0;
    }
    to {
        border-left-width: 10px;
    }
}

.sidebar .menu-widget li a.current {
    animation: current-menu-link;
    animation-fill-mode: forwards;
    animation-duration: 300ms;
    animation-delay: 1s;
    background-color: #0b3965;
    cursor: default;
}
.widget .content ul li a, .widget .content p a {
    font-weight: 600;
}
.widget .content p a.pdf {
	line-height: 25px;
}