body.show-media-overlay {
    /*overflow: hidden;*/
}

.media-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    max-width: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0);
    z-index: 10000;
    -webkit-transition: background-color 250ms 150ms, max-width 0ms 400ms;
    -moz-transition: background-color 250ms 150ms, max-width 0ms 400ms;
    transition: background-color 250ms 150ms, max-width 0ms 400ms;
}

.media-overlay.open {
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: background-color 250ms, max-width 0ms;
    -moz-transition: background-color 250ms, max-width 0ms;
    transition: background-color 250ms, max-width 0ms;
}

.media-overlay .media-overlay-container {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    max-width: 768px;
    height: 100%;
    background-color: #FFFFFF;
    -moz-box-shadow: 0 0 16px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 16px 5px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 150ms;
    transition: -webkit-transform 150ms;
    -moz-transition: transform 150ms, -moz-transform 150ms;
    transition: transform 150ms;
    transition: transform 150ms, -webkit-transform 150ms, -moz-transform 150ms;
}

.media-overlay.open .media-overlay-container {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: -webkit-transform 150ms 100ms;
    transition: -webkit-transform 150ms 100ms;
    -moz-transition: transform 150ms 100ms, -moz-transform 150ms 100ms;
    transition: transform 150ms 100ms;
    transition: transform 150ms 100ms, -webkit-transform 150ms 100ms, -moz-transform 150ms 100ms;
    height: 100%;
}

.media-overlay .media-overlay-content {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    opacity: 0;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
    overflow-y: scroll;
}

@media(max-width: 600px) {
    .media-overlay .media-overlay-content {
        padding-top: 60px;
    }
}

.media-overlay.loaded .media-overlay-content {
    opacity: 1;
}

.media-overlay-header {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10001;
    width: 100%;
    padding: 20px 50px 20px 20px;
    background-color: #008286;
    color: rgba(178, 215, 217, 1);
    font-family: Helvetica;
    font-size: 14px;
    line-height: 16px;
    height: 80px;
}

.media-overlay-header .heading {
    font-size: 20px;
    line-height: 18px;
    margin: 0px;
    color: #FFF;
    font-weight: normal;
}

.media-overlay-header .rating {
    display: inline-block;
    vertical-align: middle;
    color: #FDB00A;
    font-size: 21px;
    margin: 5px 10px 0px 0px;
}

.media-overlay-header .rating:empty {
    display: none;
}

.media-overlay-header .subheading {
    display: inline-block;
    vertical-align: middle;
    font-weight: 100;
    margin-top: 5px;
}

.media-overlay-header .subheading:empty {
    display: none;
}

.media-overlay-header .media-overlay-close {
    font-size: 24px;
    position: absolute;
    top: 50%;
    right: 10px;
    color: #FFF;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
}

.media-overlay-content .tabs {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    color: #666666;
    font-family: Arial;
    font-size: 0;
}

.media-overlay-content .tab {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    font-size: 16px;
    line-height: 50px;
    background-color: #F0F4F7;
    border: 1px solid #D7D7D7;
    border-top-width: 0px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: background-color 150ms, color 150ms;
    -moz-transition: background-color 150ms, color 150ms;
    transition: background-color 150ms, color 150ms;
}

.media-overlay-content .tabs[tab-count="1"] .tab {
    width: 100%;
}

.media-overlay-content .tabs[tab-count="2"] .tab {
    width: 50%;
}

.media-overlay-content .tabs[tab-count="3"] .tab {
    width: 33.33333%;
}

.media-overlay-content .tabs[tab-count="4"] .tab {
    width: 25%;
}

.media-overlay-content .tabs[tab-count="5"] .tab {
    width: 20%;
}

.media-overlay-content .tab:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-position: bottom center;
    background-repeat: no-repeat;
    -moz-background-size: contain;
    background-size: 20px 20px;
    background-size: contain;
    vertical-align: middle;
    margin-right: 5px;
}

