.splide__slide {
    /* opacity of the thumbnails */
    opacity: .6;
}

.splide__slide.is-active {
    /* opacity of the selected thumbnail */
    opacity: 1;
}

h4.hint{
    color:lightgray;

}

.notice{
    display: block;
    margin-top: 15px;
}

#main-slider .splide__track ul li{
    text-align:center;
}
#main-slider .splide__track ul li img {
	max-width: 100%;
    width: auto;
    height: auto;
	max-height: 100% !important;
    border-radius:5px;
}

/*#thumbnail-slider .splide__track .splide__list li:last-child {*/
/*    margin-right: 0 !important;*/
/*}*/

#thumbnail-slider {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

#thumbnail-slider .splide__track .splide__list .splide__slide img {
  max-width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

@media screen and (orientation:landscape) {
    .notice{
        display:none !important;
    }
}

@media screen and  (min-width: 768px) {
    html body div.container.md-3 div.row div.col-md-8{
        margin: 0 auto !important;
    }
    .notice{
        display: none !important;
    }
}

/*.btn-close{*/
/*  background-color:#fff !important;*/
/*  border-radius: 9999px;*/
/*  box-shadow: 0 0 6px 3px #0f0f0f;*/
/*  padding: 0.5rem;*/
/*  transform: translateY(40px);*/
/*  z-index: 1000;*/
/*}*/

/* Styles for the modal/popup */
._modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
  }

  ._modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    height: 80vh; /* Take 80% of the viewport height */
    box-sizing: border-box; /* Include padding and border in width/height */
  }

  ._close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  ._close:hover,
  ._close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  body._modal-open {
    overflow: hidden; /* Disable scrolling of the body when modal is open */
}