@charset "utf-8";

/* CSS Document */


/* Parscale Media Style Sheet
-----------------------------------------------------------------------------

Prototype Version:  2.4

*/


/* Table of Contents
-----------------------------------------------------------------------------

1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework

*/


/* 1. Create a Clean Base
------------------------------------------------------------------------------*/

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    direction: rtl;
    font-family: 'Open Sans Hebrew';
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

br {
    height: 0;
}

ul,
ol,
dl,
li {
    margin: 0;
    padding: 0;
    color: #555555;
    font-size: 14px;
    line-height: 24px;
}

html,
body {
    height: 100%;
    -webkit-appearance: none;
    border: none;
    -webkit-text-size-adjust: none;
}

body {
    position: relative;
}


/* Class for clearing floats */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.cf:after,
.cf:before {
    display: table;
    content: ''
}

.cf:after {
    clear: both;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* 2. Define Base Typography
------------------------------------------------------------------------------*/


/* Create the Default Headers  */

h1,
h2,
h3,
h4,
h5,
h6 {}


/* Create the Default Paragraphs */

p {
    color: #555555;
    font-size: 14px;
    line-height: 24px;
}


/* Specific Header Settings */

h1 {
    font-weight: 300;
    font-size: 35px;
    color: #000;
}

h2 {
    font-weight: bold;
    font-size: 26px;
    color: #353535;
    line-height: 46px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}


/* Other Typo */

strong {
    font-weight: bold;
}

hr {
    border: 0 #000 solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
}

ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}


/* 3. Images
------------------------------------------------------------------------------*/


/* Remove border around linked images */

img {
    border: 0;
    border-style: none;
    max-width: 100%;
}


/* 4. Links
------------------------------------------------------------------------------*/


/* Default Link Types */

a {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

a:hover {}

a:active {}

a:focus {
    outline: none;
}

a.current {
    color: #e8941a;
}


/* 5. Forms
------------------------------------------------------------------------------*/

input[type='submit'] {
    -webkit-appearance: none;
    border: none;
    -webkit-text-size-adjust: none;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"] {
    display: inline-block;
    width: 100%;
    height: 48px;
    border: 2px solid #ececec;
    border-radius: 30px;
    padding: 0 20px;
}

.btn {
    width: 182px;
    height: 45px;
    background-color: #ff2d55;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
}

select {
    width: 245px;
    height: 45px;
    border: 2px solid #ececec;
    border-radius: 30px;
    text-align: center;
    text-align-last: center;
    background-color: transparent;
    -webkit-appearance: none;
    -webkit-text-size-adjust: none;
    background-image: url(../images/site/select_arrow.png);
    background-repeat: no-repeat;
    background-position: 10% center;
    font-size: 14px;
    font-weight: 600;
    color: #ff2d55;
    outline: none;
}

option {
    text-align: left;
    /* reset to left*/
}


/* Removes fieldset borders. even on Opea 7 */

fieldset {
    border: 1px solid transparent;
}


/* 6. Tables
------------------------------------------------------------------------------*/


/* Table Fixes */

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    text-align: left;
    font-weight: normal;
}


/* Removes fieldset borders. even on Opera 7 */

fieldset {
    border: 1px solid transparent;
}


/* 7. Framework
------------------------------------------------------------------------------*/


/* Common CSS */


/*common margin style*/

.m0 {
    margin: 0 !important;
}

.mr20 {
    margin-right: 20px;
}

.mt20 {
    margin-top: 20px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt50 {
    margin-top: 50px !important;
}


/*all padding zero*/

.p0 {
    padding: 0 !important;
}

.pt20 {
    padding-top: 20px;
}


/*common display style*/

.dis-b {
    display: block
}

.pos_rel {
    position: relative;
}

.hidden {
    display: none !important;
}


/*border*/

.no_bdr {
    border: none !important;
}


/*common fonts style*/

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.fbold {
    font-weight: bold;
}


/*transition effect*/

.tra {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* Page Layout */

body {}

#full_wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto;
}

.wrapper {
    max-width: 1420px;
    margin: 0 auto;
    width: 100%;
}

.content {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 60px;
    background: #000;
    opacity: 0.3;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}

.overlay.active {
    visibility: visible;
    opacity: 0.3;
}


/* Loading */

.loading-contner {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: #fff
}

.cssload-box-loading {
    width: 49px;
    height: 49px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.cssload-box-loading img {
    position: absolute;
    z-index: 999;
    width: 35px;
    left: 50%;
    margin-left: -17px;
    top: 13px
}

.cssload-box-loading:after,
.cssload-box-loading:before {
    content: '';
    width: 49px;
    position: absolute;
    left: 0
}

.cssload-box-loading:before {
    height: 5px;
    background: #000;
    opacity: .1;
    top: 58px;
    border-radius: 50%;
    animation: shadow .58s linear infinite;
    -o-animation: shadow .58s linear infinite;
    -ms-animation: shadow .58s linear infinite;
    -webkit-animation: shadow .58s linear infinite;
    -moz-animation: shadow .58s linear infinite
}

.cssload-box-loading:after {
    height: 49px;
    background: #ff345c;
    top: 0;
    border-radius: 3px;
    animation: cssload-animate .58s linear infinite;
    -o-animation: cssload-animate .58s linear infinite;
    -ms-animation: cssload-animate .58s linear infinite;
    -webkit-animation: cssload-animate .58s linear infinite;
    -moz-animation: cssload-animate .58s linear infinite
}

@keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 39px
    }
    75% {
        transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        transform: translateY(0) rotate(90deg)
    }
}

@-o-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -o-transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -o-transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 39px
    }
    75% {
        -o-transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -o-transform: translateY(0) rotate(90deg)
    }
}

@-ms-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -ms-transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -ms-transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 39px
    }
    75% {
        -ms-transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -ms-transform: translateY(0) rotate(90deg)
    }
}

@-webkit-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -webkit-transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 39px
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg)
    }
}

@-moz-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px
    }
    25% {
        -moz-transform: translateY(9px) rotate(22.5deg)
    }
    50% {
        -moz-transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 39px
    }
    75% {
        -moz-transform: translateY(9px) rotate(67.5deg)
    }
    100% {
        -moz-transform: translateY(0) rotate(90deg)
    }
}

@keyframes shadow {
    0%,
    100% {
        transform: scale(1, 1)
    }
    50% {
        transform: scale(1.2, 1)
    }
}

@-o-keyframes shadow {
    0%,
    100% {
        -o-transform: scale(1, 1)
    }
    50% {
        -o-transform: scale(1.2, 1)
    }
}

@-ms-keyframes shadow {
    0%,
    100% {
        -ms-transform: scale(1, 1)
    }
    50% {
        -ms-transform: scale(1.2, 1)
    }
}

