﻿* {
    box-sizing: border-box
}

body {

    margin: 0
}

.mySlidesIndex {
    display: none
}

img {
    vertical-align: middle;
}

/* SlidesIndexhow container */
.SlidesIndexhow-container {
 
   
    margin-top:46px
}

 
 

/* Number text (1/3 etc) */
.numbertextIndex {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dotIndex {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .activeIndex, .dotIndex:hover {
        background-color: #717171;
    }

/* Fading animation */
.fadeIndex {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fadeIndex {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prevIndex, .nextIndex, .textIndex {
        font-size: 11px
    }
}
