.checkbox {
  padding-left: 20px;
}
.checkbox label {
  margin-bottom: 10px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 8px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 0px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: -1px;
  margin-left: -18px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 16px;
  color: #555555;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #003E75;
    border-color: #003E75;
}
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}
.checkbox-primary.checkbox input[type="checkbox"]:focus + label::before,
.checkbox-primary.checkbox input[type="radio"]:focus + label::before {
    outline: 0;
    border: 0;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
    background-color: #F7534C;
    border-color: #F7534C;
    border-radius: 0px;
    width: 22px;
    height: 22px;
}
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox.checkbox-sm label::before {
  width: 30px;
  height: 30px;
  top: -13px;
}
.checkbox.checkbox-sm label::after {
  width: 30px;
  height: 30px;
  padding-left: 4px;
  font-size: 20px;
  left: 1px;
  top: -13px;
}
.checkbox.checkbox-sm label {
  padding-left: 18px;
  top: 13px;
}
.checkbox.checkbox-md label::before {
  width: 34px;
  height: 34px;
  top: -17px;
}
.checkbox.checkbox-md label::after {
  width: 34px;
  height: 34px;
  padding-left: 4px;
  font-size: 24px;
  left: 1px;
  top: -18px;
}
.checkbox.checkbox-md label {
  padding-left: 22px;
  top: 17px;
}
.checkbox.checkbox-lg label::before {
  width: 46px;
  height: 46px;
  top: -28px;
}
.checkbox.checkbox-lg label::after {
  width: 46px;
  height: 46px;
  padding-left: 4px;
  font-size: 36px;
  left: 1px;
  top: -31px;
}
.checkbox.checkbox-lg label {
  padding-left: 34px;
  top: 32px;
}

/*

.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff;
}
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff;
}

.radio.radio-sm label::before {
  width: 30px;
  height: 30px;
  top: -13px;
}
.radio.radio-sm label::after {
  width: 22px;
  height: 22px;
  padding-left: 4px;
  font-size: 20px;
  left: 4px;
  top: -9px;
}
.radio.radio-sm label {
  padding-left: 18px;
  top: 13px;
}
.radio.radio-md label::before {
  width: 34px;
  height: 34px;
  top: -17px;
}
.radio.radio-md label::after {
  width: 26px;
  height: 26px;
  padding-left: 4px;
  font-size: 24px;
  left: 4px;
  top: -13px;
}
.radio.radio-md label {
  padding-left: 22px;
  top: 17px;
}
.radio.radio-lg label::before {
  width: 46px;
  height: 46px;
  top: -28px;
}
.radio.radio-lg label::after {
  width: 36px;
  height: 36px;
  padding-left: 4px;
  font-size: 36px;
  left: 5px;
  top: -23px;
}
.radio.radio-lg label {
  padding-left: 34px;
  top: 32px;
}
*/
.form-control:focus, .form-check-input:focus {
    border: 1px solid #ced4da;
    box-shadow: none;
    outline: 0;
}
#education_search .icon-key-list {
    list-style: none;
}
#education_search .icon-key-list li {
  padding-right: 20px;
  padding-bottom: 5px;
}
    #education_search .icon-key-list span {
        padding-left: 8px;
        display: inline-block;
        font-weight: 300;
        font-size: 16px;
        max-width: calc(100% - 39px);
    }
#education_search .icon-key-list img {
    padding-left: 5px;
    float:left;
}

#education_search .icon-key-list .checkbox label::before {
    top: 5px;
}

#education_search .icon-key-list .checkbox label::after {
    top: 3px;
}

#education_search .date-bar {
    background-color: #003E75;
    color: #fff;
    padding: 12px 20px;
    font-size: 17px;
    margin-bottom: 15px;
}
#education_search .card {border-radius: 10px;}
#education_search .category {
    position: absolute;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    background-color: #D8F5FF;
    padding: 6px 12px;
    color: #00264A;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    top: 20px;
    left: 15px;
}
body.committee-meetings #education_search .category {
    max-height: 50px;
    overflow: hidden;
    max-width: calc(100% - 30px);
}
@media only screen and (min-width: 1400px) {
    #education_search .category {
        max-width: calc(100% - 50px);
    }
    }
    #education_search .title-clear-filters {
        padding: 30px 0px 60px 0px;
    }

        #education_search .title-clear-filters h2 {
            font-size: 17px;
            color: #003E75;
            float: left;
            font-weight: 600;
            text-transform: uppercase;
        }

            #education_search .title-clear-filters h2.clearlink {
                font-family: 'Roboto', sans-serif;
                float: right;
                font-weight: 400;
            }

                #education_search .title-clear-filters h2.clearlink a {
                    color: #00AFE9;
                }

    #education_search .results-grid h3.card-title {
        cursor: pointer;
    }
