/*body {font-family: Arial, Helvetica, sans-serif;}
* {
  box-sizing: border-box;
}*/
.container-tinySlider {  /* Position the image container (needed to position the left and right arrows) */
  position: relative;
  width:360px;
  padding: 5px;
}
.container-img{
  padding:0px;
  border: 2px solid lightgrey;
}
.imgSlides {  /* Hide the images by default */
  display: none;
}
.imgSlides img {
  width:345px;
  height: 345px;
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}
.imgSlides img:hover {opacity: 0.7;}
.numbertext {   /* Number text (1/3 etc) */
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  color: #222 !important;
  background-color: lightgrey;
  opacity: 0.6;
  position: absolute;
  top: 5;
}
.prev, .next {  /* Next & previous buttons */
  cursor: pointer;
  position: absolute;
  top: 160px;  /* 40% */
  width: auto;
  padding: 10px; /* 16px */
  color: lightgrey !important;
  font-weight: bold;
  font-size: 20px;
  user-select: none;
  -webkit-user-select: none;
}
.prev {   /* Position the "next button" to the right */
  left: 5px;
}
.next {   /* Position the "next button" to the right */
  right: 5px;
}
.prev:hover, .next:hover {   /* On hover, add a black background color with a little bit see-through */
  color:#222 !important;
  background-color: lightgrey;
  opacity: 0.6;
}
.caption-container {  /* Container for image text */
  text-align: center;  /* center */
  font-weight: bold;
  font-size: 20px;
  padding: 5px;
  margin-top: -1px;
  color: #222;
  /*border: 2px solid lightgrey;*/
}
#altText{
  color: #222;
}
#titleText{
  color: red;
}
#nameText{
  color: blue;
}
.rowSlider {
  overflow: auto;
  white-space: nowrap;
  padding: 2px;
}
.rowSlider img {
  padding: 2px;
  width:  60px;
  height: 60px;
  object-fit: contain;
}
.rowSlider:after {
  content: "";
  display: table;
  clear: both;
}
.rowImg {  /* Add a transparency effect for thumnbail images */
  opacity: 0.6;
  cursor: pointer;
}
.active, .rowImg:hover {
  border: 1px solid lightgrey;
  opacity: 1;
}
/* ---------------------------------------------- */
.modal {  /* The Modal (background) */
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999999999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
.modal-content {  /* Modal Content (image) */
  margin: auto;
  display: block;
  max-width: 100%; /* 700px */
  height: auto;
}
#modal span {  /* The Close Button */
  position: absolute;
  top: 15px;
  right: 35px;
  color: orange;
  font-size: 120px;
  font-weight: 100;
  z-index: 9999999999; /* Sit on top */
  transition: 0.3s;
}
#modal span:hover, #modal span:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 700px){  /* 100% Image Width on Smaller Screens */
  .modal-content {
    width: 100%;
  }
}
@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}
@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}
/*
standard mobile css
width: 360px
height: 640px
*/