/*
Theme Name: Light Weight
Theme URI: https://wordpress.org/
Description: a light weight theme
Author: The Good Folks At 2108
Author URI: https://www.studio2108.com
Version: 1.0
Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu (optional)

License:
License URI:

General comments (optional).
*/

/**  Eric MeyerÕs ÒReset CSSÓ 2.0 ?

    /**
    * Eric Meyer's Reset CSS v2.0 (https://meyerweb.com/eric/tools/css/reset/)
    * https://cssreset.com
    
    red #ad1925
    */
    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    }
    body {
    }
    ol, ul {
    list-style: none;
    }
    blockquote, q {
    quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content: '';
    content: none;
    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }
    
    
@font-face {
      font-family: 'fontello';  
      src: url('/wp-content/themes/lightweight/fonts/fontello/font/fontello.eot?84231946');
      src: url('/wp-content/themes/lightweight/fonts/fontello/font/fontello.eot?84231946#iefix') format('embedded-opentype'),
           url('/wp-content/themes/lightweight/fonts/fontello/font/fontello.ttf?84231946') format('truetype'),
           url('/wp-content/themes/lightweight/fonts/fontello/font/fontello.svg?84231946#fontello') format('svg');
      font-weight: normal;
      font-style: normal;
}

	
/**********************************************************/
/*********************COMMON ITEMS************************/

* {
	margin: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
}

html, body {
   height: 100%;
   font-family: Arial,Helvetica,sans-serif; 
   font-weight: 300;
   font-size: 18px;
}

body {
	background-color: #000000;
	color: #ffffff;
}

.page_width {
	width: 100%;
	margin: 0 auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: #ad1925;
}

img {
	max-width: 100%; 
}

.single_img {
	max-width: 60%; 
}

h1 {


	margin-bottom: 15px;
	font-size: 28px;
	text-transform: uppercase;
}

h2 {

	margin-bottom: 15px;
	font-size: 22px;
	text-transform: uppercase;
	margin-top: 40px;
}

h3 {

	font-weight: bold;
	margin-bottom: 5px;
	font-size: 12px;

}

h4 {

	font-weight: bold;
	margin-bottom: 5px;
	font-size: 12px;
}

h5 {

}

p {
	margin-bottom: 15px;	
	line-height: 1.7em;
}
.flex {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.flex_center {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
    align-items: center;
}
.flex_start {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}
.flex_center_left {
	display: flex;
	flex-flow: column;
	justify-content: center;
    align-items: flex-start;
}
.ca {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.leftover_left {
	height: 100px;
	background-color: aqua;
	position: absolute;
	top: 0px;
	left: 0px;
	width: calc((100vw - 1200px)/2);
    transform: translate(-100%, 0%);
}
.leftover_right {
	height: 100px;
	background-color: red;
	position: absolute;
	top: 0px;
	left: 100%;
	width: calc((100vw - 1200px)/2);
}
.block {
	display: block;
}
.backg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.full_bg {
	top: 0px;
	left: 0px;
	position: absolute;		
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;

}
.after_landscape::after {
	position: relative;
	display: block;
	content: " ";
	padding-bottom: 56%;	
	width: 100%;
}
.after_square::after {
	position: relative;
	display: block;
	content: " ";
	padding-bottom: 100%;	
	width: 100%;
}
.after_portrait::after {
	position: relative;
	display: block;
	content: " ";
	padding-bottom: 120%;	
	width: 100%;
}

.bgk_left_top {
 background-position: left top !important;
}
.bgk_center_top {
 background-position: center top !important;
}
.bgk_right_top {
 background-position: right top !important;
}
.bgk_left_center {
 background-position: left center !important;
}
.bgk_center_center {
 background-position: center center !important;
}
.bgk_right_center {
 background-position: right center !important;
}
.bgk_size_cover {
	background-size: cover !important;
	background-repeat: no-repeat;
}
.bgk_size_auto {
	background-size: auto !important;
	background-repeat: no-repeat;
}
.bgk_size_contain {
	background-size: contain !important; 
	background-repeat: no-repeat;
}
.bgk_size_100 {
	background-size: 100% !important; 
	background-repeat: no-repeat;
}
.bgk_size_50 {
	background-size: 50% !important;
	background-repeat: no-repeat;
}
.bgk_size_auto_100 {
	background-size: auto 100% !important;
	background-repeat: no-repeat;
}

.block {
	display: block;
}
.backg {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.cover {
	top: 0px;
	left: 0px;
	position: absolute;		
	width: 100%;
	height: 100%;
	z-index: 1;
}
.full_bg {
	top: 0px;
	left: 0px;
	position: absolute;		
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100%;
}
.after_landscape::after {
	position: relative;
	display: block;
	content: " ";
	padding-bottom: 56%;	
}
.after_square::after {
	position: relative;
	display: block;
	content: " ";
	padding-bottom: 100%;	
}
.after_portrait::after {
	position: relative;
	display: block;
	content: " ";
	padding-bottom: 120%;	
}
.content_wrapper ol {
	padding-left: 20px;
	margin-bottom: 25px;
}
.content_wrapper ul {
	padding-left: 20px;
	margin-bottom: 25px;
}
.content_wrapper ol li {
	list-style: decimal;
	margin-bottom: 5px;
}
.content_wrapper ul li {
	margin-bottom: 5px;
}
.admin_only {
	display: none;
}
.admin .admin_only {
	display: block;
}
.One_2col_gut15 {
	 width: calc(50% - 15px); 
	 margin-right: 15px;
}
.One_2col_gut15:nth-child(2n) {
	 margin-right: 0px;
}		 
.One_2col_gut25 {
	 width: calc(50% - 25px);
	 margin-right: 25px;
}
.One_2col_gut25:nth-child(2n) {
	 margin-right: 0px;
}



.One_3col_gut15 {
	 width: calc(33.33333% - 10px); 
	 margin-right: 15px;
}
.One_3col_gut15:nth-child(3n) {
	 margin-right: 0px;
}		 
.One_3col_gut25 {
	 width: calc(33.33333% - 16.7px);
	 margin-right: 25px;
}
.One_3col_gut25:nth-child(3n) {
	 margin-right: 0px;
}
 
 
.One_4col_gut15 {
	 width: calc(25% - 11.2px);
	 margin-right: 15px;
}
.One_4col_gut15:nth-child(4n) {
	 margin-right: 0px;
}		 
.One_4col_gut25 {
	 width: calc(25% - 18.75px);
	 margin-right: 25px;
}
.One_4col_gut25:nth-child(4n) {
	 margin-right: 0px;
}
 

 
.One_5col_gut15 {
	 width: calc(20% - 12px);
	 margin-right: 15px;
}
.One_5col_gut15:nth-child(5n) {
	 margin-right: 0px;
}		 
.One_5col_gut25 {
	 width: calc(20% - 20px);
	 margin-right: 25px;
}
.One_5col_gut25:nth-child(5n) {
	 margin-right: 0px;
}

.content_wrapper ul, .footer_wrapper ul {
	margin-bottom: 5px;	
}

.content_wrapper li, .footer_wrapper li {
	list-style: disc;
}

strong {
	font-weight: bold;
}

b {
	font-weight: bold;
}

i {
	font-style: italic;	
}

.i  { font-style: italic; }

.b  { font-weight: bold; }

.c1 {  }

.c2 {  }

b {
	font-weight: bold;
}

hr {

}

.alignright {
	float: right; 
	margin: 25px 0 25px 25px;
	
}

.ib {
	display: inline-block;
	vertical-align: top;
}

.ca {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.hide, off {
	display: none;
}

.hideib, offib {
	display: none;
}

.show {
	display: block;
}

.showib {
	display: inline-block;
}

.on.hide, on.off {
	display: block;
}

.on.hideib, .on.offib {
	display: inline-block;
}

.lw_class_on_off {
	cursor: pointer;
}

button { cursor: pointer; }

input[type="submit"] { cursor: pointer; }

.text2 {
	margin-bottom: 15px;
}

.headlinebold {
	font-weight: bold;
}

.content_block {
    position: relative;
    z-index: 200;
    background-color: #000000;
}

.content_block li {
	list-style: disc;
	margin-left: 15px;
	font-weight: normal;
	text-transform: none;
	margin-bottom: 10px;
}


.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.center {
	float: none;
	text-align: center;
	display: block;
	margin: 0 auto;
}

.content_wrapper {
	margin: 0 auto;
    display: flex;
    flex: 1 1 0;
}



.left_column {
	max-width: 200px;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    order: -1;
}

.middle_column {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    position: relative;

}

.right_column {
	max-width: 360px;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding-left: 50px;


}

.clear {
	clear: both
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
	margin: 25px 25px 25px 0;
}

.aligncenter {
	float: none;
	display:block;
	margin: 0 auto;
}

li {
    margin-left: 15px;
}

#admin_panel_iframe {
    display: block;
	border-top: 15px solid #000000;
	width: 100%;
	height: 2500px;
	margin: 0 auto;
}

.relative {
	position: relative;
}

.path {
stroke: #000000;
fill: #ffffff;
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
	transition: all .5s ease;
}

.path:hover {
	stroke-dashoffset: 0;
	transition: all .5s ease;
}



@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.sliding-u-r-l {
    display: inline-block;
    position: relative;
    padding-bottom: 3px;
}
 
.sliding-u-r-l:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: transparent;
    transition: width .5s ease, background-color .5s ease;
}
 
.sliding-u-r-l:hover:after {
    width: 100%;
    background: blue;
}


div.trace {
	width: 200px;
	height: 200px;
	position: relative;
	background: #ddd;
}

.trace svg {
	position: absolute;
	top: 0;
	left: 0;
}

.trace svg line {
	stroke-width: 10;
	stroke: #000;
	fill: none;
	stroke-dasharray: 200;
	-webkit-transition: all .6s;
	transition: transform .6s;
}

div.trace:hover svg line.top {
  -webkit-transform: translateX(-400px);
  transform: translateX(-400px);
}

div.trace:hover svg line.bottom {
  -webkit-transform: translateX(400px);
  transform: translateX(400px);
}

div.trace:hover svg line.left {
  -webkit-transform: translateY(400px);
  transform: translateY(400px);
}

div.trace:hover svg line.right {
  -webkit-transform: translateY(-400px);
  transform: translateY(-400px);
}

/**********************************************************/
/**********************HEADER ITEMS************************/

.header_wrapper {
	text-align: right;
	position: relative;
	padding: 25px 50px;
}

.template-single-fighter .header_wrapper {
	position: absolute;
	top: 30px;
	left: 0px;
	width: 100%;
}

.template-single-fighter #logo {
	top: 50px;
}

.visible_menu_wrap {
	position: absolute;
	left: 50px;
	top: 90px;
	z-index: 500;
}

#logo {
	display: inline-block;
	vertical-align: middle;
	margin-right: 40px;
	position: relative;
	z-index: 900;
	width: 10%;
	min-width: 156px;
	min-height: 166px;
}

