/* ###################################### */
/* styles for slideshow image gallery --> */


#eqsl-line-1 {
  font-size:13px;
  text-align:center;
  color: black;
}

/* Styles for the eQSL.cc search box */

div#eqsl-srch-text {
  padding:1px;
  color:darkblue;
}

div#eqsl-waiting {
  padding:4px;
  color:darkblue;
  font-size:15px;
}

img-eqsl-srch-logo {
  width:230px;
  height:45px;
  padding:3px;
}

/* ##################################### */
/* Styles for the gallery images display */


.eqsl-container {
  position:relative;
}

div#eqsl-display-area {
  width:75%;
  margin: auto;
}

.eqsl-100pc-width {
  width: 100%;
}

/* body {
  font-family: Arial, Helvetica, sans-serif;
} */

* {
  box-sizing: border-box;
 
}

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}


.prev {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  left: 0;
}


.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  right: 0;
}


/* On hover, add a black background color with a little bit of see-through */

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  width:100%;
  background-color: slategray;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}



/* ############################# */
/* Style for tabbed link selections */


/* body {font-family: Arial;} */

/* Style the tab */

.tab {
  overflow: hidden;
  border: 1px solid slategray;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  color: blue;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

