body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

.container {
    width: 66%; /* Adjust as needed */
    /*height: 100vh;  Adjust as needed */
    height: 100%; /* Adjust as needed */
    border: 0px solid #ccc;
    display: flex;
    padding: 0 50px;
    overflow: hidden; /* Hide overflow */
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

iframe {
    width: 100%;
    height: 100%;
}

.carousel-item img {
  object-fit: cover;
}
#carousel-thumbs {
  background: rgba(0,0,0,0);
  bottom: 0;
  left: 0;
  padding: 0 50px;
  right: 0;
}
#carousel-thumbs img {
  border: 5px solid transparent;
  cursor: pointer;
}
#carousel-thumbs img:hover {
  border: 0px solid transparent;
  /*border-color: #EE5007;*/
  /*border: 0px;*/
}
#carousel-thumbs .selected img {
  border: 5px solid transparent;
  border-color: #fff;
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
}
@media all and (max-width: 767px) {
  .carousel-container #carousel-thumbs img {
    border-width: 3px;
  }
}
@media all and (min-width: 576px) {
  .carousel-container #carousel-thumbs {
    position: relative;
    background: #000000;
  }
}

/*
@media (min-width: 645px) {
  .container {
    max-width: 605px;
  }
}

@media (min-width: 860px) {
  .container {
    max-width: 806px;
  }
}

@media (min-width: 1111px) {
  .container {
    max-width: 1075px;
  }
}

@media (min-width: 1344px) {
  .container {
    max-width: 1277px;
  }
}