#logo_svg {

}

#logo img {
    -webkit-filter: grayscale(100%); /* Chrome, Safari, Opera */
    filter: grayscale(100%);
}

#logo img:hover {
    -webkit-filter: grayscale(0%); /* Chrome, Safari, Opera */
    filter: grayscale(0%);
}



/**********************************************************/
/***********************MENU ITEMS************************/

.menu_item  {

}

.menu_item a {
    padding: 5px 20px;
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
	border: 1px solid rgba(255, 255, 255, .5);
	background-color: rgba(0, 0, 0, .1);
}

.menu_item a:hover {

    border: 1px solid #000000;
}

.menu_item a span {
    position: absolute;
    z-index: 10;
}

/*****/

.bottom.hor {
	left: 0px;
	bottom: -1px;
	height: 1px;
	width: 0%;
	background-color: #ad1925;
	transition: all .2s ease;
}

.menu_item a:hover .bottom.hor {
	width: 100%;
	transition: all .2s ease;
}

/*****/

.top.hor {
	right: 0px;
	top: -1px;
	height: 1px;
	width: 0%;
	background-color: #ad1925;
	transition: all .2s ease;
}

.menu_item a:hover .top.hor {
	width: 100%;
	transition: all .2s ease;
}

/*****/

.right.vert {
	right: 0px;
	top: -1px;
	width: 1px;
	height: 0%;
	background-color: #ad1925;
	transition: all .2s ease;
}

.menu_item a:hover .right.vert {
	height: 101%;
	transition: all .2s ease;
}

/*****/

.left.vert {
	left: 0px;
	bottom: 0px;
	width: 1px;
	height: 0%;
	background-color: #ad1925;
	transition: all .2s ease;
}

.menu_item a:hover .left.vert {
	height: 101%;
	transition: all .2s ease;
}


/**********************************************************/
/**********************FOOTER ITEMS************************/

.footer_wrapper {
	text-align: left;
	padding: 50px;
	position: relative;
}



/**********************************************************/
/***********************SLIDER ITEMS***********************/

.slideshow_block {

}


.slideshow_wrapper {
	margin: 0 auto;
	padding: 15px 0 0 0;
	text-align: center;
	background-color: #E8E5E5;
	line-height: 0px;
}

.our_slideshows {
	width: 100%;
	height: 300px;
	display: inline-block;
	overflow: hidden;
	position: relative;
}

.primary_slide_image {
	width: 100%;
}

.slide_nav {
	z-index: 100;
	cursor: pointer;
	position: absolute;
}

#prev {
	top: 50%;
	right: 10px;
}

#next {
	top: 50%;
	left: 10px;
}

.nav_wrap {
	width: 100%;
	display: inline-block;
	position: relative;
}


.slider_arrow {
	width: 25px;
	cursor: pointer;
	stroke: #ffffff;
	fill: none;
	stroke-width: 2px;
}

.slider_arrow:hover {
	stroke: #999999;
	stroke: black;
}

.slider_pager_wrap {
	text-align: center;
}

.slider_pager {
	z-index: 100;
	cursor: pointer;
	
}

.slider_pager span{
	display: inline-block;
	margin-right: 5px;
}

.bullets span{
	font-size: 40px;
	line-height: 20px;
	color: #999999;
}

.bullets span:hover{
	color: #000000;
}

.bullets .cycle-pager-active {
	color: #666666;
}

.slider_pager img {
	margin-right: 5px;
}

.slider_pager .pager_titles {
	font-size: 14px;
}


/********************************************************/


.get_backend_posts {
	opacity: 0;
}

.entire_feed_post_wrap  {
	padding: 50px;
}

.feed_post_cell {

	display: inline-block;
	width: 25%;
	position: relative;
    transform-style: preserve-3d;
    transition: all 1.0s linear;
    overflow: hidden;
	transform: scale(1.2) rotateZ(-5deg) rotateX(-5deg) rotateY(90deg);
	-webkit-transform: scale(1.2) rotateZ(-5deg) rotateX(-5deg) rotateY(90deg);
    transition: all 1.0s linear;
}



.feed_post_featured {
	width: 100%;
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

}

.feed_post_wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
	opacity: 0;
	width: 80%;
}

.feed_post_cell.flip {
	transform: scale(1) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
	-webkit-transform: scale(1) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    transition: all 1.0s linear;
}

.feed_post_circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 0px;
    height: 0px;
    background-color:  #ffffff;
    border-radius: 100%;
	opacity: .7;
    transition: all .2s linear;
    z-index: 8;
}

.feed_post_cell:hover .feed_post_wrap {
	opacity: 1;
}

.feed_post_cell:hover .feed_post_circle {
	display: block;
    width: 900px;
    height: 900px;
    transition: all .2s linear;
}

.feed_post_date {
    position: relative;
    z-index: 10;
    top: 10px;
    font-size: 12px;
    margin-bottom: 5px;
    color: #000000;
}

.feed_post_title {
    position: relative;
    z-index: 10;
    top: 10px;
    font-size: 28px;
    margin-bottom: 5px;
    color: #000000;
}

.feed_post_excerpt {
    position: relative;
    z-index: 10;
    top: 10px;
    font-size: 22px;
    color: #000000;
}

.feed_post_cell:hover .feed_post_date {
    top: 0px;
    transition: all .2s linear;
}

.feed_post_cell:hover .feed_post_title {
    top: 0px;
    transition: all .3s linear;
}

.feed_post_cell:hover .feed_post_excerpt {
    top: 0px;
    transition: all .4s linear;
}

.feed_post_cell:hover .feed_post_featured {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray; /* IE 6-9 */;
    transition: all .1s linear;
 }

.inner_page .content_block .page_width {
 
	max-width: 1400px;
	padding-top: 0px;
}

.single .content_block .page_width {
	padding: 50px;
	max-width: 1000px;
	padding-top: 0px;
}


.page_title {
	letter-spacing: 10px;
	position: relative;
	left: -100px;
    transition: all 1s ease;
}

.page_loaded .page_title {
    transition: all 1s ease;
	letter-spacing: 2px;
	left: 0px;
} 

#transition_circle {
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    transform: scale(0);
    position: fixed;
    width: 100px;    
    height: 100px;
    transform-origin: center center;
    border-radius: 100%;
    background-color: #ffffff;
     z-index: 9999999999;
    transition: all .5s ease;
}

.turn_page #transition_circle {
    transform-origin: center center;
    transform: scale(50);
    transition: all .5s ease;
}

