* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family: 'Montserrat-Regular', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  margin: 0;
  background-color: #000000;
  padding-top: 80px;
}
input,button,select,textarea{
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.l{box-shadow: inset 0 0 2px red}
.o{opacity: 0}

.container {
  width: 100%;
  max-width: 1340px;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -10px;
  margin-left: -10px;
}
.row:before, .row:after{
  content: " ";
  display: table;
  clear: both;
  float: none;
}
.col-box-1,.col-box-2,.col-box-3,.col-box-4,.col-box-5,.col-box-6,.col-box-7,.col-box-8,.col-box-10,.col-box-11,.col-box-12{
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  float: left;
}
.col-box-12 {
  width: 100%;
}
.col-box-11 {
  width: 91.66666667%;
}
.col-box-10 {
  width: 83.33333333%;
}
.col-box-9 {
  width: 75%;
}
.col-box-8 {
  width: 66.66666667%;
}
.col-box-7 {
  width: 58.33333333%;
}
.col-box-6 {
  width: 50%;
}
.col-box-5 {
  width: 41.66666667%;
}
.col-box-4 {
  width: 33.33333333%;
}
.col-box-3 {
  width: 25%;
}
.col-box-2 {
  width: 16.66666667%;
}
.col-box-1 {
  width: 8.33333333%;
}
.input-field{
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.input-field:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.input-field::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input-field:-ms-input-placeholder {
  color: #999;
}
.input-field::-webkit-input-placeholder {
  color: #999;
}
.input-field::-ms-expand {
  background-color: transparent;
  border: 0;
}
.input-field[disabled],
.input-field[readonly],
fieldset[disabled] .input-field {
  background-color: #eee;
  opacity: 1;
}
.input-field[disabled],
fieldset[disabled] .input-field{
  cursor: not-allowed;
}
textarea.input-field{
  height: auto;
}
input[type="search"] {-webkit-appearance: none;}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].input-field,
  input[type="time"].input-field,
  input[type="datetime-local"].input-field,
  input[type="month"].input-field{
    line-height: 34px;
  }
}

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
}
.btn:hover, .btn:focus, .btn.focus{
  text-decoration: none;
}
.btn:active, .btn.active {
  background-image: none;
  outline: none;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}
@-ms-viewport {
  width: device-width;
}
.clear,.clear:before,.clear:after{content:"";float:none;clear:both;}


