.heading {
    height: 5%;
    margin: 10px;
    padding: 10px;
    text-align: center;
}


.stickers-container {
    width: 100%;
    height: 90%;
}
.stickers-wrapper {
    text-align: center;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-general {
    padding: 75px 0;
    margin: 0 auto;
    width: 90%;
}
.container-general.v-2{
    padding: 0 0 3rem 0;
    margin: 0 auto;
    width: 90%;
}


.container-general .gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    /*    height: 70vh;*/
    height: 300px;
}
.container-general .gallery-wrap .item {
    flex: 1;
    display: grid;
    align-items: center;
    text-align: center;
    font-size: 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
    cursor: pointer;
}
.container-general .gallery-wrap .item:hover, 
.container-general .gallery-wrap .item.selected {   flex: 50%; /*transition: all 0.4s ease;*/ }
.container-general .gallery-wrap .item.selected.minimized {flex: 1;}
.container-general .gallery-wrap .item.selected { 
    -webkit-box-shadow: 0 0px 12px rgba(0, 0, 0, .4); 
    -moz-box-shadow: 0 0px 12px rgba(0, 0, 0, .4); 
    box-shadow: 0 0px 12px rgba(0, 0, 0, .4); 
}

.gallery-wrap .item { background: #3156EB; }
.gallery-wrap .item:nth-child(2n+2) { background: #EB607E; }   
.gallery-wrap .item:nth-child(3n+3) { background: #4969EB; }   
.gallery-wrap .item:nth-child(4n+4) { background: #EBBB31; }   
.gallery-wrap .item:nth-child(5n+5) { background: #3DEB59; }   


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome, Edge, Opera and Firefox */
}

/*.wrap-effect-1 .item { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4185141/galshir-cactus-coffee.png'); }
.wrap-effect-1 .item:nth-child(2n+2) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/6146136/galshir-tea-biscuit_2x.png'); }   
.wrap-effect-1 .item:nth-child(3n+3) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4473482/galshir-dog-walker.gif'); }   
.wrap-effect-1 .item:nth-child(4n+4) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/5743606/gal-shir-scooter_2x.png'); }   
.wrap-effect-1 .item:nth-child(5n+5) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4738104/galshir-storytime.png'); }   

.wrap-effect-2 .item { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4854597/galshir-umbrella.jpg'); }
.wrap-effect-2 .item:nth-child(2n+2) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4776189/galshir-genesis.png'); }   
.wrap-effect-2 .item:nth-child(3n+3) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/5329211/galshir-walking.gif'); }   
.wrap-effect-2 .item:nth-child(4n+4) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4611698/galshir-paper-boat.png'); }   
.wrap-effect-2 .item:nth-child(5n+5) { background-image: url('https://cdn.dribbble.com/users/729829/screenshots/4544774/galshir-window.png'); }   */




.swiper-container {
    width: 100%;
    height: 350px;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 40px;
    background: #fff;
    height: calc((100% - 15px) / 2);
    cursor: pointer;
    transition: background-color 0.4s ease;
    border-radius: 5px;
    
    -webkit-box-shadow: 0 0px 6px rgba(0, 0, 0, .175); 
    -moz-box-shadow: 0 0px 6px rgba(0, 0, 0, .175); 
    box-shadow: 0 0px 6px rgba(0, 0, 0, .175); 
    
    
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide.active {background-color: #ccc;}