/*--------------------------------------------------------------
## THEME 0RNG
## CSS THEME-TOGGLE.CSS
## INFORMATION:
## This is theme 0RNG toggle colors stylesheet CSS
## Author: M. Jurasovic @mjd
## Author URI: http://mariojurasovic.com/
## Theme URI: http://p6.mariojurasovic.com/
## Version: 1.0.0
## Copyright: (c)2017
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## CSS THEME TOGGLE
--------------------------------------------------------------*/
.popout {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
    color: #121212;
    background-color: rgba(30,30,30,30.95);
    border: 1px solid #ffffff;
    z-index: 9999;
    position: fixed;
    width: 200px;
    height: 235px;
    top: 200px;
    right: -200px;
    transition: 500ms transform ease-in-out;
	-moz-box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
	-webkit-box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
	-o-box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
	box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
}
.toggle {
    display: table;
    position: absolute;
    top: 80px;
    left: -40px;
    width: 40px;
    font-size: 20px;
    height: 40px;
    color: #ffffff;
    background-color: rgba(30,30,30,30.95);
    border: 1px solid #ffffff;
    cursor: pointer;
	-moz-box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
	-webkit-box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
	-o-box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
	box-shadow: 0 5px 8px 3px rgba(0,0,0,0.50);
}
.toggle i {
    display: table-cell;
    vertical-align: middle;
}
.colors {
    padding: 15px;
}
.colors p {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
	color: #999999;
	text-align: center;
    margin: 0;
    padding: 0 0 10px 0;
	-moz-text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	-webkit-text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	-o-text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
}
.copyright  {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-weight: 100;
    color: #999999;
	text-transform: uppercase;
	text-align: center;
    z-index: 9999;
}
.shadow {
	-moz-text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	-webkit-text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	-o-text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	text-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
}
.colors ul {
	margin-left: -40px;
}
.colors ul li {
    height: 30px;
    width: 30px;
    margin: 0 3px;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    transition: 200ms;
	-moz-box-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	-webkit-box-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	-o-box-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
	box-shadow: 0 3px 5px 2px rgba(0,0,0,0.30);
}
.colors ul li:hover {
    transform: scale(1.2);
}
/**!
 * THEME COLORS
 **/
.colors .color-01 {
    background: #e74c3c;
    cursor: pointer;
}
.colors .color-02 {
    background: #121212;
    cursor: pointer;
}
.colors .color-03 {
    background: #00a4e4;
    cursor: pointer;
}
.colors .color-04 {
    background: #06a763;
    cursor: pointer;
}
.logo-toggler {
    margin: auto;
    cursor: pointer;
}
.img-positioner {
    margin: auto;
    cursor: pointer;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media only screen and (min-width: 768px) {
	.popout-card,
	#color-palette {
		right: 0px;
	}
}
@media only screen and (max-width: 767.98px) {
	.popout-card,
	#color-palette {
		right: -200px;
	}
}
/*--------------------------------------------------------------
## END
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## CSS RESPONSIVE - MEDIA QUERIES BLOG
--------------------------------------------------------------*/
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) {}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 480px) {}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {}
/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {}
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {}
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {}
/* Small Devices, Tablets */
@media only screen and (max-width: 767.98px) {}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {}
/* Custom, iPhone Retina */
@media only screen and (max-width: 320px) {}
/*--------------------------------------------------------------
## END
--------------------------------------------------------------*/