.zatemnenieStartNow {
    background: rgba(49, 49, 58, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    display: block;
}

.tableButtons {
    position: absolute;
    right: 15px;
    bottom: 7px;
    font-size: 21px;
    color: #31313a;
    cursor: pointer;
}

.tableButtons:visited {
    color: #31313a;
}

.tableButtons:hover {
    color: red;
}

.buttomRename,
.buttomRename:hover,
.buttomRename:focus {
    display: block !important;
    border: none !important;
    border-radius: 20px !important;
    width: 30% !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin: 0px auto !important;
    background: #31313a !important;
    color: white !important;
    font-size: 11pt !important;
    cursor: pointer;
    box-shadow: none !important;
}

.buttomRename:hover {
    background-color: #494949 !important;
}

.startNowBlock {
    position: absolute;
    width: 550px;
    padding-bottom: 20px;
    margin: 250px auto;
    text-align: center;
    top: 0;
    right: 0;
    left: 0;
    border-radius: 15px;
    background-color: rgba(235, 235, 235, 1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3), -23px 0 20px -23px rgba(0, 0, 0, .0), 23px 0 20px -23px rgba(0, 0, 0, .0), 0 0 40px rgba(0, 0, 0, .05) inset;
    font-size: 16pt;
    padding-top: 20px;
}

#startNowCloseButton {
    position: absolute;
    top: 6px;
    right: 14px;
}

#startNowCloseButton:hover {
    color: #ed1c24;
}

/*slideshow styles*/

.slideshow {
    background: #e2e2e2;
    float: left;
    margin: 25px 30px 0px 35px;

    width: 515px;
    /** margin: 0 auto;*/
    overflow: hidden;
    border: solid 1px white;
    margin-bottom: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3), -23px 0 20px -23px rgba(0, 0, 0, .0), 23px 0 20px -23px rgba(0, 0, 0, .0), 0 0 40px rgba(0, 0, 0, .05) inset;

}

@media only screen and (max-width: 1310px) {
    .slideshow {
        float: unset;
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: -10px;
    }
}

@media only screen and (max-width: 1255px) {
    .slideshowMain {
        margin: 0 auto !important;
        display: block;
        width: unset !important;
    }
}

.slideshow-container {
    width: 2575px;
    font-size: 0;
    transition: 1s ease;
    /* height: 270px;*/
}

.slideshow-container:hover {
    animation-play-state: paused;
}

.imgSlideshow {
    /* width: 625px;*/
    height: auto;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
}

.slide {
    animation: slide 24s ease infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    10% {
        transform: translateX(0%);
    }

    20% {
        transform: translateX(-20%);
    }

    30% {
        transform: translateX(-20%);
    }

    40% {
        transform: translateX(-40%);
    }

    50% {
        transform: translateX(-40%);
    }

    60% {
        transform: translateX(-60%);
    }

    70% {
        transform: translateX(-60%);
    }

    80% {
        transform: translateX(-80%);
    }

    90% {
        transform: translateX(-80%);
    }

    100% {
        transform: translateX(0);
    }
}