/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */
.minimize-padding {
	padding-left: 4px !important;
	padding-right: 4px !important;
	margin-top:2px !important;
}

.margin-zero {
	margin:0px !important;
}

.pull-right {
	text-align: right;
}

.pull-left {
	text-align: left;
}

.pull-center {
	text-align:center;
}

.pointer {
	cursor: pointer;
}

.video-wrapper {
	position: relative;
	text-align: center;
	height: 100%;
	margin: auto;
	background: #222222;
}

.video-wrapper iframe {
	position: relative;
	width: calc((16/9)*570px);
	height: 570px;
	background: #222222;
	top:0px;
	left:0px;
	border:0px !important;
}

@media (max-width: 768px) {
.video-wrapper {
	position: relative;
	text-align: center;
	height: 100%;
	margin: auto;
	background: #222222;
}

.video-wrapper iframe {
	position: relative;
	width: calc((16/9)*350px);
	height: 350px;
	background: #222222;
	top:0px;
	left:0px;
	border:0px !important;
}
}


/* Spin Animation */

.spinner {
    margin: 0;
    width: auto;
    height: auto;
    background: none;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 1500ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 1500ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 1500ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    
    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

/* REMODAL Designs */

.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
	filter: blur(3px);
}
/* Default theme styles of the overlay */

