/*=======================================================================
* Template Name: Sanju Singh
* Author: Vivek Singh
* Tags: html
======================================================================= */
/* Table of content
--------------------------------------------
General Styles
Preloader Styles
Button Styles
Topbar Styles
Main Header Styles
Banner Styles
Movie Styles
Upcomming Styles
News Styles
Footer Styles
------------------------------------------
Movie Page Styles
TV Show Page Styles
Single Movie Page Styles
Celebrity Page Styles
Single Celebrity Page Styles
News Page Styles
Single News Page Styles
Contact Page Styles
Login Page Styles
Signup Page Styles
------------------------------------------*/
/*------------------------------------------------------
General Styles
------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.714;
  color: #505050;
}

.theatre {
    position: absolute;
    right: 20px;
    top: 0;
    text-align: center;
    max-width: 400px;
    min-width: 300px;
    z-index: 99999;
}

.theatre h1 {
    font-size: 30px;
    text-shadow: 2px 2px 2px rgba(150, 150, 150, 1);
}

h1, .h1 {
  font-size: 4rem;
}

h2, .h2 {
  font-size: 3.6rem;
}

h3, .h3 {
  font-size: 3rem;
}

h4, .h4 {
  font-size: 2.4rem;
}

h5, .h5 {
  font-size: 1.8rem;
}

h6, .h6 {
  font-size: 1.4rem;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 500;
  line-height: 1.125;
}

a {
  color: #d80383;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:focus, a:visited {
  outline: none;
  text-decoration: none;
  color: #d80383;
}
a:hover {
  color: #c8102e;
  text-decoration: none;
}
.text-white a, .theme-bg a {
  color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.section {
  float: left;
  width: 100%;
  clear: both;
  position: relative;
}

.section-padding {
  padding: 50px 0;
}
.section-padding.top-padding-normal {
  padding-top: 0;
}
.section-padding.bottom-padding-normal {
  padding-bottom: 0;
}

.section-header {
  margin-bottom: 30px;
}

.section-title {
  margin: 0;
}

.page-header {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  background-image: url(../../images/bg/page-header.png);
  background-position: center center;
  background-size: cover;
}
.page-header .page-header-overlay {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
  background-image: linear-gradient(to bottom, transparent 0%, #000000 100%);
  color: #ffffff;
  padding: 215px 0 40px;
}
.page-header .page-title {
  margin: 0;
  font-size: 4rem;
  font-weight: 400;
}

/*** Form and control ***/
form {
  position: relative;
}

input:not([type=radio]):not([type=checkbox]):not([type=submit]), textarea {
  width: 100%;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}

textarea {
  resize: none;
}