.media-overlay-content .tab:before,
.media-overlay-content .tab span {
    vertical-align: middle;
}

.media-overlay-content .tab[rel="photos"]:before {
    background-image: url(icons/photos-default.svg);
    background-position: center;
}

.media-overlay-content .tab.selected[rel="photos"]:before {
    background-image: url(icons/photos-selected.svg);
}

.media-overlay-content .tab[rel="videos"]:before {
    background-image: url(icons/videos-default.svg);
}

.media-overlay-content .tab.selected[rel="videos"]:before {
    background-image: url(icons/videos-selected.svg);
}

.media-overlay-content .tab[rel="reviews"]:before {
    background-image: url(icons/reviews-default.svg);
}

.media-overlay-content .tab.selected[rel="reviews"]:before {
    background-image: url(icons/reviews-selected.svg);
}

.media-overlay-content .tab[rel="map"]:before,
.media-overlay-content .tab[rel="itinerary"]:before {
    background-image: url(icons/map-default.svg);
}

.media-overlay-content .tab.selected[rel="map"]:before,
.media-overlay-content .tab.selected[rel="itinerary"]:before {
    background-image: url(icons/map-selected.svg);
}

.media-overlay-content .tab .tab-counter {
    margin-left: 5px;
}

.media-overlay-content .tab:first-child,
.media-overlay-content .tab+.tab {
    border-left-width: 0px;
}

.media-overlay-content .tab:last-child {
    border-right-width: 0px;
}

.media-overlay-content .tab.selected {
    color: #008286;
    background-color: #FFFFFF;
    border-bottom-width: 0px;
}

.media-overlay-content .panel {
    max-height: 0px;
    opacity: 0;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
    overflow: hidden;
}

.media-overlay-content .panel.selected {
    max-height: none;
    opacity: 1;
    /*overflow-y: scroll;*/
    -webkit-transition: opacity 150ms 150ms;
    -moz-transition: opacity 150ms 150ms;
    transition: opacity 150ms 150ms;
}

.media-overlay-content .panel .media-large {
    padding: 20px;
    text-align: center;
    background: #FFF;
}

.media-overlay-content .panel .media-large h4 {
    color: #666666;
    margin: 20px 0px;
    font-family: Arial;
    font-size: 14px;
    line-height: 16px;
    font-weight: normal;
    opacity: 1;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
}

.media-overlay-content .panel .media-large img,
.media-overlay-content .panel .media-large video,
.iframe-container {
    display: block;
    max-width: 100%;
    width: auto;
    opacity: 1;
    -webkit-transition: opacity 100ms;
    -moz-transition: opacity 100ms;
    transition: opacity 100ms;
    width: 100%;
    height: auto;
}

