.video-item {
    position: relative;
    padding-top: 4.1%;
    padding-bottom: 51.95%;
    height: 0%;
  }
  .video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    min-height: 0;
  }
  
  .video-gallery {
    display: flex;
    position: relative;
    width: 100%;
  }

  * + .video-gallery,
  .video-gallery + * {
    margin-top: 30px;
  }

  .video-box {
    flex: 0 0 calc(100% - 400px);
    max-width: calc(100% - 400px);
    width: calc(100% - 400px);
    aspect-ratio: 16/9;
    height: auto;
    position: relative;
    background: #000;
  }
  .video-link {
    flex: 0 0 370px;
    max-width: 370px;
    width: 370px;
    padding: 0 0 0 30px;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
  }
  .video-link .content {
    position: absolute;
    width: 100%;
    height: auto;
    padding-right: 45px;
    box-sizing: border-box;
    left: 0;
    top: 0;
  }
  .video-link label {
	  cursor: pointer;
  }
  .video-gallery .video-item {
    animation: 600ms fadeOut ease;
    animation-fill-mode: both;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: 7;
    opacity: 0;
	visibility: hidden;
    transition: all 300ms ease;
  }
  .video-gallery input[type=radio] {
    font-size: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    position: fixed;
    width: 0;
  }
  .video-gallery input {
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .video-gallery label {
    display: block;
    width: calc(100% - 3rem);
    color: #595959;
    font-size: 1.25em;
    font-weight: 400;
    grid-column-start: 2;
    margin: 0 !important;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid #CCCCCC;
  }
  .video-gallery label:last-of-type {
    border: 0 none;
  }
  .video-gallery input[type=radio]:checked + label {
    color: #b7a294 !important;
  }
  .video-gallery input[type=radio]:checked + label:before {
    content: "▶";
    left: 1rem;
    top: 15px;
    position: absolute;
  }
  
  .grid-row-video {
    position: relative;
	z-index: 2;
  }
  .grid-row-video label {
    position: relative;
  }
  .grid-row-video .video-item {
    padding: 0;
    position: absolute;
    top: 0;
    width: 100%;
	height: 100%;
  }
  .grid-row-video:after {
    content: "";
    clear: both;
    display: table;
  }
  
  [class^="video-"].show {
    animation: 600ms fadeIn ease;
    animation-fill-mode: both;
    opacity: 1;
	visibility: visible;
    width: 100%;
  }
  
  @keyframes fadeOut {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
    
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @media (max-width: 1199px) {
    .video-link .content {
      position: relative;
    }
  }
 
  @media (max-width: 767px) {
    .video-box {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .video-link {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding: 0;
		margin-top: 15px;
    }
    .video-gallery {
      display: flex;
      flex-wrap: wrap;
      height: auto;
      max-height: none;
	  margin-top: 25px;
    }
    .video-gallery label {
      width: 100%;
    }
    .video-gallery .video-item {
      padding-top: 0%;
      padding-bottom: 0%;
      position: absolute;
      top: 0;
	  left: 0;
      width: 100%;
    }
  
    [class^="video-"].show {
        width: 100%;
		z-index: 2;
    }
	.page-specialist-video {
		padding-bottom: 40px;
	}
  }