.window_pane {
	width: 31%;
	margin-right: 5px;
	padding-bottom: 60%;
	background-color: #ffffff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.2) rotateZ(-5deg) rotateX(-5deg) rotateY(90deg);
	-webkit-transform: scale(1.2) rotateZ(-5deg) rotateX(-5deg) rotateY(90deg);
    transition: all 1.0s linear;
    border: 1px solid #000000;
    position: relative;
}

.window_pane.flip {
	transform: scale(1) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
	-webkit-transform: scale(1) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    transition: all 1.0s linear;
}

.window_pane.flip:hover {
	transform: scale(1.02) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
	-webkit-transform: scale(1.02) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
    border: 1px solid red;
    z-index: 20;
    transition: all 0.2s linear;
}

.window_pane.one {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/07/jiujitsu.jpg');
}

.window_pane.two {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/07/joe_knee.jpg');
}

.window_pane.three {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/kids.jpg');
}

.window_pane .letters{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    font-size: 36px;
    color: #000000;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: rgba(255,255,255,0.7); 
}

.window_pane.flip .letters{
    top: 60%;
    transition: all 1s linear;
}

#schedule_table {
	border-collapse: collapse;
	border-spacing: 0.5px;
}

#schedule_table td{
	border: 1px solid #ffffff;
	padding: 10px;
}

.time {
	color: #000000;
	background-color: #ffffff;
	border: 1px solid #000000 !important;;
} 

#map {
	height: 400px;
	width: 2200px;
	background-color: #000000;
	position: relative;
	left: 50%;
	margin-left: -1100px;
}

.map_container {
	position: relative;
	height: 400px;
}

.curtain {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    height: 100%;
    width: 0%;
    overflow: hidden;
    transition: all .7s linear;
}

.page_loaded .curtain {
    width: 100%;
    transition: all .7s linear;
}

.address_wrap {
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
}

.city {
	font-size: 18px;
	margin-bottom: 10px;
}

.info_content {
	color: #000000;
}

#hp_wrap,#set_test_wrap {

}

.input_field_wrap {
	position: relative;
	margin-bottom: 50px;
	width: 70%;
	border-bottom: 1px solid #ffffff;
}

.input_field_wrap label {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 22px;
    transition: all .3s ease;
    letter-spacing: 2px;
}

.field_on label {
	top: -20px;
	font-size: 16px;
    transition: all .3s ease;
    color: #D1F9CC;
}

.input_field {
	background-color: transparent;
	border: 0px solid #000000;
	hover: pointer;
	width: 100%;
	color: #ffffff;
	padding: 10px;
}

.input_field_wrap:hover {
	cursor: pointer;
}

#submit_wrap {
	border: 0px solid #000000;
	font-size: 22px;
    letter-spacing: 2px;
}

#custom_form {
	margin-top: 50px;
}

#comments_wrap {
	border-bottom: 0px solid #000000;
	margin-bottom: 25px;
}

#comments_wrap label {
	top: 10px;
	left: 10px;
}

.field_on#comments_wrap label {
	top: -30px;
	left: 0px;
    transition: all .6s ease;
}

#comments_wrap textarea {
	height: 200px;
	background-color: #1E1E1E;
}

.newsletter_signup_wrap {
	margin-bottom: 25px;
}

.newsletter_signup_wrap .ib{
	margin-left: 10px;
}

.error.input_field_wrap {
	border-bottom: 1px solid #ad1925; 
}

.error.input_field_wrap label {
	color: #ad1925; 
}

#all_status.error {
	padding: 15px;
	background-color: #EFF293;
	text-transform: uppercase;
	display: inline-block;
	color: #000000;
}

#all_status.error div {
	margin-bottom: 5px;
}

textarea, input { outline: none; }


.menu_box {
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, .5);
	display: inline-block;
	vertical-align: middle;
	position: relative;
	cursor: pointer;
	z-index: 4000;
	background-color: rgba(0, 0, 0, .1);
}

.menu_box:hover {
	border: 1px solid rgba(255, 255, 255, 0);
}

.square_dot {
	display: inline-block;
	vertical-align: middle;
	width: 4px;
	height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: #ffffff;
    transition: all .2s linear;
}

.square_dot_1 {
    top: 25%;
    left: 25%;
}

.square_dot_2 {
    top: 50%;
    left: 25%;
}

.square_dot_3 {
    top: 75%;
    left: 25%;
}

.square_dot_4 {
    top: 25%;
    left: 50%;
}

.square_dot_6 {
    top: 75%;
    left: 50%;
}

.square_dot_7 {
    top: 25%;
    left: 75%;
}

.square_dot_8 {
    top: 50%;
    left: 75%;
}

.square_dot_9 {
    top: 75%;
    left: 75%;
}

.menu_box:hover .square_dot {
    top: 50%;
    left: 50%;
    transition: all .2s linear;
}

.menu_box:hover .square_dot_5 {
	height: 25px;
    transition: all .2s linear;
    background-color: #ad1925;
}

.menu_box:hover .square_dot_10 {
	width: 25px;
    transition: all .2s linear;
    background-color: #ad1925;
}

.menu_box span {
    position: absolute;
    z-index: 10;
}


.menu_box:hover .top.hor {
    width: 100%;
}

.menu_box:hover .bottom.hor {
    width: 100%;
}


.menu_box:hover .right.vert {
	height: 101%;
	transition: all .2s ease;
}


.menu_box:hover .left.vert {
	height: 101%;
	transition: all .2s ease;
}

.menu_box{
    transition: all .2s linear;
}

.menu_box_on .menu_box {
	transform: rotateZ(45deg);
    transition: all .2s linear;
}












.menu_box_on .menu_box{
	border: 1px solid rgba(255, 255, 255, 0);
}


.menu_box_on .square_dot {
    top: 50%;
    left: 50%;
    transition: all .2s linear;
}

.menu_box_on .square_dot_5 {
	height: 25px;
    transition: all .2s linear;
    background-color: #ad1925;
}

.menu_box_on .square_dot_10 {
	width: 25px;
    transition: all .2s linear;
    background-color: #ad1925;
}

.menu_box span {
    position: absolute;
    z-index: 10;
}


.menu_box_on .menu_box .top.hor {
    width: 100%;
}

.menu_box_on .menu_box .bottom.hor {
    width: 100%;
}


.menu_box_on .menu_box .right.vert {
	height: 101%;
	transition: all .2s ease;
}


.menu_box_on .menu_box .left.vert {
	height: 101%;
	transition: all .2s ease;
}

#menu_circle {
	border-radius: 100%;
	overflow: hidden;
	width: 100px;
	height: 100px;
	position: fixed;
	z-index: 1000;
	right: -50px;
	top: -50px;
	transform: scale(0);
	background-color: #ffffff;
    transition: all .2s linear;
}

.menu_box_on #menu_circle {
    transition: all .2s linear;
	transform: scale(50);
}

.full_screen_menu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: -1;
	opacity: 0;
	color: #000000;
}

.menu_box_on .full_screen_menu {
	opacity: 1;
    -webkit-transition-delay: 2s; /* Safari */
    transition-delay: .3s;
    z-index: 1100;
}


.fsm_item {
	height:20%;
	width: 33.3%;
	position: relative;
	float: left;
	text-align: center;
	display: inline-block;
	overflow: hidden;
	letter-spacing: 1px;
	background-color: #ffffff;
}

.inner_text {
	font-size: 28px;
	text-transform: uppercase;
	z-index: 1000;
}

.fsm_item .inner_text {
    transform: translate(-50%, 250%) scale(1);
}

.menu_box_on .up .inner_text {
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition-delay: .4s; /* Safari */
    transition-delay: .4s;
    transition: all .4s ease;
}

.inner_circle {
	border-radius: 100%;
	background-color: #000000;
	width: 900px;
	height: 900px;
	display: block;
    transition: all .6s ease;
    transform: translate(-50%, -50%) scale(0);
	background-position: center;
	background-repeat: no-repeat;
	opacity: .4;
	background-size: 100%;
	z-index: 20000;
}

.fsm_item:hover .inner_circle {
	border-radius: 100%;
	background-color: #000000;
	width: 900px;
	height: 900px;
	display: block;
    transition: all .6s ease;
    transform: translate(-50%, -50%) scale(1);
}

.menu_box_on .up:hover .inner_text{
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transition-delay: 1s; /* Safari */
    transition-delay: 1s;
    transition: all 1s ease;
    color: #ff0000;
}

.fsm_item_1 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/coach_menu_bg.jpg');
}

.fsm_item_2 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/members-1.jpg');
}

.fsm_item_3 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/fighters_menu_bg.jpg');
}

.fsm_item_4 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/pricing.jpg');
}

.fsm_item_5 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/register.png');
}

.fsm_item_6 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/store.jpg');
}

.fsm_item_7 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/faq.jpg');
}

.fsm_item_8 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/gallerys.jpg');
}

.fsm_item_9 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/videos_wordking.jpg');
}

