
/* ## Theme Switcher ********************** */
.color-switcher {
	width: 220px;
	position: fixed;
	left: 40px;
	top: 180px;
	z-index: 999;
	padding: 0px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}
.color-switcher h5 {
	font-size: 15px;
	margin-top: 0;
	padding: 0 20px 0;
}
.color-switcher p {
	font-size: 12px;
	color: #000;
	margin-bottom: 0;
	background: #fff;
	height: 40px;
	text-align: left;
	font-weight: bold;
	line-height: 42px;
	text-transform: uppercase;
}
.color-switcher ul {
	list-style: none;
	padding: 0;
}
.color-switcher ul li {
	float: left;
}
.color-switcher ul li a {
	display: block;
	width: 35px;
	height: 35px;
	outline: none;
	text-align: center;
	line-height: 35px;
	font-size: 14px;
	color: #333;
}
.color-switcher ul li a.light-red {
	background: #F62459;
}
.color-switcher ul li a.green {
	background: #26a65b;
}
.color-switcher ul li a.red {
	background: #d33636;
}
.color-switcher ul li a.yellow {
	background: #EAD630;
}
.color-switcher ul li a.light-green {
	background: #64e294;
}
.color-switcher ul li a.orange {
	background: #eca928;
}
.color-switcher ul li a.pink {
	background: #fd6b6b;
}
.color-switcher ul li a.black {
	background: #999;
}
.color-switcher .gray {
	background: #656565;
}
.color-switcher .black {
	background: #000;
}
.color-switcher .white {
	background: #fff;
}
.color-switcher .light {
	background: #fff;
	width: 60px;
	color: #000;
	text-align:center;
	float:left;
	border:1px solid #666;
	margin-top:15px;
	margin-right:22px;
}
.color-switcher .dark {
	background: #272727;
	width:60px;
	float:right;
	color: #fff;
	border:1px solid #666;
	margin-top:15px;
}
.picker_close {
	width: 40px;
	height: 40px;
	position: absolute;
	left: -40px;
	top: 0px;
	text-align: center;
	background: #fff;
}
.picker_close i {
	font-size: 22px;
	margin-top: 9px;
}
.position {
	left: 40px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.position .theme-colours {
	display: table;
}

.theme-colours, .layouts, .backgrounds, .choose-header, .choose-footer {
	display: none;
	text-align: left;
	padding-top: 0px;
	width: 100%;
	padding: 19px;
	background: #fff;
	padding-top:0px;
}
.layouts a, .choose-header a, .choose-footer a {
	display: inline-block;
	text-align: center;
	width: 40%;
	margin: 0 5px 0 0;
	color: #5d5d5d;
	font-size: 15px;
	border: 1px solid #e7e7e7;
	padding: 5px 7px 2px;
}
.layouts a:hover, .choose-header a:hover, .choose-footer a:hover {
	border: 2px solid #a9a9a9;
	padding: 4px 5px 1px
}
.styleswitcher {
	position: fixed;
	width: 120px;
	background: #ffffff;
	color: #595959;
	top: 150px;
	right: -123px;
	z-index: 999;
}
.styleswitcher p {
	color: #000 !important;
}
.styleswitcher.ackapa {
	left: 0;
}
.styleswitcher .switch {
	padding-left: 15px;
	padding-bottom: 10px;
}
.styleswitcher .switch h5 {
	margin-top: 20px;
}
.styleswitcher .switch p {
	margin-top: 10px;
}
.stylebutton {
	cursor: pointer;
	position: absolute;
	text-align: center;
	line-height: 40px;
	background: #fff;
	font-size: 20px;
	width: 40px;
	height: 40px;
	top: 0px;
	right: -40px;
}
.styleswitcher a {
	width: 24px;
	height: 24px;
	float: left;
	margin-right: 7px;
	margin-bottom: 10px;
	position: relative;
	z-index: 99999999;
}

.color-switcher ul li{
	margin:3px;
}

/* ## GOTO Next ********************** */
.goto-next
{
	text-transform: uppercase;
	position: absolute;
	bottom: 50px;
	z-index: 999;
	display: inline-block;
	text-align: center;
	left: 0;
	right: 0;
}
.goto-next a
{
	display: block;
	position: relative;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.arrow {
	position: fixed;
	bottom: -25px;
	left: 50%;
	margin-left: -20px;
	width: 25px;
	height: 14px;
	/* background-image: url("../images/icon/bounsing-aerrow.png");*/
	background-size: contain;
}
.bounce {
	-moz-animation: bounce 5s infinite;
	-webkit-animation: bounce 5s infinite;
	animation: bounce 5s infinite;
}
/* Back to Top */
.back-to-top
{
	width: 80px;
	height: 56px;
	/*background-image: url("../images/shape/featured-polygon.png");*/
	display: block;
	margin: 0 auto;
	color: #ccc;
	text-align: center;
	line-height: 50px;
	font-size: 35px;
	bottom: 0;
}
.back-to-top:hover { color: #ccc; }

/* ## Page Loader ********************** */
/* LOADING */
.load-position .logo {
	margin: 0 auto;
	width: 150px;
}
.load-complete {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
}
.load-complete .logo {
	color: #4C4C4C;
	text-align: center;
	display: block;
	margin-bottom: 20px;
	font-family: 'mission_scriptregular';
	font-size: 50px;
}

.load-complete .load-position h6 {
    text-align: center;
    color: #000;
    font-size: 12px;
	font-weight: 400;
	font-style: italic;
}
.load-complete .load-position {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 999;
    right: 0;
    margin-top: -100px;
}
.load-complete .loading {
    position: absolute;
    width: 100%;
    height: 1px;
    margin: 20px auto;
    left: 0;
    right: 0;
}
.load-complete .loading-line {
    position: absolute;
    background: #eee;
    width: 100%;
    height: 2px;
}
.load-complete .loading-break {
    position: absolute;
    background: #F62459;
    width: 15px;
    height: 2px;
}
.load-complete .loading-dot-1 {
    -webkit-animation: loading 2s infinite;
    -moz-animation: loading 2s infinite;
    -ms-animation: loading 2s infinite;
    -o-animation: loading 2s infinite;
    animation: loading 2s infinite;
}
.load-complete .loading-dot-2 {
    -webkit-animation: loading 2s 0.5s infinite;
    -moz-animation: loading 2s 0.5s infinite;
    -ms-animation: loading 2s 0.5s infinite;
    -o-animation: loading 2s 0.5s infinite;
    animation: loading 2s 0.5s infinite;
}
.load-complete .loading-dot-3 {
    -webkit-animation: loading 2s 1s infinite;
    -moz-animation: loading 2s 1s infinite;
    -ms-animation: loading 2s 1s infinite;
    -o-animation: loading 2s 1s infinite;
    animation: loading 2s 1s infinite;
}
@keyframes "loading" {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}
@-moz-keyframes loading {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}
@-webkit-keyframes "loading" {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}
@-ms-keyframes "loading" {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}
@-o-keyframes "loading" {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}

/* ## widget ## */
.widget {
	padding: 62px 0;
}

.widget-title {
	margin-bottom: 33px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #808080;
}

.widget-subscribe hr,
.widget-flicker hr {
	width: 170px;
	display: block;
	margin: 27px 0;
}

/* Widget :: widget_about ## */
.widget.widget-about {
	padding: 0;
}

.widget-about .logo-block {
	width: 100px;
	height: 132px;
	margin-bottom: 50px;
}

.widget-about .logo-block a {
	margin-top: 0;
	color: #fff;
}

.widget-about > h4,
.widget-about > h4 > a,
.widget-about p  {
	color: #808080;
}

.widget-about a,
.widget-about h4{
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 25px;
}

.widget-about p {
	line-height: 25px;
}

.widget-about p span {
	display: block;
}

/* Widget :: Flicker  */
.widget-flicker ul { list-style: none; padding-left: 0; }
.widget-flicker ul li { display: inline-block; margin: 0 5px 10px 0; }

/* Widget :: Newsletter */
.widget-subscribe p {
	font-size: 13px;
	color: #808080;
	font-family: 'Raleway', sans-serif;
	line-height: 25px;
	margin-top: -10px;
}

.widget-subscribe  input {
	background-color: transparent;
	border: 1px solid #808080;
	border-radius: 0;
	height: 56px;
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	padding: 0 30px;
}

.widget-subscribe  input:focus {
	box-shadow: none;
	border-color: #808080;
}

.widget-subscribe .input-group {
	margin-top: 50px;
}

.widget-subscribe  .btn {
	background-color: transparent;
	border: 1px solid #808080;
	border-radius: 0;
	padding: 0 25px;
	height: 56px;
	color: #808080;
	text-transform: uppercase;
	letter-spacing: 2px;
	outline: none;
}

.widget-subscribe .btn:hover {
	border-color: #fff;
	color: #fff;
}

/* Widget :: Latest Blog Post  */
/*.post { 
	display: inline-block; 
	width: 100%; 
	margin-bottom: 0;
	padding: 0; 
}
.post li { 
	display: inline-block; 
	margin-bottom: 2px;
}
.widget-latest-post .col-md-5,
.widget-latest-post .col-md-7 {
	padding-left: 0; 
}
.widget p { 
	margin-bottom: 5px; 
}
.widget-latest-post .post-title { 
	line-height: 25px; 
	color: #fff;
	margin-bottom: 10px;
	display: inline-block;
}
	
.widget-latest-post .days { 
	font-weight: 900;
}*/

/* Widget :: Twitter  */
/*.widget-recent-tweets p { font-size: 13px; margin-bottom: 25px; line-height: 20px; }
.widget-recent-tweets p span { color: #ffb61e; }
.widget-recent-tweets p a { display: inline-block; color: #ffb61e; }
*/
/* Widget :: Social */
.widget.widget-social {
	padding: 0;
}
.widget-social ul {
	text-align: right;
	margin-bottom: 0;
}
.widget-social ul li {
	display: inline-block;
}

.widget-social ul li a {
	width: 30px;
	height: 30px;
	text-align: center;
	display: inline-block;
	color: #fff;
	background-color: #000;
	line-height: 30px;
	font-size: 16px;
	margin: 0 5px;
}

.widget-social ul li a:hover { 
	color: #F62459;
}

/* Widget :: Serach */

.widget-search-form {
    position: relative;
}
.widget-search-form .search-line {
    border: 1px solid #a3a3a3;
    padding: 15px;
    width: 100%;
}
.widget-search-form i {
    position: absolute;
    width: 50px;
    right: 0;
    top: 0;
    height: 50px;
    z-index: 1;
    text-align: center;
    font-size: 20px;
    padding-top: 16px;
    color: #999;
}
.widget-search-form .search-button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: 50px;
    outline: none;
    height: 50px;
    border: 0;
    cursor: pointer;
    z-index: 2;
    background: none;
}


.sidebar {
    padding-bottom: 80px;
}
.sidebar .widget {
    margin-bottom: 40px;
	display: block;
	color: #000;
	padding: 0;
}
.sidebar .widget .widget-title {
	color: #4c4c4c;
}
.sidebar .widget ul {
	padding-left: 0;
}
.sidebar .widget ul li {
    list-style: none;
}
.sidebar .widget .mini-shop-item {
    position: relative;
    padding-left: 100px;
    min-height: 70px;
    margin-bottom: 20px;
}
.sidebar .widget .mini-shop-item .shop-item-image {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
.sidebar .widget .mini-shop-item h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    margin: 0 0 10px 0;
}
.sidebar .widget .mini-shop-item h4 a {
    color: #333;
}
.sidebar .widget .mini-shop-item h6 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
}
.sidebar .widget .mini-shop-item .shop-item-image img {
    width: 70px;
    height: 70px;
}
.widget.widget-blog-posts ul {
    margin: 0 0 10px 0;
}
.widget.widget-blog-posts ul li {
    margin: 0 0 10px 0;
    padding: 0 0 0 15px;
    list-style: none;
    color: #fff;
    font-size: 13px;
    position: relative;
}
.widget.widget-blog-posts ul li:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    position: absolute;
    margin-top: 7px;
    top: 0;
    left: 0;
    font-size: 7px;
    content: "\e70c";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.widget.widget-blog-posts ul li a {
    color: #fff;
}

.widget.widget-socials p {
    margin-bottom: 30px;
}
.widget.widget-tag-cloud a {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 1px;
    color: #fff;
    background: #808080;
    padding: 4px 8px;
    font-size: 13px;
}
.widget .widget-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.sidebar .widget ul li {
    margin-bottom: 8px;
}

.sidebar .widget-categories ul li {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.sidebar .widget-categories ul li a {
	color: #808080;
}

.sidebar .widget-categories ul li a:hover {
	color: #F62459;
	text-decoration: none;
}
.sidebar .widget-search-form {
    position: relative;
}
.sidebar .widget-search-form .search-line {
    border: 1px solid #a3a3a3;
    padding: 15px;
    width: 100%;
}
.sidebar .widget-search-form i {
    position: absolute;
    width: 50px;
    right: 0;
    top: 0;
    height: 50px;
    z-index: 0;
    text-align: center;
    font-size: 22px;
    padding-top: 16px;
    color: #999;
}
.sidebar .widget-search-form i:hover {
	color: #FF7E5B;
}

.sidebar .widget-search-form .search-button {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    width: 50px;
    outline: none;
    height: 50px;
    border: 0;
    cursor: pointer;
    z-index: 2;
    background: none;
}
.sidebar .widget-search-form .search-button:hover .widget-search-form i {
	color: #FF7E5B;
}
/* Min Post */
.sidebar .widget .mini-post {
    margin-bottom: 20px;
}
.sidebar .widget .mini-post .mini-post-cover {
    margin-bottom: 15px;
}
.sidebar .widget .mini-post .mini-post-cover a {
    display: block;
}
.sidebar .widget .mini-post h4 {
    margin: 0 0 5px 0;
    text-transform: uppercase;
    color: #121212;
    font-size: 16px;
    font-weight: 700;
}
.sidebar .widget .mini-post h4 a {
    color: #121212;
}
.sidebar .widget .mini-post p {
    color: #a3a3a3;
    font-size: 13px;
}
.mini-post h3 a {
	font-size: 16px;
	color: #000;
	text-transform: uppercase;
}
/* twitter */
.sidebar .widget_recent_tweets p {
	margin-bottom: 20px;
}
/* social */
.sidebar .widget .socials {
    margin: 0 -5px;
    text-align: left;
}
.sidebar .widget .socials li {
    display: inline-block;
    margin: 0 5px 5px;
}
.sidebar .widget .socials li a {
    display: block;
    color: #efefef;
    text-align: center;
    font-size: 24px;
    background: #4E4E4E;
    border: 0;
    width: 40px;
    height: 40px;
    padding-top: 0;
    border-radius: 0;
	line-height: 40px;
}
.sidebar .widget .socials li a:hover {
    background-color: #F62459;
}

.tab-widget .nav-tabs {
    width: 100%;
    border-bottom: 0;
}
.tab-widget .nav-tabs li {
    display: inline-block;
    margin: 0 !important;
    width: 50%;
}
.tab-widget .nav-tabs li a {
    color: #999;
}

.tab-widget .tab-content {
    border: 1px solid #ddd;
    border-top: 0;
    padding: 20px;
    background: #fff;
}

.tab-widget .nav-tabs li a {
    border: 1px solid #fff;
    border-top: 4px solid #fff;
    border-bottom: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 0;
    margin: 0;
    display: block;
}

.tab-widget .nav-tabs li a:hover {
    background: none;
}

.tab-widget .nav-tabs li.active a {
    border-top: 4px solid #F62459;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #fff;
}

/* Widget :: Twitter  */
.widget_recent_tweets p {
	font-size: 13px;
	margin-bottom: 50px;
}

.widget_recent_tweets p span {
	color: #F62459;
}

.widget_recent_tweets p a {
	display: block;
	color: #F62459;
}

/* -- Widget Over -- */
.contact .form-control::-webkit-input-placeholder { /* WebKit browsers */
    color: #fff;
}
.contact .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #fff;
   opacity:  1;
}
.contact .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #fff;
   opacity:  1;
}
.contact .form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
   color: #fff;
}

.orderby {
    float: right;
    padding: 0 15px;
    background-color: #efefef;
    text-transform: uppercase;
    width: 170px;
    height: 41px;
    line-height: 41px;
    border: none;
	letter-spacing: 2px;
	color: #808080;
	font-weight: bold;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("../images/shop/dropdown-arrow.png");
	background-position:
	  calc(100% - 20px) calc(1em + 5px),
	  calc(100% - 20px) calc(1em + 2px),
	  calc(100% - 2.5em) 0.5em;
	background-repeat: no-repeat;
	box-shadow: none;
}

.what-we-text {
	background-image: none;
	background-repeat: no-repeat;
	background-position: cover;
}