/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/modal-item/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
/** Variables
*
* Variables should follow the `--component-state-property-size` formula for
* consistent naming. Ex: --nav-link-disabled-color and
* --modal-content-box-shadow-xs.

* Z-index master list
*
* Warning: Avoid customizing these values. They're used for a bird's eye view
* of components dependent on the z-axis and are designed to all work together.
**/
:root {
  --zindex-dropdown: 1000;
  --zindex-sticky: 1020;
  --zindex-fixed: 1030;
  --zindex-modal-backdrop: 1040;
  --zindex-modal: 1050;
  --zindex-popover: 1060;
  --zindex-tooltip: 1070;
  --white: #fff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --black: #000;
  --line-height-base: 1.5;
  --border-width: 1px;
  --modal-inner-padding: 1rem 4.5rem;
  --modal-dialog-margin: 0.5rem;
  --modal-dialog-margin-y-sm-up: 1.75rem;
  --modal-title-line-height: var(--line-height-base);
  --modal-content-bg: var(--white);
  --modal-content-border-color: rgba(0, 0, 0, 0.2);
  --modal-content-border-width: var(--border-width);
  --modal-content-box-shadow-xs: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  --modal-content-box-shadow-sm-up: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  --modal-backdrop-bg: var(--black);
  --modal-backdrop-opacity: 0.5;
  --modal-header-border-color: var(--gray-200);
  --modal-footer-border-color: var(--modal-header-border-color);
  --modal-header-border-width: var(--modal-content-border-width);
  --modal-footer-border-width: var(--modal-header-border-width);
  --modal-footer-button-color: var(--gray-600);
  --modal-header-padding: 1rem;
  --modal-lg: 800px;
  --modal-md: 500px;
  --modal-sm: 300px;
  --modal-transition: transform 0.3s ease-out;
}

/* .modal-open      - body class for killing the scroll
.modal           - container to scroll within
.modal-dialog    - positioning shell for the actual modal
.modal-content   - actual modal w/ bg and corners and stuff */
.fade.show {
  opacity: 1;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

/* Kill the scroll on the body */
.modal-open {
  overflow: hidden;
  position: fixed;
}

/* Container that the modal scrolls within */
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--zindex-modal);
  display: none;
  overflow: hidden;
  /* Prevent Chrome on Windows from adding a focus outline. For details, see
  https://github.com/twbs/bootstrap/pull/10951.*/
  outline: 0;
  /* We deliberately don't use `-webkit-overflow-scrolling: touch;` due to a
  gnarly iOS Safari bug: https://bugs.webkit.org/show_bug.cgi?id=158342
  See also https://github.com/twbs/bootstrap/issues/17695 */
}
.modal .modal-open {
  overflow-x: hidden;
  overflow-y: auto;
}

/* shell div to position the modal with bottom padding */
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--modal-dialog-margin);
  /* allow clicks to pass through for custom click handling to close modal */
  pointer-events: none;
  /* When fading in the modal, animate it to slide down */
}
.modal-dialog .modal.fade {
  transition: var(--modal-transition);
  transform: translate(0, -25%);
}
.modal-dialog .modal.show {
  transform: translate(0, 0);
}

.modal-dialog-centered {
  display: flex;
  min-height: calc(100% - var(--modal-dialog-margin) * 2);
}

/* Actual modal */
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: auto;
  max-height: calc(100vh - 80px);
  width: 100%;
  /* width: 100%; Ensure `.modal-content` extends the full
   * width of the parent `.modal-dialog` */
  /* counteract the pointer-events: none; in the .modal-dialog */
  pointer-events: auto;
  background-color: var(--modal-content-bg);
  background-clip: padding-box;
  border: var(--modal-content-border-width) solid var(--modal-content-border-color);
  /* Remove focus outline from opened modal */
  outline: 0;
}

/* Modal background */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--zindex-modal-backdrop);
  background-color: var(--modal-backdrop-bg);
  /* Fade for backdrop */
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--modal-backdrop-opacity);
}

/* Modal header
Top section of the modal w/ title and dismiss */
.modal-header {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--modal-header-padding);
  z-index: 200;
}
.modal-header .close {
  padding: var(--modal-header-padding);
  align-self: flex-end;
  /* auto on the left force icon to the right
   * even when there is no .modal-title */
  margin: 0 0 0 auto;
}

/* Title text within header */
.modal-title {
  margin-bottom: 0;
  line-height: var(--modal-title-line-height);
}

/* Modal body
Where all modal content resides (sibling of .modal-header and .modal-footer) */
.modal-body {
  position: relative;
  /* Enable `flex-grow: 1` so that the body take up as much space as possible
   *  when should there be a fixed height on `.modal-dialog`. */
  flex: 1 1 auto;
  padding: 1rem 4.5rem;
}

/* Footer (for actions) */
.modal-footer {
  display: flex;
  align-items: center; /* vertically center */
  justify-content: flex-start;
  padding: 0 4.5rem 2rem;
  /* Easily place margin between footer elements */
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
.modal-footer button {
  background-color: transparent;
  color: var(--modal-footer-button-color);
}

/* Measure scrollbar width for padding body during modal show/hide */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

/* Scale up the modal */
@media screen and (min-width: 600px) {
  .modal-dialog-centered {
    min-height: calc(100vh - var(--modal-dialog-margin-y-sm-up) * 2);
    max-height: calc(100vh - var(--modal-dialog-margin-y-sm-up) * 2);
  }
  /* Automatically set modal's width for larger viewports */
  .modal-dialog {
    max-width: var(--modal-lg);
    margin: var(--modal-dialog-margin-y-sm-up) auto;
  }
  .modal-content {
    box-shadow: var(--modal-content-box-shadow-sm-up);
  }
  .modal-sm {
    max-width: var(--modal-sm);
  }
}
.wp-block-carkeek-blocks-modal-item {
  cursor: pointer;
}
.wp-block-carkeek-blocks-modal-item .ck-modal-item-name {
  font-size: 19px;
  margin-bottom: 0;
  font-weight: 900;
}
.wp-block-carkeek-blocks-modal-item .ck-modal-item-title {
  margin-bottom: 16px;
}
.wp-block-carkeek-blocks-modal-item .ck-modal-item-image {
  position: relative;
}
.wp-block-carkeek-blocks-modal-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.wp-block-carkeek-blocks-modal-item .close {
  font-size: 20px;
  text-align: right;
  display: block;
}
.wp-block-carkeek-blocks-modal-item .ck-team-member-additional .ck-modal-item-image {
  margin-bottom: 2rem;
}
.wp-block-carkeek-blocks-modal-item .ck-team-member-additional .ck-modal-item-details {
  margin-top: 1rem;
}

.ck-team-member-additional {
  display: none;
}

@media screen and (min-width: 768px) {
  .wp-block-carkeek-blocks-modal-item.pos-image-small .modal-body figure {
    width: 50%;
    float: left;
    padding-right: 2rem;
    margin-bottom: 2rem;
  }
  .wp-block-carkeek-blocks-modal-item.pos-image-small .ck-modal-item-details {
    clear: both;
  }
}

/*# sourceMappingURL=style-index.css.map*/