.fsm_item_10 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/news_n_events.jpg');
}

.fsm_item_11 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/competitions_menu.jpg');
}

.fsm_item_12 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/victories-1.jpg');
}

.fsm_item_13 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/affil.jpg');
}

.fsm_item_14 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/helio-gracie-featured-image.jpg');
}

.fsm_item_15 .inner_circle {
	background-image: url('/wp-content/uploads/2016/08/member_login.jpg');
}

.right_sidebar_active .content_block .page_width {
    max-width: 1400px;
}

.breakthis{
	display: inline;
}

.phone_address {
	position: absolute;
	right: 0px;
	top: 0px;

}

.phone {
	color: #029300;
	font-size: 28px;
	margin-bottom: 10px;
}

.or_email {
	display: none;
}

.map_link_text {
	display: none;
}

#custom_form_submit {
	letter-spacing: 0px;
    transition: all .4s ease;
}

#custom_form_submit::after {
	content: ">";
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	position: relative;
	left: 0px;
	font-size: 12px;
}


#custom_form_submit:hover {
	color: #029300;
	letter-spacing: 3px;
    transition: all .4s ease;
}

#custom_form_submit::after:hover {
	left: 10px;	
}

input[type='text'] {
	padding: 5px 10px;
	font-size: 16px;
	margin-bottom: 5px;
	width: 100%;
	
}

input[type='text'] {
	padding: 5px 10px;
	font-size: 16px;
	margin-bottom: 5px;
	width: 100%;
	
}

.free_week_form input[type='submit'] {
	padding: 5px 10px;
	font-size: 16px;
	margin-bottom: 5px;
	width: 100%;
	
} 

.free_week_header {
	font-size: 21px;
	margin-bottom: 10px;
	margin-top: -6px;
}

.sign_up {
	font-size: 24px;
	font-weight: bold;
}

.free_week {
	text-transform: uppercase;
	color: #029300;
}

.month {
	font-style: italic;
	text-decoration: underline;
	color: #029300;
	font-weight: 300;
}

input[type='submit'] {
	background-color: #029300;
	color: #ffffff;
	border: 1px solid #029300;
	letter-spacing: 1px;
    transition: all .4s ease;
}

input[type='submit']:hover {
	letter-spacing: 5px;
	cursor: pointer;
    transition: all .4s ease;
	border: 1px solid #ffffff;
}

body#page-135 {

}

#entire_coach_wraper {
	position: absolute;
	width: 100%;
	height: 105%;
	top: 0px;
	left: 0px;
	overflow: hidden;
}

#page-135.division_1_loaded #division_1_bg {
	background-position: -50px 0px;
	transition: all 6s ease;
	
}

#division_1_bg {

	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	opacity: 1;
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/coach_background_1.jpg'); 
	position: absolute;
	background-position: 0px 0px;
	background-size: cover;
	background-repeat: no-repeat;
}

#division_1 {
	opacity: 0;
	top: 4000px;
	left: 4000px;
}


.coach_window_loaded #division_1 {
	opacity: 1;
	top: 0px;
	left: 0px;
}

#kirk_1 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/cut_kirk_1.png'); 
	background-repeat: no-repeat;
	background-size: cover;
}


#glow {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/glow.png'); 
	background-repeat: no-repeat;
	background-size: cover;
}

#flash {
	opacity: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #ffffff;
	transition: all 2s ease;

	display: none;
}

.division_1_loaded #glow {
	opacity: 1;
	transition: all 2s ease;
}

#coach_name_wrap {
	position: absolute;
	top: 40%;
	right: 10%;
    perspective: 1000px;
    width: 500px;
    height: 300px;
    opacity: 0;
}

.division_1_loaded #kirk_1 {
	display: block;
}

.division_1_loaded #coach_name_wrap {
    opacity: 1;
	transition: all 2s ease;
}

#coach_name {
	position: absolute;
	font-size: 104px;
    letter-spacing: 2px;
	text-align: center;
	top: 0;
	right: 0;
	color: #ad1925;
	text-transform: uppercase;
    font-family: 'Bangers', cursive;
	transform: perspective(50em) translate(5%, 5%) rotateZ(0deg) rotateX(0deg) rotateY(-10deg);
	
}

.division_1_loaded #coach_name {
	transform: translate(-0%, -0%) rotateZ(0deg) rotateX(0deg) rotateY(-30deg);
	transition: all 2s ease;
}




#page-135 {
	height: 100%;
	padding-top: 5px;
}

#page-135 .footer_block {
 
}




.flash_on #flash {
	display: block;
}

 





#division_2 {
	top: 4000px;
	left: 4000px;
	width: 100%;
	height: 100%;
	position: absolute;
}

.division_2_loaded #division_2 {
    color: #ffffff;
	top: 0px;
	left: 0px;
}

#kirk_standing {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/good_gi_pic.png'); 
	background-repeat: no-repeat;
	background-size: 100%;
	padding-bottom: 45%;
	width: 20%;
	position: absolute;
	right: 14%;
	bottom: 0px;
	z-index: 200;
}

.division_2_loaded #kirk_standing {
	transition: all 2s ease;

	right: 16%;

}


.gi_action_wrap {
	width: 40%;
	bottom: 0%;
	
	left: -5%;
	position: absolute;
	padding-bottom: 45%;
}

.division_2_loaded .gi_action_wrap {
	left: 0%;
	transition: all 2s ease;
}

.gi_action {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0%;
	left: 0%;
	background-color: #000000;
	background-repeat: no-repeat;
	opacity: 1;
	background-position: bottom left;
	z-index: 100;
	background-size: 100%;
}

#gi_action_1 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/no_gi_winner.png'); 
}

#gi_action_2 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/getting_arm.png'); 
}

#gi_action_3 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/on_top-1.png'); 
}

#gi_action_4 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/oma_final.png'); 
}


.division_2_loaded #gi_action_1 {

}

.division_2_loaded #gi_action_2 {
    opacity: 0;
	transition: all 2s ease;
    -webkit-transition-delay: 6s; /* Safari */
    transition-delay: 6s;
}

.division_2_loaded #gi_action_3 {
    opacity: 0;
	transition: all 2s ease;
    -webkit-transition-delay: 4s; /* Safari */
    transition-delay: 4s;

}

.division_2_loaded #gi_action_4 {
    opacity: 0;
	transition: all 2s ease;
    -webkit-transition-delay: 2s; /* Safari */
    transition-delay: 2s;

}

#kirk_jiujitz_text {
	color: #ffffff;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 300;
    width: 40%;
    font-size: 20px;
    background-color: rgba(255, 255, 255, .5);
    padding: 25px;
	transition: all 2s ease;
}

.division_2_loaded #kirk_jiujitz_text {
    top: 40%;
	transition: all 2s ease;
}

#division_3 {
	top: 4000px;
	left: 4000px;
	width: 100%;
	height: 100%;
	position: absolute;
}

.division_3_loaded #division_3 {
    color: #ffffff;
	top: 0px;
	left: 0px;
}



#kirk_thumbs_up {
	width: 55%;
	height: 100%;
	position: absolute;
	opacity: 0;
	top: 0px;
	right: 0px;
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/kirk_thimbs_up.png'); 
	background-repeat: no-repeat;
	background-size: cover;
}

.division_3_loaded #kirk_thumbs_up {
	opacity: 1;
	transition: all 2s ease;
}


#kirk_entrance {
	width: 65%;
	height: 100%;
	position: absolute;
	opacity: 0;
	top: 0px;
	right: 0px;
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2016/08/kirk_entrance.png'); 
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #000000;
}

.division_3_loaded #kirk_entrance {
	opacity: 1;
	transition: all 2s ease;
    transition-delay: 4s;
}

#kirk_mma_text {
	position: absolute;
	top: 36%;
	left: 10%;
	width: 28%;
	transition: all 2s ease;
}

.division_3_loaded #kirk_mma_text {
	top: 33%;
	transition: all 2s ease;
}




.logo_intro #logo {
    z-index: 80000;
}

#logo_svg {

}

.logo_intro #logo_svg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
	width: 35% !important;
    z-index: 80000;


}

.logo_home.page_loaded #logo_svg {
    top:  10%;
    left:  10%;
	transition: all 3s ease;
	width: 10% !important;
	min-width: 156px;
}

.logo_intro #logo_blanket {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 70000;
    opacity: 1;
}

.logo_intro.logo_home #logo_blanket {
    opacity: 0;
	transition: all 3s ease;
}



/*************STARS***************/