.media-overlay-content .panel .media-large .iframe-container {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.media-overlay-content .panel .media-large .iframe-container iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.media-overlay-content .panel .media-large .hide {
    opacity: 0;
}

.media-overlay-content .panel .swipe {
    overflow: hidden;
    visibility: hidden;
    position: relative;
    height: 0px;
    padding-bottom: 66%;
}

.media-overlay-content .panel .swipe-wrap {
    overflow: hidden;
    position: absolute;
    height: 100%;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
}

.media-overlay-content .panel .swipe-wrap>div {
    float: left;
    width: 100%;
    position: relative;
}

.media-overlay-content .panel .swipe-wrap .swipe-instructions {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: normal;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    text-shadow: 0px 0px 1px #000;
    font-family: Helvetica;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    opacity: 1;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
}

.media-overlay-content .panel .swiped .swipe-instructions {
    opacity: 0;
    pointer-events: none;
}

.media-overlay-content .panel .swipe .swipe-controls {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 33%;
    font-size: 0;
    background-position: center;
    background-repeat: no-repeat;
    -moz-background-size: auto 50%;
    background-size: auto 50%;
    opacity: 0;
    -webkit-transition: opacity 150ms;
    -moz-transition: opacity 150ms;
    transition: opacity 150ms;
    cursor: pointer;
}

.media-overlay-content .panel .swipe:hover .swipe-controls {
    opacity: 0.5;
}

.media-overlay-content .panel .swipe:hover .swipe-controls:hover {
    opacity: 1;
}

.media-overlay-content .panel .swipe .swipe-controls.previous {
    background-image: url(icons/arrow-left.svg);
}

.media-overlay-content .panel .swipe .swipe-controls.next {
    background-image: url(icons/arrow-right.svg);
    left: auto;
    right: 0;
}

.media-overlay-content .panel .media-list {
    padding: 20px 10px 10px 20px;
    background-color: #F0F4F7;
    text-align: center;
}

.media-overlay-content .panel .media-list li {
    max-width: 82px;
    max-height: 55px;
    display: inline-block;
    margin: 0px 10px 10px 0px;
    cursor: pointer;
    opacity: .65;
    -webkit-transition: opacity 100ms;
    -moz-transition: opacity 100ms;
    transition: opacity 100ms;
}

.media-overlay-content .panel .media-list li.selected,
.media-overlay-content .panel .media-list li:hover {
    opacity: 1;
}

.media-overlay-content .panel .media-list li img {
    width: 100%;
    height: 100%;
}

@media (max-width:600px) {
    .media-overlay-header {
        padding: 10px;
        height: 60px;
    }
    .media-overlay-header .heading {
        font-size: 18px;
        line-height: 14px;
    }
    .media-overlay-header .subheading,
    .media-overlay-header .rating {
        font-size: 14px;
        line-height: 14px;
    }
    .media-overlay-content .tab .tab-text {
        display: none;
    }
    .media-overlay-content .panel .media-list li {
        max-width: -moz-calc((100% / 3) - 10px);
        max-width: calc((100% / 3) - 10px);
    }
}

.reviews-heading {
    position: relative;
    padding: 20px;
    background: #FFF;
    border-bottom: 1px solid #F0F4F7;
    color: #666666;
    font-family: Arial;
    font-size: 16px;
    line-height: 24px;
}

.reviews-heading .ratings-sort-order {
    position: absolute;
    top: 25px;
    right: 20px;
    color: #666666;
    font-family: Arial;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
	background: #fff url(//media.tripcentral.ca/style/responsive/img/packages/icon-select.png) no-repeat right center;
}

.reviews-heading .ratings-sort-order select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    max-width: 160px;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #B5B5B5;
    margin-left: 10px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #FFFFFF;
    -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
    color: #666666;
    font-family: Arial;
    font-size: 14px;
    line-height: 16px;
    vertical-align: middle;
}

.reviews-heading h3 {
    color: #008286;
    font-family: Arial;
    font-size: 24px;
    line-height: 24px;
    font-weight: normal;
}

.review-panel-inline .reviews-heading {
    color: #FFF;
    background-color: #008286;
    padding: 20px 50px;
}

.review-panel-inline .ratings-sort-order {
    display: none;
    color: #FFF;
}

.review-panel-inline .reviews-heading h3 {
    color: inherit;
}

.reviews-heading .rating {
    color: #FDB00A;
    font-size: 18px;
}

.detailed-reviews {
    position: relative;
    background-color: #F0F4F7;
    padding: 20px 20px 300px;
    text-align: center;
}