/*Start | Header Design*/
header{
  position: absolute;
  width: 100%;
  height: 63px;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: #141414;
  background: -webkit-linear-gradient(#141414, #191919);
  background: -moz-linear-gradient(#141414, #191919);
  background: -ms-linear-gradient(#141414, #191919);
  background: -o-linear-gradient(#141414, #191919);
  background: linear-gradient(#141414, #191919);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#141414', endColorstr='#191919', GradientType=1);
  border-bottom: 2px solid #272727;
}
.brand-logo{
  display: inline-block;
  height: 63px;
  line-height: 63px;
  vertical-align: middle;
  font-size: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Oswald-Regular', Arial, sans-serif;
}
.brand-logo span{
  color: #d00000;
  opacity: 1;
}
.brand-logo small{
  font-size: 60%;
  color: #777676;
  font-family: 'Oswald-Light', Arial, sans-serif;
}
.navigation{
  display: block;
  vertical-align: middle;
  height: 63px;
  text-align: center;
  margin: 0px auto;
}
.navigation ul{
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: inherit;
}
.navigation ul li{
  display: inline-block;
  height: inherit;
  float: left;
}
.navigation ul li a{
  font-size: 20px;
  position: relative;
  display: block;
  height: inherit;
  line-height: 63px;
  color: #c1c1c1;
  border-left: 1px solid #272727;
  padding-left: 14px;
  padding-right: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Oswald-Light', Arial, sans-serif;
  transition: 350ms;
}
.navigation ul li:last-child a{
  border-right: 1px solid #272727;
}
.navigation ul li.active a, .navigation ul li a:hover{
  color: #ffffff;
  background: #0b0b0b;
}
.navigation ul li.active a:before, .navigation ul li a:hover:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #d00000;
  bottom: 0;
  left: 0px;
  z-index: 2;
} 

.nav-right{
  text-align: right;
  padding-top: 15px;
}
.search-form{
  display: inline-block;
  width: 100%;
  max-width: 270px;
  position: relative;
  vertical-align: middle;
}
.search-form input{
  width: 100%;
  height: 33px;
  box-sizing: border-box;
  border: 1px solid #2d2d2d;
  background: #2d2d2d;
  outline: none;
  border-radius: 3px;
  padding-left: 10px;
  padding-right: 40px;
  color: #ffffff;
  font-size: 14px;
}
.search-form input:focus{
  border-color: #666;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.search-button{
  position: absolute;
  width: 40px;
  height: 100%;
  border: 0;
  top: 0;
  right: 0;
  cursor: pointer;
  background: url('../images/icons/search.svg') no-repeat;
  background-size: 42% auto;
  background-position: center;
}
.search-button:hover{
  opacity: 0.6;
}
.signup-button{
  font-size: 18px;
  min-width: 120px;
  height: 34px;
  line-height: 34px;
  margin-bottom: 0;
  padding: 0px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: 'Montserrat-Regular', Arial, sans-serif;
  color: #ffffff;
  background: #d00000;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  -webkit-transition: 350ms;
  transition: 350ms;
  text-decoration: none;
}
.signup-button:hover{
  color: #d00000;
  background: #ffffff;
  text-decoration: none;
}

.mobile-menu{
  width: 40px;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  border-radius: 3px;
  margin-left: 4px;
  cursor: pointer;
  position: relative;
  display: none;
}
.mobile-menu:before,.mobile-menu:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 11px;
  left: 20%;
  top: 7px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.mobile-menu:after{top: 16px}

@media(max-width: 1270px){
  .search-form{
    display: inline-block;
    width: 100%;
    max-width: 185px;
  }
}
@media(max-width: 1080px){
  .mobile-menu{
    display: inline-block;
  }
  header .col-box-3, header .col-box-4{
    width: 50%
  }
  header .col-box-5{
    position: fixed;
    width: 100%;
    max-width: 220px;
    right: -240px;
    height: 100%;
    min-height: 100%;
    background: #000;
    z-index: 100;
    transition: 350ms;
  }
  header .col-box-5.active:before{
    content: '';
    background: rgba(0,0,0,0.6);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  header .col-box-5.active{
    right: 0;
    background: #000;
    box-shadow: -5px 5px 20px rgba(255,255,255,0.2);
  }
  .navigation ul{
    display: block;
  }
  .navigation ul li{
    width: 100%;
    display: block;
    height: 40px;
    float: none;
    margin-top: 10px;
  }
  .navigation ul li a{
    border: 0!important;
    height: 40px;
    line-height: 40px;
  }
}
@media(max-width: 768px){
  .search-form{
    display: none;
  }
}
@media(max-width: 560px){
  .brand-logo{
    white-space: nowrap;
  }
}
@media(max-width: 480px){
  .brand-logo{
    font-size: 20px;
  }
  .signup-button{
    font-size: 13px;
    min-width: 80px;
  }
}
@media(max-width: 360px){
  .brand-logo{
    font-size: 17px;
  }
}
/*End | Header Design*/



.feature-webcam{
  background: ;
  outline-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #383838;
  padding: 0px 15px 5px 15px;
  color: #989898;
  box-sizing: border-box;
  margin: 5px auto 35px auto;
}
.feature-webcam legend{
  padding-left: 5px;
  padding-right: 5px;
  margin-left: -5px;
  font-size: 24px;
  font-family: "Oswald-Regular", Arial, sans-serif;
  color: #ffffff;
}



.thumb-box{
  position: relative;
  display: block;
  text-decoration: none;
  background: #1a1a1a;
  margin-bottom: 20px;
  overflow: hidden;
  -webkit-transition: 100ms;
  transition: 100ms;
}
.thumb-box:hover{
  outline: 1px dashed #666;
  outline-offset: 3px;
}
.thumb-img{
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.thumb-img img{
  width: inherit;
  height: inherit;
  object-fit: cover;
  -webkit-transition: 350ms;
  transition: 350ms;
}
.thumb-box:hover .thumb-img img{
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.thumb-box h3{
  white-space: nowrap;
  margin: 0px;
  font-size: 14px;
  color: #ffffff;
  padding: 5px 60px 5px 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  text-shadow: none;
}
.current-viewers2 {
  position: absolute;
  top: 7px;
  right: 5px;
  font-size: 12px;
  font-weight: normal;
  padding-left: 16px;
  background: url('../images/icons/man-user.svg');
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left;
  color: #7c7c7c
}
.current-viewers.trans {
  position: absolute;
  top: 7px;
  right: 5px;
  font-size: 12px;
  font-weight: normal;
  padding-left: 16px;
  background: url('../images/icons/trans.png');
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left;
  color: #7c7c7c
}
.current-viewers.female {
  position: absolute;
  top: 7px;
  right: 5px;
  font-size: 12px;
  font-weight: normal;
  padding-left: 16px;
  background: url('../images/icons/female.png');
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left;
  color: #7c7c7c
}
.current-viewers.male {
  position: absolute;
  top: 7px;
  right: 5px;
  font-size: 12px;
  font-weight: normal;
  padding-left: 16px;
  background: url('../images/icons/male.png');
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left;
  color: #7c7c7c
}
.current-viewers.couple {
  position: absolute;
  top: 7px;
  right: 5px;
  font-size: 12px;
  font-weight: normal;
  padding-left: 16px;
  background: url('../images/icons/couple.png');
  background-repeat: no-repeat;
  background-size: 13px 13px;
  background-position: left;
  color: #7c7c7c
}
.till-viewers{
  position: relative;
  margin: 0px;
  padding: 5px 5px 10px 20px;
  color: #7c7c7c;
  font-size: 12px;
  white-space: nowrap;
}
.till-viewers:before{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 8.4px;
  left: 5px;
  border-radius: 50%;
  border: 2px solid #888;
  box-shadow: inset 0px 0px 1px 1px #000000;
  background: #ffffff;
}
@media (max-width: 1200px) {
  .thumb-listing .col-box-2{
    width: 20%;
  }
}
@media (max-width: 1024px) {
  .thumb-listing .col-box-2{
    width: 25%;
  }
}
@media (max-width: 768px) {
  .thumb-listing .col-box-2{
    width: 33.333333%;
  }
}
@media (max-width: 576px) {
  .thumb-listing .col-box-2{
    width: 50%;
  }
}
@media (max-width: 420px) {
  .thumb-img{
    width: 100%;
    height: 100px;
    overflow: hidden;
  }
  .thumb-box h3{
    font-size: 14px;
  }
}
.thumb-listing-hide{display: none;}

.more-iconbar{
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  height: 45px;
  text-align: center;
  margin: 25px auto 43px auto;
}
.more-iconbar:before{
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: inherit;
  height: 1px;
  background: #444;
}
.more-iconbar a{
  display: inline-block;
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  background: #d00000;
  transition: 350ms;
}
.more-iconbar a:hover{
  background: #ffffff;
}
.more-iconbar a:before{
  content: '';
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  left: 15px;
  top: 13px;
  transform: rotate(-45deg);
  border-radius: 2px;
  transition: 350ms;
}
.more-iconbar a:hover:before{
  border-color: #d00000;
}


/*Start | cam page design*/
.cams-access{
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
  background: #d00000;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: 350ms ease-in-out;
  cursor: pointer;
}
.cams-access:hover{
  background: #ffffff;
  color: #d00000;
}

.tab-box{
  border: 1px solid #363636;
  margin-top: 50px;
  margin-bottom: 20px;
  min-height: 120px;
}
.tab-body{display: none;
  box-sizing: border-box;
  padding: 15px;
}
.tab-body.active{display: block;}

.tab-box ul{
  list-style-type: none;
  margin: -44px 0 0 -1px;
  padding: 0;
}
.tab-box ul:before,.tab-box ul:after{
  content: "";
  position: relative;
  display: table;
  clear: both;
  float: none;
}
.tab-box ul li{
  float: left;
  display: inline-block;
  padding: 0px 30px;
  background: #393939;
  color: #ffffff;
  font-size: 18px;
  height: 44px;
  line-height: 44px;
  cursor: pointer;
  border: 1px solid #363636;
}
.tab-box ul li.active{
  color: #eb0000;
  background: transparent;
  border-bottom: 1px solid #000;
}
.tab-body p{
  margin: 0px;
  color: #c2c2c2;
}
/*End | cam page design*/




.text-center{text-align:center}



footer{
  padding-top: 30px;
  padding-bottom: 25px;
  background: #111111;
  text-align: center;
}
.footer-nav a{
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
  padding: 5px 2px;
  transition: 350ms;
}
.footer-nav a:hover{
  color: red;
}
.footer-nav span{
  display: inline-block;
  vertical-align: middle;
  margin: 2px 5px;
}
.footer-para{
  width: 100%;
  max-width: 600px;
  color: #bababa;
  display: block;
  margin: 20px auto;
}


/* EXTRA
-------------------------------------- */
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	float: left
}

.col-xs-12 {
	width: 100%
}

.col-xs-11 {
	width: 91.66666667%
}

.col-xs-10 {
	width: 83.33333333%
}

.col-xs-9 {
	width: 75%
}

.col-xs-8 {
	width: 66.66666667%
}

.col-xs-7 {
	width: 58.33333333%
}

.col-xs-6 {
	width: 50%
}

.col-xs-5 {
	width: 41.66666667%
}

.col-xs-4 {
	width: 33.33333333%
}

.col-xs-3 {
	width: 25%
}

.col-xs-2 {
	width: 16.66666667%
}

.col-xs-1 {
	width: 8.33333333%
}

.col-xs-pull-12 {
	right: 100%
}

.col-xs-pull-11 {
	right: 91.66666667%
}

.col-xs-pull-10 {
	right: 83.33333333%
}

.col-xs-pull-9 {
	right: 75%
}

.col-xs-pull-8 {
	right: 66.66666667%
}

.col-xs-pull-7 {
	right: 58.33333333%
}

.col-xs-pull-6 {
	right: 50%
}

.col-xs-pull-5 {
	right: 41.66666667%
}

.col-xs-pull-4 {
	right: 33.33333333%
}

.col-xs-pull-3 {
	right: 25%
}

.col-xs-pull-2 {
	right: 16.66666667%
}

.col-xs-pull-1 {
	right: 8.33333333%
}

.col-xs-pull-0 {
	right: auto
}

.col-xs-push-12 {
	left: 100%
}

.col-xs-push-11 {
	left: 91.66666667%
}

.col-xs-push-10 {
	left: 83.33333333%
}

.col-xs-push-9 {
	left: 75%
}

.col-xs-push-8 {
	left: 66.66666667%
}

.col-xs-push-7 {
	left: 58.33333333%
}

.col-xs-push-6 {
	left: 50%
}

.col-xs-push-5 {
	left: 41.66666667%
}

.col-xs-push-4 {
	left: 33.33333333%
}

.col-xs-push-3 {
	left: 25%
}

.col-xs-push-2 {
	left: 16.66666667%
}

.col-xs-push-1 {
	left: 8.33333333%
}

.col-xs-push-0 {
	left: auto
}

.col-xs-offset-12 {
	margin-left: 100%
}

.col-xs-offset-11 {
	margin-left: 91.66666667%
}

.col-xs-offset-10 {
	margin-left: 83.33333333%
}

.col-xs-offset-9 {
	margin-left: 75%
}

.col-xs-offset-8 {
	margin-left: 66.66666667%
}

.col-xs-offset-7 {
	margin-left: 58.33333333%
}

.col-xs-offset-6 {
	margin-left: 50%
}

.col-xs-offset-5 {
	margin-left: 41.66666667%
}

.col-xs-offset-4 {
	margin-left: 33.33333333%
}

.col-xs-offset-3 {
	margin-left: 25%
}

.col-xs-offset-2 {
	margin-left: 16.66666667%
}

.col-xs-offset-1 {
	margin-left: 8.33333333%
}

.col-xs-offset-0 {
	margin-left: 0
}

@media (min-width:768px) {
	.col-sm-1,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9 {
		float: left
	}
	.col-sm-12 {
		width: 100%
	}
	.col-sm-11 {
		width: 91.66666667%
	}
	.col-sm-10 {
		width: 83.33333333%
	}
	.col-sm-9 {
		width: 75%
	}
	.col-sm-8 {
		width: 66.66666667%
	}
	.col-sm-7 {
		width: 58.33333333%
	}
	.col-sm-6 {
		width: 50%
	}
	.col-sm-5 {
		width: 41.66666667%
	}
	.col-sm-4 {
		width: 33.33333333%
	}
	.col-sm-3 {
		width: 25%
	}
	.col-sm-2 {
		width: 16.66666667%
	}
	.col-sm-1 {
		width: 8.33333333%
	}
	.col-sm-pull-12 {
		right: 100%
	}
	.col-sm-pull-11 {
		right: 91.66666667%
	}
	.col-sm-pull-10 {
		right: 83.33333333%
	}
	.col-sm-pull-9 {
		right: 75%
	}
	.col-sm-pull-8 {
		right: 66.66666667%
	}
	.col-sm-pull-7 {
		right: 58.33333333%
	}
	.col-sm-pull-6 {
		right: 50%
	}
	.col-sm-pull-5 {
		right: 41.66666667%
	}
	.col-sm-pull-4 {
		right: 33.33333333%
	}
	.col-sm-pull-3 {
		right: 25%
	}
	.col-sm-pull-2 {
		right: 16.66666667%
	}
	.col-sm-pull-1 {
		right: 8.33333333%
	}
	.col-sm-pull-0 {
		right: auto
	}
	.col-sm-push-12 {
		left: 100%
	}
	.col-sm-push-11 {
		left: 91.66666667%
	}
	.col-sm-push-10 {
		left: 83.33333333%
	}
	.col-sm-push-9 {
		left: 75%
	}
	.col-sm-push-8 {
		left: 66.66666667%
	}
	.col-sm-push-7 {
		left: 58.33333333%
	}
	.col-sm-push-6 {
		left: 50%
	}
	.col-sm-push-5 {
		left: 41.66666667%
	}
	.col-sm-push-4 {
		left: 33.33333333%
	}
	.col-sm-push-3 {
		left: 25%
	}
	.col-sm-push-2 {
		left: 16.66666667%
	}
	.col-sm-push-1 {
		left: 8.33333333%
	}
	.col-sm-push-0 {
		left: auto
	}
	.col-sm-offset-12 {
		margin-left: 100%
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%
	}
	.col-sm-offset-9 {
		margin-left: 75%
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%
	}
	.col-sm-offset-6 {
		margin-left: 50%
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%
	}
	.col-sm-offset-3 {
		margin-left: 25%
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%
	}
	.col-sm-offset-0 {
		margin-left: 0
	}
}

@media (min-width:992px) {
	.col-md-1,
	.col-md-10,
	.col-md-11,
	.col-md-12,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9 {
		float: left
	}
	.col-md-12 {
		width: 100%
	}
	.col-md-11 {
		width: 91.66666667%
	}
	.col-md-10 {
		width: 83.33333333%
	}
	.col-md-9 {
		width: 75%
	}
	.col-md-8 {
		width: 66.66666667%
	}
	.col-md-7 {
		width: 58.33333333%
	}
	.col-md-6 {
		width: 50%
	}
	.col-md-5 {
		width: 41.66666667%
	}
	.col-md-4 {
		width: 33.33333333%
	}
	.col-md-3 {
		width: 25%
	}
	.col-md-2 {
		width: 16.66666667%
	}
	.col-md-1 {
		width: 8.33333333%
	}
	.col-md-pull-12 {
		right: 100%
	}
	.col-md-pull-11 {
		right: 91.66666667%
	}
	.col-md-pull-10 {
		right: 83.33333333%
	}
	.col-md-pull-9 {
		right: 75%
	}
	.col-md-pull-8 {
		right: 66.66666667%
	}
	.col-md-pull-7 {
		right: 58.33333333%
	}
	.col-md-pull-6 {
		right: 50%
	}
	.col-md-pull-5 {
		right: 41.66666667%
	}
	.col-md-pull-4 {
		right: 33.33333333%
	}
	.col-md-pull-3 {
		right: 25%
	}
	.col-md-pull-2 {
		right: 16.66666667%
	}
	.col-md-pull-1 {
		right: 8.33333333%
	}
	.col-md-pull-0 {
		right: auto
	}
	.col-md-push-12 {
		left: 100%
	}
	.col-md-push-11 {
		left: 91.66666667%
	}
	.col-md-push-10 {
		left: 83.33333333%
	}
	.col-md-push-9 {
		left: 75%
	}
	.col-md-push-8 {
		left: 66.66666667%
	}
	.col-md-push-7 {
		left: 58.33333333%
	}
	.col-md-push-6 {
		left: 50%
	}
	.col-md-push-5 {
		left: 41.66666667%
	}
	.col-md-push-4 {
		left: 33.33333333%
	}
	.col-md-push-3 {
		left: 25%
	}
	.col-md-push-2 {
		left: 16.66666667%
	}
	.col-md-push-1 {
		left: 8.33333333%
	}
	.col-md-push-0 {
		left: auto
	}
	.col-md-offset-12 {
		margin-left: 100%
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%
	}
	.col-md-offset-9 {
		margin-left: 75%
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%
	}
	.col-md-offset-6 {
		margin-left: 50%
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%
	}
	.col-md-offset-3 {
		margin-left: 25%
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%
	}
	.col-md-offset-0 {
		margin-left: 0
	}
}

@media (min-width:1200px) {
	.col-lg-1,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9 {
		float: left
	}
	.col-lg-12 {
		width: 100%
	}
	.col-lg-11 {
		width: 91.66666667%
	}
	.col-lg-10 {
		width: 83.33333333%
	}
	.col-lg-9 {
		width: 75%
	}
	.col-lg-8 {
		width: 66.66666667%
	}
	.col-lg-7 {
		width: 58.33333333%
	}
	.col-lg-6 {
		width: 50%
	}
	.col-lg-5 {
		width: 41.66666667%
	}
	.col-lg-4 {
		width: 33.33333333%
	}
	.col-lg-3 {
		width: 25%
	}
	.col-lg-2 {
		width: 16.66666667%
	}
	.col-lg-1 {
		width: 8.33333333%
	}
	.col-lg-pull-12 {
		right: 100%
	}
	.col-lg-pull-11 {
		right: 91.66666667%
	}
	.col-lg-pull-10 {
		right: 83.33333333%
	}
	.col-lg-pull-9 {
		right: 75%
	}
	.col-lg-pull-8 {
		right: 66.66666667%
	}
	.col-lg-pull-7 {
		right: 58.33333333%
	}
	.col-lg-pull-6 {
		right: 50%
	}
	.col-lg-pull-5 {
		right: 41.66666667%
	}
	.col-lg-pull-4 {
		right: 33.33333333%
	}
	.col-lg-pull-3 {
		right: 25%
	}
	.col-lg-pull-2 {
		right: 16.66666667%
	}
	.col-lg-pull-1 {
		right: 8.33333333%
	}
	.col-lg-pull-0 {
		right: auto
	}
	.col-lg-push-12 {
		left: 100%
	}
	.col-lg-push-11 {
		left: 91.66666667%
	}
	.col-lg-push-10 {
		left: 83.33333333%
	}
	.col-lg-push-9 {
		left: 75%
	}
	.col-lg-push-8 {
		left: 66.66666667%
	}
	.col-lg-push-7 {
		left: 58.33333333%
	}
	.col-lg-push-6 {
		left: 50%
	}
	.col-lg-push-5 {
		left: 41.66666667%
	}
	.col-lg-push-4 {
		left: 33.33333333%
	}
	.col-lg-push-3 {
		left: 25%
	}
	.col-lg-push-2 {
		left: 16.66666667%
	}
	.col-lg-push-1 {
		left: 8.33333333%
	}
	.col-lg-push-0 {
		left: auto
	}
	.col-lg-offset-12 {
		margin-left: 100%
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%
	}
	.col-lg-offset-9 {
		margin-left: 75%
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%
	}
	.col-lg-offset-6 {
		margin-left: 50%
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%
	}
	.col-lg-offset-3 {
		margin-left: 25%
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%
	}
	.col-lg-offset-0 {
		margin-left: 0
	}
}

.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
	color: #999;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #999
}

.form-control::-webkit-input-placeholder {
	color: #999
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #eee;
	opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed
}

textarea.form-control {
	height: auto
}

input[type=search] {
	-webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type=date].form-control,
	input[type=time].form-control,
	input[type=datetime-local].form-control,
	input[type=month].form-control {
		line-height: 34px
	}
	.input-group-sm input[type=date],
	.input-group-sm input[type=time],
	.input-group-sm input[type=datetime-local],
	.input-group-sm input[type=month],
	input[type=date].input-sm,
	input[type=time].input-sm,
	input[type=datetime-local].input-sm,
	input[type=month].input-sm {
		line-height: 30px
	}
	.input-group-lg input[type=date],
	.input-group-lg input[type=time],
	.input-group-lg input[type=datetime-local],
	.input-group-lg input[type=month],
	input[type=date].input-lg,
	input[type=time].input-lg,
	input[type=datetime-local].input-lg,
	input[type=month].input-lg {
		line-height: 46px
	}
}

.form-group {
	margin-bottom: 15px
}
.control-label {
   color: #fff;
}
h1#gal-title {
    white-space: nowrap;
    margin: 0px;
    font-size: 15px;
    color: #ffffff;
    padding: 15px 0px 5px 15px;
    text-shadow: none;
    text-transform: capitalize;
}
#next-button {
    float: right;
    margin-top: -30px;
    margin-bottom: 0px;
}
#next-button.nomar{margin-top: 0}
/* BANNERS
-------------------------------------- */
#bs-top-wrapper img.aligncenter {
    margin-top: 15px;
    margin-bottom: 0px;
}
#bs-top-gal-wrapper img.aligncenter {
    margin-top: 5px;
    margin-bottom: 5px;
}
img#gal-404 {
    display: block;
    height: auto;
    max-width: 592px;
    width: 100%;
}
#wrapper-404 {
    margin-top: 10px;
    padding-bottom: 0px;
}
#footer-sponsor-img {
    margin-top: 20px;
    margin-bottom: 5px;
}