@-webkit-keyframes FILL-TO-WHITE {
  0%    { fill: #ad1925;  }
  100%  { fill: #ffffff; }
}
@-moz-keyframes FILL-TO-WHITE {
  0%    { fill: #ad1925;  }
  100%  { fill: #ffffff; }
}
@-o-keyframes FILL-TO-WHITE {
  0%    { fill: #ad1925;  }
  100%  { fill: #ffffff; }
}
@keyframes FILL-TO-WHITE {
  0%    { fill: #ad1925;  }
  100%  { fill: #ffffff; }
}


@-webkit-keyframes STROKE-TO-BLACK {
  0%    { stroke: #ad1925;  }
  100%  { stroke: #000000; }
}
@-moz-keyframes STROKE-TO-BLACK {
  0%    { stroke: #ad1925;  }
  100%  { stroke: #000000; }
}
@-o-keyframes STROKE-TO-BLACK {
  0%    { stroke: #ad1925;  }
  100%  { stroke: #000000; }
}
@keyframes STROKE-TO-BLACK {
  0%    { stroke: #ad1925;  }
  100%  { stroke: #000000; }
}



.logo_intro .star {
    opacity: 0;
	transition: all 3s ease;
    fill: #ad1925;

}

.animate_logo .star {
    opacity: 1;
	transition: all 3s ease;
    transition-delay: 1s;
    
  -webkit-animation: FILL-TO-WHITE 3s 1; /* Safari 4+ */
  -moz-animation:    FILL-TO-WHITE 3s 1; /* Fx 5+ */
  -o-animation:      FILL-TO-WHITE 3s 1; /* Opera 12+ */
  animation:         FILL-TO-WHITE 3s 1; /* IE 10+, Fx 29+ */
  animation-delay: 2s;
}

.logo_intro .star_2 {
    transform: translate(-10%, -1%);
}

.animate_logo .star_2 {
    transform: translate(-0%, -0%);
}

.logo_intro .star_3 {
    transform: translate(10%, -1%);
}

.animate_logo .star_3 {
    transform: translate(0%, 0%);
}

/*************STARS***************/

/***********TRIANGLE**************/

.logo_intro #triangle {
	transform: translate(-0%, -0%) rotateZ(0deg) rotateX(0deg) rotateY(90deg);
	transition: all 3s ease;
	transform-origin: 80px 50px;
}

.animate_logo #triangle {
	transform: translate(-0%, -0%) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
	transition: all 3s ease;
}

.logo_intro .jap_letters {
    opacity: 0;
	transition: all 3s ease;
	stroke: #ad1925;
}

.animate_logo .jap_letters {
    opacity: 1;
	transition: all 3s ease;
  -webkit-animation: STROKE-TO-BLACK 3s 1; /* Safari 4+ */
  -moz-animation:    STROKE-TO-BLACK 3s 1; /* Fx 5+ */
  -o-animation:      STROKE-TO-BLACK 3s 1; /* Opera 12+ */
  animation:         STROKE-TO-BLACK 3s 1; /* IE 10+, Fx 29+ */
  animation-delay: 2s;
}




.logo_intro .word_group {
	transform: translate(-0%, -0%) rotateZ(-300deg) rotateX(0deg) rotateY(0deg);
	transform-origin: 85px 85px;
}

.animate_logo .word_group {
	transform: translate(-0%, -0%) rotateZ(0deg) rotateX(0deg) rotateY(0deg);
	transition: all 3s ease;
	
}


.logo_intro .letter {
    opacity: 0;
}

.logo_intro .letter.flash {
    opacity: 1;
}

#logo_svg:hover .jap_letters {
    stroke: #ad1925 !important;
	transition: all 1s ease;
}

#logo_svg:hover .star {
    fill: #ad1925 !important;
	transition: all 1s ease;
}

#logo_svg #outside_circle {
    stroke: #ffffff !important;
	transition: all 1s ease;
}

#logo_svg:hover #outside_circle {
    stroke: #ad1925 !important;
	transition: all 1s ease;
}

#page-2 .header_menu_wrapper {
	position: absolute;
	width: 100%;
	
	top: 0px;
	left: 0px;
}

.video_block {

	top: 0px;
	left: 0px;
} 

#header_video_1 {
	width: 100%;
}

#page-2 .content_block {

}


.sub_sec {
	padding: 100px 0;
	text-align: center;
	
}

.sub_sec h1{
	font-size: 32px;
	text-transform: none;
	
}

#sub_sec_1 {
	transform: translate(-0%, 45%);
	transition: all 2s ease;
	opacity: 0;
}

#sub_sec_1.on {
	transform: translate(-0%, 5%);
	transition: all 3s ease;
	opacity: 1;
}

#flip_div {
	padding: 5px;
}

#side_nav_bar {
	width: 4px;
	height: 50%;
	position: fixed;
	right: 72px;
	top: 200px;
	background-color: #000000;
	z-index: 999999;
}

.division_2_loaded #side_nav_bar,.division_3_loaded #side_nav_bar {
	background-color: #ffffff;
}

.side_nav_bar_item {
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background-color: #ffffff;
	border: 1px solid #000000;
	position: absolute;
	left: 0px;
	margin-left: -8px;
	cursor: pointer;
}

.side_nav_bar_item_1 {
	top: 0px;

}

.side_nav_bar_item_2 {
	bottom: 0px;
	margin-top: -8px;
	top: 50%;
}

.side_nav_bar_item_3 {
	bottom: 0px;

}

#floater {
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: #AD1925;
	border: 1px solid #000000;
	position: absolute;
	left: 0px;
	margin-left: -3px;
	top: 5px;
	transition: all 2s ease;
	
}

.division_2_loaded #floater {
	top: 49%;
}

.division_3_loaded #floater {
	top: 96%;
}

.sub_sec h1 span {
	display: block;
}

#page-145 .entire_feed_post_wrap {
	padding: 0px;
}

#page-145 .feed_post_title {
    font-size: 22px;
}

#page-145 .feed_post_excerpt {
    font-size: 16px;
}

.point {
	background-color: #029300;
	color: #ffffff;
	font-size: 32px;
	display: inline-block;
	border-radius: 100%;
	width: 40px;
	height: 40px;
	text-align: center;
	padding-top: 5px;
	margin-right: 5px;
}

.point_wrap {
	margin-bottom: 25px;
}

.point_text {
	text-transform: uppercase;
	font-weight: bold;
	color: #029300;
    display: inline-block;
	margin-right: 5px;
	font-size: 22px;
	letter-spacing: 1px;
}

.good_training {
    color: #000000;
    font-size: 32px;
    opacity: .4;
	transform: scale(2);
	margin-bottom: 40px;
	margin-top: 35px;
	text-align: center;
	font-weight: bold;

	background-color: #ffffff;
	padding: 25px 0 15px 0;
}

.good_training p {
	line-height: 1.0em;
}

.page_loaded .good_training {
	transform: translate(-0%, 5%);
	transition: all 3s ease;
	transform: scale(1);
    opacity: 1;
}

.what_plan {
	display: inline-block;
	width: 300px;
	margin-bottom: 20px;
}

.deal_block {
	margin-bottom: 50px;
	font-style: italic;
	font-weight: lighter;
}

.no_contracts {
	font-size: 32px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.details {
	cursor: pointer;
	color: #029300;
	font-size: 12px;
	text-transform: none;
}

#details_wrap {
	display: none;
	line-height: 1.6em;
	margin-bottom: 50px;
	
}

#details_wrap.on {
	display: block;
	
}

.the_q {
	color: #029300;
	font-size: 24px;
	font-style: italic;
}

.the_a {
	display: none;
	padding: 20px;
	margin-bottom: 25px;
	background-color: #ffffff;
	color: #000000;
	font-size: 18px;
	font-style: normal;
}

.the_a a {
	color: #029300;
	font-weight: bold;
}

.on .the_a {
	display: block;
}

.single .middle_column a {
	color: #029300;
}

.the_a p strong {
	line-height: normal;
	display: inline-block;
}

small {
	font-size: 12px;
}


.weather_image {
	height: 300px;
	width: 300px;
	background-size: cover;
	background-position: center;
	display: inline-block;
	vertical-align: top;
}

#affiliation_board_wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
}

#page-155 .middle_column {
	position: static;
}

#page-155 .footer_block {
 
}

.three_coach_wrap {
	position: relative;
	width: 100%;
	top: 200px;
	height: 65%;
	text-align: center;
	z-index: 200;
}

.three_coach_wrap_1 {
	left: 0px;
}

.three_coach_wrap_2 {
	right: 0px;
}

.affiliation_coach_wrap {
	height: 20%;
	position: relative;
	display: inline-block;
	width: 33%;
}

.affiliation_coach_wrap .inner {
	font-size: 26px;
	text-transform: uppercase;
	width: 100%;
}

.affiliation_coach_wrap .school {
	color: #ad1925;
	font-size: 18px;
}

#video_affiliation_1 {
	transition: all .5s ease;
	width: 483px;
	overflow: hidden;
    transform: translate(-50%, -20%);
    z-index: 100;
}

