/*
 ____                 _     
| __ ) _ __ _____   _(_)___ 
|  _ \| '__/ _ \ \ / / / __|
| |_) | | |  __/\ V /| \__ \
|____/|_|  \___| \_/ |_|___/
                
CSS File - These are the styles for color-picker selectors.
*/

/* Custom select skin: fullscreen color picker (adjusted for fullscreen form) */
div.bre-skin-boxes {
	background: transparent;
	font-size: 0.65em;
	font-weight: 700;
	max-width: 300px;
	z-index: 2000;
	color: #fff;
}

@media screen and (max-width: 30em) {
	div.bre-skin-boxes { font-size: 1em; }
}

.bre-skin-boxes > span {
	border: 3px solid rgba(59, 63, 69, 0.4);
	border-radius: 5px;
	width: 150px;
	height: 140px;
	font-size: 11px;
	padding: 0 0 0 10px;
	background: #00A8E8;
}
@media (max-width: 640px) {
    .bre-skin-boxes > span {
        border: 2px solid rgba(59, 63, 69, 0.4);
        font-size: 9px;
        padding: 0 0 0 8px;
    }
}

.bre-skin-boxes > span {
    width: 190px!important;
    height: 70px!important;
}
@media (max-width: 640px) {
    .bre-skin-boxes > span {
        width: 120px!important;
        height: 50px!important;
    }
}

.bre-skin-boxes > span::before {
    padding-top: 45px!important;
}
@media (max-width: 640px) {
    .bre-skin-boxes > span::before {
        padding-top: 30px!important;
    }
}
.bre-skin-boxes .cs-options ul {
    width: 85%!important;
    margin-left: 15%!important;
}
@media (max-width: 1115px) {
    .bre-skin-boxes .cs-options ul {
        width: 100%!important;
        margin-left: 0!important;
        margin-top: 70px!important;
    }
}
div.bre-skin-boxes:focus > span {
	box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}

.bre-skin-boxes > span::before {
	content: '';
	display: block;
	padding-top: 110px;
	margin-left: -10px;
	box-shadow: 0 25px 0 rgba(59, 63, 69, 0.4), inset 0 -10px rgba(59, 63, 69, 0.4);
}
@media (max-width: 640px) {
    .bre-skin-boxes > span::before {
        box-shadow: 0 16px 0 rgba(59, 63, 69, 0.4), inset 0 -8px rgba(59, 63, 69, 0.4);
    }
}

.bre-skin-boxes > span::after,
.bre-skin-boxes.cs-active > span::after {
	top: auto;
	-webkit-transform: none;
	transform: none;
}

.bre-skin-boxes .cs-options {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: auto;
	background: rgba(59, 63, 69, 0.94);
	font-size: 12px;
	opacity: 0;
	-webkit-transition: opacity 0.3s, visibility 0s 0.3s;
	transition: opacity 0.3s, visibility 0s 0.3s;
}