/* CONTAINER IFRAME FIX
-------------------------------------- */
@media screen and (max-width: 240px) {
    .container-frame {
        margin-right: auto;
        margin-left: auto;
    };
}
@media (min-width : 241px) and (max-width: 320px) {
    .container-frame {
        padding-right: 2px;
        padding-left: 1px;
        margin-right: auto;
        margin-left: auto;
    };
}
@media (min-width : 321px) and (max-width: 600px) {
    .container-frame {
        padding-right: 2px;
        padding-left: 1px;
        margin-right: auto;
        margin-left: auto;
    };
}
@media (min-width : 601px) and (max-width: 1024px) {
    .container-frame {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    };
}
@media (min-width : 1025px){
    .container-frame {
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    };
}

.gallery-iframe {
    text-align: center;
    padding: 15px 0px 10px 0px;
    margin-bottom: 20px
}
#bio-blog-wrapper {
    margin-top: 10px;
    padding-bottom: 0px;
}

.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
	display: none!important
}

.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
	display: none!important
}

@media (max-width:767px) {
	.visible-xs {
		display: block!important
	}
	table.visible-xs {
		display: table!important
	}
	tr.visible-xs {
		display: table-row!important
	}
	td.visible-xs,
	th.visible-xs {
		display: table-cell!important
	}
}