body.committee-meetings #education_search .results-grid h3.card-title {
    cursor: none;
}
#education_search .results-grid h3.card-title .soldout,
#education-popup.modal .modal-title .soldout {
    color: #f7534c;
    text-transform: uppercase;
    font-weight: 400;
    display: block;
}
        #education_search .results-grid h3.card-title a {
            text-decoration: none;
        }
        #education_search .results-grid h3.card-title a:hover {
           color: inherit;
        }
        #education_search .results-grid .col-xl-6, #education_search .results-grid .col-xxl-4 {
            margin-bottom: 25px;
        }

    #education_search .card-top {
        margin-bottom: 50px;
    }

p.speakers > span:after, p.speakers > a:after {
    content:",";
    margin-right: 5px;
}
p.speakers > span:last-child:after, p.speakers > a:last-child:after {
    content: "";
}

#education_search .key-icons {
    position: absolute;
    display: inline-block;
    top: 20px;
    right: 15px;
}

        #education_search .key-icons img {
            max-width: 29px;
        }

    #education_search h3.card-title {
        font-family: 'Roboto', sans-serif;
        color: #003E75;
        font-weight: 700;
        font-size: 20px;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    #education_search .card-text p a {
        color: #00AFE9;
        font-weight: 400;
    }

    #education_search .card-text p {
        color: #808093;
        font-size: 17px;
    }

    #education_search .showing-results {
        font-family: 'Montserrat',sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #003E75;
    }

    /* icon key top */
    #education_search .icon-key-border hr {
        margin: 10px 0px;
        background-color: transparent;
        opacity: inherit;
        border-bottom: 1px solid rgba(0,0,0,.125);
    }

    /* ICON LISTS */
    .icon-key-title {
        font-family: 'Montserrat',sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #003E75;
        float: left;
    }

    .icon-page-links {
        float: right;
        display: flex;
        flex-wrap: wrap;
        padding: 10px 0px 0px 0px;
        list-style: none;
        margin-bottom: 0px;
    }

        .icon-page-links img {
            margin-top: -7px;
        }

        .icon-page-links li {
            padding-right: 20px;
            padding-bottom: 0px;
        }

        .icon-page-links span {
            padding-left: 8px;
            display: inline-block;
        }

        .icon-page-links a {
            font-size: 17px;
            font-weight: 300;
            color: #000;
            text-decoration: none;
        }

            .icon-page-links a:hover {
                text-decoration: underline;
            }

    .icon-key-mobile {
        display: none !important;
    }

    @media only screen and (max-width: 1170px) {
        .icon-key-mobile {
            display: flex !important;
            font-family: 'Montserrat',sans-serif;
            font-size: 15px;
            font-weight: 600;
            /*color: #003E75;*/
            float: left;
        }

            .icon-key-mobile a {
                color: #00AFE9;
            }

        .icon-key-title {
            display: none !important;
        }


        .icon-page-links span {
            display: none;
        }

        .icon-page-links li {
            padding-right: 0px;
            padding-bottom: 0px;
            margin-right: -7px;
            padding-left: 10px;
        }

            .icon-page-links li:last-child {
                margin-right: 0px;
            }
    }
    /* /// ICON LISTS */


    /* SEARCH AND VIEW */
    .btn-outline-search {
        border-top: 1px solid #ced4da;
        border-bottom: 1px solid #ced4da;
        border-right: 1px solid #ced4da;
        border-left: 1px solid #fff;
        border-radius: 0px;
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }

    .view-icons {
        float: right;
    }

        .view-icons .grid {
            padding: 0px 5px 0px 20px;
        }

    .view-text {
        font-family: 'Montserrat', sans-serif;
        font-size: 17px;
        font-weight: 300;
        float: right;
    }

    .view-icons img.grid--icon,
    .view-icons img.list--icon {
        cursor: pointer;
    }

    /* /// SEARCH AND VIEW */

