/*body { background: #f1f3f4; }*/

.cdcn-map .tooltip {
  position: fixed;
  background-color: #F6F6F6;
  color: #003764;
  padding: 8px 12px;
  border-radius: 200px;
  font-size: 18px;
  line-height: 26px;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 999;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.cdcn-map a:active, .cdcn-map a:focus {
  outline: none;
}

.cdcn-map path {
  cursor: url('../icons/pointer.svg'), auto;
  transition: fill 0.2s;
}

.cdcn-map path:not([data-no-select="true"]):hover {
  fill: #f0f0f0;
}

.cdcn-map a > path:not([data-no-select="true"]):hover {
  fill: #003764;
}

/* Directory Card Stying */

.cdcn-directory-card {
  padding: 24px;
  background-color: white;
  border-radius: 40px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #003764;
  margin-bottom: 16px;
  scroll-margin-top: 70px;
}

.cdcn-directory-card .card-header-section {
    display: flex;
    justify-content: space-between;
}

.cdcn-directory-card .header-content {
    display: flex;
}

.cdcn-directory-card .card-header-section {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #D9D8D6;
}

.cdcn-directory-card .card-header-button { display: none; }

.cdcn-directory-card .card-thumbnail {
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 16px;
    margin-right: 20px;
}

.cdcn-directory-card .card-thumbnail img {
    max-height: 100%;
    width: 100%;
    height: 100%;
}

.cdcn-directory-card .card-labels {
    padding-top: 5px;
}

.cdcn-directory-card .card-labels p {  
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0px;
    margin-bottom: 8px;
    padding: 0px;
}

.cdcn-directory-card .card-labels h4 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
}

.cdcn-directory-card .card-address-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cdcn-directory-card .card-address-group .address {
    margin-bottom: 16px;
    width: 240px;
}

.cdcn-directory-card .card-address-group strong {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}

.cdcn-directory-card .card-address-group p, .cdcn-directory-card .card-address-group a {
    padding: 0px;
    margin: 0px;
    color: #003764;
    font-size: 16px;
    line-height: 26px;
}

.cdcn-directory-card .card-address-group a:hover {
    color: #003764;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-decoration: underline;
}

.cdcn-directory-card a.cdcn-website-link {
    color: #003764;
    width: 100%;
    display: block;
    padding: 6px 0px;
    border: 2px solid #009ADE;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.cdcn-directory-card a.cdcn-website-link:hover {
  color: #fff;
  background-color: #009ADE;
  border: 2px solid #009ADE;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  
  .cdcn-directory-card .card-address-group {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }

  .cdcn-directory-card .card-header-section {
    padding-bottom: 24px;
  }

  .cdcn-directory-card { padding: 40px; scroll-margin-top: 150px; }
}

@media screen and (min-width: 1024px) {
  
  .cdcn-directory-card .card-address-group {
      grid-template-columns: repeat(3, 1fr);
  }

  .card-address-group .address:nth-child(n+4) {
        margin-top: 8px;
  }

  .cdcn-directory-card .card-footer-section { display:none; }
  .cdcn-directory-card .card-header-button {
          display: flex;
          align-items: flex-end;
  }
  
  .cdcn-directory-card a.cdcn-website-link { padding: 6px 12px; }

}

/* Select Box */
.cdcn-select {
  position: relative;
  width: 100%;
}

.cdcn-select-box {
  padding: 11px 16px;
  background-color: white;
  border: 1px solid #D9D8D6;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #003764;
}

.cdcn-select-box .arrow {
  width: 24px;
  height: 24px;
  background-image: url('../icons/arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.cdcn-options {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #D9D8D6;
  border-radius: 8px;
  position: absolute;
  top: 100%;
  width: 100%;
  background-color: white;
}

.cdcn-options li a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #003764;
  padding: 11px 16px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.cdcn-options li:hover {
    background-color: #f0f0f1;
}

.cdcn-select .cdcn-options.open {
  display: block; /* Show when open */
}