.remodal-overlay {
	background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
	animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
	animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */

.remodal-wrapper {
	padding: 10px 10px 0;
}
/* Default theme styles of the modal dialog */

.remodal {
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 10px;
	padding: 35px;
	transform: translate3d(0, 0, 0);
	color: #2b2e38;
	background: #fff;
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
	animation-duration: 0.3s;
	animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
	animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
	animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */

.remodal, .remodal-wrapper:after {
	vertical-align: middle;
}
/* Close button */

.remodal-close {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	overflow: visible;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	transition: color 0.2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	background: transparent;
}
.remodal-close:hover, .remodal-close:focus {
	color: #2b2e38;
}
.remodal-close:before {
	font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
	font-size: 25px;
	line-height: 35px;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 35px;
	content: "\00d7";
	text-align: center;
}
/* Dialog buttons */

.remodal-confirm, .remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	transition: background 0.2s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 0;
	outline: 0;
}
.remodal-confirm {
	color: #fff;
	background: #81c784;
}
.remodal-confirm:hover, .remodal-confirm:focus {
	background: #66bb6a;
}
.remodal-cancel {
	color: #fff;
	background: #e57373;
}
.remodal-cancel:hover, .remodal-cancel:focus {
	background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
 padding: 0;
 border: 0;
}

/* Keyframes
   ========================================================================== */

@keyframes remodal-opening-keyframes {
 from {
 transform: scale(1.05);
 opacity: 0;
}
to {
	transform: none;
	opacity: 1;
}
}
 @keyframes remodal-closing-keyframes {
 from {
 transform: scale(1);
 opacity: 1;
}
to {
	transform: scale(0.95);
	opacity: 0;
}
}
 @keyframes remodal-overlay-opening-keyframes {
 from {
 opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes remodal-overlay-closing-keyframes {
 from {
 opacity: 1;
}
to {
	opacity: 0;
}
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
.remodal {
	max-width: 700px;
}
}
/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}
.lt-ie9 .remodal {
	width: 700px;
}

@media (max-width: 480px) {
	hr {
		height: 1px !important;
		color: #CCC;
		background-color: #CCC;
		border: none;
		margin:0px !important;
		padding:0px !important;
	}

	.remodal h3 {
		font-size: 16px;
		margin: 0px !important;
		letter-spacing:-1px;
		text-align:center;
	}
	.remodal h1 {
		font-size: 24px;
		margin: 0px !important;
		letter-spacing:-2px;
		text-align:center;
	}
	.remodal p {
		letter-spacing:-0.5px;
		margin:0px !important;
		padding-bottom:0px !important;
		text-align:center;
	}
	.remodal-input {
		padding: 6px 11px;
		width: 100%;
		border: 1px solid #dedede;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		margin-top:5px;
	}
	
	.remodal-btn {
		padding: 5px;
		margin: 10px 0;
		display: inline-block;
		font-weight: bold;
		text-align: center;
		cursor: pointer;
		outline: none;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
	}
	
	.remodal-btn.primary {
		color: #FFF;
		background: #06C;
		border: 1px solid #06C;
	}
	
	.remodal-btn.secondary {
		color: #FFF;
		background: #090;
		border: 1px solid #090;
	}
	
	.remodal-btn.default {
		color: #FFF;
		background: #333;
		border: 1px solid #333;
	}
	
	.remodal-btn.soc-facebook {
		color: #FFF;
		background: #3B5998;
		border: 1px solid #3B5998;
	}
	
	.remodal-btn.soc-twitter {
		color: #FFF;
		background: #4099FF;
		border: 1px solid #4099FF;
	}
	
	.remodal-btn.soc-googleplus {
		color: #FFF;
		background: #D34836;
		border: 1px solid #D34836;
	}
	
	.remodal-btn.square {
		display:inline-block;
		margin-left:5px;
		margin-right:5px;
	}
	
	.remodal-btn.full-width {
		display: inline-block;
		width: 100%;
	}
	
	.spacer-5{
		display: block;
		margin-top: 5px;	
	}
	.spacer-10{
		display: block;
		margin-top: 10px;	
	}
	.spacer-15{
		display: block;
		margin-top: 15px;	
	}
	.spacer-20{
		display: block;
		margin-top: 20px;	
	}
	
}

@media (min-width: 480px) {
	hr {
		height: 1px !important;
		color: #CCC;
		background-color: #CCC;
		border: none;
		margin:0px !important;
		padding:0px !important;
	}
	.remodal h1 {
		font-size: 32px;
		margin: 0px !important;
		letter-spacing:-2px;
		text-align:center;
	}
	.remodal h3 {
		font-size: 22px;
		margin: 0px !important;
		letter-spacing:-1px;
		text-align:center;
	}
	.remodal p {
		letter-spacing:-0.5px;
		margin:0px !important;
		padding-bottom:0px !important;
		text-align:center;
	}
	
	.remodal-input {
		padding: 6px 11px;
		width: 100%;
		border: 1px solid #dedede;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		margin:0px !important;
	}
	
	.remodal-input.large {
		padding: 9px 15px;
		width: 100%;
		border: 1px solid #dedede;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
		margin:0px !important;
	}
	
	.remodal-btn {
		padding: 10px;
		margin: 10px 0;
		display: inline-block;
		font-weight: bold;
		text-align: center;
		cursor: pointer;
		outline: none;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
	}
	
	.remodal-btn.large {
		padding: 11px 19px;
		margin: 10px 0;
		display: inline-block;
		font-weight: bold;
		text-align: center;
		cursor: pointer;
		outline: none;
		border-radius: 0px;
		-webkit-border-radius: 0px;
		-moz-border-radius: 0px;
	}
	
	.remodal-btn.primary {
		color: #FFF;
		background: #06C;
		border: 1px solid #06C;
	}
	
	.remodal-btn.secondary {
		color: #FFF;
		background: #090;
		border: 1px solid #090;
	}
	
	.remodal-btn.default {
		color: #FFF;
		background: #333;
		border: 1px solid #333;
	}
	
	.remodal-btn.soc-facebook {
		color: #FFF;
		background: #3B5998;
		border: 1px solid #3B5998;
	}
	
	.remodal-btn.soc-twitter {
		color: #FFF;
		background: #4099FF;
		border: 1px solid #4099FF;
	}
	
	.remodal-btn.soc-googleplus {
		color: #FFF;
		background: #D34836;
		border: 1px solid #D34836;
	}
	
	.remodal-btn.square {
		display:inline-block;
		margin-left:5px;
		margin-right:5px;
	}
	
	.remodal-btn.full-width {
		display: inline-block;
		width: 100%;
	}
	
	.spacer-5{
		display: block;
		margin-top: 5px;	
	}
	.spacer-10{
		display: block;
		margin-top: 10px;	
	}
	.spacer-15{
		display: block;
		margin-top: 15px;	
	}
	.spacer-20{
		display: block;
		margin-top: 20px;	
	}
	
}

/* BREADCRUMBS PLUGIN */

.crumbs{
	margin-bottom:15px;	
}

.crumbs ul {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    list-style: none;
}

.crumbs li {
    float: left;
    margin: 0 8px;
}

.crumbs a {
  background: #ddd;
  padding: .7em 1em;
  float: left;
  text-decoration: none;
  color: #444;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
  position: relative;
}

.crumbs li:first-child a {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.crumbs li:last-child a {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.crumbs a:hover {
    background: #CCC;
}

.crumbs li:not(:first-child) > a::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.5em;   
    border-width: 1.5em 0 1.5em 1em;
    border-style: solid;
    border-color: #ddd #ddd #ddd transparent;
    left: -1em;
}

.crumbs li:not(:first-child) > a:hover::before {
    border-color: #CCC #CCC #CCC transparent;
}

.crumbs li:not(:last-child) > a::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1.5em;   
  border-top: 1.5em solid transparent;
  border-bottom: 1.5em solid transparent;
  border-left: 1em solid #ddd;
  right: -1em;
}

.crumbs li:not(:last-child) > a:hover::after {
    border-left-color: #CCC;
}


/* SIDEBAR PLUGIN */

.sidebar-content .categories-links {
  position: relative;
  margin-bottom: 40px;
}
.sidebar-content .categories-links .title {
  padding: 10px 14px;
  margin: 0;
  background: #f5f5f5;
}
.sidebar-content .categories-links li {
  border-bottom: 1px solid #e8e8e8;
  list-style: none;
}
.sidebar-content .categories-links li a {
  padding: 14px 0;
  display: block;
}
.sidebar-content .categories-links li a:hover {
  padding-left: 20px;
  color: #7cba00;
}	
		
		