#education_search .results-list .table thead th {
    background: inherit;
    font-family: inherit;
    color: inherit;
    font-weight: inherit;
    border: inherit;
    padding: inherit;
}

#education_search .results-list .table td,
#education_search .results-list .table thead th {
    padding: 20px 0.5rem;
    border: inherit;
}

    /* RESULTS LIST VIEW */
#education_search .results-list table td {
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #808093 !important;
}
#education_search .results-list td.date {
    white-space: nowrap;
}
#education_search .results-list td.title {
    color: #003E75 !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    max-width: 220px;
    word-break: break-word;
}
    #education_search .results-list td.title .soldout {
        color: #f7534c;
        text-transform: uppercase;
        font-weight: 400;
        display:block;
    }
    #education_search .results-list td.title a {
        text-decoration: none;
    }
            .results-list td.title a:hover, .results-list td.title a:active {
                color: inherit;
            }
#education_search .results-list tbody, td, tfoot, th, thead, tr {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #003E75;
}

    #education_search .results-list tbody td.list-view-icons img {
        padding-bottom: 4px;
    }
    #education_search .results-list tbody td.list-view-icons:after {
        content: "";
        clear: both;
        display:block;
    }

#education_search .results-list td.title {
    cursor: pointer;
}

#education_search .results-list table thead th span {
    position: relative;
}

    #education_search .results-list table thead th span::after {
        cursor: pointer;
        content: '';
        right: -20px;
        bottom: 2px;
        position: absolute;
        width: 8px;
        height: 15px;
        background-size: auto;
        background-image: url('../png/arrows-sort.png');
    }


    /* tables to blocks */
    @media only screen and (max-width: 767px) {
        #education_search .results-list .table > thead {
            display: none;
        }

        #education_search .results-list .table td, #education_search .results-list td.title {
            display: block;
            width: 100%;
            max-width: 100% !important;
            padding-top: 10px;
            padding-bottom: 5px;
        }

        #education_search .results-list tbody td.list-view-icons img {
            margin-bottom: 10px;
        }

        #education_search .results-list .table-responsive {
            margin-left: 5px;
            margin-right: 5px;
        }

        #education_search .results-list table tbody tr td {
            padding-left: 15px;
            padding-right: 10px;
        }

        #education_search .results-list .table tr {
            display: block;
            /*padding-bottom: 20px !important;*/
        }

        #education_search .results-list .results-list-type {
            background-color: #fff;
            float: left;
            padding-right: 20px;
            width: auto !important;
        }

        #education_search .results-list .table td.list-view-icons {
            margin-top: -4px;
            background-color: #fff;
        }
       
    }
    /* tables to blocks */


    /* /// RESULTS LIST VIEW */



    /* accordion */
    #educationFilters .accordion-item {
        background-color: transparent;
    }

    #educationFilters .accordion-header {
        border-bottom: 1px solid rgba(0,0,0,.2);
    }

    #educationFilters .accordion-button, .accordion-button:not(.collapsed) {
        color: #003E75;
        background-color: transparent;
        border: none;
    }

        #educationFilters .accordion-button:focus {
            border-color: transparent;
            box-shadow: 0 0 0 0 rgba(255,255,255,0);
        }

    #educationFilters .accordion-button {
        margin-left: -20px;
        padding-bottom: 8px;
        font-size: 17px;
        font-weight: 600;
        text-transform: uppercase;
    }

    #educationFilters .accordion-item {
        border: 0px;
        margin-bottom: 10px;
    }

    #educationFilters .accordion-body {
        margin-left: -20px;
        font-size: 16px;
        font-weight: 300;
    }

    #educationFilters .accordion-item:first-of-type {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    #educationFilters .accordion-item:last-of-type {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    #educationFilters .accordion-button:not(.collapsed)::after {
        background-image: url(../png/blue-arrow-down.png);
    }

    #educationFilters .accordion-button::after {
        right: -10px;
        position: absolute;
        width: 8px;
        height: 7px;
        background-size: auto;
        background-image: url(../png/blue-arrow-down.png);
    }

    #educationFilters .accordion-button:not(.collapsed) {
        box-shadow: none;
    }
    /* /// accordion */

    /*pagination*/
    #education_search .pagination .page-link {
        font-family: 'Montserrat',sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #000;
        width: 38px;
        text-align: center;
        background-color: #fff;
        margin-right: 10px;
    }

    #education_search .page-item.prev .page-link,
    #education_search .page-item.next .page-link {
        border: none;
        background-color: #fff !important;
    }


    #education_search .pagination .page-link:hover, #education_search .pagination .page-link:active,
    #education_search .pagination .page-link:focus, #education_search .pagination .page-link:active:focus,
    #education_search .pagination .page-item.activePage .page-link {
        background-color: #003E75;
        color: #fff;
        border-color: transparent;
        box-shadow: 0 0 0 0 transparent;
    }

    .education-schedule-title img.mobile-ad {
        display: none;
    }

    @media only screen and (max-width: 767px) {
        .float-end.button-for-mobile {
            float: none !important;
            margin: auto;
            display: block;
        }

        #education_search .showing-results {
            text-align: center;
        }

        .view-text {
            display: none !important;
        }

        .education-schedule-title h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        #blue_header {
            margin-bottom: 20px;
        }

        .education-schedule-title img.mobile-ad {
            display: block;
            text-align: center;
            margin: auto;
        }

        .education-schedule-title img.desktop-ad {
            display: none;
        }
    }

    @media only screen and (max-width: 440px) {
        .search-plus-icons .col-8 {
            width: 61%;
        }

        .search-plus-icons .col-4 {
            width: 39%;
        }
        /*.view-icons img {
      height: 48px !important;
    }*/
    }


    /* MOBILE FILTERS */

    .mobile-filters {
        display: none;
    }

    @media only screen and (max-width: 991px) {
        .accordion-item.last-accordion-item h2 {
            border-bottom: 0px solid rgba(0,0,0,0) !important;
        }

        #education_search .filter-left-side-bar {
            padding-bottom: 0px !important;
        }

            #education_search .filter-left-side-bar .mb20 {
                margin-bottom: 0px;
            }

        #education_search .title-clear-filters h2:first-child {
            display: none;
        }

        #education_search .title-clear-filters h2:last-child {
            float: none;
        }

        #education_search .title-clear-filters {
            padding: 30px 0px 20px 0px;
        }

        .mobile-filters {
            display: block;
            cursor: pointer;
            padding: 15px 0px;
            font-family: 'Montserrat', sans-serif;
            color: #fff;
            background: #00264A;
        }

            .mobile-filters p {
                margin-bottom: 0;
                font-weight: 400;
            }

                .mobile-filters p::after {
                    content: url('../png/arrow-down-white.png');
                    position: relative;
                    float: right;
                    width: 14px;
                    margin-right: 10px;
                }

            .mobile-filters.collapsed- p::after {
                content: url('../png/arrow-up-white.png');
            }

        .filtercollapsedinmobile:not(.show) {
            display: none;
        }
    }
    /* ///MOBILE FILTERS */


    /* MODAL SPEAKER POPUP */
    #education-popup.modal .modal-dialog {
        max-width: 830px;
    }

    #education-popup.modal .blue {
        padding-top: 60px;
        background: #003E75;
    }

    #education-popup.modal .modal-pre-header {
        padding: 10px 30px 20px 30px; /*padding: 1rem 1rem;*/
        border-top-left-radius: calc(.3rem - 1px);
        border-top-right-radius: calc(.3rem - 1px);
    }

    #education-popup.modal .modal-category {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        background-color: #D8F5FF;
        padding: 6px 20px;
        color: #00264A;
        border-radius: 30px;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
    }

    #education-popup.modal .icon-page-links-modal {
        float: right;
        display: flex;
        flex-wrap: wrap;
        padding: 0px 0px 0px 0px;
        list-style: none;
        margin-bottom: 0px;
    }

        #education-popup.modal .icon-page-links-modal li {
            padding-right: 5px;
            padding-bottom: 0px;
        }

    #education-popup.modal .modal-header {
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        padding-top: 0px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
        border-radius: 0px;
    }

    #education-popup.modal .modal-title {
        margin-bottom: 0;
        line-height: 1.2;
        font-size: 32px;
        font-weight: 600;
        padding-top: 15px;
        padding-right: 30px;
        color:#fff;
    }
    /*body*/
    #education-popup.modal .modal-body .modal-body-title {
        color: #003E75;
        font-size: 20px;
        line-height: 1.3em;
        font-weight: 400;
    }