#video_affiliation_2 {
	transition: all .5s ease;
	width: 463px;
	overflow: hidden;
    transform: translate(-50%, -20%);
    opacity: 0;
}

#video_affiliation_2 img {
	width: 463px;
}

.school_on #video_affiliation_1 {
    transform: translate(-155%, -20%);
	transition: all 1.5s ease;
	z-index: 300;
	cursor: pointer;
}

.school_on.school_1_on #video_affiliation_1 {
	opacity: 0;
}

.school_on.school_1_on #video_affiliation_2 {
	opacity: 1;
}

.school_on #video_affiliation_2 {
    transform: translate(-155%, -20%);
	transition: all 1.5s ease;
	z-index: 300;
	cursor: pointer;
}

.school_on .affiliation_coach_wrap {
	transition: all .5s ease;
}

.affiliation_sec {
	text-align: center;
}

.affiliation_sec img {
    width: 35%;
	max-width: 622px;
}

#sub_sec_2 h1 {
	margin-bottom: 50px;
}

#sub_sec_2 {
	opacity: 0;
	transition: all .5s ease;
    transform: translate(0, 100px);
    position: relative;
    padding: 35px 0;
}

#sub_sec_2.on {
	opacity: 1;
	transition: all 1.5s ease;
    transform: translate(0, 0px);
}

.school_info {
    height: 65%;
	position: absolute;
    text-align: center;
    top: 200px;
    width: 100%;
    z-index: 1;
    back
}

.school_info_1 .slide_1 {
	width: 45%;
	position: absolute;
	right: 0px;
	top: 0px;
}

.school_info_1 .slide_1 img {
	position: absolute;
	right: -100px;
	top: 0px;
}

.school_info_2 .slide_1 img {
	position: absolute;
	right: 0px;
	top: 50px;
}

.school_info img {
	opacity: 0;
	transition: all .5s ease;
}

.school_1_on .school_info_1 .slide_1 img {
	opacity: 1;
	transition: all .5s ease;
}

.school_2_on .school_info_2 .slide_1 img {
	opacity: 1;
	transition: all .5s ease;
}

.slide_text_info {
	position: absolute;
	top: 130px;
	min-height: 30%;
	width: 40%;
    background-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 20px;
    left: 56%;
    padding: 25px;
    transform: translate(-50%, 0%);
    transition: all 0s ease 0s;
    z-index: 300;
    color: #000000;
    text-align: left;
    opacity: 0;
    -webkit-transition-delay: 0s; /* Safari */
    transition-delay: 0s;
}

.school_1_on .school_info_1 .slide_text_info {
	opacity: 1;
	transition: all 1.5s ease;
	top: 140px;
    -webkit-transition-delay: 1s; /* Safari */
    transition-delay: 1s;
}

.school_2_on .school_info_2 .slide_text_info {
	opacity: 1;
	transition: all 1.5s ease;
	top: 140px;
    -webkit-transition-delay: 1s; /* Safari */
    transition-delay: 1s;
}

.school_2_on#page-155 .footer_block {
	bottom: -600px;

}

.school_1_on#page-155 .footer_block {
	bottom: -600px;

}

.check_out {
    font-size: 16px;
    margin-bottom: 5px;
    padding: 10px 10px;
    width: 100%;
    background-color: #029300;
    border: 1px solid #029300;
    color: #ffffff;
    letter-spacing: 1px;
    transition: all 0.4s ease 0s;
    margin-top: 120px;
    text-transform: uppercase;
    text-align: center;
}

.check_out:hover {
	letter-spacing: 2px;
	cursor: pointer;
    transition: all .4s ease;
	border: 1px solid #ffffff;
	
}

.check_out a:hover {
	color: #ffffff;
	
}

.com_featured {
	margin-bottom: 15px;
}

.com_post_cell {
	margin-bottom: 45px;
}

.com_post_cell .ib {
	margin: 0 .5%;
}

.federation {
	width: 6%;
}

.start_date {
	width: 25%;
}

.championship {
	width: 40%;
}

.com_city {
	width: 15%;
}

.location {
	width: 5%;
}

#all_competitions_wrap {
	margin-bottom: 100px;
}

.schedule_day_wrap {
	width: 290px;
	margin-bottom: 50px;
}

#page-20 .content_block .page_width {
	max-width: 1400px;
}

.no_class {
	font-weight: bold;
	font-size: 22px;
	color: #ad1925;
}

.the_day {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.the_class {
	margin-bottom: 5px;
}

.the_class label {
	width: 140px;
	display: inline-block;
}

#page-20 .page_title {
	margin-bottom: 50px;
}

#sub_sec_3 .soc_svg {
	fill: #ad1925;
	width: 15%;
	display: inline-block;
	margin: 0 50px;
}

#sub_sec_3 .soc_svg:hover {
	fill: #ffffff;

}

#sub_sec_3 {
	opacity: 0;
}

#sub_sec_3.on {
	opacity: 1;
	transition: all 1.5s ease;
    transform: translate(0, 0px);
}

#sub_sec_3 h1 {
	margin-bottom: 15px;
	font-size: 36px;
	text-transform: uppercase;
	letter-spacing: 25px;
}

#sub_sec_3.on h1 {
	letter-spacing: 1px;
	transition: all 1.5s ease;
}

#sub_sec_3 h2 {
	margin-bottom: 50px;
	font-size: 28px;
	text-transform: none;
	margin-top: 10px;
	letter-spacing: 25px;
}

#sub_sec_3.on h2 {
	letter-spacing: 1px;
	transition: all 2.5s ease;

}


#sub_sec_3 .facebook_svg {
    transform: translate(-100px, 0px);
}

#sub_sec_3.on .facebook_svg {
    transform: translate(0, 0px);
	transition: all 1.5s ease;
}

#sub_sec_3 .twitter_svg {
    transform: translate(0px, 100px);
}

#sub_sec_3.on .twitter_svg {
    transform: translate(0, 0px);
	transition: all 1.5s ease;
}

#sub_sec_3 .youtube_svg {
    transform: translate(100px, 0px);
}

#sub_sec_3.on .youtube_svg {
    transform: translate(0, 0px);
	transition: all 1.5s ease;
}

.footer_soc_wrap {
	position: absolute;
	right: 50px;
	top: 35px;

}

.footer_soc_wrap .soc_svg {
	fill: #ffffff;
	width: 50px;
	margin-left: 15px;
    shape-rendering: auto;
	transition: all 1.5s ease;
}

.footer_soc_wrap .soc_svg:hover {
	fill: #ad1925;
	transition: all 1.5s ease;
}

.middle_column .iframe_wrap {
	width: 100%;
	padding-bottom: 70%;
	position: relative;
}

.middle_column iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
.middle_column .vps_content iframe {
	position: relative;
}
.vps_popup_off {
	color: #000000;
}

#page-508 .middle_column iframe {
	position: absolute;
}

.lwgp_featured_image {
    transform: scale(0);
}

.page_loaded .lwgp_featured_image {
    transform: scale(1);
	transition: all 1.5s ease;
}

.seperator.ib {
	margin: 0 8px;
}

.prev.pagenation {
	margin-right: 20px;
}

.next.pagenation {
	margin-left: 15px;
}

.lwgp_post_event_date {
	font-size: 22px;
	color: #029300;
	margin-bottom: 5px;
}

.plan_row {
	margin-bottom: 25px;
	padding: 15px 0 15px 15px;

}

.plan_title {
	width: 48%;
	font-size: 20px;
	color:#029300;
}

.plan_price {
	width: 150px;
}

.plan_price {
	color: #029300;
}

.plan_price span {
	color: #FFFFFF;
}

.content_wrapper .plan_row .button {
	background-color: #029300;
	color: #ffffff;
	letter-spacing: 0px;
	border: 1px solid #029300;
}

.content_wrapper .plan_row .button:hover {
	background-color: #029300;
	transition: all .5s ease;
    letter-spacing: 1px;
    border: 1px solid #ffffff;
}

.content_wrapper.no_flex {
	display: block !important;
}

.descript {
	font-size: 14px;
	color: #ffffff;
}

.plan_row.even {
	background-color: #282727;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background-color: #029300 !important;
}

.edit_plan {
	display: inline-block;
	padding: 10px;
	background-color: #029300;
	position: absolute;
	top: -50px;
	left: 0px;
}

#page-560 .woocommerce-info {

}

#page-560 .col-2 {
	display: none;
}

#billing_company_field {
	display: none;
}

#page-560 input {
    padding: 5px 10px;
}

#page-560 .page_title {
	margin-top: 55px;
}

#pic_display_profile_pic {
    width: 260px;
    height: 260px;
    margin-bottom: 5px;
    background-size: cover;
    background-position: top center;
}

input[type='password'] {
    padding: 5px 10px;
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
}

