/* Add here all your CSS customizations */
#myCarousel {
    max-height: 500px;
    overflow: hidden;
}

.carousel > .layer > .slide {
    visibility: hidden;
    position: absolute;
}

.carousel > .layer > .active {
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;

    visibility: visible;
    position: absolute;
}

.carousel > .layer > .last {
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;

    visibility: visible;
    position: absolute;
}

.carousel > .layer > .slide {
    width: 100%;
}

.carousel > .full > .active {
    position: relative;
}

.carousel > .full > .slide {
    top: 0px;
}

.carousel > .full > .slide > img {
    width: 100%;
}

.carousel > .center > .slide {
    top: 50%;
}

.carousel > .center > .slide > img {
    width: 50%;
}

.carousel > .background {
    width: 100%;
    position: absolute;
}

.carousel > .background > img {
    width: 100%;
}

.carousel > .slide-right > .slide {
    -ms-transform: translate(-100%,0px);
    -webkit-transform: translate(-100%,0px);
    transform: translate(-100%,0px);
}

.carousel > .slide-right > .active {
    -ms-transform: translate(0%,0px);
    -webkit-transform: translate(0%,0px);
    transform: translate(0%,0px);
}


.carousel > .slide-right > .last {
    -ms-transform: translate(100%,0px);
    -webkit-transform: translate(100%,0px);
    transform: translate(100%,0px);
}

.carousel > .slide-left > .slide {
    -ms-transform: translate(100%,0px);
    -webkit-transform: translate(100%,0px);
    transform: translate(100%,0px);
}

.carousel > .slide-left > .active {
    -ms-transform: translate(0%,0px);
    -webkit-transform: translate(0%,0px);
    transform: translate(0%,0px);
}


.carousel > .slide-left > .last {
    -ms-transform: translate(-100%,0px);
    -webkit-transform: translate(-100%,0px);
    transform: translate(-100%,0px);
}

.carousel > .fading > .slide {
    opacity: 0.0;
}

.carousel > .fading > .active {
    opacity: 1.0;
}


.carousel > .fading > .last {
    opacity: 0.0;
}


.priceTable {
    min-width: 160px;
    max-width: 230px;
    width: 20%;
    background: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 10px;

    transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
}

.priceTable tr {
    border: solid thin lightgrey;
}

.priceTableHeader {
    padding-top: 5px;
    color: #f34a53;
}

.priceTableButton a {
    background: grey;
    color: #FFFFFF;
}

.priceTableHeader > h4:first-of-type {
    font-weight: bold;
}

.priceTablePrice {
    height: 75px;
    background: #FAFAFA;
    color: #f34a53;
    padding-bottom: 10px;
}

.priceTable:hover .priceTablePrice {
    background: #f34a53;
    color: #FFFFFF;

    transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
}

.priceTable:hover .priceTablePrice h2 {
    color: #FFFFFF;
}

.priceTable:hover .priceTableButton a {
    background: #f34a53;
}

.priceTable:hover {
    transform: scale(1.05);
    z-index: 1;
}

.priceTablePrice > h2:first-of-type {
    color: #f34a53;
    font-weight: bold;
    margin-bottom: 0px;
}

.priceTableSub {
    color: #989898;
    align-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.priceTableSub > p:first-of-type {
    font-weight: bold;
}

#priceTableContainer {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;

    width: 100%;
}

.b-hr-stars__group img {
    margin-top: -10px;
    opacity: 0.5;
}