.bre-skin-boxes.cs-active .cs-options {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.bre-skin-boxes .cs-options ul {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 40px 90px 40px 40px;
}
@media (min-width: 1115px)and (max-width: 1230px) {
    .bre-skin-boxes .cs-options ul {
        padding: 30px 40px 30px 10px;
    }
}
@media (min-width: 750px) and (max-width: 1115px) {
    .bre-skin-boxes .cs-options ul {
        padding: 40px;
    }
}
@media (min-width: 640px) and (max-width: 750px) {
    .bre-skin-boxes .cs-options ul {
        padding: 30px 25px;
    }
}
@media (max-width: 640px) {
    .bre-skin-boxes .cs-options ul {
        padding: 10px 25px 10px 25px;
    }
}
.bre-skin-boxes .cs-options li {
	width: 20%;
	height: 25%;
	float: left;
	position: relative;
	cursor: pointer;
	border-radius: 14px;
	overflow: hidden;
	opacity: 0;
	color: rgba(255,255,255,0.6);
	border: 10px solid transparent;
	background-clip: padding-box;
	-webkit-transform: scale3d(0.8,0.8,1);
	transform: scale3d(0.8,0.8,1);
	box-shadow: inset 0 -6em 0 -2em #282b30, inset 0 -1px 1px #000;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}
@media (min-width: 750px) and (max-width: 1115px) {
    .bre-skin-boxes .cs-options li {
        height: 23%;
    }
}
@media (max-width: 640px) {
	.bre-skin-boxes .cs-options li { box-shadow: none; border-width: 3px; border-radius: 8px;}
}

.bre-skin-boxes.cs-active .cs-options li {
	opacity: 1;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(2) {
	-webkit-transition-delay: 0.01s;
	transition-delay: 0.01s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(3) {
	-webkit-transition-delay: 0.02s;
	transition-delay: 0.02s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(4) {
	-webkit-transition-delay: 0.03s;
	transition-delay: 0.03s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(5) {
	-webkit-transition-delay: 0.04s;
	transition-delay: 0.04s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(6) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(7) {
	-webkit-transition-delay: 0.06s;
	transition-delay: 0.06s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(8) {
	-webkit-transition-delay: 0.07s;
	transition-delay: 0.07s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(9) {
	-webkit-transition-delay: 0.08s;
	transition-delay: 0.08s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(10) {
	-webkit-transition-delay: 0.09s;
	transition-delay: 0.09s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(11) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(12) {
	-webkit-transition-delay: 0.11s;
	transition-delay: 0.11s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(13) {
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(14) {
	-webkit-transition-delay: 0.13s;
	transition-delay: 0.13s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(15) {
	-webkit-transition-delay: 0.14s;
	transition-delay: 0.14s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(16) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(17) {
	-webkit-transition-delay: 0.16s;
	transition-delay: 0.16s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(18) {
	-webkit-transition-delay: 0.17s;
	transition-delay: 0.17s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(19) {
	-webkit-transition-delay: 0.18s;
	transition-delay: 0.18s;
}

.bre-skin-boxes.cs-active .cs-options li:nth-child(20) {
	-webkit-transition-delay: 0.19s;
	transition-delay: 0.19s;
}

.bre-skin-boxes .cs-options li.bre-selected::after {
	content: '\2714';
	color: rgba(0,0,0,0.1);
	position: absolute;
	font-size: 2em;
	top: 50%;
	left: 50%;
	-webkit-transform: translate3d(-50%,-50%,0) translate3d(0,-1em,0);
	transform: translate3d(-50%,-50%,0) translate3d(0,-1em,0);
}

.bre-skin-boxes .cs-options li.bre-selected span::after {
	content: '';
}

.bre-skin-boxes .cs-options li.color-BA1D43 {
	background-color: #BA1D43;
}

.bre-skin-boxes .cs-options li.color-DE1F44 {
	background-color: #DE1F44;
}

.bre-skin-boxes .cs-options li.color-F6D26F {
	background-color: #F6D26F;
}

.bre-skin-boxes .cs-options li.color-ED6588 {
	background-color: #ED6588;
}

.bre-skin-boxes .cs-options li.color-AC87B7 {
	background-color: #AC87B7;
}

.bre-skin-boxes .cs-options li.color-F66A55 {
	background-color: #F66A55;
}

.bre-skin-boxes .cs-options li.color-E5D7C8 {
	background-color: #E5D7C8;
}

.bre-skin-boxes .cs-options li.color-4F72B0 {
	background-color: #4F72B0;
}

.bre-skin-boxes .cs-options li.color-19A990 {
	background-color: #19A990;
}

.bre-skin-boxes .cs-options li.color-81D2D3 {
	background-color: #81D2D3;
}

.bre-skin-boxes .cs-options li.color-ED6588 {
	background-color: #ED6588;
}

.bre-skin-boxes .cs-options li.color-995254 {
	background-color: #995254;
}

.bre-skin-boxes .cs-options li.color-FAD4D2 {
	background-color: #FAD4D2;
}

.bre-skin-boxes .cs-options li.color-91A7D1 {
	background-color: #91A7D1;
}

.bre-skin-boxes .cs-options li.color-e8a19b {
	background-color: #e8a19b;
}

.bre-skin-boxes .cs-options li.color-bdd1c8 {
	background-color: #bdd1c8;
}

.bre-skin-boxes .cs-options li.color-e1e7cd {
	background-color: #e1e7cd;
}

.bre-skin-boxes .cs-options li.color-faf4d4 {
	background-color: #faf4d4;
}

.bre-skin-boxes .cs-options li.color-fbdfc9 {
	background-color: #fbdfc9;
}

.bre-skin-boxes .cs-options li.color-f1c1bd {
	background-color: #f1c1bd;
}

.bre-skin-boxes .cs-options span {
	position: absolute;
	bottom: 0;
	width: 100%;
	line-height: 2em;
	letter-spacing: 1px;
}

@media (max-width: 640px) {
	.bre-skin-boxes .cs-options span { display: none; }
}

.bre-skin-boxes .cs-options li span:hover,
.bre-skin-boxes li.cs-focus span,
.bre-skin-boxes li.bre-selected span {
	color: #fff;
}