select {
    padding: 5px 10px;
    font-size: 16px;
    margin-bottom: 5px;
    width: 100%;
}

.create_post {
    background-color: #029300;
    border: 1px solid #029300;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    margin-left: 8px;
    padding: 5px 10px 8px;
    text-transform: uppercase;
    color: #ffffff;
}

.sm_field_wrap {
	margin-bottom: 25px;
}

.log_out_button {
	position: absolute;
	top: 90px;
	right: 345px;
	color: #ffffff;
	z-index: 500;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 5px 20px;
    text-transform: uppercase;
    display: inline-block;
}

.edit_profile_button {
	position: absolute;
	top: 90px;
	right: 500px;
	color: #ffffff;
	z-index: 500;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 5px 20px;
    text-transform: uppercase;
    display: inline-block;
}

.show_profile_button_wrap button {
	width: 150px;
	margin-bottom: 25px;
}

#page-8 .right_column {
	padding-top: 20px;
}

.members #sm_first_name_wrap, .members #sm_last_name_wrap  {
	display: inline-block;
	margin-right: 6px;
}

.members #sm_first_name_wrap label, .members #sm_last_name_wrap label, .members #sm_profile_pic_wrap label, .members #belt_wrap label, .members #sm_bio_wrap label {
	display: none;
}

.members #belt_wrap {
	background-color: #ffffff;
	padding: 15px;
	width: 256px;
}

.belt {
	height: 30px;
	border: 1px solid #000000;
	position: relative;
	background-color: #ffffff;
}

.stripe_canvas {
	background-color: #000000;
	width: 65px;
	top: 0px;
	right: 15px;
	height: 100%;
	position: absolute;
}

.stripe {
	background-color: #ffffff;
	width: 5px;
	top: 0px;
	right: 10px;
	height: 100%;
	position: absolute;
	display: none;
}

.stripe_1 {
	right: 10px;
}

.stripe_2 {
	right: 20px;
}

.stripe_3 {
	right: 30px;
}

.stripe_4 {
	right: 40px;
}

.one .stripe_1 {
	display: block;
}

.two .stripe_1,.two .stripe_2 {
	display: block;
}

.three .stripe_1,.three .stripe_2,.three .stripe_3 {
	display: block;
}

.four .stripe_1,.four .stripe_2,.four .stripe_3,.four .stripe_4 {
	display: block;
}





.blue {
	background-color: #3366FF;
}

.purple {
	background-color: #7344D0;
}

.brown {
	background-color: #996533;
}

.black {
	background-color: #000000;
}

.black .stripe_canvas {
	background-color: #CC0001;
}

.mma,.boxing,.kickboxing {
	background-color: #029300;
	text-align: center;
	color: #000000;
}

.mma::after {
	content: "MMA";
	font-size: 26px;
	
}

.boxing::after {
	content: "BOXING";
	font-size: 26px;
	
}

.kickboxing::after {
	content: "KICKBOXING";
	font-size: 26px;
	
}

.belt.mma .stripe_canvas,.belt.kickboxing .stripe_canvas,.belt.boxing .stripe_canvas  {
	display: none;
}

input[type="submit"] {
    background-color: #029300;
    border: 1px solid #029300;
    color: #ffffff;
    letter-spacing: 1px;
    transition: all 0.4s ease 0s;
    font-size: 14px;
    padding: 5px 10px 8px;
    text-transform: uppercase;
}

.activat_full {
	padding: 15px;
	background-color: #FCF485;
	margin-bottom: 50px;
	color: #000000;
	
}

.activat_full a {
    background-color: #029300;
    border: 1px solid #029300;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    margin-left: 8px;
    padding: 5px 10px 8px;
    text-transform: uppercase;
	
}

#private_profile_wrap input {
	margin-right: 10px;
	
}

#add_competition_button {
    background-color: #029300;
    border: 1px solid #029300;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 10px 8px;
    text-transform: uppercase;
    transition: all 0.4s ease 0s;
    cursor: pointer;
}

.competitions_wrap {
	margin-bottom: 50px;
}

.event_date_wrap {
	width: 100px;
}

.competition_entry_wrap {
	padding: 10px;
	background-color: #DDDDDD;
	margin: 15px 0;
	color: #000000;
}


.remove_competition {
	cursor: pointer;
	margin-top: 20px;
	padding: 5px;
	background-color: #eeeeee;
}


.profile_pic {
    background-position: center top;
    background-size: cover;
    height: 260px;
    margin-bottom: 5px;
    width: 260px;
}

.belt_wrap {
    background-color: #ffffff;
    padding: 15px;
    width: 256px;
}

.member_name {
	font-size: 22px;
	padding: 5px 0px;
}

.style_head {
	background-color: #eeeeee;
	margin-bottom: 35px;
	font-size: 32px;
	color: #000000;
	padding: 5px;
	text-align: left;
}

.f_style_wrap {
	margin-bottom: 50px;
	text-align: center;
}

.f_style_wrap.to_left {

}

.profile_wrap {
	text-align: left;
	margin: 0 10px 20px 10px;
}

#page-825  {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;
}

#page-2539 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;

}

#page-1084 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;
}

#page-1084,#page-1861,#page-2876 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;
}
#page-16886 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;
}
#page-17357 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;  
}
#page-17357 .content_block {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;  
}




#page-1084 .middle_column,#page-1861 .middle_column,#page-2539 .middle_column,#page-2876 .middle_column{
	background-color: #000000;
	padding: 15px;
}

#page-1084 .page_title {
	text-align: center;
}

.fighters_single_1084 {
	background-image: url('https://arnoldbjj.net/wp-content/uploads/2017/04/fireworks.gif');
	background-size: cover;
	background-repeat: no-repeat;
}
.fighters_single .black {
	padding: 15px;
}


#page-1084 .middle_column h2 {
	text-align: center;
	font-size: 42px;
}

#page-1084 .middle_column .big {
	text-align: center;
	font-size: 52px;
}

#page-825 .middle_column {
	background-color: #000000;
	padding: 15px;
}

#page-825 .middle_column iframe {
	height: 315px;
	position: relative !important;
}

.single_signin_wrap {
	text-align: left;
	margin-bottom: 15px;
	color: #000000;
}

.single_signin_wrap:nth-child(even) {background: #CCC}
.single_signin_wrap:nth-child(odd) {background: #FFF}

.signin_name {
	width: 250px;
	padding: 10px 5px;
}

.clock_this,.check_time {
	cursor: pointer;
	width: 150px;
	padding: 10px 5px;
	text-align: center;
	margin-right: 15px;
	border-radius: 6px;
	
}

.signin_jiujitsu {
	 background-color: #029300;
	color: #ffffff;
}

.signin_kickboxing {
	background-color: #121244;
	color: #ffffff;
}

.check_time {
	background-color: yellow;
	color: #000000;
	opacity: .6;
}

#signin_popup {
	position: fixed;
	right: -550px;
	top: 150px;
	width: 400px;
	height: 400px;
	background-color: #029300;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	z-index: 100;
}

.signin_popup_on #signin_popup {
	right: 50px;
	opacity: 1;
	transition: opacity .5s ease;
}

.clocking_name {
	font-size: 32px;
	text-transform: uppercase;
}

.big {
	font-size: 26px;
}

#add_member_form .ib {
	width: 23%;
}

#add_member_submit {
    border-radius: 6px;
    cursor: pointer;
    margin-right: 15px;
    padding: 10px 5px;
    text-align: center;
    width: 150px;
    background-color: #029300;
    color: #ffffff;
}

.floating_name {
	position: absolute;
	top: 500px;
	right: 5%;
	font-size: 65px;
	z-index: 100;
    color: #ad1925;
    font-family: "Bangers",cursive;
    font-size: 104px;
    letter-spacing: 2px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: #ffffff;

}

.page_loaded .floating_name {
    transform: translate(0%, 0%) rotateZ(0deg) rotateX(0deg) rotateY(-30deg);
    transition: all 2s ease;
}

.fighters_sidebar {
	position: absolute;
	right: 0px;
	top: 710px;
	padding: 0 25px;
	width: 400px;
	text-align: center;
}
.other_fighters_wrap {
	text-align: center;
}
.template-single-fighter .middle_column {
	min-height: 3000px;
}
.fighters_single_wrap {
    text-align: left;
    padding: 50px;
    margin: 0 auto;
    padding-right: 425px;
    margin-top: 0px;
}

.fighters_single_wrap img {
	display: block;
}

.fighters_single .fighters_sidebar {
	top: 300px;
}

.fighter_pl .member_name {
	text-transform: uppercase;
	text-align: center;
}

.fighters_shortcode_wrap {
	text-align: center;
	margin-top: 
}

