/*
Send-It Visual Programming Styles AND extended (Widgets) Elements Styles
*/
#sendit-snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 5px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 2000; /* Add a z-index if needed */
  left: 20px; /* Center the snackbar */
  right: 20px;
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#sendit-snackbar.show-snackbar {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: snackbar-fadein 0.5s, 1s;
  animation: snackbar-fadein 0.5s, 1s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes snackbar-fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes snackbar-fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes snackbar-fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes snackbar-fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.elem-slideshow {
    position: relative;
}

.elem-slideshow .slide {
    display: none;
}
.elem-slideshow .slide.active {
    display: flex;
}
.elem-slideshow .prev, .elem-slideshow .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: inherit;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
}
.elem-slideshow .slide .text {
    color: inherit;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: inherit;
    text-shadow: 2px 2px 2px rgba(124, 124, 124, 0.5);
}
.elem-slideshow .next {
    right: 0;
}

.elem-slideshow .prev {
    left: 0;
}

.elem-slideshow .prev:hover, .elem-slideshow .next:hover {
    background-color: rgba(125,125,125,0.2);
}

.elem-slideshow .dots-container {
    display: flex;
    align-items: stretch;
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding-bottom: 2px;
}

.elem-slideshow .dot {
    cursor: pointer;
    height: 05px;
    width: 100%;
    margin: 0 2px;
    background-color: #bbb;
    display: block;
    transition: background-color 0.6s ease;
}
.elem-slideshow .active, .elem-slideshow .dot:hover {
    background-color: currentColor;
}

.elem-text-drawer {
    text-align: inherit;
    font-size: inherit;
    font-family: inherit;
}

.elem-text-drawer button {
    border: none;
    background: transparent;
    text-align: inherit;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    padding: 0px;
}

.elem-pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.elem-pagination button {
    flex-grow: 1;
    margin-left: 5px;
    margin-right: 5px;
    color: inherit;
    border: none;
}

.elem-youtube {
    border: none;
}

.elem-table th, .elem-table td, .elem-table tr, .elem-table thead, .elem-table tbody {
    padding: inherit;
}