@-webkit-keyframes shadow {
    0%,
    100% {
        -webkit-transform: scale(1, 1)
    }
    50% {
        -webkit-transform: scale(1.2, 1)
    }
}

@-moz-keyframes shadow {
    0%,
    100% {
        -moz-transform: scale(1, 1)
    }
    50% {
        -moz-transform: scale(1.2, 1)
    }
}


/* Header*/

header {
    height: 80px;
    background-color: #fff;
    font-family: 'Open Sans Hebrew';
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    z-index: 999999;
    border-bottom: 1px solid #eeeeee;
}

.mob_head {
    display: none;
}


/*header .left_side , header .right_side{width: 50%;}*/

header .brand {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-left: 25px;
}

header nav {
    display: inline-block;
    vertical-align: top;
}

header nav ul li {
    display: inline-block;
    vertical-align: top;
    margin-left: 25px;
}

header nav ul li a {
    color: #000;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    position: relative;
    padding-top: 33px;
    padding-bottom: 22px;
}

header nav ul li a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ff2d55;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

header nav ul li.active a {
    color: #ff2d55;
}

header nav ul li.active a:after {
    visibility: visible;
    opacity: 1;
}

header nav ul li a:hover {
    color: #ff2d55;
}

header nav ul li a:hover:after {
    opacity: 1;
    visibility: visible;
}

header .right_nav {
    padding-top: 30px;
    text-align: left
}

header .right_nav p {
    font-size: 16px;
    line-height: 37px;
    display: inline-block;
    margin-left: 0px;
    font-weight: 400;
}

header .right_nav a {
    margin-left: 25px;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
    font-weight: 400;
}

header .right_nav a+a {
    margin-left: 10px;
}

header .right_nav a:hover {
    color: #ff2d55;
}

header .right_nav a.log_out {
    padding-right: 15px;
    border-right: 1px solid #cacaca;
    padding-top: 5px;
    padding-bottom: 5px;
}

header .right_nav a img {
    vertical-align: middle;
    width: 22px;
    margin-left: 8px;
    margin-top: -3px;
}

.left_side {
    float: right;
}

.right_side {
    float: left;
}


/* Footer */

footer {
    padding-bottom: 25px;
    background-color: #fff;
    position: relative;
    z-index: 9999;
    padding-top: 50px;
}

footer .col_6 img.f_logo {
    margin-bottom: 20px;
}

footer .col_6 {
    width: 25%;
    float: right;
}

footer .col_6 .inner_row {
    width: 45%;
    text-align: right;
    margin: 0 auto;
    padding-right: 10px;
}

footer .col_6.f_row {
    text-align: center
}

footer .col_6.f_row a {
    font-size: 14px;
}

footer .col_6 a {
    display: block;
    font-size: 14px;
    color: #6f6f6f;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-weight: 400;
}

footer .col_6.t_row {
    padding-left: 40px;
}

footer .col_6.fo_row {
    padding-left: 20px;
    padding-right: 20px;
}

footer .col_6 .pay_option {
    margin-top: 30px;
}

footer p {
    font-size: 14px;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: #6f6f6f;
    font-weight: 400;
}

footer address {
    font-size: 14px;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: #6f6f6f;
    font-style: normal;
    line-height: 20px;
    margin-top: -5px;
    font-weight: 400;
}

footer .socail {
    margin-top: 15px;
}

footer .pay_option p,
footer .col_6.f_row p,
footer .col_6.f_row a {
    font-size: 12px;
}