.right_column .fighters_shortcode_wrap {
	margin-top: 50px;
}
.primary_title {
	position: absolute;
	top: -200px;
	opacity: 0;
}
.private_lessons.private_lessons_phone {
	display: block;
}
#page-24 #middle_column_1 {
	height: 100px !important;
}

#page-20 .right_column {
	padding-left: 10px;
	    max-width: 320px;
}
#page-20 .schedule_day_wrap {
	width: 310px;
}
.green {
	color: #029300;
	font-weight: bold;
}
.fighter_bust {
	max-height: 600px;
}

.sl_header_menu_wrapper {

	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 10000;
}

.superlight_theme #logo {
	position: absolute;
	top: 15px;
	left: 25px;
}

#wpadminbar {
    top: auto !important;
    bottom: 0px !important;
}
.full_screen_menu {
	pointer-events: none;
}
.menu_box_on .full_screen_menu {
	pointer-events: auto;
}
.superlight_theme .visible_menu_wrap {
    position: relative;
    width: 100%;
    text-align: center;
    top: 0px;
    left: 0px;
}
.control.superlight_theme {
	margin-top: 0px !important;
}
.superlight_theme .log_out_button {
	position: relative;
	top: 0px;
	left: 0px;
	
}
.superlight_theme .header_wrapper {
    padding: 5px 25px;
	position: fixed;
	z-index: 10000;

}
.superlight_theme .menu_box {
	position: absolute;
	top: 25px;
	right: 25px;
}
.superlight_theme .menu_item a {
	background-color: rgba(0,0,0,0.5);
}
.superlight_theme .log_out_button {
	background-color: rgba(0,0,0,0.5);
}
button {
    background-color: #ffffff;
    color: #ad1925;
    border: 1px solid #ad1925;
    padding: 15px 35px;
    border-radius: 6px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .5s ease;
    position: relative;
}
button:hover {
    background-color: #ad1925;
    color: #ffffff;
    border: 1px solid #ad1925;
    border-radius: 6px;
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .5s ease;
    padding: 15px 45px;
}
button::before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
    border: 1px solid #ffffff;
    opacity: 1;
    border-radius: 6px;
}
button:hover::before {
    transform: scale(1.3);
    border: 1px solid transparent;
    opacity: 0;
    transition: all .5s ease;
}
#logo_blanket {
	display: none;
}
.logo_intro #logo_blanket {
	display: block;
}
.ready_field {
	display: none;
}
.admin .ready_field {
	display: block;
}
.gform_title {
	display: none !important;
}
.samuri_svg {
	position: relative;
	z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 25%;
    opacity: 1;
}
.turn_page .page_turn_block {
    transform: translate(-50%, -50%) scale(3);
    transition: transform .5s ease;
    top: 50%;
}
.turn_page .samuri_svg {
    opacity: 0;
    transition: all .5s ease;
}
.page_turn_svg {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;

  transform-origin: center;
}
.mobile_only {
	display: none;
}
.popup_block {
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;	
}

.popup_on .popup_block {
	display: block;	
}

.popup_off_block {
	text-align: right;
	font-size: 32px;
}

.popup_wrap {
	width: 90%;
	max-width: 900px;
	background-color: #ffffff;
}

.popup_off_block span {
	cursor: pointer;
}

.lw_class_on_off {
	cursor: pointer;
}

.is_woocommerce .content_block {
	padding: 250px 0;
}

.is_woocommerce input {
	padding: 10px !important; 
}
.wc-stripe-elements-field {
	padding: 15px !important;
	min-height: 50px !important;
	line-height: 18px !important;
}
body.is_woocommerce {
    background-color: #ffffff;
    color: #000000;
}
body.is_woocommerce .content_block {
    background-color: #ffffff;
}
body.is_woocommerce .square_dot {
    background-color: #000000;
}
body.is_woocommerce .menu_box {
    border: 1px solid rgba(0, 0, 0, .5);
}
.superlight_theme body.is_woocommerce .menu_item a {
    background-color: rgba(0,0,0,1);
    color: #ffffff;
}
.superlight_theme body.is_woocommerce .log_out_button {
    background-color: rgba(0,0,0,1);
    color: #ffffff;
}
#wc-stripe-payment-request-button-separator {
	margin-top: 50px !important;
}



body.post_type_tribe_events {
    background-color: #ffffff;
    color: #000000;
}
body.post_type_tribe_events .content_block {
    background-color: #ffffff;
}
body.post_type_tribe_events .menu_box {
    border: 1px solid rgba(0, 0, 0, .5);
}
.superlight_theme body.post_type_tribe_events .menu_item a {
    background-color: rgba(0,0,0,1);
    color: #ffffff;
}
.superlight_theme body.post_type_tribe_events .log_out_button {
    background-color: rgba(0,0,0,1);
    color: #ffffff;
}
body.post_type_tribe_events .square_dot {
    background-color: #000000;
}








.tribe-tickets__tickets-item-quantity button {
    background-color: inherit;
    color: inherit !important;
    border: 0px solid #ad1925 !important;
    border-radius: 0px !important;
    text-align: inherit;
    font-size: inherit !important;
    text-transform: inherit;
    transition: all .5s ease;
    padding: inherit !important;
    letter-spacing: inherit !important;
    font-weight: inherit !important;

}
.tribe-tickets__tickets-item-quantity button:hover {
    background-color: inherit;
    color: inherit !important;
    border: 0px solid #ad1925 !important;
    border-radius: 0px !important;
    text-align: inherit;
    font-size: inherit !important;
    text-transform: inherit;
    transition: all .5s ease;
    padding: inherit !important;
    letter-spacing: inherit !important;
    font-weight: inherit !important;

}










.event-tickets button.tribe-common-c-btn {
    background-color: #ffffff;
    color: #ffffff !important;
    border: 0px solid #ad1925 !important;
    border-radius: 0px !important;
    text-align: inherit;
    font-size: 18px !important;
    text-transform: inherit;
    transition: all .5s ease;
    padding: 15px 25px !important;
    letter-spacing: 0px !important;
    font-weight: bold !important;
    transform: scale(1);
}
.event-tickets button.tribe-common-c-btn:hover {
    background-color: #ffffff;
    color: #ffffff !important;
    border: 0px solid #ad1925 !important;
    border-radius: 0px !important;
    text-align: inherit;
    font-size: 18px !important;
    text-transform: inherit;
    transition: all .5s ease;
    padding: 15px 25px !important;
    letter-spacing: 0px !important;
    font-weight: bold !important;
    transform: scale(1);
}
.event-tickets button.tribe-common-c-btn:before {
    display: none;
}








#page-560.inner_page .content_block .page_width {
	max-width: 675px;
}

#customer_details .col-1 {
	width: 100%;
	margin-bottom: 50px;
}





body.post_type_tribe_events {
    background-color: #ffffff;
    color: #000000;
}
body.post_type_tribe_events .content_block {
    background-color: #ffffff;
}
body.post_type_tribe_events .menu_box {
    border: 1px solid rgba(0, 0, 0, .5);
}
.superlight_theme body.post_type_tribe_events .menu_item a {
    background-color: rgba(0,0,0,1);
    color: #ffffff;
}
.superlight_theme body.post_type_tribe_events .log_out_button {
    background-color: rgba(0,0,0,1);
    color: #ffffff;
}
body.post_type_tribe_events .square_dot {
    background-color: #000000;
}


.attendee_registration_page .content_block {
	padding-right: 25px;
	padding-left: 25px;
}
.attendee_registration_page .middle_column.page_width {
	max-width: 1200px;
}

#tribe-events-content .tribe-events-event-image img {
	width: 100% !important;
	height: auto !important;
}

.important {
	margin: 25px 0 50px 0;
	font-size: 22px;
	font-weight: bold;
	color: #000000;
	
}

.important span {
	color: #029300;
	
	
}

.gform_wrapper .gform_footer input[type='submit'] {
    font-family: 'Roboto Slab', serif;
    -webkit-text-stroke: 1px #029300;
    background-color: #fef56d;
    border: 2px solid #029300;
    text-transform: uppercase;
    transition: all .5s ease;
    font-weight: bold;
    color: #000000;
}

#gform_confirmation_message_4 {
	font-size: 32px;
	color: #029300;
}

@media screen and (max-width: 890px) {
	.superlight_theme .full_screen_menu {
		padding-top: 0px;
	}
	#wpadminbar {
		display: none !important;
	}
	.footer_moving_bg {
		display: none !important;
	}
	.mobile_only {
		display: block;
	}
	.superlight_theme .visible_menu_wrap {
		display: none !important;
	}
	.superlight_theme .header_wrapper {
		position: relative;
	}
    .superlight_theme #logo {
	    width: 100px;
	    min-width: 100px;
    }
    .menu_box_on .up .inner_text {
	    width: 100%; 
    }
    .mobile_100 {
	    width: 100% !important;
	    height: auto !important;
    }
}



