.caqh-blog-sort-search-wrapper {
  margin-bottom:40px;
  display:flex;
}
.caqh-blog-search {
  width: 100%;
  position: relative;
}
.caqh-blog-search input {
  border: none;
  border-bottom: 1px solid #005091;
  outline: none;
  width: 100%;
  padding: 0px 0px 15px 0px;
}
.caqh-blog-search input::placeholder {
  color: #005091;
}
.caqh-blog-search svg {
  position: absolute;
  right: 0;
}
.caqh-blog-sort {
  width: 25%;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.caqh-blog-sort label {
  color: #005091;
  font-size: 16px;
  flex-shrink: 0;
  padding-right: 10px;
}
.caqh-blog-sort .ss-main {
  border: 1px solid #004F91;
  border-radius: 0;
}
.caqh-blog-sort .ss-main:focus {
  box-shadow: none;
}
.caqh-blog-sort .ss-single,
.ss-content .ss-list .ss-option {
  font-family: "Volte-Semibold", sans-serif;
  color: #005091 !important;
  font-size: 14px;
}
.ss-content .ss-list .ss-option:hover,
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: white !important;
  background: #005091 !important;
}
#blog_heading {
  font-size: 28px;
  font-family: "Volte-Semibold", sans-serif;
  line-height: 20px;
}
.caqh-blog-main {
  display: flex;
}
.caqh-blog-main > div:first-child {
  width: 75%;
  flex: 1;
}
.caqh-blog-main > div:first-child p:first-child {
  color: #212529;
  font-size: 14px;
  line-height: 28px;
}
.caqh-blog-posts {
  
}
.caqh-blog-posts__page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  display: none;
}
.caqh-blog-posts__page.active {
  display: grid;
}
#pagination {
  list-style: none;
  padding-left: 0;
}
#pagination > * + * {
  margin-left: 10px;
}
#pagination li {
  display: inline-block;
  padding: 5px;
}
#pagination li:hover {
  cursor: pointer;
}
#pagination li.active {
  font-weight: bold;
}
.caqh-blog-sidebar {
  width: 25%;
  margin-left: 50px;
}
.caqh-blog-filters__title {
  color:#004F91;
  font-size: 22px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 3px;
}
.caqh-blog-filters {
  margin-bottom: 40px;
}
.caqh-blog-filters > div > p {
  text-transform: uppercase;
  color: #004F91;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.caqh-blog-filters label span {
  background: #E1FBFF;
  color: #004F91;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 14px;
  margin-left: 3px;
}
.caqh-blog-filters .checkbox-wrapper-13 {
  margin-top: 10px;
}
.caqh-blog-sidebar__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #005091;
  text-transform: uppercase;
}
.caqh-blog-post .default-blog-image {
  border: 1px solid #004f91;
}

/* modified from https://getcssscan.com/css-checkboxes-examples */

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .checkbox-wrapper-13 input[type=checkbox] {
    --active: #3E418C;
    --active-inner: #fff;
    --focus: 0px rgba(39, 94, 254, .3);
    --border: rgba(0, 0, 0, 0.25);
    --border-hover: rgba(0, 0, 0, 0.25);
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    margin-top: 3px;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .checkbox-wrapper-13 input[type=checkbox]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .checkbox-wrapper-13 input[type=checkbox]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .checkbox-wrapper-13 input[type=checkbox]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .checkbox-wrapper-13 input[type=checkbox]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .checkbox-wrapper-13 input[type=checkbox]:disabled + label {
    cursor: not-allowed;
  }
  .checkbox-wrapper-13 input[type=checkbox]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .checkbox-wrapper-13 input[type=checkbox]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    width: 21px;
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --o: 1;
  }
  .checkbox-wrapper-13 input[type=checkbox] + label {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
  }

  .checkbox-wrapper-13 input[type=checkbox]:not(.switch) {
    border-radius: 0px;
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .checkbox-wrapper-13 input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
}
.checkbox-wrapper-13 * {
  box-sizing: inherit;
}
.checkbox-wrapper-13 *:before,
.checkbox-wrapper-13 *:after {
  box-sizing: inherit;
}
.events-main .caqh-blog-post__type {
  font-family: "Volte-Semibold";
    background-color: #E1FBFF;
    color: #004F91 !important;
    font-size: 16px !important;
  border-radius: 18px;
    padding: 4px 20px;
    display: inline-block;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.5px;
  margin-bottom: 0;
}
.events-main .caqh-blog-post__title {
  margin-bottom: 10px;
}
.events-main .caqh-blog-post__desc {
  color: var(--tertiary-color);
}

@media (max-width: 768px) {
  .caqh-blog-sort-search-wrapper {
    display: block;
    padding:0 20px;
  }
  .caqh-blog-search {
    width: 100%;
  }
  .caqh-blog-sort {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .caqh-blog-main {
    flex-direction: column;
  }
  .caqh-blog-main > div:first-child {
    width: 100%;
    flex: 1;
  }
  .caqh-blog-posts__page {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #pagination {
    list-style: none;
    padding-left: 0 !important;
    margin-bottom: 50px;
  }
  .caqh-blog-sidebar {
    width: 100%;
    margin-left: 0px;
  }
}