footer .socail a {
    display: inline-block;
    margin-left: 10px;
    opacity: 0.2;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

footer .socail a:hover {
    opacity: 0.8;
}


/* Home Page */

.col_6 {
    width: 49%;
    float: left;
}

.banner {
    text-align: center;
    min-height: 300px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    padding-top: 90px;
    padding-bottom: 85px;
}

.banner h1 {
    text-transform: uppercase;
    color: #000;
    font-size: 30px;
    font-weight: 400;
}

.banner h1 b {
    font-weight: 700;
}

.banner p {
    font-family: 'Open Sans Hebrew';
    font-style: italic;
    width: 48%;
    margin: 0 auto;
    margin-top: 15px;
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.blogs {
    margin-top: 30px;
    margin-bottom: 95px;
}

.blogs .half_blog {
    width: 48%;
    float: right;
    min-height: 700px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden
}

.blogs .hr_ovarlay:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    top: 0;
    right: -50%;
}

.blogs .hr_ovarlay:hover:after {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
    right: 0;
}

.blogs .half_blog p {
    position: absolute;
    right: 40px;
    bottom: 35px;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    z-index: 9999;
    font-weight: 700
}

.blogs .half_blog a {
    position: absolute;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    width: 184px;
    height: 45px;
    border-radius: 30px;
    background-color: #ff2d55;
    text-align: center;
    line-height: 44px;
    left: 25%;
    margin-left: -85px;
    top: 48%;
    visibility: hidden;
    opacity: 0;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    z-index: 9999;
    text-transform: uppercase;
    font-weight: 700;
}

.blogs .hr_ovarlay:hover a {
    visibility: visible;
    opacity: 1;
    left: 50%;
}

.blogs .half_blog.semi_blog {
    min-height: 340px;
}

.blogs .half_blog.mr {
    margin-left: 1.5%;
}

.blogs .half_blog .mb {
    margin-bottom: 20px;
}

.blogs .half_blog .semi {
    min-height: 340px;
    width: 100%;
    position: relative;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

.top_head {
    margin-bottom: 14px;
}

.top_head h2 {
    float: right;
    text-transform: uppercase
}

.top_head a {
    float: left;
    color: #ff2d55;
    font-size: 14px;
    padding-top: 15px;
}

.populer .list_cont a {
    min-height: 270px;
    background-color: #ffffff;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    margin-bottom: 17px;
    box-shadow: 0px 2px 7px #0003;
    margin-left: 5px;
    margin-right: 5px;
}

.populer .list_cont a:after {
    position: absolute;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #353535;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.populer .list_cont a:hover:after {
    visibility: visible;
    opacity: 1;
}

.populer .list_cont .left_img {
    width: 33%;
    float: right;
    min-height: 270px;
    background-color: #fff;
}

.populer .list_cont .left_img img {
    width: 100%;
}

.populer .list_cont .right_txt {
    width: 67%;
    float: right;
    padding-top: 60px;
    padding-right: 40px;
    padding-left: 21%;
}

.populer .list_cont .right_txt h4 {
    text-transform: uppercase
}

.populer .list_cont .right_txt p {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #595959;
}


/* Fad Animation */

.rel {
    position: relative;
    height: auto !important;
    min-height: 100%;
    height: 100%;
}

.fade .view {
    opacity: 1;
    left: 0;
    top: 0;
    width: 100%;
}

.fade .view.ng-enter,
.fade .view.ng-leave {
    -webkit-transition: opacity 1s ease;
    -moz-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
}

.fade .view.ng-enter {
    opacity: 0;
    position: absolute;
}

.fade .view.ng-enter-active {
    opacity: 1;
}

.fade .view.ng-leave {
    opacity: 1;
}

.fade .view.ng-leave-active {
    opacity: 0;
    position: absolute;
}


/* Account Page */

.bg {
    background-color: #f5f5f5;
    padding-bottom: 60px;
}

.account {
    max-width: 980px;
    width: 100%;
    margin: 0 auto
}

.account .top_head h1 {
    font-weight: 600;
    text-transform: uppercase;
    float: right;
}

.account .top_head ul {
    float: left;
}

.account .top_head ul li {
    display: inline-block;
    list-style: none;
    margin-left: 15px;
    vertical-align: bottom;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.account .top_head ul li.active {
    border-color: #ff345c;
}

.account .top_head ul li:hover {
    border-color: #ff345c;
}

.account .top_head ul li a {
    display: block;
    color: #353535;
    text-transform: uppercase;
    font-weight: 400;
}

.top_link {
    margin-bottom: 15px;
}

.top_link p {
    color: #a3a3a3;
    font-size: 12px;
}

.top_link p a {
    color: #a3a3a3;
    font-size: 12px;
}

.top_link .left_side p {
    font-size: 14px;
    color: #595959;
}

.per_info {
    margin: 0 auto;
    background-color: #fff;
    padding: 19px 15px;
    max-width: 98%;
}

.ord_history,
.wishlist {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 25px 20px;
    min-height: 640px;
}

.per_info h3,
.ord_history h3,
.wishlist h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 27px;
    color: #353535;
}

.per_info .col_5 {
    width: 49%;
    float: right;
    margin-bottom: 15px;
}

.per_info .col_5 p {
    font-size: 12px;
    color: #1a1a24;
    font-weight: 400;
    margin-bottom: 10px;
}

.per_info .col_5.mr {
    margin-right: 2%;
}

.account .per_info .col_5.mr {
    margin-right: 0;
    margin-left: 2%;
}

.per_info .btn {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 700;
}

.ord_history ul.even {
    background-color: #fff;
}

.ord_history ul.ord_head li {
    font-weight: 600;
}

.dn {
    display: none;
}

.ord_history ul {
    list-style: none;
    background-color: #f5f5f5;
}

.ord_history ul li {
    display: inline-block;
    float: right;
    text-transform: uppercase;
    line-height: 40px;
    border-left: 1px solid #e3e3e3;
    font-weight: 400;
    /*text-align: center;*/
    width: 4%;
    color: #1a1a24;
}

.ord_history ul li:last-child {
    border: none
}

.ord_history ul li+li {
    width: 13.5%;
}

.ord_history ul li+li+li {
    width: 18%;
}

.ord_history ul li+li+li+li {
    width: 16%;
}

.ord_history ul li a {
    font-size: 12px;
    font-weight: 400;
    margin-left: 15px;
    color: #ff365e;
}

.ord_history ul li a+a {
    margin-left: 0;
}

.ord_history ul li a img {
    width: 15px;
    vertical-align: middle;
    margin-top: -4px;
    margin-left: 4px;
}

.wishlist ul {
    background-color: #f5f5f5;
    display: table;
    width: 100%;
}

.wishlist ul.even {
    background-color: #fff;
}

.wishlist ul li {
    list-style: none;
    width: 16.5%;
    text-align: center;
    border-left: 1px solid #e3e3e3;
    text-transform: uppercase;
    display: table-cell;
    vertical-align: middle;
    font-weight: 400;
    color: #1a1a24;
}

.wishlist ul.wish_head li {
    height: 40px;
    font-weight: 700;
    font-size: 12px;
    color: #1a1a24;
}

.wishlist ul li img {
    max-height: 115px;
    padding-top: 15px;
}

.wishlist ul li+li {
    font-weight: 700;
    height: 127px;
    vertical-align: middle;
}

.wishlist ul li+li+li {
    font-weight: 400;
}

.wishlist ul li:last-child {
    border: none
}

.wishlist ul li a {
    font-size: 12px;
    font-weight: 400;
    margin-left: 15px;
    color: #ff365e;
}

.wishlist ul li a+a {
    margin-left: 0;
}

.wishlist ul li a img {
    width: 15px;
    vertical-align: middle;
    margin-top: -4px;
    margin-left: 4px;
    padding: 0;
}


/* Login */

.login .col_6 {
    width: 49%;
    float: right;
    padding: 30px 110px;
    background-color: #fff;
}

.login .col_6 .col_6 {
    width: 49%;
    float: right;
    padding: 0;
    margin-bottom: 15px;
}

.login .col_6.mr {
    margin-left: 2%;
}

.login .col_6 h3 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 17px;
    color: #353535
}

.login .col_6 .login_info {
    margin-bottom: 15px;
}

.login .col_6 .login_info p {
    padding-bottom: 10px;
    font-weight: 400;
    color: #1a1a24;
    font-size: 12px;
}

.login .col_6 .login_info a {
    float: right;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a24;
    line-height: 20px;
}

.login .col_6 .login_info label {
    float: left;
    padding-right: 17px;
    background-image: url(../images/site/checkbox.png);
    background-repeat: no-repeat;
    background-position: right center;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a24;
    line-height: 20px;
}

.login .col_6 .login_info label:hover {
    cursor: pointer
}

.login .col_6 .login_info label.active {
    background-image: url(../images/site/check.png)
}

.login .col_6 .login_info label input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
}

.login .col_6 .btn {
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}

.login .col_6 .term label {
    float: none;
    padding-left: 15px;
    display: inline-block;
    vertical-align: top;
}

.login .col_6 .term label a {
    float: none;
    text-decoration: underline;
    line-height: 20px;
    padding-right: 5px;
}


/* Mid + Filter */

.mob_show {
    display: none;
}

.mob_link,
.mob_back {
    display: none;
}

.mob_back {
    display: none !important;
}

.album_list {
    margin-top: 30px;
}

.backg {
    background-color: #f5f5f5;
}

.min_top {
    padding-bottom: 15px;
    position: relative;
}

.min_top h1 {
    font-weight: 600;
}

.min_top .btn {
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 44px;
    font-size: 14px;
    padding-right: 15px;
    background-image: url(../images/site/filter.png);
    background-repeat: no-repeat;
    background-position: center right 20px;
    min-width: 190px;
    margin-right: 15px;
    font-weight: 700;
}

.min_top .search {
    width: 235px;
    background-color: #fff;
    border: none;
    font-weight: 300;
    background-image: url(../images/site/search.png);
    background-repeat: no-repeat;
    background-position: center right 15px;
    padding-right: 50px;
    margin-right: 15px;
    color: #878787;
}

