image-carousel {
    display: block;
    box-sizing: border-box;
    width: 100%;
/*    overflow: hidden;*/
        position: relative;
        /*height:620px;*/
        margin-bottom:70px;
}

ic-slide {
    position: relative;
    background: #dcdbdb;
    display: block;
    width: 100%;
    background-position: center center;
    background-size: cover;

    
}
ic-button {
        background:#3c6180;
        background:rgba(60, 97, 128,.7);
    width: 50PX;
    height: 50px;
    position: absolute;
    color: #fff;
    top: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    cursor:pointer;
    margin:10px 0;
        box-shadow: 0px 0px 8px 0px rgba(0,0,0,.3);
}

ic-button.left-button{
    left:0;
    border-radius: 0% 20% 20% 0%;
}
ic-button.right-button{
    right:0;
    /*border-radius: 50% 50% 50% 50% ;*/
    border-radius: 20% 0% 0% 20%;
}

ic-chiclets{
    display:none;    
    text-align:center;
    transition:.2s;
        overflow: hidden;
    overflow-y: auto;
    
    box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
}


ic-chiclets img{
    display:block;
    width: 90%;
    box-sizing: border-box;
    margin: 5%;
    cursor:pointer;
    box-shadow: 0 0 3px 0 rgba(0,0,0,.2);
}
ic-chiclets img:hover{
    box-shadow: 0 0 3px 0 rgba(0,0,0,.2);
}
ic-chiclets img.selected{
    box-shadow: 0 0 3px 0 rgba(0,0,0,.2);
    border: 2px solid #eee;
}
ic-chiclets img.hidden{
    display:none;
}
ic-filters{
       display: block;
    position: relative; 
    box-shadow: 0px 1px 3px 0 rgba(0,0,0,.2);
    z-index: 1;
}
ic-filters::after {
  content: "";
  clear: both;
  display: table;
}
ic-filter-btn {
    float: left;
    line-height: 44px;
    padding: 0 10px;
    min-width: 60px;
    text-align: center;
    cursor: pointer;
}
ic-filter-btn.selected {
    background: #bbb;
}
@media (min-width: 540px) {

    .with-chiclets ic-slide{
        background-position: top left;
        background-size: contain;
        background-repeat:no-repeat;
    }
    
    .with-chiclets ic-chiclets {
        position: absolute;
        background: #3c6180;
        right: 0;
        width: 200px;
            bottom: 3px;
        display: block;
        top: 0;
    }
    .with-chiclets ic-button.right-button{
        right: 200px;
    }
}

ic-title {
    position: absolute;
    left:0;
    right:0;
    /*background: #464D6A;*/
    /*background: rgba(70, 77, 106, 0.9);*/
    background:#3c6180;
    background:rgba(60, 97, 128, 1);
    color: #eee;
    padding: 10px 20px;
    font-size: 1.1em;
    bottom: -67px;
        
}


img.ic-image {
        width: calc(100% - 200px);
}



@media (max-width: 640px) {
    .desktop-only{
        display:none;
    }
    image-carousel {
         height:40VH;
         /*overflow: visible;*/
         margin-bottom:50px;
    }
    ic-title{
        bottom: -42px;
    }
    ic-button{
            /*top: 125%;*/
    }
    img.ic-image {
        width:100%;
}

}