/* The main calendar widget.  DIV containing a table. */

.calendar {
  position: relative;
  display: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

.calendar table {
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  font-size: 11px;
  color: #000;
  cursor: default;
  background: #d4d0c8;
  font-family: tahoma,verdana,sans-serif;
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;
  padding: 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar .nav {
  background: transparent url(https://www.tsasafety.com/js/calendar/menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-weight: bold;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
}

.calendar thead .daynames { /* Row <TR> containing the day names */
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #000;
  padding: 2px;
  text-align: center;
  background: #f4f0e8;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #f00;
}

.calendar thead .hilite { /* How do the buttons in header appear when hover */
  border-top: 2px solid #fff;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-left: 2px solid #fff;
  padding: 0px;
  background-color: #e4e0d8;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  background-color: #c4c0b8;
}

/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #aaa;
}
.calendar tbody .day.othermonth.oweekend {
  color: #faa;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
  background: #f4f0e8;
}

.calendar tbody .rowhilite td {
  background: #e4e0d8;
}

.calendar tbody .rowhilite td.wn {
  background: #d4d0c8;
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  padding: 1px 3px 1px 1px;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar tbody td.selected { /* Cell showing selected date */
  font-weight: bold;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
  padding: 2px 2px 0px 2px;
  background: #e4e0d8;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #f00;
}

.calendar tbody td.today { /* Cell showing today date */
  font-weight: bold;
  color: #00f;
}

.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #f4f0e8;
  padding: 1px;
  border: 1px solid #000;
  background: #848078;
  color: #fff;
  text-align: center;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  padding: 1px;
  background: #e4e0d8;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  padding: 2px 0px 0px 2px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  width: 4em;
  top: 0px;
  left: 0px;
  cursor: default;
  border-top: 1px solid #fff;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #fff;
  background: #e4e0d8;
  font-size: 90%;
  padding: 1px;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .active {
  background: #c4c0b8;
  padding: 0px;
  border-top: 1px solid #000;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #000;
}

.calendar .combo .hilite {
  background: #048;
  color: #fea;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #766;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}

.more-videos .owl-carousel .owl-wrapper:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.more-videos .owl-carousel{ display: none; position: relative; width: 100%; -ms-touch-action: pan-y; }
.more-videos .owl-carousel .owl-wrapper{ display: none; position: relative; -webkit-transform: translate3d(0px, 0px, 0px); }
.more-videos .owl-carousel .owl-wrapper-outer{ overflow: hidden; position: relative; width: 100%; }
.more-videos .owl-carousel .owl-wrapper-outer.autoHeight{ -webkit-transition: height 500ms ease-in-out; -moz-transition: height 500ms ease-in-out; -ms-transition: height 500ms ease-in-out; -o-transition: height 500ms ease-in-out; transition: height 500ms ease-in-out;}
.more-videos .owl-carousel .owl-item{ float: left; text-align: center; }
.more-videos .owl-controls .owl-page, .owl-controls .owl-buttons div{ cursor: pointer; }
.more-videos .owl-controls { -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
.grabbing { cursor:url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/grabbing.png) 8 8, move; }
.more-videos .owl-carousel .owl-wrapper, .owl-carousel .owl-item{ -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -webkit-transform: translate3d(0,0,0); -moz-transform: translate3d(0,0,0); -ms-transform: translate3d(0,0,0); }
.more-videos .owl-theme .owl-controls{ text-align: center; }
.more-videos .owl-theme .owl-controls .owl-buttons div{ color: #FFF; display: inline-block; zoom: 1; display: inline; margin: 5px; padding: 3px 10px; font-size: 12px; background: #869791; -moz-opacity:1; -khtml-opacity: 1; opacity: 1; }
 .more-videos .owl-theme .owl-controls.clickable .owl-buttons div:hover{ -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5; text-decoration: none; }
.more-videos .owl-theme .owl-controls .owl-page{display: inline-block;zoom: 1;*display: inline;}
.more-videos .owl-theme .owl-controls .owl-page span{display: block;width: 12px;height: 12px;margin: 5px 7px;filter: Alpha(Opacity=50);opacity: 0.5;	-webkit-border-radius: 20px;-moz-border-radius: 20px;border-radius: 20px;background: #869791;}
.more-videos .owl-theme .owl-controls .owl-page.active span,.owl-theme .owl-controls.clickable .owl-page:hover span{filter: Alpha(Opacity=100);opacity: 1;}
.more-videos .owl-theme .owl-controls .owl-page span.owl-numbers{height: auto;width: auto;color: #FFF;padding: 2px 10px;font-size: 12px;-webkit-border-radius: 30px;-moz-border-radius: 30px;border-radius: 30px;}
.more-videos .owl-item.loading{min-height: 150px;background: url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/AjaxLoader.gif) no-repeat center center}	


.product-view .product-img-box .more-videos li{float: none !important; display: inline-block; margin: 0 3px 8px;}
.more-videos ul{ margin-left:0px !important;}
.more-videos .owl-theme .owl-controls{ top: 0;}
.more-videos .owl-theme .owl-next{ position: absolute;  right: -18px; top: 2px;}
.more-videos .owl-theme .owl-prev{ position: absolute;  left: -18px; top: 2px;}
.more-videos .owl-theme .owl-controls .owl-buttons .owl-next{ background: url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/thumbs-slider-next.png) no-repeat center center; top:50%; font-size: 0; padding: 10px 6px; width: 18px; height: 13px; margin: -22px 0 0;}
.more-videos .owl-theme .owl-controls .owl-buttons .owl-prev{ background: url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/thumbs-slider-owl-prev.png) no-repeat center center; top:50%; font-size: 0; padding: 10px 6px; width: 18px; height: 13px; margin: -22px 0 0;}
.more-videos .owl-theme .owl-controls {width: 100%;}
.more-videos .owl-buttons{ width: 100%;}


.rwd .owl-theme .owl-next{top:50%; margin-top: -17px !important; right: -9px;}
.rwd .owl-theme .owl-prev{top:50%; margin-top: -17px !important; left: -9px;}
.more-views { margin-bottom: 20px;}
.product-img-box h2 { font-size: 14px; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif;}


.product-videos { margin-left: -15px; margin-right: -15px;}
.description li, .description span{ font-size: 12px !important; line-height: 22px !important;}
.product-videos .videos a{ display: inline-block;}
.product-videos .title h3 {  font-size: 11px !important; text-transform: uppercase;  font-weight: bold !important;  padding: 0 0 0 !important; color: #0a263c; margin:0 0 5px 0 !important; }
.more-videos h2{ margin:0 0 10px 0 !important; padding-bottom: 5px;}
.tab-content .title h3 { color: #636363; font-size: 12px !important; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif; font-weight: bold;}
a.thumb-link, a.video-thumb{ border: 1px solid #c7c7c7 !important;}
a.thumb-link:hover, a.video-thumb:hover, a.thumb-link.active, a.video-thumb.active{ border: 1px solid #636363 !important;}
.rwd #without-carousel { margin: 0 -3px;}
.rwd #without-carousel li { margin: 0 3px 4px !important;}
.more-videos .owl-item img { max-width: 100%; height: auto;}
.default .product-image-videos img { max-width: 100%; height: auto;}


.video-description .title { clear: both;}
.description{ display: inline-block; vertical-align: middle; } 
.video-description .video-item { padding: 0 15px 0; }
.videos { display: inline-block; float: left; width: 100%; height: auto; margin-bottom: 15px;}
.videos video  { width: 100%; } 
source { display: block; float: left; width: 100%;}
.video-description ul { margin: 0px;}
.tab-content .rwd .video-description ul li{ background: url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/bullet.png) left 7px no-repeat; font-size: 13px !important; padding: 0 0 0 10px; line-height: 18px !important; margin-bottom: 10px; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif;}
.more-videos { clear: both;}
.more-videos a { position: relative; display: inline-block;}
.more-videos .play-video-icon{ background: url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/video-icon.png) center center no-repeat; background-color: rgba(0,0,0,0.5); height: 100%; width: 100%; text-align: center; vertical-align: middle; position: absolute; top: 0; left: 0; opacity: 0.7; }


#html5-elem-box{ overflow-y: auto !important; max-height: 600px;}
.popup-title{ text-transform: uppercase; font-size: 12px !important; color: #0a263c; width: 100% !important; padding: 5px 0 0; margin-bottom: 5px; font-weight: bold; }
#html5-text{ font-size: 12px !important;}
#html5-text p { margin-bottom: 10px;}



.rwd .video-description {width: 33.333%; float: left; }
.product-img-box .rwd h2 { text-align: left; font-size: 14px; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif; padding: 0; float: left;}
.product-img-box .rwd .product-image-videos { clear: both; }
.product-img-box .rwd { clear: both;}
.product-img-box .product-view-rwd .play-video { margin-bottom: 15px; text-align: center; max-width: 100%; }
.product-img-box .product-view-rwd .play-video video { max-width: 100%;}
.product-view-rwd .product-view-rwd .video-description { width: 100%; margin-bottom: 10px; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif; font-size: 13px;}
.product-img-box .product-view-rwd .video-description p { margin-bottom: 10px;}
.product-img-box .product-view-rwd .video-description a { text-decoration: underline; color: #636363; }
.product-img-box .product-view-rwd .video-description a:hover { text-decoration: none;}
.product-img-box .product-view-rwd .video-title h4 { font-size: 11px; margin: 0 0 3px 0; text-transform: uppercase;  font-weight: bold; }
.tab-content .rwd .video-description p { font-size: 13px; font-weight: 400 !important; margin-bottom: 10px; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif;}
.tab-content .rwd .video-description a { text-decoration: underline; color: #636363;}
.tab-content .rwd .video-description a:hover { text-decoration: none;}
.tab-content .rwd .title h3 { color: #636363; font-size: 12px !important; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif; font-weight: bold;}
.product-view-rwd .video-description { width: 100%; margin-bottom: 10px; font-family: "Raleway","Helvetica Neue",Verdana,Arial,sans-serif; font-size: 13px;}


.video-description { width: 50%; float: left; margin-bottom: 35px;  }
.product-img-box .play-video { margin-bottom: 15px; text-align: center; max-width: 100%; }
.product-img-box .play-video video { max-width: 100%;}
.product-img-box .video-title h4 { font-size: 11px; margin: 0 0 3px 0; text-transform: uppercase;  font-weight: bold; }
.product-img-box .video-description { width: 100%; margin-bottom: 10px; font-size: 13px;}
.product-img-box .video-description p { margin-bottom: 10px;}
.video-description ul li{ background: url(https://cf-cdn.tsasafety.com/skin/frontend/base/default/video/bullet.png) left 7px no-repeat; padding: 0 0 0 10px; margin-bottom: 10px; }
ul li a.video-hiden { display: none !important; }

.product-view .box-tags { clear: both; }



@media only screen and (max-width: 1199px) {
.product-img-box .rwd .owl-wrapper-outer .owl-item { text-align: center}
.product-img-box .rwd .owl-wrapper-outer .owl-item li { float: none !important}
}


@media only screen and (max-width: 991px) {
    .rwd .video-description {width: 50%;  }
}

@media only screen and (max-width: 770px) {
    .tab-container {width: 100%; box-sizing: border-box; float: left; clear: both; }
    .product-collateral > dl > dt { clear: both;}
    #html5-lightbox-box { margin-top: 160px !important;}
    .popup-description { padding-bottom: 10px; }
}
@media only screen and (max-width: 767px) {
    #html5-lightbox-box { margin-top: 25px !important;}
    #html5-elem-box { max-height: 370px; }
}
@media only screen and (max-width: 600px) {
    .rwd .video-description {width: 100%;  }
    .rwd .video-description:last-child { margin-bottom: 0;}
    .more-videos .owl-theme .owl-item { text-align: center;}
    .more-videos .owl-theme .owl-item li { float: none !important;}    
    .popup-description { padding-bottom: 10px; }
    #html5-elem-box { max-height: 300px; }
}
@media only screen and (max-width: 480px) {
    .more-videos .owl-theme .owl-next { right: -13px; }
    .more-videos .owl-theme .owl-prev { left: -13px;}
    .rwd .owl-theme .owl-next { right: -9px; }
    .rwd .owl-theme .owl-prev { left: -9px;}
}