/*------------------------------------------------------
Preloader Styles
------------------------------------------------------*/
.preloader {
  position: fixed;
  z-index: 999;
  background-color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lds-css.ng-scope {
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@keyframes lds-ripple {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 18px;
    width: 156px;
    height: 156px;
    opacity: 0;
  }
}
@-webkit-keyframes lds-ripple {
  0% {
    top: 96px;
    left: 96px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 18px;
    left: 18px;
    width: 156px;
    height: 156px;
    opacity: 0;
  }
}
.lds-ripple {
  position: relative;
}

.lds-ripple div {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  border-width: 4px;
  border-style: solid;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(1) {
  border-color: #d80383;
}

.lds-ripple div:nth-child(2) {
  border-color: #d80383;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.lds-ripple {
  width: 100px !important;
  height: 100px !important;
  -webkit-transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
  transform: translate(-50px, -50px) scale(0.5) translate(50px, 50px);
}

/*------------------------------------------------------
Button Styles
------------------------------------------------------*/
.play-video {
  height: 60px;
  width: 60px;
  display: inline-block;
  background-color: #d80383;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px rgba(235, 20, 54, 0.3);
          box-shadow: 0 0 0 10px rgba(235, 20, 54, 0.3);
  font-size: 2.2rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.play-video:hover {
  -webkit-box-shadow: 0 0 0 10px #d80383;
          box-shadow: 0 0 0 10px #d80383;
}
.play-video i {
  color: #ffffff;
  margin-left: 5px;
  line-height: inherit;
}

.btn {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #d80383;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 50px;
  padding: 0 42px;
  border-radius: 25px;
}
.btn:focus, .btn:visited, .btn:active {
  color: #fff;
  background-color: #d80383;
  outline: none;
}
.btn:hover {
  color: #d80383;
  background-color: #ffffff;
  outline: none;
}

/*------------------------------------------------------
Topbar Styles
------------------------------------------------------*/
.topbar {
  background-color: #efefef;
  padding: 9px 0;
}

.topbar-intro {
  font-size: 1.5rem;
  margin: 3px 0 0;
}

.topbar-right-btns {
  text-align: right;
}
.topbar-right-btns .btn {
  color: #ffffff;
  font-weight: 600;
  padding: 3px 15px;
  border-radius: 15px;
  font-size: 1.4rem;
  line-height: 1.42857143;
}
.topbar-right-btns .btn:focus, .topbar-right-btns .btn:visited {
  outline: none;
}
.topbar-right-btns .btn:hover {
  color: #111111;
  background-color: #ffffff;
}

/*------------------------------------------------------
Main Header Styles
------------------------------------------------------*/

.navbar-default {
  border: none;
  border-radius: 0;
  margin: 0;
  background:#d80383;
}
.navbar-header{
	width:100%;
	float:inherit;
	display:inline-block;
	text-align:center;
}
.navbar-default .navbar-brand {
  height: auto;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 0px;
  float:inherit;  
  
	display:inline-block;
	text-align:center;
}
.navbar-default .navbar-form {
  margin-left: 55px;
  float: left;
  padding: 0;
}
.navbar-default .navbar-form select {
  color: #505050;
  background-color: transparent;
  border: none;
  line-height: 39px;
  height: 39px;
  float: left;
  width: 110px;
  padding: 0 15px;
  border-top-left-radius: 19.5px;
  border-bottom-left-radius: 19.5px;
  border: 1px solid #d8d8d8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-default .navbar-form select:hover, .navbar-default .navbar-form select:focus {
  border-color: #d80383;
}
.navbar-default .navbar-form [type=search] {
  float: left;
  width: calc(100% - 160px) !important;
  border: none;
  background-color: transparent;
  height: 39px;
  line-height: 39px;
  padding: 0 15px;
  border-width: 1px;
  border-style: solid;
  border-color: #d8d8d8 transparent #d8d8d8 transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navbar-default .navbar-form [type=search]:focus {
  border-color: #d80383;
}
.navbar-default .navbar-form [type=submit] {
  float: left;
  width: 50px;
  text-align: center;
  border-top-right-radius: 19.5px;
  border-bottom-right-radius: 19.5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  line-height: 39px;
  height: 39px;
  background-color: transparent;
  border: none;
  padding: 0;
  border: 1px solid #d8d8d8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #999999;
}
.navbar-default .navbar-form [type=submit]:hover, .navbar-default .navbar-form [type=submit]:focus {
  border-color: #d80383;
  color: #d80383;
}
.navbar-default .navbar-nav {
  margin-top: 0px;
  margin-bottom: 0px;
  
}
.navbar-default .navbar-nav > li > a {
  color: #fff;
  font-size: 1.5rem;
}
.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:visited {
  color: #fff;
}
.navbar-default .navbar-nav > li > a:hover {
  color: #d80383;
}

.navbar-default .navbar-nav > li.active > a {
  color: #d80383;
  background-color: transparent;
}
.navbar-default .navbar-nav > li.active > a:hover, .navbar-default .navbar-nav > li.active > a:focus, .navbar-default .navbar-nav > li.active > a:visited {
  color: #d80383;
  background-color:#fff;
}
.navbar-default .navbar-nav li > a {
  color: #fff;
  font-size: 1.5rem;
}
.navbar-default .navbar-nav li > a:focus, .navbar-default .navbar-nav li > a:visited {
  color: #fff;
}
.navbar-default .navbar-nav li > a:hover {
  color: #d80383;
 /* background-color:#fff;*/
  border-radius:5px 5px 0 0;
}
.navbar-default .navbar-nav li.dropdown > a {
  position: relative;
}
.navbar-default .navbar-nav li.dropdown > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  margin-left: 4px;
}
.navbar-default .navbar-nav li.dropdown > .dropdown-menu {
  display: block;
  border: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
}
.navbar-default .navbar-nav li.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

/*------------------------------------------------------
Banner Styles
------------------------------------------------------*/
.banner-slider-area {
  height: auto;
}
.banner-slider-area .bannerImage img{
	width:100%;
}
.banner-slider .owl-pagination {
  position: absolute;
  bottom: 55px;
  right: 50%;
  margin-right: -570px;
}
.banner-slider .owl-page {
  background-color: green;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 33px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 10px;
  font-size: 1.5rem;
  color: #ffffff;
}
.banner-slider .owl-page span {
  display: block;
}
.banner-slider .owl-page.active {
  background-color: rgba(235, 20, 54, 0.5);
}

.banner-item {
  height: auto;
  background-size: cover;
  background-position: center right;
  position: relative;
}

.banner-item .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.overlay-70 {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  position: relative;
}

.banner-contentx {
  position: absolute;
  left: 0;
  right: 0;
  top:80%;
  transform: translateY(-50%);
}
.search-container .arrow-down{display:none;}
.banner-content .rating {
  width: 53px;
  height: 50px;
  background-image: url(../../images/icons/bstar.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  text-align: center;
  line-height: 53px;
}
.banner-content .banner-title {
  margin-bottom: 0;
  font-size:30px; color:#000; font-weight:700;
}
.banner-content p {
  margin-bottom: 0;
  line-height: normal;
  font-size: 22px;
  color:#999;
}
.banner-title a{    text-shadow: none;
    font-size: 37px;
    font-weight: bold;
}
/*------------------------------------------------------
Movie Section Styles
------------------------------------------------------*/
.video-carousel .owl-item, .customer-carousel .owl-item, .news-carousel .owl-item {
  padding: 0 15px;
}
.video-carousel .owl-buttons{
  position: absolute;
  top: -70px;
  right: 15px;
}
.customer-carousel .owl-buttons, .news-carousel .owl-buttons {
  position: absolute;
  top: -58px;
  right: 15px;
}
.upcoming-shows .owl-buttons, .past-shows .owl-buttons, .other-shows .owl-buttons {
  position: absolute;
  top: -47px;
  right: 0px;
}
.upcoming-shows, .past-shows, .other-shows{
	margin-top:10px;
	margin-bottom:10px;
}
.video-carousel .owl-prev,
.video-carousel .owl-next,
.customer-carousel .owl-prev,
.customer-carousel .owl-next,
.news-carousel .owl-prev,
.news-carousel .owl-next,
.upcoming-shows .owl-prev,
.upcoming-shows .owl-next,
.past-shows .owl-prev,
.past-shows .owl-next,
.other-shows .owl-prev,
.other-shows .owl-next {
  font-size: 2.4rem;
  color: #505050;
  border: 2px solid #e7e7e7;
  display: inline-block;
  float: left;
  height: 35px;
  width: 35px;
  line-height: 33px;
  border-radius: 50%;
  text-align: center;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search{
	background:rgba(236, 0, 140, 0.5);
	padding:20px 20px;
	position:relative;
	z-index:9999;
	width:100%;
}
.search-container{
	position:relative;
	width:100%;
	margin-bottom:40px;
}
.search input{
	height:44px;
	padding-right:50px;
}
.search button{
	background:#d80383;
	border:0;
	color:#fff;
	position:absolute;
	top:0;
	right:0;
	padding:0 20px;
	height:44px;
	border-radius:0 4px 4px 0;
}
.video-carousel .owl-prev:hover,
.video-carousel .owl-next:hover,
.customer-carousel .owl-prev:hover,
.customer-carousel .owl-next:hover,
.news-carousel .owl-prev:hover,
.news-carousel .owl-next:hover,
.upcoming-shows .owl-prev:hover,
.upcoming-shows .owl-next:hover,
.past-shows .owl-prev:hover,
.past-shows .owl-next:hover,
.other-shows .owl-prev:hover,
.other-shows .owl-next:hover   {
  color: #ffffff;
  background-color: #d80383;
  border-color: #d80383;
}

.video-item {
  float: left;
  width: 100%;
  position: relative;
}
.video-item .rating {
  display: block;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 38px;
  height: 36px;
  background-image: url(../../images/icons/mstar.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  font-size: 1.2rem;
  color: #ffffff;
  text-align: center;
  line-height: 40px;
}
.video-item .thumb-hover, .card-image .thumb-hover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background:rgba(0, 0, 0, 0.5);
 /* background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 20, 54, 0.9)), to(rgba(123, 67, 151, 0.9)));
  background-image: linear-gradient(to bottom, rgba(235, 20, 54, 0.9) 0%, rgba(123, 67, 151, 0.9) 100%);*/
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-item .thumb-hover .play-video, .card-image .thumb-hover .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 44px;
  width: auto;
  line-height: 44px;
  font-size: 1.4rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.video-item .thumb-hover .play-video i {
  color: #d80383;
  margin-left: 3px;
}

.card-image .thumb-hover .play-video2 {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 44px;
  width: auto;
  line-height: 44px;
  font-size: 1.4rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.video-item .thumb-hover .play-video2 i {
  color: #d80383;
  margin-left: 3px;
}
.video-item .video-details {
  margin-top: 20px;
}
.video-item .video-details .video-title {
  margin: 0;
  font-size: 1.8rem;
  color: #111111;
}
.video-item .video-details .video-title a {
  color: inherit;
}
.video-item .video-details .video-title a:hover {
  color: #d80383;
}
.video-item .video-details .video-release-on {
  color: #808080;
  margin-bottom: 0;
  margin-top: 5px;
}
.video-item:hover .thumb-hover, .production-card:hover .thumb-hover {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.thumb-wrap {
  width: 100%;
  clear: both;
  position: relative;
  display: block;
  Height:157px;
  Overflow:hidden;
}
.thumb-wrap img {
  max-width: 100%;
  height:auto;
  max-height:210px;
}

.all-link {
  display: inline-block;
  float: right;
  line-height: 35px;
  color: #111111;
  font-size: 1.5rem;
  margin-right: 100px;
}
.all-link:focus, .all-link:visited {
  color: #111111;
}
.all-link:hover {
  color: #d80383;
}

/*------------------------------------------------------
Upcomming Styles
------------------------------------------------------*/
.upcomming-section {
  background:#fff;
}

.upcomming-featured {
  position: relative;
}
.upcomming-featured .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.upcomming-featured .upcomming-details {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  padding: 146px 50px 0 50px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background-image: linear-gradient(to top, black 0%, transparent 100%);
}
.upcomming-featured .upcomming-details .video-title {
  margin: 0;
}
.upcomming-featured .upcomming-details .video-release-on {
  font-size: 1.6rem;
  margin: 10px 0 20px 0;
}

.upcomming-item {
  position: relative;
  float: left;
  width: 100%;
}
.upcomming-item + .upcomming-item {
  margin-top: 30px;
}
.upcomming-item .upcomming-hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 20, 54, 0.9)), to(rgba(123, 67, 151, 0.9)));
  background-image: linear-gradient(to bottom, rgba(235, 20, 54, 0.9) 0%, rgba(123, 67, 151, 0.9) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.upcomming-item .upcomming-hover .play-video {
  background-color: #ffffff;
  font-size: 1.4rem;
  height: 44px;
  width: 44px;
  line-height: 44px;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.upcomming-item .upcomming-hover .play-video:hover {
  -webkit-box-shadow: 0 0 0 8px #ffffff;
          box-shadow: 0 0 0 8px #ffffff;
}
.upcomming-item .upcomming-hover .play-video i {
  color: #d80383;
  margin-left: 3px;
}
.upcomming-item .upcomming-details {
  position: absolute;
  padding: 25px 15px 5px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background-image: linear-gradient(to top, black 0%, transparent 100%);
  bottom: 0;
  left: 0;
  right: 0;
}
.upcomming-item .upcomming-details .video-title {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 500;
}
.upcomming-item .upcomming-details .video-release-on {
  font-size: 1.2rem;
  margin: 0;
}
.upcomming-item:hover .upcomming-hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*------------------------------------------------------
News Section Styles
------------------------------------------------------*/
.news-section .all-link {
  margin-right: 0;
}

.news-featured {
  position: relative;
  display: block;
}
.news-featured .img-responsive {
  width: 100%;
}
.news-featured .news-date-meta {
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #d80383;
  color: #ffffff;
  display: block;
  line-height: 30px;
  padding: 0 16px;
  z-index: 2;
}
.news-featured .news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 100px 30px 20px;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000000));
  background-image: linear-gradient(to bottom, transparent 0%, #000000 100%);
}
.news-featured .news-title {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.67;
  color: #ffffff;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 20px;
}

.news-item {
  float: left;
  width: 100%;
 margin-bottom: 30px;
}
.news-item + .news-item {
  margin-top: 30px;
}
.news-item .news-thumb {
  display: inline-block;
  float: left;
  width: 170px;
  margin-right: 30px;
}
.news-item .news-thumb + .news-content {
  width: calc(100% - 200px);
}
.news-item .news-content {
  float: left;
}
.news-item .news-date-meta {
  color: #d80383;
  margin-top: 0px;
  display: block;
}
.news-item .news-title {
  color: #111111;
  font-size: 1.6rem;
  margin: 3px 0 0;
}
.news-item .news-title a {
  color: inherit;
}
.news-item .news-title a:hover {
  color: #d80383;
}
.news-item .news-excerpt {
  margin-top: 18px;
  margin-bottom: 0;
}

/*------------------------------------------------------
Footer Styles
------------------------------------------------------*/
footer {
  background-color: #ddd;
  float: left;
  width: 100%;
}

.footer-widget-area {
  float: left;
  width: 100%;
  clear: both;
  padding: 35px 0 0px;
}
.disclaimer{
	padding:0px 0 10px;
	color:#666;
}

.footer-logo {
  display: block;
}
.footer-logo + .about-text {
  margin-top: 40px;
  color: #b4b4b4;
}

.footer-social {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.footer-social .footer-social-title {
  margin: 0 0 20px 0;
}

.socials {
  float: left;
  width: 100%;
}
.socials a {
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color:#222;
  float: left;
}
.socials a + a {
  margin-left: 15px;
}
.socials a:hover {
  background-color: #d80383;
}

.additional-info .socials {
  float: inherit;
  width: 100%;
  display:inline-block;
}
.additional-info .socials a {
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  height: 35px;
  width: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  background-color:#d80383;
  float: inherit;
}
.additional-info .socials a + a {
  margin-left: 15px;
}
.additional-info .socials a:hover {
  background-color: #0f1619;
}

.widget {
  float: left;
  width: 100%;
}
.widget + .widget {
  margin-top: 35px;
}
.widget .widget-title {
  font-size: 2.2rem;
  margin-top: 0;
  color:#333;
  margin-bottom: 35px;
}
.widget .widget-inner {
  float: left;
  width: 100%;
}
.widget .widget-cat {
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget .widget-cat .cat {
  display: block;
  float: left;
  width: 50%;
}
.widget .widget-cat .cat a {
  font-weight: 500;
  line-height: 2.57;
  color: #666;
}
.widget .widget-cat .cat a:hover {
  color: #222;
}
.widget.about-widget {
  margin-top: -15px;
}
.widget.newsletter-widget p {
  margin-bottom: 25px;
  color:#666;
}
.widget.newsletter-widget .subscription {
  float: left;
  width: 100%;
  clear: both;
}
.widget.newsletter-widget .subscription [type=email] {
  border: 2px solid rgba(0, 0, 0, 0.5);
  line-height: 41px;
  height: 45px;
  padding: 0 15px;
  background-color: transparent;
  float: left;
  width: calc(100% - 70px);
  margin-right: 10px;
  color:#222;
}
.widget.newsletter-widget .subscription [type=submit] {
  width: 60px;
  line-height: 41px;
  height: 45px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  color: #666;
  font-size: 1.8rem;
  background-color: transparent;
}
.widget.newsletter-widget .subscription ::-webkit-input-placeholder {
  color: #b4b4b4;
  opacity: 1;
}
.widget.newsletter-widget .subscription ::-moz-placeholder {
  color: #b4b4b4;
  opacity: 1;
}
.widget.newsletter-widget .subscription :-ms-input-placeholder {
  color: #b4b4b4;
  opacity: 1;
}
.widget.newsletter-widget .subscription :-moz-placeholder {
  color: #b4b4b4;
  opacity: 1;
}
.widget.app-widget .widget-title {
  margin-bottom: 20px;
}
.widget.app-widget .google-play-download {
  margin-right: 20px;
}
.widget.app-widget .google-play-download, .widget.app-widget .apple-store-download {
  display: inline-block;
  float: left;
}

.copyright-footer {
  float: left;
  width: 100%;
  clear: both;
  background:#cbcbcb;
}
.copyright-footer .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  padding-bottom: 28px;
}
.copyright-footer .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.copyright-footer .footer-nav li {
  display: inline-block;
}
.copyright-footer .footer-nav li a {
  display: block;
  color: #b4b4b4;
}
.copyright-footer .footer-nav li a:hover {
  color: #d80383;
}
.copyright-footer .footer-nav li + li a {
  margin-left: 20px;
}
.copyright-footer .copyright-text {
  margin: 0;
  text-align: right;
  color: #222;
  line-height:30px;
}
.copyright-footer .copyright-text a {
  color: inherit;
}
.copyright-footer .copyright-text a:hover {
  color: #d80383;
}

.newsletter-success, .newsletter-error {
  display: none;
  margin-top: 12px;
  margin-bottom: 0 !important;
  padding: 3px 10px;
}

.newsletter-success {
  border: 1px solid #16a085;
}

.newsletter-error {
  border: 1px solid #d80383;
}

/*------------------------------------------------------
Movies Page Styles
------------------------------------------------------*/
.video-list {
  float: left;
  width: 100%;
}
.video-list .video-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: left;
  width: 100%;
  padding-bottom: 50px;
  border-bottom: 1px solid #e6e6e6;
}
.video-list .video-item + .video-item {
  margin-top: 50px;
}
.video-list .video-item .video-thumb {
  width: 270px;
  float: left;
}
.video-list .video-item .video-thumb + .video-details {
  margin-left: 30px;
  width: calc(100% - 500px);
}
.video-list .video-item .video-details {
  float: left;
}
.video-list .video-item .video-details .video-title {
  font-size: 3rem;
  margin: 0;
  color: #111111;
}
.video-list .video-item .video-details .video-title a {
  color: inherit;
}
.video-list .video-item .video-details .video-title a:hover {
  color: #d80383;
}
.video-list .video-item .video-details .video-release-date {
  font-size: 1.6rem;
  margin-top: 5px;
  margin-bottom: 0;
}
.video-list .video-item .video-details .ratings-wrap {
  float: left;
  clear: both;
  width: 100%;
  margin: 25px 0;
}
.video-list .video-item .video-details .rating {
  width: 53px;
  height: 50px;
  background-image: url(../../images/icons/bstar.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  text-align: center;
  line-height: 53px;
  position: static;
  color: #111111;
  font-size: 1.4rem;
  float: left;
  margin-right: 15px;
}
.video-list .video-item .video-details .expanded-rating {
  float: left;
  width: calc(100% - 68px);
}
.video-list .video-item .video-details .star-rating {
  display: block;
  float: left;
}
.video-list .video-item .video-details .star-rating .star {
  display: inline-block;
  float: left;
  margin-right: 3px;
  position: relative;
}
.video-list .video-item .video-details .star-rating .star:before {
  content: "\f005";
  font-family: "FontAwesome";
  font-size: 1.6rem;
  color: #808080;
}
.video-list .video-item .video-details .star-rating .star.on:before {
  color: #ffc000;
}
.video-list .video-item .video-details .user-voted {
  color: #808080;
  display: block;
  clear: left;
}
.video-list .video-item .video-details .user-voted i {
  color: #d80383;
  font-size: 1.6rem;
  margin-right: 5px;
}
.video-list .watch-now-wrap {
  width: 200px;
  text-align: right;
}
.video-list .btn-watch-now {
  width: 170px;
  height: 45px;
  line-height: 41px;
  background-color: #d80383;
  border: 2px solid #d80383;
  border-radius: 22px;
  color: #ffffff;
  display: inline-block;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-list .btn-watch-now:hover {
  color: #d80383;
  background-color: transparent;
}

.video-attributes {
  float: left;
  width: 100%;
  clear: both;
}
.video-attributes p {
  font-size: 1.5rem;
}
.video-attributes p label {
  margin: 0;
}

.share-on {
  float: left;
  clear: both;
  width: 100%;
}
.share-on label {
  margin: 0;
}
.share-on .share-social {
  display: inline-block;
}
.share-on .share-social a {
  margin: 0 8px;
  display: inline-block;
}
.share-on .share-social a .fa-facebook {
  color: #3b5999;
}
.share-on .share-social a .fa-twitter {
  color: #55acee;
}
.share-on .share-social a .fa-google-plus {
  color: #dd4b39;
}
.share-on .share-social a .fa-pinterest {
  color: #bd081c;
}

.pagination {
  margin-top: 60px;
  margin-bottom: 0;
}

.nav-links .current-page, .nav-links .page-numbers {
  font-weight: 500;
  color: #111111;
  border: 2px solid #dadada;
  display: inline-block;
  height: 40px;
  line-height: 38px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-links .current-page {
  padding: 0 12px;
}
.nav-links .page-numbers {
  width: 40px;
  text-align: center;
}
.nav-links .page-numbers.prev, .nav-links .page-numbers.next {
  font-size: 1.8rem;
  line-height: 36px;
}
.nav-links .page-numbers:hover {
  color: #d80383;
}
.nav-links .page-numbers.current {
  color: #d80383;
  border-color: #d80383;
}

/*------------------------------------------------------
TV Show Page Styles
------------------------------------------------------*/
.show-listing {
  float: left;
  width: 100%;
}
.show-listing .video-item {
  margin-bottom: 50px;
}
.show-listing .pagination {
  margin-top: 0;
}

/*------------------------------------------------------
Single Movie Styles
------------------------------------------------------*/
.page-header.single-video-header {
  background-image: url(../../images/bg/single-page-header.png);
}

.video-single {
  float: left;
  width: 100%;
}
.video-single .thumb-wrap {
  position: relative;
}
.video-single .thumb-wrap .thumb-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.video-single .thumb-wrap .thumb-hover .play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video-single .thumb-wrap + .content-wrap {
  margin-top: 60px;
}
.video-single .content-wrap {
  float: left;
  width: 100%;
}
.video-single .content-wrap .video-thumb {
  width: 270px;
  float: left;
}
.video-single .content-wrap .video-thumb + .video-details {
  margin-left: 30px;
  width: calc(100% - 300px);
}
.video-single .content-wrap .video-details {
  float: left;
}
.video-single .content-wrap .video-details .video-title {
  font-size: 3rem;
  margin: 0;
  color: #111111;
}
.video-single .content-wrap .video-details .video-title a {
  color: inherit;
}
.video-single .content-wrap .video-details .video-title a:hover {
  color: #d80383;
}
.video-single .content-wrap .video-details .video-release-date {
  font-size: 1.6rem;
  margin-top: 5px;
  margin-bottom: 0;
}
.video-single .content-wrap .video-details .ratings-wrap {
  float: left;
  clear: both;
  width: 100%;
  margin: 25px 0;
}
.video-single .content-wrap .video-details .rating {
  width: 53px;
  height: 50px;
  background-image: url(../../images/icons/bstar.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  text-align: center;
  line-height: 53px;
  position: static;
  color: #111111;
  font-size: 1.4rem;
  float: left;
  margin-right: 15px;
}
.video-single .content-wrap .video-details .expanded-rating {
  float: left;
  width: calc(100% - 68px);
}
.video-single .content-wrap .video-details .star-rating {
  display: block;
  float: left;
}
.video-single .content-wrap .video-details .star-rating .star {
  display: inline-block;
  float: left;
  margin-right: 3px;
  position: relative;
}
.video-single .content-wrap .video-details .star-rating .star:before {
  content: "\f005";
  font-family: "FontAwesome";
  font-size: 1.6rem;
  color: #808080;
}
.video-single .content-wrap .video-details .star-rating .star.on:before {
  color: #ffc000;
}
.video-single .content-wrap .video-details .user-voted {
  color: #808080;
  display: block;
  clear: left;
}
.video-single .content-wrap .video-details .user-voted i {
  color: #d80383;
  font-size: 1.6rem;
  margin-right: 5px;
}

.single-section {
  float: left;
  width: 100%;
}
.single-section + .single-section {
  margin-top: 60px;
}
.single-section .single-section-title {
  font-size: 3rem;
  color: #111111;
  margin-top: 0;
  margin-bottom: 25px;
}
.single-section .section-content p {
  margin-bottom: 35px;
}
.single-section .section-content p:last-child {
  margin-bottom: 0;
}

.single-gallery-slider .owl-prev, .single-gallery-slider .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 2.4rem;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-gallery-slider .owl-prev:hover, .single-gallery-slider .owl-next:hover {
  color: #d80383;
}
.single-gallery-slider .owl-prev {
  left: 0;
}
.single-gallery-slider .owl-next {
  right: 0;
}

/*------------------------------------------------------
Celebrity Page Styles
------------------------------------------------------*/
.celebrity-list {
  float: left;
  width: 100%;
}
.celebrity-list .pagination {
  margin-top: 0;
}

.celebrity-item {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}
.celebrity-item .thumb-hover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(235, 20, 54, 0.9)), to(rgba(123, 67, 151, 0.9)));
  background-image: linear-gradient(to bottom, rgba(235, 20, 54, 0.9) 0%, rgba(123, 67, 151, 0.9) 100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.celebrity-item .thumb-hover .celebrity-link {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40px;
  width: 40px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
}
.celebrity-item .thumb-hover .celebrity-link:before {
  left: 0;
  top: 50%;
  margin-top: -2px;
  width: 100%;
  height: 4px;
}
.celebrity-item .thumb-hover .celebrity-link:after {
  left: 50%;
  margin-left: -2px;
  top: 0;
  height: 100%;
  width: 4px;
}
.celebrity-item .thumb-hover .celebrity-link:before, .celebrity-item .thumb-hover .celebrity-link:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
}
.celebrity-item .celebrity-details {
  margin-top: 20px;
}
.celebrity-item .celebrity-details .celebrity-name {
  margin: 0;
  font-size: 1.8rem;
  color: #111111;
}
.celebrity-item .celebrity-details .celebrity-name a {
  color: inherit;
}
.celebrity-item .celebrity-details .celebrity-name a:hover {
  color: #d80383;
}
.celebrity-item .celebrity-details .celebrity-profession {
  color: #808080;
  margin-bottom: 0;
  margin-top: 5px;
}
.celebrity-item:hover .thumb-hover {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*------------------------------------------------------
Single Celebrity Page Styles
------------------------------------------------------*/
.page-header.single-celebrity-header {
  background-image: url(../../images/bg/single-celebrity-header.png);
}

.celebrity-single {
  float: left;
  width: 100%;
}
.celebrity-single .content-wrap {
  float: left;
  width: 100%;
}
.celebrity-single .content-wrap .celebrity-thumb {
  width: 270px;
  float: left;
}
.celebrity-single .content-wrap .celebrity-thumb + .celebrity-details {
  margin-left: 30px;
  width: calc(100% - 300px);
}
.celebrity-single .content-wrap .celebrity-details {
  float: left;
}
.celebrity-single .content-wrap .celebrity-details .celebrity-name {
  font-size: 3rem;
  margin: 0;
  color: #111111;
}
.celebrity-single .content-wrap .celebrity-details .celebrity-name a {
  color: inherit;
}
.celebrity-single .content-wrap .celebrity-details .celebrity-name a:hover {
  color: #d80383;
}
.celebrity-single .content-wrap .celebrity-details .celebrity-profession {
  font-size: 1.6rem;
  margin-top: 5px;
  margin-bottom: 0;
}

.celebrity-infos {
  margin-top: 25px;
}
.celebrity-infos p {
  font-size: 1.5rem;
  line-height: 2.1rem;
}
.celebrity-infos p label {
  margin-bottom: 0;
}

.filmography-table {
  width: 100%;
}
.filmography-table tr {
  border-bottom: 1px solid #e6e6e6;
}
.filmography-table tr.head-tr {
  font-size: 1.8rem;
  color: #111111;
  line-height: 100%;
  font-weight: 400;
}
.filmography-table tr.head-tr th {
  font-weight: inherit;
}
.filmography-table th,
.filmography-table td {
  padding-bottom: 20px;
}
.filmography-table th:last-child,
.filmography-table td:last-child {
  text-align: right;
}
.filmography-table td {
  padding-top: 20px;
}
.filmography-table .film-poster {
  width: 125px;
  padding-right: 25px;
}
.filmography-table .film-details .film-title {
  font-size: 1.8rem;
  color: #111111;
  margin: 0;
}
.filmography-table .film-details .film-title a {
  color: inherit;
}
.filmography-table .film-details .film-title a:hover {
  color: #d80383;
}
.filmography-table .film-details .film-title .film-category {
  margin-bottom: 0;
  margin-top: 3px;
}

/*------------------------------------------------------
News Page Styles
------------------------------------------------------*/
.news-list {
  float: left;
  width: 100%;
}
.news-list .news-item {
  float: left;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 40px;
}
.news-list .news-item + .news-item {
  margin-top: 0;
}
.news-list .news-item .news-excerpt {
  margin-top: 25px;
}
.news-list .news-thumb {
  display: block;
  width: 100%;
  float: left;
}
.news-list .news-thumb img {
  max-width: 100%;
}
.news-list .news-content {
  width: 100%;
  float: left;
}
.news-list .news-metas {
  color: #808080;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.news-list .news-metas a {
  color: inherit;
}
.news-list .news-metas a:hover {
  color: #d80383;
}
.news-list .news-title {
  margin: 0;
  font-size: 2rem;
}
.news-list .news-link-btn {
  display: inline-block;
  background-color: #d80383;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  line-height: 35px;
  height: 35px;
  padding: 0 30px;
  border-radius: 17px;
  margin-top: 40px;
}
.news-list .pagination {
  margin-top: 20px;
}

/*** Sidebar Widgets Styles ***/
.sidebar {
  float: left;
  width: 100%;
}
.sidebar .widget {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 35px;
  margin-bottom: 50px;
}
.sidebar .widget + .widget {
  margin-top: 0;
}
.sidebar .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar .widget .widget-title {
  color: #111111;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 25px;
}
.sidebar .widget .widget-inner {
  float: left;
  width: 100%;
}
.sidebar .widget.search-widget {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar .widget .searchform {
  width: 100%;
  float: left;
  position: relative;
}
.sidebar .widget .searchform ::-webkit-input-placeholder {
  color: #111111;
  opacity: 1;
}
.sidebar .widget .searchform ::-moz-placeholder {
  color: #111111;
  opacity: 1;
}
.sidebar .widget .searchform :-ms-input-placeholder {
  color: #111111;
  opacity: 1;
}
.sidebar .widget .searchform :-moz-placeholder {
  color: #111111;
  opacity: 1;
}
.sidebar .widget .searchform [type=search] {
  color: #111111;
  width: 100%;
  height: 50px;
  border: 1px solid #e1e1e1;
  line-height: 48px;
  padding: 0 60px 0 15px;
}
.sidebar .widget .searchform [type=submit] {
  width: 60px;
  height: 50px;
  border: 1px solid transparent;
  line-height: 48px;
  color: #111111;
  position: absolute;
  background-color: transparent;
  right: 0;
  top: 0;
}
.sidebar .widget .widget-cat {
  list-style-type: circle;
}
.sidebar .widget .widget-cat .cat {
  display: block;
  width: 100%;
}
.sidebar .widget .widget-cat .cat + .cat {
  margin-top: 17px;
}
.sidebar .widget .widget-cat .cat a {
  color: #505050;
  font-weight: 400;
  display: block;
  line-height: 2;
}
.sidebar .widget .widget-cat .cat a span {
  float: right;
}
.sidebar .widget .widget-cat .cat a:before {
  content: "\f111";
  font-family: "FontAwesome";
  font-size: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.sidebar .widget .widget-cat .cat a:hover {
  color: #d80383;
}
.sidebar .widget .widget-posts {
  float: left;
  width: 100%;
}
.sidebar .widget .widget-posts .widget-post {
  float: left;
  width: 100%;
}
.sidebar .widget .widget-posts .widget-post + .widget-post {
  margin-top: 25px;
}
.sidebar .widget .widget-posts .widget-post .widget-thumb {
  display: inline-block;
  width: 70px;
  float: left;
  margin-right: 20px;
}
.sidebar .widget .widget-posts .widget-post .widget-thumb + .widget-post-content {
  float: left;
  width: calc(100% - 90px);
}
.sidebar .widget .widget-posts .widget-post .widget-post-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #111111;
}
.sidebar .widget .widget-posts .widget-post .widget-post-title:hover {
  color: #d80383;
}
.sidebar .widget .widget-posts .widget-post .widget-post-date {
  margin-top: 10px;
  margin-bottom: 0;
}
.sidebar .widget .tags {
  margin: -5px;
  float: left;
  width: calc(100% + 10px);
}
.sidebar .widget .tags .tag {
  display: inline-block;
  color: #505050;
  height: 35px;
  line-height: 33px;
  border: 1px solid #e1e1e1;
  border-radius: 17px;
  padding: 0 17px;
  float: left;
  margin: 5px;
}
.sidebar .widget .tags .tag:hover {
  color: #ffffff;
  background-color: #d80383;
  border-color: #d80383;
}

/*------------------------------------------------------
Single News Page Styles
------------------------------------------------------*/
.news-single {
  float: left;
  width: 100%;
}

.news-single-main {
  float: left;
  width: 100%;
  clear: both;
}

.single-thumb {
  margin-bottom: 30px;
}

.news-entry p {
  margin-bottom: 25px;
  line-height: 2;
}
.news-entry p:last-child {
  margin-bottom: 0;
}
.news-entry blockquote {
  border-color: #e8e8e8 #e8e8e8 #e8e8e8 #d80383;
  border-style: solid;
  border-width: 1px 1px 1px 5px;
  position: relative;
  font-weight: 500;
  font-size: 1.6rem;
  color: #111111;
  padding: 30px 60px 30px 75px;
  margin-bottom: 25px;
  background-color: #f7f7f7;
}
.news-entry blockquote:before {
  position: absolute;
  content: "\f10d";
  font-family: "FontAwesome";
  font-size: 2.4rem;
  top: 35px;
  left: 35px;
  line-height: 100%;
  color: #d80383;
}

.single-footer {
  float: left;
  clear: both;
  width: 100%;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 40px;
  padding: 12px 0;
}
.single-footer label {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 500;
  color: #111111;
  display: inline-block;
}

.news-share {
  float: left;
  width: 100%;
}
.news-share .share-social {
  display: inline-block;
}
.news-share .share-social a {
  margin: 0 8px;
  display: inline-block;
  font-size: 1.5rem;
}
.news-share .share-social a .fa-facebook {
  color: #3b5999;
}
.news-share .share-social a .fa-twitter {
  color: #55acee;
}
.news-share .share-social a .fa-google-plus {
  color: #dd4b39;
}
.news-share .share-social a .fa-pinterest {
  color: #bd081c;
}

.news-tag {
  text-align: right;
}
.news-tag a {
  font-size: 1.5rem;
}

.given-comment {
  float: left;
  width: 100%;
  clear: both;
  margin-top: 95px;
}
.given-comment .given-comment-title {
  font-size: 2.4rem;
  margin: 0;
  color: #111111;
  float: left;
  width: 100%;
}
.given-comment .comments {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  width: 100%;
  clear: both;
}
.given-comment .child-comments {
  padding-left: 110px;
}
.given-comment .comment {
  width: 100%;
  float: left;
}
.given-comment .comment-wrap {
  width: 100%;
  float: left;
  border-bottom: 1px solid #e6e6e6;
  padding: 40px 0;
}
.given-comment .commenter-thumb {
  border-radius: 50%;
  height: 80px;
  width: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
.given-comment .commenter-thumb img {
  max-width: 100%;
}
.given-comment .comment-body {
  float: left;
  width: calc(100% - 110px);
}
.given-comment .comment-title {
  margin: 0;
}
.given-comment .comment-title .commenter-name {
  font-size: 1.6rem;
  color: #111111;
}
.given-comment .comment-title .comment-date {
  font-size: 1.4rem;
  color: #505050;
}
.given-comment .comment-content {
  margin-top: 20px;
}
.given-comment .comment-reply {
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  width: 100px;
  height: 35px;
  line-height: 35px;
  border-radius: 17px;
  text-align: center;
  background-color: #d80383;
  display: inline-block;
  margin-top: 10px;
}

.commenting-wrap {
  float: left;
  width: 100%;
  clear: both;
  margin-top: 100px;
}
.commenting-wrap .comment-form-title {
  float: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 30px;
}
.commenting-wrap p {
  margin-bottom: 22px;
  float: left;
  width: 100%;
}

.comment-form {
  float: left;
  width: 100%;
}
.comment-form ::-webkit-input-placeholder {
  color: #505050;
  opacity: 1;
}
.comment-form ::-moz-placeholder {
  color: #505050;
  opacity: 1;
}
.comment-form :-ms-input-placeholder {
  color: #505050;
  opacity: 1;
}
.comment-form :-moz-placeholder {
  color: #505050;
  opacity: 1;
}
.comment-form input, .comment-form textarea {
  line-height: 40px;
  padding: 0 20px;
  border: 1px solid #e8e8e8;
  margin-bottom: 30px;
}
.comment-form [type=submit] {
  font-weight: 700;
  font-size: 1.6rem;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  background-color: #d80383;
  width: 150px;
  text-align: center;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
}

/*------------------------------------------------------
Contact Page Styles
------------------------------------------------------*/
.google-map {
  height: 450px;
}

.contact-title,
.contact-detail-title {
  margin-top: 0;
  margin-bottom: 40px;
  color: #111111;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 20px;
  margin-bottom: 30px;
  border: 1px solid #e8e8e8;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
}

.input-success,
.input-error {
  margin-bottom: 0;
  margin-top: 20px;
  padding: 8px 20px;
  display: none;
}

.input-success {
  border: 1px solid #16a085;
}

.input-error {
  border: 1px solid #e74c3c;
}

.contact-infos {
  float: left;
  width: 100%;
}
p + .contact-infos {
  margin-top: 35px;
}

.contact-info-item {
  float: left;
  width: 100%;
}
.contact-info-item + .contact-info-item {
  margin-top: 25px;
}
.contact-info-item label {
  margin: 0 20px 0 0;
  float: left;
  width: 80px;
  font-weight: 500;
}
.contact-info-item p {
  float: left;
  width: calc(100% - 100px);
}

/*------------------------------------------------------
Login Page Styles
------------------------------------------------------*/
.account-page {
  background-color: #272e30;
}

.account-wrap {
  max-width: 430px;
  width: 100%;
  margin: 120px auto;
  text-align: center;
}

.site-logo {
  display: inline-block;
  margin-bottom: 40px;
}

.accountform {
  background-color: #ffffff;
  border-radius: 10px;
  text-align: left;
  padding: 45px 30px;
}
.accountform h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #808080;
  margin-top: 0;
  margin-bottom: 35px;
}
.accountform label {
  font-size: 1.4rem;
  font-weight: 400;
}
.accountform .basic-field label {
  display: block;
  width: 100%;
  color: #111111;
}
.accountform .basic-field label + label {
  margin-top: 22px;
}
.accountform .basic-field label p {
  margin-top: 7px;
  margin-bottom: 0;
}
.accountform .basic-field .row {
  margin: 25px -10px 0;
}
.accountform .basic-field .row .col-sm-6 {
  padding: 0 10px;
}
.accountform [type=text],
.accountform [type=password],
.accountform [type=email] {
  width: 100%;
  border: 1px solid #d1d1d1;
  line-height: 30px;
  padding: 9px 15px;
}
.accountform .stay-login {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}
.accountform .stay-login [type=checkbox] {
  width: 15px;
  height: 15px;
  margin-top: 0;
  margin-right: 6px;
  vertical-align: middle;
}
.accountform [type=submit] {
  font-weight: 400;
  font-size: 1.8rem;
  background-color: #d80383;
  line-height: 50px;
  border: none;
  height: 50px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  margin-top: 28px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accountform [type=submit]:hover {
  background-color: #111111;
}
.accountform .signup-recover {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 0;
}

/*------------------------------------------------------
Signup Page Styles
------------------------------------------------------*/
.production-card{
	display:block;
	width:100%;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flexbox;
	display:-webkit-box;
	display:flex;
	-webkit-box-orient:vertical;
	box-orient:vertical;
	-webkit-box-direction:normal;
	box-direction:normal;
	-webkit-flex-direction:column;
	-moz-flex-direction:column;
	flex-direction:column;
	-ms-flex-direction:column;
	-webkit-transition:all .3s ease;
	transition:all .3s ease;
	padding-bottom:0em;
	position:relative;
	margin-bottom:20px;
}
.production-card .card-image{
	position:relative;
	z-index:10;
	line-height:0;
	overflow:hidden;
	max-height:147px;
	max-width:360px;
}
.production-card .card-image img{
	width:100%;
	z-index:0;
	-webkit-backface-visibility:hidden;
	-webkit-transform:translateZ(0) scale(1,1);
	-webkit-transition:all .3s ease;
	transition:all .3s ease
}
.production-card .card-content{
	padding:15px;
	overflow:hidden;
	-webkit-transition:all .3s ease;
	transition:all .3s ease
}
.production-card .card-content>div{
	float:left;
	display:block;
	margin-right:1.61735%;
	width:49.19133%;
	 color: ##6b6b6b;
}
.production-card .card-content>div:last-child{
	margin-right:0
}
.production-card .card-content h3,.production-card .card-content .results-card .location,.results-card .production-card .card-content .location,.production-card .card-content .seat-reviews article h2,.seat-reviews article .production-card .card-content h2,.production-card .card-content .seat-reviews article ol.rewards-list li .title,.seat-reviews article ol.rewards-list li .production-card .card-content .title,.production-card .card-content ol.rewards-list li .seat-reviews article .title,ol.rewards-list li .seat-reviews article .production-card .card-content .title,.production-card .card-content .seat-reviews article .section-leaderboard .leaderboard-master .leaderboard-item .leaderboard-name,.seat-reviews article .section-leaderboard .leaderboard-master .leaderboard-item .production-card .card-content .leaderboard-name,.production-card .card-content .section-leaderboard .leaderboard-master .leaderboard-item .seat-reviews article .leaderboard-name,.section-leaderboard .leaderboard-master .leaderboard-item .seat-reviews article .production-card .card-content .leaderboard-name,.production-card .card-content .promo-box th,.promo-box .production-card .card-content th,.production-card .card-content .cart-empty-takeover .takeover-header,.cart-empty-takeover .production-card .card-content .takeover-header{
	color:#d80383
}
.production-card .card-content h3{
	font-weight: 500;
	font-size: 16px;
	margin:0;
Min-height:36px;
}
.production-card p {
    color: #6b6b6b;
}
.production-card .card-content p{
	margin:3px 0 0;
	font-size:13px;
}
.production-card .card-content .card-reviews{
	line-height:24px;
	font-size:11px;
	color:#8f8f8f
}
.production-card .card-content .card-price{
	text-align:right;
	font-weight:500;
	line-height:1.71;
	padding-top:2px;
	font-size:14px;
	color:#d80383
}
.production-card .card-content .card-rating p{
	font-weight:500;
	line-height:1.71;
	font-size:14px;
	font-size:.875rem;
	color:#025782
}
.production-card .card-content .green-price-tag{
	text-align:right;
	float:right
}
.production-card{
	-webkit-box-flex:1;
	box-flex:1;
	-webkit-flex:1 1 0%;
	-moz-flex:1 1 0%;
	-ms-flex:1 1 0%;
	flex:1 1 0%;
	-webkit-flex-basis:auto;
	-ms-flex-preferred-size:auto;
	flex-basis:auto;
	display:block;
	border-radius:5px;
	background-color:#f9f9f9;
	border:solid 1px #d0d0d0;
	opacity:1;
	overflow:hidden;
	-webkit-transition:all .3s ease;
	transition:all .3s ease;
	
}
.theatre-details .production-card{
	min-height: 315px;
}
.production-card a:hover{
	color:#d50657;
}
.production-card a:hover{
	text-decoration:none;
	border-bottom:solid 1px #d0d0d0;
	-webkit-box-shadow:0 2px 12px rgba(0,0,0,0.2);
	box-shadow:0 2px 12px rgba(0,0,0,0.2)
}
.production-card a:hover img{
	-webkit-transform:scale(1.1);
	-ms-transform:scale(1.1);
	transform:scale(1.1)
}
.production-card a:hover .card-price span{
	color:#025782
}
.button-container{
	width:100%;
	text-align:left
}
h3,.results-card h3.results-title,.results-card h3.results-title,.results-card .location,.results-card .location,.seat-reviews article h2,.seat-reviews article h2,.seat-reviews article ol.rewards-list li .title,.seat-reviews article ol.rewards-list li .title,ol.rewards-list li .seat-reviews article .title,ol.rewards-list li .seat-reviews article .title,.seat-reviews article .section-leaderboard .leaderboard-master .leaderboard-item .leaderboard-name,.seat-reviews article .section-leaderboard .leaderboard-master .leaderboard-item .leaderboard-name,.section-leaderboard .leaderboard-master .leaderboard-item .seat-reviews article .leaderboard-name,.section-leaderboard .leaderboard-master .leaderboard-item .seat-reviews article .leaderboard-name,.promo-box th,.promo-box th,.cart-empty-takeover .takeover-header,.cart-empty-takeover .takeover-header{
	margin:0;
	padding:0;
	font-weight:500;
	font-size:18px;
	font-size:1.125rem
}
p{
	color:#6b6b6b
}
.results-card-listing{
	margin-bottom:35px
}
.results-card{
	margin-bottom:20px;
	border-radius:4px;
	background-color:white;
	border:solid 1px #e7e7e7;
	width:100%;
	display:block;
	position:relative;
	max-height:142px;
	z-index:10;
	overflow:hidden
}
.results-card:hover{
	text-decoration:none;
	border-bottom:solid 1px #d0d0d0;
	opacity:1;
	-webkit-box-shadow:0 2px 12px rgba(0,0,0,0.2);
	box-shadow:0 2px 12px rgba(0,0,0,0.2)
}
.tp-service-review{
	display:block;
	padding:10px;
	position:relative;
	vertical-align:top;
	width:100%;
}
.tp-clearfix{
	clear:both;
}
.tp-star-rating>div{
	display:inline-block;vertical-align:middle;
}
.tp-star-rating>div:not(.tp-aggregate-rating){
	background-repeat:no-repeat;background-position:50% 45%;background-size:contain;background-color:#c8c8c8;margin:0;
}
.tp-star-rating.tp-size-medium>div:not(.tp-aggregate-rating){
	background-size:20px;border-radius:3px;height:29px;padding:3px;width:26px;
}
.tp-star-rating.tp-size-small>div:not(.tp-aggregate-rating){
	background-size:10px;border-radius:2px;height:14px;padding:2px;width:14px;
}
.tp-star-rating.tp-count-1>div:not(.tp-aggregate-rating).tp-star-1{
	background-color:#e22027;
}
.tp-star-rating.tp-count-2>div:not(.tp-aggregate-rating).tp-star-1,.tp-star-rating.tp-count-2>div:not(.tp-aggregate-rating).tp-star-2{
	background-color:#f47324;
}
.tp-star-rating.tp-count-3>div:not(.tp-aggregate-rating).tp-star-1,.tp-star-rating.tp-count-3>div:not(.tp-aggregate-rating).tp-star-2,.tp-star-rating.tp-count-3>div:not(.tp-aggregate-rating).tp-star-3{
	background-color:#f8cc18;
}
.tp-star-rating.tp-count-4>div:not(.tp-aggregate-rating).tp-star-1,.tp-star-rating.tp-count-4>div:not(.tp-aggregate-rating).tp-star-2,.tp-star-rating.tp-count-4>div:not(.tp-aggregate-rating).tp-star-3,.tp-star-rating.tp-count-4>div:not(.tp-aggregate-rating).tp-star-4{
	background-color:#d80383;
}
.tp-star-rating.tp-count-5>div:not(.tp-aggregate-rating){
	background-color:#007f4e;
}
.tp-star-rating>div.tp-aggregate-rating{
	margin-left:10px;line-height:30px;height:30px;
}
.tp-rating{
	font-weight:bold;
}
.tp-reviews-summary{
	margin-bottom:20px;
}
.tp-reviews-summary .tp-star-rating{
	text-align:center;
}
.tp-reviews-list{
	-webkit-box-shadow:inset 0 -7px 10px -7px rgba(202,202,202,.6),inset 0 7px 10px -7px rgba(202,202,202,.6);-moz-box-shadow:inset 0 -7px 10px -7px rgba(202,202,202,.6),inset 0 7px 10px -7px rgba(202,202,202,.6);box-shadow:inset 0 -7px 10px -7px rgba(202,202,202,.6),inset 0 7px 10px -7px rgba(202,202,202,.6);margin:10px 0;max-height:600px;overflow-x:hidden;overflow-y:auto;
}
.tp-reviews-list .tp-review{
	padding:20px;
}
.tp-reviews-list .tp-review:not(:first-child){
	border-top:1px solid #ddd;
}
.tp-reviews-list .tp-review-left-content,.tp-reviews-list .tp-review-right-content{
	float:left;
}
.tp-reviews-list .tp-review-left-content{
	width:25%;
}
.tp-reviews-list .tp-review-right-content{
	width:75%;
}
.tp-reviews-list .tp-review-name,.tp-reviews-list .tp-review-date,.tp-reviews-list .tp-review-rating{
	margin-bottom:5px;
}
.tp-reviews-list .tp-review-name,.tp-reviews-list .tp-review-date,.tp-reviews-list .tp-review-rating>.tp-star-rating>div{
	vertical-align:text-top;
}
.tp-reviews-list .tp-review-name,.tp-reviews-list .tp-review-date,.tp-reviews-list .tp-review-content{
	display:block;font-size:14px;
}
.tp-reviews-list .tp-review-name,.tp-reviews-list .tp-review-date{
	padding-right:10px;
}
.tp-reviews-list .tp-review-name{
	color:#000;font-weight:600;
}
.tp-reviews-list .tp-review-content{
	margin:0;
}
.tp-more{
	margin:10px 0 20px;text-align:center;
}
.tp-more .tp-more-btn{
	background-image:-webkit-linear-gradient(linear-gradient(top,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%));background-image:linear-gradient(linear-gradient(top,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%));-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1),0 0 1px #999 inset;-moz-box-shadow:0 1px 3px rgba(0,0,0,.1),0 0 1px #999 inset;box-shadow:0 1px 3px rgba(0,0,0,.1),0 0 1px #999 inset;background:#5252ed;border:none;color:#fff;cursor:pointer;display:inline-block;font-family:'Open Sans',Arial,Helvetica,sans-serif;font-size:14px;font-weight:600;margin:0 auto;padding:5px 10px;text-align:center;text-decoration:none;text-shadow:0 -1px 1px rgba(0,0,0,.5);
}
.tp-more .tp-more-btn:hover{
	background:#3e3eb2;background-image:-moz-linear-gradient(top,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%);background-image:-webkit-linear-gradient(top,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%);background-image:-o-linear-gradient(top,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%);background-image:-ms-linear-gradient(top,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%);background-image:linear-gradient(to bottom,transparent 0,rgba(0,0,0,.1) 50%,rgba(0,0,0,.2) 51%,rgba(0,0,0,.3) 100%);
}
.tp-service-review{
	display:block;padding:10px;position:relative;vertical-align:top;width:100%;
}
.tp-service-review .tp-service-published{
	color:#aaa;font-size:80%;position:absolute;right:10px;top:13px;
}
.boxes .tp-service-published{
	right:15px;top:20px;
}
.tp-service-review .tp-review-header,.tp-service-review .tp-review-content{
	font-size:14px;
}
.tp-service-review .tp-review-header{
	font-weight:600;
}
.tp-service-review .tp-review-content{
	margin:10px 0;overflow-wrap:break-word;word-wrap:break-word;line-height:1.3;
}
.tp-service-review .tp-review-name{
	bottom:-5px;text-align:left;font-size:14px;position:relative;z-index:999;
}
.sprite-star,.tp-star-rating>div:not(.tp-aggregate-rating){
	background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAMAAAANIilAAAABvFBMVEX////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////sdgZ/AAAAk3RSTlMAAQIDBAUGBwgMDQ4PEBESExQVFhgZGhscHh8iIyQqLS4vMDEyNDg6PD0+QEFDRUtMUFJTVFVWWFxjZWZnaWxtbm9xc3R3eHx9fn+AgoOIiYqMjo+QkZeZnJ+io6Slqaqtrq+xtLW3u7y9vr/AwsPHysvMzs/Q0tTX2tvc3d7h4uTn6err7e7v8fL19/j5+vv8/f7Mcbs8AAAB7klEQVR4Ad3W2VtSQRzG8ReUyEor24sWbE/LFikLs6WoaKGljBaLMo0sbcGoLCzSgAqk5P2HAyQ45JkzZ+YuP3dz9bt5v88zmI/a10LfnQC0Lcy8h7Yucht0PSb7oGlpjpxshB4/i/ZDzwiLHkLLuhkWZZuh4xzLjkHHO5aNQoOXswoboO4aK4JQ5vzCio8OqOpg1U71oFh1G4rcGVal3OpB1RxSD6rmCZS05GgwvRwCe33d/p5A4EroRjgciQxFR2KxT4lvrPMjnZ5IJMZisRfR6EAkcjccvhUKHQHgeUMt/U0ocvcVqCzrR8WBDBWNtxnSfUUlkcUwcF0t0LZcL/7ROUWbJrZjjjWjtGWgGSYaL89QKn9aFOi+r5T4vANCK5/R0uAyWHBe+E2hXwEHrO1JUiC5G1Kt4zQ11Qq5hhRNFVZDrp0CPZC7ToEhyH2gQK4JMh4KdUHmDIXuQeY5hVINsLYkT6P6VwesHaZBsnPLGA1uwtoD1txvAVzBaVYlbM9r8iDKvIbjm2FlF/96tAIVrmCeFedtfQfS3TDwvuWs13bmNbgKdVwX8/I4PCz5fhRzeOMsOQ6xkywaXg8Trkt5kk8hNkz+POGAubY4mVtkNa+XGyFUOu6DiC971gkrW+P9EOndBIkFp5z47/0B51JtKmdM9koAAAAASUVORK5CYII=);
}
.additional-info-content {
    font-size: 12pt;
}
.additional-info-content p{
    font-size: 16px;
	line-height:normal;
}
.additional-info-title {
    font-size: 18pt;
}
.additional-info {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 28px;
}
.additional-info iframe{
	width:100%;
	margin:10px 0;
}

.additional-inf{
	background-color: #F2F2F2;
    margin-bottom: 28px;
}
.additional-info-content .img{
	margin:10px 0;
}
.additional-info-content ul {
    list-style: none;
    margin-left: 0;
}
.additional-info-content li {
    margin-top: 20px;
	display:block;
}
.additional-info-content li:before {
    font-family: FontAwesome;
    speak: none;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    content: "\f00c";
    margin-left: -40px;
    padding-right: 10px;
    font-size: 22pt;
    vertical-align: bottom;
}
.boxes{
	background:#f9f9f9;
	margin-bottom:20px;
	padding:20px 15px;
	border-radius:5px;
}
.light-orange-box {
    background: #fff8f5;
    border: 1px solid #f4d7cb;
    padding: 8px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    width: 100%;
    margin:10px 0;
	color:#222;
}
.largeprice {
    font: bold 42px/34px "Bitter",Arial,Helvetica,sans-serif;
    color: #dd373a;
    letter-spacing: -1px;
    margin: 0 0 6px;	
}
.largeprice span {
    color: #555;
    display: block;
    font: bold 14px/20px "Open Sans",Arial,Helvetica,sans-serif;
    letter-spacing: 0;
}
.largeprice .sml {
    color: #dd373a !important;
    display: inline;
    font-size: 23px;
    position: relative;
}
.largeprice .sml {
    top: -11px;
}
.tab-content{
	padding-top:20px;
}
.tab-content .img{
	padding:5px;
	background:#fff;
	border:solid 1px #ddd;
	margin-right:10px;
	margin-top:5px;
}
.counter-column i {
    font-size: 30px;
    display: block;
    text-align: center;
	color:#d80383;
}
.counter-column span {
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    color: #212121;
    font-weight: 500;
    display: block;
	text-transform:uppercase;
    text-align: center;
	padding-top:10px;
}
.counter-column h3 {
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
    color: #212121;
    font-weight: 400;
    text-align: center;
	padding-top:10px;
}
.counter-column a{
	color:#212121;
}
.btn1 {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff!important;
    background-color: #d80383;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 6px 13px;
    border-radius: 15px;
    display: inline-block;
}

.btn1:hover {
    background: #c54c95;
    color: #fff;
}
div#review table tr td {
    width: 50%;
    vertical-align: top;
    border-right: 10px solid transparent;
}
.owl-item:first-child .banner-content {
    top: 50%;
}
.tp-service-review {
    margin: 10px 0px 0px 0px;
    min-height: 200px;
}
.banner-content .btn{font-size:14px;}
.main-baner .bannerImage img {
    height: auto;
}
.nav-tabs {
    border-bottom: 1px solid #ddd;
    background: #d80383;
     padding: 0px 0;
}
.nav-tabs li a {
    color:#fff;
	background: #d80383;
     padding: 10px 15px;
	 border-bottom: 2px solid transparent;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #d80383;
    cursor: default;
	background: #efefef;
    background-color: transparent;
    border-bottom: 2px solid #fff;
    border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
}
.nav-tabs>li>a:hover {
    border-color: transparent transparent transparent transparent;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}
.additional-info {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 28px;
   
}
.details-pages{
	 margin-top: 23px;
}
.details-pages  .card-content h3 {
       text-align: center;
}

.quotes {display: none; margin:0;}

.details-pages .thumb-hover {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1) !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.details-pages .readmore {
	
	text-align: right;
}
.details-pages .readmore .readmore-button {
    padding: 5px;
    border-radius: 0;
    height: auto;
    width: auto;
    line-height: 24px;
    font-size: 15px;
    font-weight: normal;
    margin: 5px;
    border-radius: 4px;
}
.details-pages span{
   margin: 10px; 
}

#slideshow {
  margin: 80px auto;
  position: relative;

  height: 40px;
  padding: 10px;
}

#slideshow > div {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.banner-small #slideshow {
  margin: 10px auto !important ;
  position: relative;
  height: 40px;
  padding: 10px;
}

.banner-small #slideshow > div {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
}
.banner-small #slideshow > div img {
  height: 300px !important;
      width: 600px !important;
}
.custom-box p{
	    height: 47px;
}

.banner-item .bannerImage img {
    xwidth: 100%;
    xheight: 400px;
Display:none;
}
.owl-carousel .owl-item .banner-item .bannerImage img{display:block;}
.main-baner .bannerImage img {
    height: auto;
}
.setting-details{
	margin-top:35px;
}

.owl-item:first-child .banner-content {
    top: 43%;
}

.owl-item:first-child .banner-content .col-lg-4 {
    width: 100%;
    text-align: center;
}
.owl-item:first-child .banner-content .col-lg-4 .banner-title a{
    font-size: 80px;
    font-weight: bold;
}
.owl-item:first-child .banner-content .col-lg-4 .banner-date-meta span {
    font-size: 30px !important;
}

.show_listing .col-md-3{width: 24%;
    float: none;
    display: inline-block;
}


@media only screen and (max-width: 480px) {
	.video-item .thumb-hover, .production-card .thumb-hover{     visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);}
	.bannerImage{max-height:105px !important;}
	.nav-tabs li a{    margin-bottom: 3px;}
	.news-thumb{display:none !important;}
	.customer-carousel .owl-buttons, .news-carousel .owl-buttons{top: -34px;}
	.fancybox-slide--iframe{padding:10px !important;}
	.customVid .fancybox-content{width:100% !important;}
}


.bannerImage{max-height:365px; overflow:hidden;}
.banner-content{     position: absolute;
    z-index: 999;
    top: 57%;
    left: 60px;

}
.card-image .thumb-hover .play-video2, .video-item .thumb-hover .play-video, .card-image .thumb-hover .play-video{box-shadow: none !important;}
.card-rating{min-height:23px;}
.banner-content .btn{border: 1px solid #e6007e;}
.banner-small{position: relative !important;
    top: 0 !important;
    left: 0 !important;}
	.banner-small p{font-size: 16px;
    margin-top: 5px;}
	.nav-tabs{background:none !important;}
	.nav-tabs li a{    background: #ffffff;
    padding: 8px 11px !important;    color: #000;    border: 2px solid #000;}
	.btn{    padding: 0 35px;
margin-bottom:10px;
    margin-top: 10px;}
	.form-item{display:block !important;}
	.search-container{ margin-top: 10px;}
	.production-card{height:305px}
	
	.owl-item:first-child .banner-content .col-lg-4{text-align:left;}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover, .nav>li>a:focus, .nav>li>a:hover{    color: #fff !important;    background-color: #ffc109 ;}