.slideshow-container {
    max-width: 774px;
    position: relative;
    margin: auto;
    z-index: -1;
}

.mySlides {
  display: none;
  height: 390px;
/*  border: solid 1px black;*/
     
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #222428;
    font-weight: bold;
    font-size: 30px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0
}

.next {
    right: -50px;
    border-radius: 3px 3px 3px 3px
}

.prev {
    left: -50px;
    border-radius: 3px 3px 3px 3px
}

.prev:hover,
.next:hover {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.8)
}

.text {
    color: #FFFFFF;
    text-shadow: 2px 2px 11px #8C8686;
    text-align: center;    
    font-size: 30px;
    font-weight: bold;
    animation: 1s slidein-left;  /*-animate sliding in text form left to right */
    font-family: arial, serif;

/*    padding-top: 12px;
    padding-bottom: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #222428;*/
}

.top-right-text {
  position: absolute;
  top: 100px;
  right: 190px;
}

.top-right-text2 {
  position: absolute;
  top: 135px;
  right: 130px;
}

/*.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0
}*/

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    color: #005A9C;
    background-color: #FEBE10;
    display: inline-block;
    transition: background-color .6s ease;
    padding: 2px 2px 1px 2px;
    border: 1px #FFFFFF solid;
    font: 12px arial, sans-serif;
    font-weight: 600;

/*    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color .6s ease;*/
}


#startbtn,
#stopbtn{
    cursor: pointer;
    height: 15px;
    width: 30px;
    margin: 0 2px;
    color: white;
    /*background-color: #B1B1B1;*/
    background: rgba(230,230,230, 0.5);
    display: inline-block;
    transition: background-color .6s ease;
    padding: 2px 2px 1px 2px;
    border: 1px #EDEDED solid;
    font: 12px arial, sans-serif;
    font-weight: 600;    
}


.bg-box{
    background-color: white;
    opacity: 0.3;
    width: 774px;
    height: 28px;
    position: absolute;
    bottom: 1px;
    left: 1px;
}

.bottom-left-num {
  position: absolute;
  bottom: 4px;
  left: 5px;
}

.active,
.dot:hover {
    background-color: #005A9C;
    color: #FFFFFF;
    /*background-color: #717171*/
}

#startbtn:hover,
#stopbtn:hover {
    color: #005A9C;
    background: rgba(230,230,230, 0.8);
}

/*-animate sliding in text form left to right */
@keyframes slidein-left {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}