/* 
  -----------------------------------
  Slide-Out Panel
  by Project Seven Development
  www.projectseven.com
  CSS Styles
  -----------------------------------
*/

.p7SOP.sop-borders.sop-from-left .sop-wrapper {
	border-right: 1px solid #000;
}
.p7SOP.sop-borders.sop-from-right .sop-wrapper {
	border-left: 1px solid #000000;
	border-top-color: #000000;
	border-bottom-color: #000000;
	border-right-color: #000000;
}
.sop-wrapper {
	position: relative;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
	font-family: inherit;
}
.sop-content {
	padding: 32px 24px 24px 24px;
}
.p7SOP.sop-nopad .sop-content {
	padding: 0px;
}
.sop-content h1,
.sop-content h2,
.sop-content h3,
.sop-content h4 {
	margin: 0px;
}

.sop-close {
	position: absolute;
	top: 6px;
	right: 6px;
	background-color: #222;
	border-radius: 100%;
	padding: 0 .15em;
	border-color: #000000;
}
.sop-close.sop-dark {
	background-color: #FFF;
}
.sop-close a {
	color: inherit;
	display: block;
}
.sop-close img {
	vertical-align: middle;
	opacity: .5;
	transition: all ease .5s;
}
.sop-close img:hover {
	opacity: 1;
}
.sop-close i {
	display: none;
}

/*Colors*/
.sop-wrapper {
	background-color: rgb(180,180,160);
	box-sizing: border-box;
	font-family: inherit;
}
.sop-trans .sop-wrapper {
	background: rgba(180,180,160,0.95);
}

.sop-wine .sop-wrapper,
.sop-trigger.sop-button.sop-wine {
	background-color: #C16162;
	color: #000;
}
.sop-wine.sop-trans .sop-wrapper {
	background: rgba(193,70,72,0.95);
}
.sop-trigger.sop-button.sop-wine:hover {
	background-color: rgb(100,100,80);
	color: #FFF;
}
.sop-black .sop-wrapper,
.sop-trigger.sop-button.sop-black {
	background-color: #151515;
	color: #FFF;
}
.sop-black.sop-trans .sop-wrapper {
	background: rgba(0,0,0,0.95);
}
.sop-trigger.sop-button.sop-black:hover {
	background-color: rgba(30,41,118,1.00);
	color: #FFF;
	background-image: -webkit-linear-gradient(270deg,rgba(17,18,29,1.00) 0%,rgba(26,28,63,1.00) 15.98%,rgba(12,14,26,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(17,18,29,1.00) 0%,rgba(26,28,63,1.00) 15.98%,rgba(12,14,26,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(17,18,29,1.00) 0%,rgba(26,28,63,1.00) 15.98%,rgba(12,14,26,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(17,18,29,1.00) 0%,rgba(26,28,63,1.00) 15.98%,rgba(12,14,26,1.00) 100%);
	border-color: #000000;
}
.sop-white .sop-wrapper,
.sop-trigger.sop-button.sop-white {
	background-color: #FFF;
	color: #000;
}
.sop-white.sop-trans .sop-wrapper {
	background: rgba(255,255,255,0.95);
}
.sop-trigger.sop-button.sop-white:hover {
	background-color: rgb(100,100,80);
	color: #FFF;
}
.sop-teal .sop-wrapper,
.sop-trigger.sop-button.sop-teal {
	background-color: #6FA4A8;
	color: #000;
}
.sop-teal.sop-trans .sop-wrapper {
	background: rgba(114,161,168,0.95);
}
.sop-trigger.sop-button.sop-teal:hover {
	background-color: rgb(100,100,80);
	color: #FFF;
}
.sop-blue .sop-wrapper,
.sop-trigger.sop-button.sop-blue {
	background-color: #699EBB;
	color: #000;
}
.sop-blue.sop-trans .sop-wrapper {
	background: rgba(75,130,170,0.95);
}
.sop-trigger.sop-button.sop-blue:hover {
	background-color: rgb(100,100,80);
	color: #CECEF3;
	width: 250px;
	background-image: -webkit-linear-gradient(270deg,rgba(55,78,187,1.00) 0%,rgba(100,113,185,1.00) 43.61%,rgba(47,60,140,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(55,78,187,1.00) 0%,rgba(100,113,185,1.00) 43.61%,rgba(47,60,140,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(55,78,187,1.00) 0%,rgba(100,113,185,1.00) 43.61%,rgba(47,60,140,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(55,78,187,1.00) 0%,rgba(100,113,185,1.00) 43.61%,rgba(47,60,140,1.00) 100%);
	text-shadow: 0px 0px #CECEF3;
}


/*Triggers*/
.sop-trigger {
	text-decoration: none;
	border-bottom: 1px dotted;
}
.sop-trigger.sop-trig-light {
	color: #FFF;
}
.sop-trigger.sop-trig-dark {
	color: #000;
}
.sop-trigger:hover {
	border-bottom: 1px solid;
	text-shadow: 0px 0px;
}
.sop-trigger.sop-button {
	text-decoration: none;
	padding: 10px;
	background-color: rgb(180,180,160);
	color: #000;
	border: none;
	height: 25px;
	width: 250px;
}
.sop-trigger.sop-button:hover {
	background-color: rgb(100,100,80);
	color: #FFF;
}
.sop-trigger.sop-button.sop-borders {
	border: 1px solid #000000;
}

.sop-trigger.sop-inline {
	display: inline-block;
	padding: 5px 10px;
}
.sop-trigger.sop-block {
	display: block;
}
.sop-glass {
	box-shadow: 
	0 1px 0px rgba(0,0,0,0.75),
	inset 0 1px rgba(255,255,255,0.2), 
	inset 0 10px 0px rgba(255,255,255,0.2), 
	inset 0 10px 30px rgba(255,255,255,0.25), 
	inset 0 -5px 30px rgba(0,0,0,0.3);
}
.sop-shadow.sop-glass {
	box-shadow:
	5px 5px 10px 0px rgba(0,0,0,0.6),
	inset 0 1px rgba(255,255,255,0.2), 
	inset 0 10px 0px rgba(255,255,255,0.2), 
	inset 0 10px 30px rgba(255,255,255,0.25), 
	inset 0 -5px 30px rgba(0,0,0,0.3);
}
.sop-animate.sop-glass:hover {
	box-shadow: 
	0 1px 0px rgba(0,0,0,0.75),
	inset 0 1px rgba(255,255,255,0.2), 
	inset 0 20px 0px rgba(255,255,255,0.2), 
	inset 0 10px 30px rgba(255,255,255,0.25), 
	inset 0 -5px 30px rgba(0,0,0,0.3);
}
.sop-trigger.sop-animate {
	-webkit-transition: all linear .3s 0s;
	transition: all linear .3s 0s;
}
.sop-rounded {
	border-radius: 5px;
}
.sop-button.pbx-rounded {
	border-radius:  5px;
}
/*No Script */
.p7SOP.sop-noscript .sop-close-icon {
	display: none;
}

@media only screen and (min-width: 0px) and (max-width: 600px) {
	.p7SOP { max-width: 100% !important; }
}