#education-popup .modal-body .modal-body-copy {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    }
    #education-popup .modal-body .modal-body-copy > p {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 20px;
    }
    #education-popup.modal .modal-body {
        padding: 10px 30px;
    }
#education-popup .modal-body-copy img {
    display: none;
}

    /*speakers*/
    #education-popup.modal .modal-content {
        padding-bottom: 35px;
        border-radius: 0px;
    }

    #education-popup.modal .speaker-group {
        margin-bottom: 32px;
    }

    #education-popup.modal .speaker-left {
        float: left;
    }

    #education-popup.modal .modal-speaker {
        margin-right: 10px;
        max-width: 60px;
    }

    #education-popup.modal .speaker-right .speaker-title {
        font-size: 17px;
        color: #003E75;
        font-weight: 400;
        margin-bottom: 0px;
    }

    #education-popup.modal .speaker-right .speaker-body {
        font-size: 17px;
    }

    #education-popup.modal .modal-speaker-left-border {
        border-left: 1px solid #CFC4B9;
        padding-left: 25px;
    }

    #education-popup.modal .modal-close {
        color: #fff;
        padding: 1rem 1rem;
        position: absolute;
        top: 0px;
        right: 20px; /*right: 0px;*/
    }

        #education-popup.modal .modal-close img {
            margin-left: 10px;
        }

        #education-popup.modal .modal-close a {
            font-size: 17px;
            color: #fff;
        }
    /* /// MODAL SPEAKER POPUP */



    /* MODAL KEY POPUP */
    #education-key-modal {
        display: none;
    }
    /*@media only screen and (max-width: 1170px) {
    #education-key-modal {display: block;}
}*/
    #education-key-modal {
        background: rgba(0,0,0,.68);
    }

        #education-key-modal .modal-content {
            background-color: transparent;
        }

        #education-key-modal .modal-header {
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            background: #003E75;
            color: #fff;
        }

        #education-key-modal .modal-body {
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            background-color: #fff;
        }

        #education-key-modal .icon-key-list {
            list-style: none;
        }

            #education-key-modal .icon-key-list li {
                padding-right: 20px;
                padding-bottom: 15px;
               
            }

            #education-key-modal .icon-key-list span {
                padding-left: 8px;
                display: inline-block;
                font-weight: 300;
                font-size: 16px;
            }

        #education-key-modal .modal-title {
            font-size: 25px;
            color: #fff;
        }

    /* /// MODAL KEY POPUP */

/* typeahead */
.typeahead,
.tt-query,
.tt-hint {
    width: 396px;
    height: 30px;
    padding: 8px 12px;
    font-size: 24px;
    line-height: 30px;
    border: 2px solid #ccc;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    outline: none;
}

.typeahead {
    background-color: #fff;
}

    .typeahead:focus {
        border: 2px solid #0097cf;
    }

.tt-query {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
    color: #999
}

.tt-menu {
    width: 422px;
    margin: 12px 0;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
    padding: 3px 20px;
    font-size: 18px;
    line-height: 24px;
}

    .tt-suggestion:hover {
        cursor: pointer;
        color: #fff;
        background-color: #0097cf;
    }

    .tt-suggestion.tt-cursor {
        color: #fff;
        background-color: #0097cf;
    }

    .tt-suggestion p {
        margin: 0;
    }

.input-group > span.twitter-typeahead {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
    .input-group > span.twitter-typeahead > .tt-hint, .input-group > span.twitter-typeahead > .tt-menu {
        width: 100%;
    }
/* /// typeahead */

.clear-filter-group {
    margin-left: 5px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

    .clear-filter-group:hover {
        color: black;
    }