@media (max-width:767px) {
	.visible-xs-block {
		display: block!important
	}
}

@media (max-width:767px) {
	.visible-xs-inline {
		display: inline!important
	}
}

@media (max-width:767px) {
	.visible-xs-inline-block {
		display: inline-block!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm {
		display: block!important
	}
	table.visible-sm {
		display: table!important
	}
	tr.visible-sm {
		display: table-row!important
	}
	td.visible-sm,
	th.visible-sm {
		display: table-cell!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm-block {
		display: block!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm-inline {
		display: inline!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm-inline-block {
		display: inline-block!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md {
		display: block!important
	}
	table.visible-md {
		display: table!important
	}
	tr.visible-md {
		display: table-row!important
	}
	td.visible-md,
	th.visible-md {
		display: table-cell!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md-block {
		display: block!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md-inline {
		display: inline!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md-inline-block {
		display: inline-block!important
	}
}

@media (min-width:1200px) {
	.visible-lg {
		display: block!important
	}
	table.visible-lg {
		display: table!important
	}
	tr.visible-lg {
		display: table-row!important
	}
	td.visible-lg,
	th.visible-lg {
		display: table-cell!important
	}
}

@media (min-width:1200px) {
	.visible-lg-block {
		display: block!important
	}
}

@media (min-width:1200px) {
	.visible-lg-inline {
		display: inline!important
	}
}

@media (min-width:1200px) {
	.visible-lg-inline-block {
		display: inline-block!important
	}
}

@media (max-width:767px) {
	.hidden-xs {
		display: none!important
	}
	h1#gal-title {
    white-space: inherit;
    padding: 0 0 5px;
}
}

@media (min-width:768px) and (max-width:991px) {
	.hidden-sm {
		display: none!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.hidden-md {
		display: none!important
	}
}

@media (min-width:1200px) {
	.hidden-lg {
		display: none!important
	}
}

.visible-print {
	display: none!important
}

@media print {
	.visible-print {
		display: block!important
	}
	table.visible-print {
		display: table!important
	}
	tr.visible-print {
		display: table-row!important
	}
	td.visible-print,
	th.visible-print {
		display: table-cell!important
	}
}

.visible-print-block {
	display: none!important
}

@media print {
	.visible-print-block {
		display: block!important
	}
}

.visible-print-inline {
	display: none!important
}

@media print {
	.visible-print-inline {
		display: inline!important
	}
}

.visible-print-inline-block {
	display: none!important
}

@media print {
	.visible-print-inline-block {
		display: inline-block!important
	}
}

@media print {
	.hidden-print {
		display: none!important
	}
}
@media only screen and (max-width:1340px) {
#next-button {margin-top: 0;}	
}

/* BIO GALLERY
-------------------------------------- */
.model-bio-wrapper-top {
    min-height: 60px;
    background-color: #171717;
    color: rgb(145, 145, 145);
    border: 1px solid rgb(47, 47, 47);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-top: 0px;
    padding: 10px;
}

.model-bio-wrapper {
    min-height: 40px;
    background-color: #171717;
    color: rgb(145, 145, 145);
    border: 1px solid rgb(47, 47, 47);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-top: 10px;
    padding: 10px;
}

.model-bio-wrapper-button {
    min-height: 65px;
    margin-top: 10px;
}

.btn-custom-blue-bio { 
    min-height: 65px;
    background: #3876AC;
    border: 0px solid #0561B4;
    color: #fff !important; 
    text-shadow:0 -1px 0 rgba(0,0,0,0.25);
    -webkit-font-smoothing: antialiased; 
}

.btn-custom-blue-bio:hover { 	
    background: #05539A;
    color: #FFF;
    border: 0px solid #0561B4;
    text-decoration: none;
}

.model-bio-wrap-title {
    padding: 0px 15px 0px 15px;
}

#model-bio-last {
    margin-bottom: 10px;
}

span.model-bio-title {
    display: block;
    font-weight: bold;
}

span.model-bio-limit {
    display: inline-block;
    white-space: nowrap; 
    width: 19em; 
    color: #7B7B7B;
    overflow: hidden; 
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis-word; 
    -o-text-overflow: ellipsis-word; 
    -icab-text-overflow: ellipsis-word; 
    -khtml-text-overflow: ellipsis-word; 
    -moz-text-overflow: ellipsis-word; 
    -webkit-text-overflow: ellipsis-word;
}

span.model-bio-title-custom {
    display: block;
    font-weight: bold;
    background: rgb(12, 106, 147);
    padding: 5px 0px 5px 10px;
    color: #fff;
}

/* SIDEBAR PLAYER THUMBS
-------------------------------------- */
.popul_items .row {
    margin-right: 0px;
    margin-left: 0px;
    text-align: left;
}
img#image-index-side {
    height: auto;
    text-align: left;
}
.thumbs img#image-index-side {
    padding: 0px 0px 1px 0px;
}
img#image-index-side {
    border-top: 0px solid rgb(47, 47, 47);
    border-bottom: 0px solid rgb(47, 47, 47);
    border-right: 0px solid rgb(47, 47, 47);
    border-left: 0px solid rgb(47, 47, 47);
}

/* THUMBS
-------------------------------------- */
.thumbs > [class*='col-'] {
    padding-right: 2px;
    padding-left: 2px;
    padding-bottom: 2px;
}
.thumbs {
    padding-top: 4px;
}
.thumbs a {
    display: block;
    text-align: center;
}
.thumbs img {
    padding: 1px;
}
.thumbs a img {
    margin: 0 auto;
    text-align: center;
}

.thumbs-side > [class*='col-'] {
    padding-right: 2px;
    padding-left: 0px;
    padding-bottom: 2px;
}
.thumbs-side {
    padding-top: 4px;
}
.thumbs-side a {
    display: block;
    text-align: center;
}
.thumbs-side img {
    padding: 1px;
}
.thumbs-side a img {
    margin: 0 auto;
    text-align: center;
}



#center-menu ul {
   width: 100%;
   display: table;
   text-align: center;
}
#center-menu ul li {
   display: inline-block;
   float: none;
}
#center-menu ul li a {
   color: #ffffff;
   font-size: 13px;
   font-weight: bold;
   text-decoration: none;
   line-height: 20px;
   position: relative;
   display: block;
   padding: 5px 10px 5px 10px;
   margin: 0px 0 0 0px;
   transition: 350ms;
}
#center-menu ul li a:hover {
   color: red;
}
#center-menu ul li a.home {
   color: red;
}
#center-menu ul li a.active,
#center-menu ul li a.active:hover {
   color: red;
   font-weight: bold;
}

