.slider {
    height: 600px;
}

.slider-image {
    position: relative;
}
.slider-image .slider-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 1;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider-image .slider-image-overlay:nth-child(1) {
    z-index: 3;
}
.slider-image .slider-image-overlay:nth-child(1) {
    z-index: 2;
}
.slider-image .slider-image-overlay:nth-child(1) {
    z-index: 1;
}

.slider-items {
    border-radius: 0;
}
.slider-item {
    margin-bottom: 0;
    height: 33.33333333333%;
    border: none;
    padding: 35px 50px;
    border-radius: 0!important;
    box-shadow: 0 2px 20px rgba(255, 255, 255, .05);
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.slider-items .slider-item:nth-child(1) {
    background-color: #a47d52;
    z-index: 3;
}

.slider-items .slider-item:nth-child(2) {
    background-color: #ab8456;
    z-index: 2;
}

.slider-items .slider-item:nth-child(3) {
    background-color: #b38c5d;
    z-index: 1;
}

.slider-items .slider-item:hover {
    background-color: #c59e6d;
}

.slider-items .list-group-item-text {
    color: rgba(255, 255, 255, .8);
}

.slider-items .list-group-item-heading {
    color: #fff;
}

.slider-items .list-group-item .btn {
    border-radius: 0;
    border: none;
    background-color: transparent;
    margin-top: 15px;
    border: 1px solid #fff;
}
.slider-items .list-group-item .btn:hover {
    background-color: #fff;
    color: #b38c5d;
}



/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #a47d52; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    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: fadein 0.5s, fadeout 0.5s 3s forwards;
    animation: fadein 0.5s, fadeout 0.5s 3s forwards;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

#sidr-close {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,.1);
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    padding: 10px;
    color: #fff;
}

.sidr ul li ul li a, .sidr ul li ul li span {
    padding: 10px 10px 10px 60px;
    color: rgba(255,255,255,.6);
}
.sidr ul li a, .sidr ul li span {
    padding: 10px 10px 10px 30px;
}
.sidr ul li ul {
    background-color: transparent;
}
.sidr {
    padding: 50px 0;
}