.blog_list {
    display: inline-block;
    background-color: #fff;
    padding: 12px 15px;
    border-radius: 30px;
}

.blog_list a {
    margin-left: 10px;
    position: relative;
}

.blog_list a.active img {
    opacity: 0;
    visibility: hidden;
}

.blog_list a.active img.act_img {
    opacity: 1;
    visibility: visible;
}

.blog_list a .act_img {
    position: absolute;
    left: 0;
    top: 4px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.blog_list a+a {
    margin-left: 0;
}

.min_top .filter {
    float: left;
    font-size: 14px;
    color: #ff2d55;
    margin-left: 70px;
    margin-top: 10px;
}

.parent {
    position: relative;
}

.parent .filter_data {
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    top: 0;
    left: 0;
    border-top: 1px solid #eeeeee;
    z-index: 9999;
    min-height: 400px;
    padding-top: 15px;
    padding-bottom: 25px;
    -webkit-box-shadow: 0 7px 6px #b3b3b3;
    box-shadow: 0 7px 6px #b3b3b3;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    opacity: 0;
    visibility: hidden;
    top: -20%;
}

.parent .filter_data.active {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.parent .filter_data .col {
    width: 24%;
    float: right;
    margin-left: 1.33%;
}

.parent .filter_data .col.mr0 {
    margin-left: 0;
}

.parent .filter_data h4 {
    font-size: 14px;
    font-weight: 700;
    color: #353535;
    text-transform: uppercase
}

.parent .filter_data h4 span {
    font-weight: 300;
}

.parent .filter_data select {
    margin-top: 25px;
    margin-bottom: 50px;
    font-weight: 400;
}

.parent .filter_data .border {
    border: 1px solid #d7d7d7;
}

.parent .filter_data .a_ratio .border {
    margin-top: 10px;
}

.parent .filter_data input[type="radio"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.parent .filter_data .a_ratio .col_6 {
    text-align: center;
    padding: 25px;
    min-height: 130px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    position: relative;
}

.parent .filter_data .a_ratio .col_6.long img {
    margin-top: -9px;
}

.parent .filter_data .a_ratio .col_6 p {
    font-size: 14px;
    font-weight: 400;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    color: #353535;
}

.parent .filter_data .a_ratio .col_6:hover {
    cursor: pointer
}

.parent .filter_data .a_ratio .col_6:hover p {
    color: #ff2d55;
    font-weight: 500;
}

.parent .filter_data .a_ratio .col_6.active,
.parent .filter_data .a_cover .col_6.active {
    background-color: #f9f9f9;
}

.parent .filter_data .a_ratio .col_6.active p,
.parent .filter_data .a_cover .col_6.active p {
    color: #ff2d55;
    font-weight: 500;
}

.parent .filter_data .a_format {
    margin-top: 10px;
}

.parent .filter_data .a_material {
    margin-top: 10px;
}

.parent .filter_data .a_format .col_3,
.parent .filter_data .a_material .col_3 {
    width: 33.33%;
    min-height: 55px;
    text-align: center;
    float: left;
    border: 1px solid #e5e5e5;
    position: relative;
}

.parent .filter_data .a_format .col_3 p,
.parent .filter_data .a_material .col_3 p {
    font-size: 14px;
    line-height: 53px;
    font-weight: 400;
    color: #353535;
}

.parent .filter_data .a_format .col_3:hover,
.parent .filter_data .a_material .col_3:hover {
    cursor: pointer
}

.parent .filter_data .a_format .col_3:hover p,
.parent .filter_data .a_material .col_3:hover p {
    cursor: pointer;
    color: #ff2d55;
    font-weight: 500;
}

.parent .filter_data .a_format .col_3.active,
.parent .filter_data .a_material .col_3.active {
    background-color: #f9f9f9;
}

.parent .filter_data .a_format .col_3.active p,
.parent .filter_data .a_material .col_3.active p {
    color: #ff2d55;
    font-weight: 500;
}

.parent .filter_data .top {
    margin-top: 12px;
}

.parent .filter_data .a_cover .col_6 {
    min-height: 260px;
    border: 1px solid #d7d7d7;
    margin-top: 10px;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.parent .filter_data .a_cover .col_6.active {
    border-top: none;
    border-bottom: none
}

.parent .filter_data .a_cover .col_6 p {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    color: #353535;
}

.parent .filter_data .bottom_filter {
    text-align: center;
}

.parent .filter_data .d_filter {
    display: inline-block;
    width: 340px;
    line-height: 43px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 30px;
}

.parent .filter_data .d_filter {
    display: inline-block;
    width: 340px;
    line-height: 43px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 30px;
    font-size: 14px;
    font-weight: 700;
}

.parent .filter_data .close {
    float: right;
    margin-top: 30px;
}

.album_list .col {
    width: 33.33%;
    float: right;
    text-align: center;
    padding: 15px 6.5%;
    border-left: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    padding-top: 7px;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    position: relative;
}

.album_list .col:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #353535;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.album_list.ab_l_2 .col {
    width: 50%;
    float: left;
    text-align: center;
    padding: 15px 6.3%;
    border-right: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    padding-top: 7px;
    border-left: none
}

.album_list .col.last {
    border-left: none;
    border-right: none
}

.album_list .col:hover {
    opacity: 0.8;
    cursor: pointer;
}

.album_list .col:hover:after {
    opacity: 1;
    visibility: visible;
}

.album_list .col h4 {
    margin-bottom: 20px;
    text-transform: uppercase
}

.album_list .col p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #595959;
}

.album_list .col .img_list {
    position: relative;
    height: 280px;
    width: 280px;
    margin: 0 auto
}

.album_list .col .img_list img {
    position: absolute;
    max-width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.album_list .col .img_list img.active {
    opacity: 1;
    visibility: visible;
}

.album_list .col .color {
    text-align: center
}

.album_list .col .color p {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 5px;
    display: inline-block;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.album_list .col .color p.active {
    border-color: #a4a4a4;
}

.album_list .col .color p:hover {
    border-color: #a4a4a4;
}

.album_list .col .color p span {
    display: block;
    border-radius: 50%;
    height: 34px;
}

.album_list .col .sale {
    position: absolute;
    left: 25px;
    top: 10px;
    width: 70px;
    height: 70px;
    background-color: #353535;
    border-radius: 50%;
}

.album_list .col .sale p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: normal;
    margin-bottom: 0;
    line-height: 18px;
    font-weight: 300;
    text-transform: uppercase;
    padding-top: 13px;
}


/* Payment Options */

.content {
    position: relative;
}

.content .left_cont,
.lf-ghost {
    right: 0;
    top: 0;
    width: 19.5% !important;
    background-color: #f5f5f5;
    z-index: 9;
    overflow: hidden;
    padding-top: 85px;
    text-align: right;
    padding-left: 1%;
    position: fixed;
}

.content .left_cont.stop {
    position: absolute;
}

.content .left_cont .top_link {
    text-align: right;
    padding-right: 48px;
    box-sizing: border-box;
}

.content .left_cont .detail {
    text-align: left;
}

.content .left_cont .detail h2 {
    font-family: 'Open Sans Hebrew';
    font-weight: 400;
    margin-bottom: 24px;
    margin-left: 3px;
}

.content .left_cont .detail h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 20px;
    color: #353535;
    font-weight: 700;
}

.content .left_cont .detail .price {
    margin-bottom: 30px;
}

.content .left_cont .detail .price p {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    line-height: normal;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #353535;
}

.content .left_cont .detail .price p span {
    display: inline-block;
    font-size: 24px;
    color: #ff2d55;
    vertical-align: bottom;
    line-height: normal;
    margin-right: 10px;
    font-weight: 700;
}

.content .left_cont .detail .pro_detail .detail_list {
    margin-bottom: 10px;
}

.content .left_cont .detail .pro_detail .detail_list h5 {
    font-size: 14px;
    font-weight: 700;
    color: #808080;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.content .left_cont .detail .pro_detail .detail_list p {
    font-size: 14px;
    font-weight: 400;
    color: #808080;
}

.content .left_cont .detail .pro_detail .edit {
    color: #ff2d55;
    font-size: 14px;
    font-weight: 700;
}

.content .right_cont {
    padding-right: 25%;
}

.content .right_cont .top_head {
    padding-top: 38px;
    margin-bottom: 38px;
}

.content .right_cont h1 {
    text-transform: uppercase;
    font-weight: 700;
    color: #353535;
}

.content .right_cont .top_head a {
    float: none;
    color: #353535;
    font-weight: 500;
    margin-top: 10px;
    display: inline-block;
}

.content .right_cont .top_head a span {
    color: #ff2d55;
}

.content .right_cont .pay_detail .cupon p {
    font-size: 14px;
    color: #1a1a24;
    font-weight: 500;
    text-transform: uppercase;
}

.content .right_cont .pay_detail .cupon input[type="text"] {
    display: inline-block;
    margin-right: 15px;
    color: #1a1a24;
    border: 1px solid #e3e3e3;
}

.content .right_cont .pay_detail ::-webkit-input-placeholder {
    color: #1a1a24;
}

.content .right_cont .pay_detail ::-moz-placeholder {
    color: #1a1a24;
}

.content .right_cont .pay_detail :-ms-input-placeholder {
    color: #1a1a24;
}

.content .right_cont .pay_detail :-moz-placeholder {
    color: #1a1a24;
}

.content .right_cont .pay_detail input[type="text"] {
    border-radius: 0;
    width: 365px;
}

.content .right_cont .inner_wrap {
    max-width: 960px;
    width: 100%;
}

.content .right_cont .pay_options {
    margin-top: 30px;
}

.content .right_cont .pay_options img {
    max-width: 100%;
}

.content .right_cont .pay_options .head {
    background-color: #353535;
    padding-right: 40px;
}

.content .right_cont .pay_options .head h4 {
    font-size: 18px;
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.content .right_cont .pay_options .options {
    border: 1px solid #efefef;
    padding: 25px 100px;
}

.content .right_cont .pay_options .options .address label {
    margin-top: 10px;
    display: block;
    font-weight: 700;
    color: #1a1a24;
}

.content .right_cont .pay_options .options label {
    background-image: url(../images/site/radio.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 10px;
}

.content .right_cont .pay_options .options label.active {
    background-image: url(../images/site/radio_check.png);
}

.content .right_cont .pay_options .options input[type="radio"] {
    opacity: 0;
    visibility: hidden;
}

.content .right_cont .pay_options .options input[type="text"] {
    display: block;
    margin-top: 10px;
    width: 70%;
    margin-left: 20px;
    border: 1px solid #e3e3e3;
}

.content .right_cont .pay_options .options h5 {
    border-bottom: 1px solid #d8d9da;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
    padding-left: 17px;
    margin-bottom: 15px;
    padding-top: 10px;
    color: #1a1a24;
}

.content .right_cont .pay_options .options .delivery {
    margin-top: 30px;
}

.content .right_cont .pay_options .options .delivery label {
    margin-bottom: 20px;
    display: block;
}

.content .right_cont .pay_options .options a.btn {
    display: inline-block;
    text-align: center;
    line-height: 42px;
    font-weight: 300;
    width: 115px;
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.pay_mob_top {
    display: none;
}


/* Layout Side */

.layout_cont .left_side,
.layout_cont .right_side {
    width: 48%;
    border: 1px solid #eaeaea;
    min-height: 460px;
    text-align: center;
    padding: 30px 87px;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.layout_cont .left_side {
    float: left
}

.layout_cont .right_side {
    float: right
}

.layout_cont .left_side:hover,
.layout_cont .right_side:hover {
    cursor: pointer;
    border-bottom-color: #353535;
}

.layout_cont h4 {
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 45px;
    padding-bottom: 20px;
}

.layout_cont p {
    color: #595959;
    min-height: 72px;
}

.layout_cont a {
    min-width: 155px;
    line-height: 45px;
    padding: 0 20px;
    font-weight: 500;
    color: #ff2d55;
    border: 1px solid #ff2d55;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.layout_cont a:hover {
    background-color: #ff2d55;
    color: #fff;
}


/* Product */

.pro_detail_list,
.product .top_link {
    display: none;
}

.prod_list.mob_slid {
    display: none;
}

.content .right_cont.product {
    width: 78.5%;
    padding: 0;
    float: left;
}

.content .right_cont.product.active {
    /*padding-left: 21%;*/
}

.product .left_side {
    width: 0%;
    overflow: hidden;
    min-height: 845px;
    border-left: none;
    position: relative;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    float: right;
}

.product .right_side {
    float: left;
    width: 100%;
    border: 1px solid transparent;
    min-height: 845px;
    position: relative;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.product .left_side:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: #fff;
    z-index: 999;
    visibility: visible;
    opacity: 1;
}

.product.active .left_side {
    width: 45%;
}

.product.active .left_side:after {
    opacity: 0;
    visibility: hidden;
}

.product.active .right_side {
    width: 55%;
    border-right-color: #e3e3e3
}

.pro_detail.pro_list .detail_list {
    display: block;
    position: relative;
}

.pro_detail.pro_list {
    padding-top: 10px;
    text-align: left;
    padding-left: 11%;
}

.left_cont.pro_left .mCSB_container {}

.pro_list .left_txt {
    display: inline-block;
    vertical-align: top;
}

.pro_list .right_img {
    display: inline-block;
    background-color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    text-align: center;
    position: absolute;
    left: -10%;
    top: 7px;
    transition: 0.4s ease all;
}

.pro_list .right_img:hover {
    cursor: pointer
}

.pro_list .right_img img {
    opacity: 0;
    visibility: hidden;
}

.pro_list .right_img.active {
    background-image: url(../images/site/tick.png);
    background-repeat: no-repeat;
    background-position: center
}

.pro_list .right_img input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.content.pro_left .left_cont .detail h2 {
    padding-left: 15px;
    margin-left: 0;
    text-align: left;
    padding-left: 11% !important;
}

.content.pro_left .left_cont,
.content.pro_left .lf-ghost {
    width: 21.7% !important;
    padding-right: 0;
    padding-left: 0;
}

.content.pro_left .left_cont {
    background-image: url(../images/site/bg_img.jpg);
    background-repeat: repeat-y;
    background-position: left
}

.content.pro_left .left_cont .detail_list {
    position: relative;
    padding-left: 15px;
    margin-top: 20px;
}

.content.pro_left .left_cont .detail_list:hover .right_img {
    width: 40px;
    height: 40px;
    left: -11.5%;
    border-color: #ff345c;
    top: 4px;
}

.content.pro_left .left_cont .detail_list.active .right_img {
    width: 40px;
    height: 40px;
    left: -11.5%;
    border-color: #ff345c;
    top: 4px;
}

.content.pro_left .left_cont .detail_list:hover .right_img img {
    margin-top: 5px;
}

.content.pro_left .left_cont .detail_list.active .right_img img {
    margin-top: 5px;
}

.content.pro_left .left_cont .detail .pro_detail .detail_list:hover h5 {
    color: #ff345c;
}

.content.pro_left .left_cont .detail .pro_detail .detail_list.active h5 {
    color: #ff345c;
}

.content.pro_left .left_cont .detail .pro_detail .detail_list:hover p {
    color: #ff345c;
}

.content.pro_left .left_cont .detail .pro_detail .detail_list.active p {
    color: #ff345c;
}

.content.pro_left .left_cont .mCustomScrollBox {
    padding-left: 0;
    padding-right: 15px;
}

.content.pro_left .top_link p {
    text-align: right;
    padding-right: 48px;
    box-sizing: border-box;
}


/* Product Slider */

.content.pro_left .bxslider {}

.content.pro_left .bxslider.noslide {
    -webkit-transition: 0.001s ease !important;
    transition: 0.001s ease !important;
}

.content.pro_left .bxslider .item {
    width: 100% !important;
    height: 100%;
    padding: 0 15%;
    position: relative;
    display: table;
}

.content.pro_left .bxslider .item .inner_item {
    display: table-cell;
    vertical-align: middle;

    display: block;
    margin-top: 60px;
    height: 542px;
}

.content.pro_left .bxslider .item h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
}

.content.pro_left .bxslider .item p {
    margin-bottom: 25px;
    color: #595959;
    font-size: 14px;
    font-weight: 400;
    color: #353535;
}

.content.pro_left .bxslider .item select {
    color: #878787;
    text-align: right;
    text-align-last: right;
    padding: 0 25px 0 10px;
    font-weight: 700;
}

.content.pro_left .bxslider .item select.cloth {
    font-weight: 400;
}

.content.pro_left .bxslider .item select.full {
    width: 100%;
    font-weight: 400;
    margin-bottom: 40px;
}

.inner_item .col {
    width: 100%;
    /*max-width: 340px;*/
    margin: 0 auto
}

.inner_item .col .border {
    width: 100%;
    border: 1px solid #d7d7d7;
}

.inner_item .col .col_6 {
    width: 33%;
    text-align: center;
    height: 130px;
    padding: 25px;
    border: 1px solid #d7d7d7;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.inner_item .col .col_6:hover {
    cursor: pointer;
    background-color: #f9f9f9;
}

.inner_item .col .col_6.long img {
    margin-top: -9px;
}

.inner_item .col .col_6.active {
    background-color: #f9f9f9;
}

.inner_item .col .col_6 p {
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.inner_item .col .col_6.active p,
.inner_item .col .col_6:hover p {
    color: #ff2d55;
}

.inner_item .col .col_6 img {
    margin: 0 auto
}

.inner_item .col .col_6 input[type="radio"] {
    opacity: 0;
    visibility: hidden;
}

.width15 {
    width: 15% !important
}

.width20 {
    width: 20% !important
}

.width33 {
    width: 33% !important
}

.width50 {
    width: 50% !important
}

.width100 {
    width: 100% !important
}

.inner_item .a_format .col_3 {
    width: 33.33%;
    min-height: 55px;
    text-align: center;
    float: left;
    border: 1px solid #e5e5e5;
}

.inner_item .a_format .col_3:hover {
    cursor: pointer
}

.inner_item .a_format .col_3 p {
    font-size: 14px;
    line-height: 53px;
    font-weight: 300;
    margin-bottom: 0;
}

.content.pro_left .bxslider .item .inner_item .a_format .col_3 p {
    margin-bottom: 0;
}

.inner_item .a_format .col_3.active {
    background-color: #f9f9f9;
}

.inner_item .alb_slid {
    margin-top: 40px;
}

.inner_item .a_format .col_3 input[type="radio"] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.inner_item .a_format .col_3.active p {
    color: #ff2d55;
    font-weight: 500;
}

.bottom_scroll {
    position: absolute;
    left: 50%;
    bottom: 10px;
    text-align: center;
    display: block;
    z-index: 999;
    margin-left: -55px;
}

.bottom_scroll a {
    color: #717171;
    font-size: 14px;
}

.bottom_scroll a:hover {
    cursor: default;
}

.bottom_scroll a img {
    margin-top: 10px;
}

.bx-controls-direction {
    display: none;
}

.slid_btn {
    position: absolute;
    left: 32px;
    top: 15px;
    z-index: 999
}

.item .inner_item .cover_color {
    margin-top: 40px;
}

.item .inner_item .cover_color a {
    display: block;
    margin-bottom: 5px;
    -o-transition: 0.4s ease all;
}

.item .inner_item .cover_color a:hover {
    cursor: pointer;
    color: #ff345c;
}

.item .inner_item .cover_color a:hover p {
    cursor: pointer;
    color: #ff345c;
}

.item .inner_item .cover_color .left_img {
    width: 60px;
    float: right;
    text-align: center;
    border: 1px solid transparent;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.item .inner_item .cover_color a.active .left_img {
    border-color: #c4c4c4;
}

.item .inner_item .cover_color .left_img img {
    width: 100%;
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.item .inner_item .cover_color a.active .left_img img {
    border: 5px solid #fff;
}

.item .inner_item .cover_color .right_txt {
    width: 240px;
    display: table;
    float: right;
    min-height: 63px;
    border: 1px solid transparent;
}

.item .inner_item .cover_color .right_txt p {
    display: table-cell;
    vertical-align: middle;
    padding-right: 15px;
    color: #353535;
    font-size: 14px;
    line-height: 20px;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
    font-size: 14px;
    color: #353535;
    font-weight: #353535;
}

.item .inner_item .slide_check {
    margin-top: 20px;
}

.item .inner_item .slide_check label {
    background-image: url(../images/site/check_1.png);
    background-repeat: no-repeat;
    background-position: right center;
    display: block;
    margin-bottom: 10px;
    color: #353535;
    font-size: 14px;
    font-weight: 600;
}

.item .inner_item .slide_check label input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    margin-right: 10px;
}

.item .inner_item input[type="text"] {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #878787;
}

.item .inner_item .slide_check label.active {
    background-image: url(../images/site/check_1_active.png)
}

.item .mt30 {
    margin-top: 30px;
}

.product .right_side {
    text-align: center;
}

.product.active .right_side {
    text-align: left;
}

.product .top_con {
    position: relative;
    text-align: center;
    min-height: 580px;
    text-align: center;
}

.product .top_con img {
    max-width: 100%;
}

.product .top_con .top_btn {
    position: absolute;
    right: 15px;
    top: 15px;
}

.product .top_con .top_btn a {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}

.product .top_con .top_btn a.side_btn {
    margin-top: 3px;
}

.product.active .top_con .top_btn a.side_btn {
    display: none;
}

.product .bottom_con {
    background-color: #f5f5f5;
    padding: 25px;
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
    min-height: 200px;
    z-index: 999;
    text-align: right;
    padding-right: 65px;
}

.product .bottom_con .button-bottom {
    display: none;
}

/* .product .bottom_con p {
    display: none;
} */

.product.active .bottom_con:before {
    display: none;
}

.product .bottom_con:before {
    content: '';
    background-color: #f5f5f5;
    position: absolute;
    left: -1.3%;
    top: 0;
    width: 2%;
    height: 100%;
    display: block;
}

.product .bottom_con p {
    font-size: 16px;
    color: #353535;
    margin-bottom: 7px;
}

.product .bottom_con p span {
    display: inline-block;
    font-size: 24px;
    color: #ff2d55;
    vertical-align: bottom;
    font-weight: 600;
    margin-right: 10px;
    margin-top: -5px;
}

.product .bottom_con h2 {
    font-size: 30px;
    text-transform: uppercase
}

.product .bottom_con .btns_list {
    margin-top: 15px;
}

.product .bottom_con .btns_list a {
    display: inline-block;
    position: relative;
    vertical-align: top;
    margin-left: 20px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.product .bottom_con .btns_list a.like {
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.product .bottom_con .btns_list a.like img {
    -o-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    transition: 0.4s ease all;
}

.product .bottom_con .btns_list a img.like_active {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}

.product .bottom_con .btns_list a.like:hover {
    cursor: pointer;
}

.product .bottom_con .btns_list a.like:hover img {
    opacity: 0;
    visibility: hidden;
}

.product .bottom_con .btns_list a.like:hover .like_active {
    opacity: 1;
    visibility: visible;
}

.product .bottom_con .btns_list a.btn {
    line-height: 43px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}

.product .mCSB_scrollTools {
    left: auto;
    right: 0;
}

.pro_left .detail {
    height: 600px;
}

.pro_left .lf-ghost {
    background-image: url(../images/site/bg_img.jpg);
    background-repeat: repeat-y;
    background-position: right;
}

.error_p img {
    display: block;
    margin: 0 auto;
}

input[type="file"] {
    display: none;
}


/*  */

.error_p.wrapper ul {
    padding-right: 15px;
}

.mCSB_scrollTools {
    left: auto !important;
    right: 0px !important;
}

.content.pro_left .left_cont {
    background-image: url(../images/site/bg_img_rtl.jpg);
}

.pro_left .lf-ghost {
    background-image: url(../images/site/bg_img_rtl.jpg);
    background-position: left;
}

.ui-select-rounded>.ui-select-match>.btn>.ui-select-match-text,
.ui-select-rounded>.ui-select-match>.btn>.ui-select-placeholder {
    position: initial !important;
    line-height: normal;
}

.ui-select-rounded>.ui-select-match>.btn>.ui-select-placeholder {
    line-height: 47px;
}

.pro_detail-payment.pro_list .detail_list {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.payment-total-info {
    text-align: right;
}

.m-view-vt {
    display: none;
}

.desktop-view {
    display: block;
}

.vtProduct_info .list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.vtProduct_info .ord_history ul {
    list-style: none;
    background-color: #f5f5f5;
    max-width: 488px;
}

.vtProduct_info li+li+li+li {
    width: 100%;
}

.vtProduct_info .list-group-item {
    float: none;
    position: relative;
    display: block;
    padding: 2px 10px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: left;
    width: 100%;
}

.vtProduct_info .cart-table-scroll {
    max-height: 255px !important;
    width: 100%;
    overflow-y: auto;
}


/* responsive rtl style */

@media (max-width: 520px) {
    header .mob_menu {
        position: absolute;
        width: 100%;
        height: 100vh;
        background: #fff;
        background-color: rgba(255, 255, 255, 0.9);
        top: 0;
        left: 0;
        padding: 15px;
        padding-top: 65px;
        z-index: 999;
        display: none;
        overflow: scroll;
    }
    header .mob_menu ul li a {
        font-size: 16px;
    }
    .wish_list li {
        width: 100% !important;
    }
    .wishlist ul {
        background-color: #f5f5f5;
        display: block;
        margin-bottom: 25px;
        border: 0px;
        box-shadow: 0px 1px 4px #0003;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        max-width: 35rem;
        margin-left: auto;
        margin-right: auto;
        border-radius: 1rem;
        margin-top: 1.2rem;
        padding-bottom: 1rem;
    }
    .wishlist ul li.even {
        background-color: #f5f5f5;
    }
    .wishlist ul li.small-caps {
        text-transform: none;
        font-size: 1.5rem;
    }
    .ui-select-rounded>.ui-select-match>.btn,
    .ui-select-rounded>input[type='search'] {
        border-radius: 25px;
        height: 34px !important;
        margin: 0px;
    }
    .wish_head~img {
        max-height: 115px;
        padding-top: 15px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .ui-select-rounded>.ui-select-match>.btn>.ui-select-match-text,
    .ui-select-rounded>.ui-select-match>.btn>.ui-select-placeholder {
        padding: 0px 11px !important;
        position: absolute !important;
        margin-top: -8px;
    }
    .wishlist ul li div {
        margin-left: 1rem;
    }
    .ord_history ul li.even {
        background: #f5f5f5;
    }
    .ord_history ul li {
        background: #f5f5f5;
    }
    .ord_list {
        margin-bottom: 23px;
        box-shadow: 0px 1px 3px #0003 !important;
    }
    .ord_list li span {
        width: 24%;
        display: inline-block;
        margin-left: 0rem;
        vertical-align: top;
        line-height: 30px;
        margin-top: 0.5rem;
    }
    #m-checkout_bt {
        position: fixed;
        bottom: 0%;
        z-index: 999;
        background-color: #fff;
        box-shadow: 0px -1px 3px #2f2c2c8c;
        width: 100%;
        text-align: center;
        padding: 0.2rem;
        margin-left: -15px;
        margin-right: -15px;
    }
    .blogs .half_blog {
        width: 100%;
        margin-right: 0;
        min-height: inherit;
        height: 300px !important;
        background-position: top center;
        background-size: cover;
        margin-bottom: 3rem;
    }
    .blogs .hr_ovarlay:after {
        display: none;
    }
    .m-blog-card {
        padding: 2rem;
        box-shadow: 0px 2px 5px #0005;
        position: relative;
        width: 100%;
        display: inline-block;
        margin-bottom: 2rem;
    }
    .banner img {
        height: 174px !important;
        box-shadow: 0px 0px 120px 150px #ffffff38 !important;
        margin-top: 7rem !important;
    }
    .blogs .hr_ovarlay a {
        visibility: visible;
        opacity: 1;
        left: 15%;
        top: 81%;
        line-height: 42px;
        width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .blogs .half_blog .semi,
    .blogs .half_blog.semi_blog {
        min-height: inherit;
        height: 300px !important;
    }
    .populer .left_img {
        height: 169px !important;
    }
    .populer .left_img {
        width: 100% !important;
    }
    .populer .list_cont .right_txt p {
        font-size: 14px;
        padding-top: 6px !important;
        padding-bottom: 0px !important;
        color: #595959;
    }
    .m-view-vt .right_txt h4 {
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .m-view-vt {
        display: block !important;
    }
    .desktop-view {
        display: none
    }
    .m-view-vt .blog-card-hm {
        padding: 2rem;
        box-shadow: 0px 0px 4px #0008;
        width: 100%;
        display: flex;
        margin-bottom: 3rem;
        flex-direction: column;
        text-align: center;
    }
    .blog-card-sm {
        padding: 1.2rem 0rem;
        box-shadow: 0px 0px 4px #0008;
        width: 100%;
        display: flex;
        margin-bottom: 3rem;
        flex-direction: column;
        text-align: center;
    }
    .m-view-vt .blog-card-hm p,
    .m-view-vt .blog-card-sm p {
        color: #555555;
        font-size: 17px;
        line-height: 24px;
        font-weight: 700;
    }
    .m-view-vt .blogs .half_blog .semi,
    .m-view-vt .blogs .half_blog.semi_blog {
        min-height: inherit;
        height: 190px !important;
    }
    .m-view-vt .blogs .half_blog a {
        position: relative;
        font-size: 14px;
        color: #040404;
        display: block;
        width: 100%;
        height: auto;
        border-radius: 0px;
        background-color: transparent;
        text-align: center;
        line-height: 44px;
        left: auto;
        margin-left: auto;
        top: auto;
        visibility: visible;
        opacity: 1;
        -o-transition: 0.4s ease all;
        -webkit-transition: 0.4s ease all;
        -moz-transition: 0.4s ease all;
        transition: 0.4s ease all;
        text-transform: uppercase;
    }
    .m-view-vt .blogs .half_blog p {
        display: block;
        position: relative;
        left: auto;
        bottom: auto;
    }
    .m-view-vt .semi.mb {
        margin-bottom: 0px !important;
    }
    .m-view-vt .populer .list_cont .left_img {
        padding-top: 5px;
    }
    .m-view-vt .populer .list_cont .left_img {
        min-height: 15rem;
    }
    .m-view-vt .font-size-16 {
        font-size: 13px !important;
    }
    .m-view-vt .top_head h2 {
        float: left;
        text-transform: uppercase;
        font-size: 1.5rem;
    }
    .m-view-vt .populer .list_cont .right_txt {
        width: 100%;
        float: left;
        padding-top: 1px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .m-view-vt .populer .list_cont .right_txt {
        display: flex;
        justify-content: space-between;
    }
    .price-pt {
        height: auto;
        width: 59px;
        text-align: right;
        margin-top: 7px;
    }
    .populer .list_cont a {
        min-height: 216px;
        background-color: #ffffff;
        border-top: 0px solid #ffffff;
        border-bottom: 0px solid #ffffff;
        position: relative;
        margin-bottom: 17px;
        box-shadow: 0px 0px 4px #0004;
        margin-left: 2rem;
        margin-right: 0rem;
        max-width: 42%;
    }
    .product-m-view .product-item {
        width: 91%;
        box-shadow: 0px 0px 7px #0005;
        margin-left: 2rem;
        margin-right: 2rem;
        clear: left;
        float: none;
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
        border-bottom: 0px;
        padding: 1rem;
    }
    .product-m-view .right_sec h4 {
        height: 6px !important;
    }
    .product-m-view .description-color {
        height: 35px !important;
        overflow: hidden;
        margin-bottom: 0px !important;
    }
    .product-m-view .product-item:first div {
        height: 247px;
    }
    .album_list .color_vt {
        height: auto !important;
        overflow: hidden;
    }
    footer .col_6 {
        width: 100%;
        float: right;
    }
    footer .col_6.t_row {
        padding-left: 5px;
        padding-right: 1rem;
    }
    footer .col_6 a {
        display: block;
        font-size: 14px;
        color: #6f6f6f;
        padding-bottom: 5px;
        text-transform: uppercase;
        font-weight: 400;
        width: 100%;
        margin-bottom: 1rem;
    }
    .per_info {
        margin: 0 auto;
        background-color: #fff;
        padding: 4px 15px;
        max-width: 98%;
    }
    .wishlist ul li {
        list-style: none;
        border-left: 0px;
        text-transform: uppercase;
        vertical-align: middle;
        font-weight: 400;
        color: #1a1a24;
        width: 100% !important;
        display: block;
        text-align: right;
    }
    .ui-select-bootstrap .ui-select-match-text span {
        display: inline-block;
        width: 100%;
        overflow: hidden;
        margin-top: 13px;
    }
    .wishlist ul li+li {
        font-weight: 700;
        height: auto;
        min-height: 85px;
        vertical-align: middle;
    }
    .mob_head {
        display: block;
    }
    .login-content label:nth-child(1) {
        display: none;
    }
    .login-content label:nth-child(2) {
        display: none;
    }
    .ord_list h4.no-margin {
        display: inline-block;
    }
    .vtProduct_info {
        display: none;
    }
}

@media(max-width:320px) {
    .item .inner_item .cover_color .right_txt {
        width: 220px;
    }
}