#letter_grid_section {
    min-height: 100vh !important;
}

/*-------------------------------------------------------------
- Isotope
-------------------------------------------------------------*/
.letter_list_wrapper {
    padding-bottom: 30px;
    width: calc(24.4% - 30px);
    margin-right: 30px;
}
.letter_list_view {
    height: 124px;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}
#letter_filters_sidebar {
    transition: all 1s;
    position: fixed;
    width: 93vw;
    height: 100vw;
    margin-right: calc(-93vw - 100px);
    top: 0;
    right: 0;
    padding: 40px;
    overflow-y: scroll;
    z-index: 100;
    background: rgba(0,0,0,.85);
}
#letter_filters_sidebar .option-set {
    max-height: 158px;
    overflow-y: auto;
    transition: max-height .2s ease;
}
#letter_filters_sidebar .option-set.expanded {
    max-height: 2000px;
}
#letter_filters_sidebar .letter_filter_option_set_toggle {
    margin-top: 10px;
}
.letter_filter_item_wrapper {
    width: 50%;
    float: left;
}
#letter_filter_close_tab {
    transition: all 1s;
    position: fixed;
    padding: 40px;
    font-size: 56px;
    line-height: 20px;
    margin-right: calc(-93vw - 100px);
    top: 50%;
    right: 93vw;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-lr;
    background: black;
    border-radius: 0 15px 15px 0;
}
#letter_filter_close_tab.span {
    font-weight: bold;
    font-size: 20px;
}

/*-------------------------------------------------------------
- Roster 
-------------------------------------------------------------*/
tr.linked_soldier {
    color: #316c00;
}	
a.roster_link {
    text-decoration: none;
    color: darkred;
    width: 250px;
    display: block;
    border: 5px solid darkred;
    text-align: center;
    line-height: 0;
    padding: 27px 0 22px;
    border-radius: 30px;
}
a.roster_link:active,
a.roster_link:hover {
    color: darkred;
}

/*-------------------------------------------------------------
- Modal
-------------------------------------------------------------*/
.custom_modal {
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4); 
    justify-content: center;
    align-items: center;
    transition: .5s;
}
.custom_modal_content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.custom_modal_close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.custom_modal_close:hover,
.custom_modal_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.custom_modal_content .slick-prev, .custom_modal_content .slick-next {
    top: 102%;
}
.custom_modal_content .slick-prev {
    left: 300px;
}
.custom_modal_content .slick-next {
    right: 425px;
}
.custom_modal_content .slick-prev:before, .custom_modal_content .slick-next:before {
    font-size: 140px;
}
.custom_modal_content .letter_text {
    margin-top: 175px;
}