@media(max-width: 670px) {
    .reviews-heading {
        z-index: 1000;
        padding: 20px;
    }
    .reviews-heading h3 {
        font-size: 18px;
        line-height: 18px;
    }
    .reviews-heading .ratings-sort-order {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: 100%;
        left: 0px;
        right: 0px;
        padding: 20px 20px 10px;
    }
    .review-panel-inline .ratings-sort-order {
        display: none;
    }
    .reviews-heading .ratings-sort-order select {
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .detailed-reviews {
        padding: 80px 20px 10px !important;
    }
}

.detailed-reviews:after {
    content: 'Please wait while we load more reviews...';
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 300px;
    color: #666666;
    font-family: Arial;
    font-size: 24px;
    line-height: 24px;
    font-weight: normal;
}

.detailed-reviews.maxed {
    padding-bottom: 20px;
}

.detailed-reviews.maxed:after {
    content: none;
    display: none;
}

.review-panel-inline .detailed-reviews {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 50px;
}

.review-panel-inline .detailed-reviews:after {
    content: none;
}

.review-panel-inline .detailed-reviews .review-ratings ul {
    max-width: 325px;
}

@media(min-width: 1780px) {
    .review-panel-inline .detailed-reviews,
    .review-panel-inline .reviews-heading {
        padding: 20px -moz-calc((100% - 1680px) / 2);
        padding: 20px calc((100% - 1680px) / 2);
    }
}

@media(max-width: 1500px) {
    .review-panel-inline .detailed-reviews .review-ratings ul {
        max-width: 50%;
    }
}

@media(max-width: 1100px) {
    .review-panel-inline .detailed-reviews,
    .review-panel-inline .reviews-heading {
        padding: 20px;
    }
    .review-panel-inline .detailed-reviews .review-ratings ul {
        max-width: 350px;
    }
}

@media(max-width: 768px) {
    .detailed-reviews .reviewer-headshot {
        display: none;
    }
    .review-panel-inline .detailed-reviews {
        display: block;
    }
    .review-panel-inline .detailed-reviews,
    .review-panel-inline .reviews-heading {
        padding: 10px;
    }
    .review-panel-inline .detailed-reviews .review-ratings ul {
        max-width: 50%;
    }
}

@media(max-width: 600px) {
    .review-panel-inline .detailed-reviews .review-ratings ul {
        max-width: 300px;
    }
}

.detailed-review {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;*/
    margin: 0 auto;
    width: 100%;
    padding: 20px 20px 10px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #FFFFFF;
    -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
    color: #666666;
    font-family: Arial;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.detailed-review+.detailed-review {
    margin-top: 10px;
}

.review-panel-inline .detailed-review+.detailed-review {
    margin-top: 00px;
}

.review-panel-inline .detailed-review {
    max-width: -moz-calc(50% - 10px);
    max-width: calc(50% - 10px);
    vertical-align: top;
}

@media(max-width: 1000px) {
    .review-panel-inline .detailed-review+.detailed-review {
        margin-top: 10px;
    }
    .review-panel-inline .detailed-review {
        max-width: 100%;
    }
}

.reviewer-information {
    width: -moz-calc(100% - 50px);
    width: calc(100% - 50px);
    height: 40px;
    vertical-align: top;
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.detailed-reviews .reviewer-headshot {
    vertical-align: top;
    margin-right: 10px;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
}

.detailed-reviews .rating {
    color: #FDB00A;
    font-size: 18px;
    margin: 0px 5px 0px 0px;
}

.detailed-reviews .reviewer-name {
    color: #008286
}

.detailed-reviews .review-date {
    margin-right: 10px;
}

.detailed-reviews .verified-purchaser:before {
	content: '';
	background: url(icons/verified-purchaser.svg) no-repeat left center;
	padding-right: 20px;
}

.detailed-reviews .verified-purchaser {
	background: inherit !important;
	padding: 0 !important;
    color: #008286;
    margin-right: auto;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.detailed-reviews .review-title {
    display: block;
    font-weight: bold;
    line-height: 18px;
    width: -moz-calc(100% - 100px);
    width: calc(100% - 100px);
}

@media(max-width: 500px) {
    .reviewer-information {
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
    }
    .detailed-reviews .review-title {
        width: 100%;
    }
}

.detailed-reviews .review-text {
    margin-bottom: auto;
    max-height: 99999px;
    position: relative;
    overflow: hidden;
    -webkit-transition: max-height 150ms;
    -moz-transition: max-height 150ms;
    transition: max-height 150ms;
}

.detailed-reviews .review-text.truncated {
    max-height: 100px;
}

.detailed-reviews .review-text.truncated:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 30px;
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.detailed-reviews .review-text-read-more {
    color: #008286;
    text-decoration: underline;
    cursor: pointer;
}

.detailed-reviews .review-ratings {
    margin: 15px -20px 0px;
    width: 100%;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 15px 10px 0px;
    border-top: 1px solid #E8EBEE;
    text-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.detailed-reviews .review-ratings ul {
    display: inline-block;
    width: 50%;
    max-width: 375px;
    margin: 0 auto;
    word-spacing: 25px;
}

@media(max-width: 767px) {
    .detailed-reviews .review-ratings ul {
        display: inline-block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        word-spacing: 25px;
    }
}

.detailed-reviews .review-ratings li {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    word-spacing: normal;
    width: 33.333%;
    padding-bottom: -moz-calc(32.857% + 20px);
    padding-bottom: calc(32.857% + 20px);
    text-align: center;
}

.detailed-reviews .review-ratings li strong {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.detailed-reviews .review-ratings li .rating-circle {
    position: absolute;
    bottom: 0px;
    left: 12px;
    width: -moz-calc(100% - 25px);
    width: calc(100% - 25px);
    height: -moz-calc(100% - 25px);
    height: calc(100% - 25px);
}

.detailed-reviews .review-ratings li .rating-circle svg {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.detailed-reviews .review-ratings li .rating-circle circle {
    fill: none;
    stroke: #F1F1F1;
    stroke-width: 8px;
    position: absolute;
}

.detailed-reviews .review-ratings li .rating-circle .rating {
    -webkit-transform-origin: 50px 50px;
    -moz-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
    -webkit-transform: scale(-1, 1) rotate(-90deg);
    -moz-transform: scale(-1, 1) rotate(-90deg);
    transform: scale(-1, 1) rotate(-90deg);
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    -webkit-transition: stroke-dashoffset 500ms;
    -moz-transition: stroke-dashoffset 500ms;
    transition: stroke-dashoffset 500ms;
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-5 {
    stroke: #4EBD00;
    stroke-dashoffset: 0
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-4 {
    stroke: #BBD321;
    stroke-dashoffset: 56.6
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-3 {
    stroke: #DCB711;
    stroke-dashoffset: 113.2
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-2 {
    stroke: #D08801;
    stroke-dashoffset: 169.8
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-1 {
    stroke: #D03F01;
    stroke-dashoffset: 226.4
}

.detailed-reviews .review-ratings .rating-text {
    position: absolute;
    top: -moz-calc(50% + 3px);
    top: calc(50% + 3px);
    right: 0px;
    left: 0px;
    font-family: Arial;
    font-size: 24px;
    font-weight: bold;
}

.detailed-reviews .review-ratings li.rating-5 .rating-text {
    color: #4EBD00;
}

.detailed-reviews .review-ratings li.rating-4 .rating-text {
    color: #BBD321;
}

.detailed-reviews .review-ratings li.rating-3 .rating-text {
    color: #DCB711;
}

.detailed-reviews .review-ratings li.rating-2 .rating-text {
    color: #D08801;
}

.detailed-reviews .review-ratings li.rating-1 .rating-text {
    color: #D03F01;
}

.detailed-reviews .review-ratings li.rating-none .rating-text,
.detailed-reviews .review-ratings li.rating-none strong {
    color: #CCC;
}

 .media-overlay-container{-webkit-overflow-scrolling: touch !important;}
 
 .smallImageContainer{
	 background-color:black;  
	 height: 100%;
 }
 
 
.smallOldImage{
	width:256px  !important;
	height:151px  !important;	
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
 
	
