body
{
    background-image: url("../images/frontend/bgimage.jpg");
    /*font-family: 'Didact Gothic', sans-serif;*/
    font-family: 'Century Gothic', sans-serif;
    color: #404040;
}

/*Typography*/
h1
{
    margin: 0.5em 0 0.3em 0;
}

h1, h2, h3, .page-title, .form-title
{
    color: rgb(65,80,83);
    font-weight: normal;
}

h1
{
    font-size: 30px;
}

h2
{
    font-size: 26px;
}

h3
{
    font-size: 22px;
}

h4
{
    font-size: 19px;
}

h5
{
    font-size: 16px;

}

h6
{
    font-size: 14px;
    font-weight: bold;
}

a
{
    color: #a6bfc2;
}

a:hover
{
    color: #718b8f;
}
/*End typography*/

/*Main blocks*/

div.header-top
{
    margin-top: 30px;
}

div.header-menu{
    border: 5px solid #f7f5dd;
    background-color: #718b8f;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

/*End main blocks*/

/*Navigation*/

/*top menus*/

ul.top-menu
{
    list-style:none;
    margin: 0;
    padding: 0;
}

ul.top-menu li
{
    list-style:none;
    display: inline;
    border-left: 1px solid #718b8f;
    margin: 0 0 0 0.5em;
    padding: 0 0 0 0.5em;
    font-weight: 900;
    font-size: 12px;
}

ul.top-menu li a
{
    color: #718b8f;
}

ul.top-menu li a.active
{
    text-decoration: underline;
}

ul.top-menu li:first-child
{
    padding-left: 0;
    border: 0 none transparent;
}

/*account info specifics*/

ul.account-info
{
    float: right;
    margin-right: 0.5em;
}

/*end top menus*/

/*Logo*/

a.logo{
    margin-top: -48px;
    display: block;
    text-align: center;
}

@media (max-width: 991px)
{
    a.logo
    {
        margin: 0;
    }
}

img.miss-logo {
    max-width: 100%;
}

/*End Logo*/

/*cart/wishlist/signin*/

div.topright{
    margin-top: 1em;
}

.topright .login-menu, .topright .cart-menu {
    float: right;
    width: auto;
}

a.main-cart-button
{
    margin-top: 0.2em;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/frontend/cart.png");
    float: right;
    position: relative;
    text-decoration: none;
}

a.main-cart-button span.cart-counter
{
    position: absolute;
    right: 0;
    top: 0;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #f7f5dd;
    color: #718b8f;
    font-size: 12px;
    line-height: 18px;
    height:20px;
    display: block;
    min-width:20px;
    text-align: center;
    padding: 0 3px;

}

a.quick-cart
{
    color: #f7f5dd;
    display: block;
    padding-top: 5px;
    text-align: right;
}

ul.cart-right{
    margin: 10px 0 0 -15px;
    padding: 0 0 0 1em;
    list-style: 0;
    border-left: 1px solid #f7f5dd;
}

ul.cart-right-logged-in{
    margin: 0 0 0 -15px;
    padding: 0 0 0 1em;
    list-style: 0;
    border-left: 1px solid #f7f5dd;
}

ul.cart-right li
{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #f7f5dd;
}

ul.cart-right li a
{
    color: #f7f5dd;
}



/*end cart...*/

/*mini cart*/
div.mini-cart-container
{
    position: relative;
}

div.mini-cart
{
    transition: all 0.5s ease-in-out;
    position: absolute;
    background-color: #f7f5dd;
    width: 360px;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    z-index: 999999;
    left: -190px;
    padding: 1em;
    opacity: 0;
    top: -450px;
}

div.mini-cart.showing
{
    top: 50px;
    opacity: 1;
    height: auto;
}

div.mini-cart:before
{
    content: "";
    border-bottom: 10px solid #f7f5dd;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    top: -10px;
    left: 212px;
}

div.mini-cart .table
{
    border-top: 0 none transparent;
}

div.mini-cart .table th,
div.mini-cart .table td{
    padding: 1px;
    border: 0 none transparent;
}

div.mini-cart thead th
{
    border-bottom: 1px solid #718b8f !important;
}

div.mini-cart tfoot th
{
    border-top: 1px solid #718b8f !important;
}

div.mini-cart .name-cell
{
    width: 55%;
}

div.mini-cart .price-cell
{
    width: 20%;
}

div.mini-cart .qty-cell
{
    width: 15%;
}

div.mini-cart .action-cell
{
    width: 10%;
}


td.action-cell
{
    text-align:center;
}

.qty-cell,
.price-cell
{
    text-align: right;
}

@media(max-width: 767px)
{
    div.mini-cart
    {
        transition: all 0.5s ease-in-out;
        position: absolute;
        background-color: #f7f5dd;
        width: 290px;
        box-shadow: 0 0 3px rgba(0,0,0,0.5);
        z-index: 999999;
        left: -122px;
        padding: 1em;
        opacity: 0;
        top: -450px;
    }

    div.mini-cart:before
    {
        content: "";
        border-bottom: 10px solid #f7f5dd;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        height: 0;
        width: 0;
        position: absolute;
        top: -10px;
        left: 144px;
    }

    .cart-menu-logged-in > div.mini-cart
    {
        left: -95px !important;
    }

    .cart-menu-logged-in > div.mini-cart:before
    {
        left: 116px !important;
    }
}

/*end mini cart*/

/*Main menu*/

ul.main-menu
{
    display: table;
    list-style: none;
    margin: 1em 0 1em 0;
    padding: 0;
    width: 100%;
    /*overflow: auto;*/
}

ul.main-menu li
{
    list-style: none;
    display: table-cell;
    margin: 0;
    padding: 0;
    position: relative;
}

ul.main-menu1
{
    display:inline-block;
    list-style: none;
    margin: 1em 0 1em 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

ul.main-menu1 li
{
    list-style: none;
    display: block;
    margin: 0;
    padding: 0px 8px;
    position: relative;
}

ul.main-menu li a
{
    font-size: 16px;
    padding: 0 1.40em;
    color: #f7f5dd;
    text-decoration: none;
    text-transform: uppercase;
}

ul.main-menu li.active>a
{
    color: #ffffff;
}

ul.main-menu li a:hover
{
    transition: all 1s ease-in-out;
    color: #ffffff;
    text-decoration: none;
}

li.flexMenu-viewMore.flexMenu-allInPopup.active ul.flexMenu-popup
{
    text-align: center;
    width: 100%;
}

li.flexMenu-viewMore.flexMenu-allInPopup.active ul.flexMenu-popup li
{
    width: 100%;
}

ul.flexMenu-popup
{
    z-index: 999999;
    background-color: #f7f5dd;
    padding: 0;
    right: 0;
    -moz-box-shadow: 1px 1px 2px #000000;
    -webkit-box-shadow: 1px 1px 2px #000000;
    box-shadow: 1px 1px 2px #000000;
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

ul.flexMenu-popup li{
    display: block;
    margin: 0;
}

ul.flexMenu-popup li a
{
    color: #718b8f;
    display: block;
    min-width: 10em;
}

ul.main-menu ul.flexMenu-popup li a:hover
{
    transition: all 0.3s ease-in-out;
    color: #ffffff;
    background-color: #718b8f;
    text-decoration: none;
}

ul.main-menu ul.flexMenu-popup li.active>a
{
    color: #ffffff;
    background-color: #718b8f;
}

.flexMenu-allInPopup ul.flexMenu-popup
{
    right: auto;
    left: 0;
}


/*end main menu*/

/*End navigation*/

/*Forms*/

/*placeholder style*/
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #909;
    font-style: italic;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #909;
    opacity:  1;
    font-style: italic;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #909;
    opacity:  1;
    font-style: italic;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #909;
    font-style: italic;
}

/*end placeholder style*/

/*override default bootstrap form input style*/
label, .control-label
{
    font-weight: 400;
}

.form-control
{
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #718b8f;
    background-color: #ffffff;
    color: #666666;
    padding: 1px 5px;
    height: 28px;
}

.input-sm
{
    font-size: 12px;
    padding: 1px 3px;
    height: 20px;
}

.form-control:focus
{
    border: 1px solid #e07b4a;
    background-color: #f7f5dd;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}

.text-right
{
    text-align: right;
}

.btn
{
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    border: 0 none transparent;
    background-image: none;
    text-shadow: 0 0 0 transparent !important;
}

.btn-default
{
    background-color: #f7f5dd;
    color: #718b8f;
}

.btn-primary
{
    background-color: #718b8f;
    color: #f7f5dd;
}


/*end default bootstrap input style override*/

/*top search form*/

.top-search
{
    line-height: 25px;
    margin-top: 1.5em;
}

label.top-search-mobile
{
    cursor: pointer;
}

.search-open
{
    display: none;
}

.top-search.control-label
{
    color: #f7f5dd;
}

.top-search .form-control
{
    background-color: #f7f5dd;
}

/*end top search form*/

/*End forms*/

/*Content*/

.container>div.row
{
    position: relative;
}

.page-title
{
    font-size: 20px;
    margin: 0.7em 0 0.7em 0;
}

div.main
{
    border: 5px solid #f7f5dd;
    border-top: 0 none transparent;
    background-color: #f5ffff;
}

div.sidebar
{
    background-color: #f7f5dd;
    min-height: 100%;
}

.mc-group .btn
{
    font-size: 16px;
    margin: 0.7em 0 0.7em 0;
    padding: 0 1em;
}

.sort-label
{
    font-size: 16px;
    padding: 0 1em;
    margin: 0.7em 0 0.7em 0;
    position: relative;
    vertical-align: middle;
    display: inline-block;
}

/*home page*/

.carousel-control
{
    opacity: 0.8;
}

.carousel-control:hover
{
    opacity: 1;
}

.slider.container
{
    border-bottom: 5px solid #f7f5dd;
}

.hl-zone-bdr
{
    border: 5px solid #f7f5dd;
  /*  height: 243px; */
    background-image: url('../images/frontend/bgimage.jpg');
}

.hl-zone-spacer
{
    margin: 1em;
}

.glyphicon-chevron-left:before
{
    color: #f7f5dd;
}
.glyphicon-chevron-right:before
{
    color: #f7f5dd;
}

.carousel-control.left,
.carousel-control.right
{
    background-image: none;
}

a.slider-link {
    color: #f7f5dd;
    font-size: 26px;
}

@media (max-width: 500px)
{
    a.slider-link {
        color: #f7f5dd;
        font-size: 14px;
    }
}

/*end home page*/

/*fitting booth*/
div.fib-container
{
    padding-bottom: 2em;
}

.fitting-booth
{
    min-height: 317px;
    background-image: url('../images/frontend/fitting_booth.png');
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 2em;
}

div.fitting-measurements
{
    margin-left: 9em;
    margin-top: 5em;
}

div.fitting-bodytypes
{
    margin-top: 5em;
}

div.fitting-submit
{
    margin-right: 10em;
    margin-top: 5em;
}

.fitting-title
{
    color: #f7f5dd;
    font-size: 20px;
    margin-bottom: 0.5em;
}

.fitting-bodytypes .fitting-title
{
    text-align: center;
}

.fitting-measurements input[type="text"]
{
    margin: 1.5em 0 1.5em 0;
    padding: 0.5em;
    height: 2em;
}

.fitting-booth ul.bodies
{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.fitting-booth .bodies li
{
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.fitting-booth .bodies li label.body
{
    display: block;
    width: 47px;
    height: 140px;
    background-repeat: no-repeat;
    background-position: center center;
}

.fitting-booth .bodies li label.error
{
    float: left;
}

.fitting-booth .fitting-wide-shoulder label.body
{
    background-image: url('../images/frontend/fitting_wide_shoulder.png');
}
.fitting-booth .fitting-rectangular label.body
{
    background-image: url('../images/frontend/fitting_rectangular.png');
}
.fitting-booth .fitting-wide label.body
{
    background-image: url('../images/frontend/fitting_wide.png');
}
.fitting-booth .fitting-wide-waist label.body
{
    background-image: url('../images/frontend/fitting_wide_waist.png');
}
.fitting-booth .fitting-hourglass label.body
{
    background-image: url('../images/frontend/fitting_hourglass.png');
}

.fitting-submit-btn
{
    margin-top: 1em;
}

/*.fib
{
    padding-top: 1em;
}*/

.fib-size-table
{
    margin: 20px auto 20px;
}

.fitting-booth input.error {
    margin: 0px !important;
    outline: 1px solid red;
}

.fitting-booth label.error, .fitting-booth .alert-danger {
    color: #FE7481;
    border-color: #FE7481;
    font-size: 14px;
    text-align: center;
}

/*end fitting booth*/

/*product page*/

div.p-right
{
    margin-right: 20px;
}

.sale-badge-big
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_sale.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 80% !important;
}

.new-in-badge-big
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_new_in.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 80% !important;
}

.back-in-badge-big
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_back_in.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 80% !important;
}

@media (max-width: 599px){
.back-in-badge-small
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_back_in.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 20% !important;
}

.new-in-badge-small
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_new_in.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 20% !important;
}

.sale-badge-small
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_sale.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 20% !important;
}
}

@media (min-width: 600px){
.back-in-badge-small
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_back_in.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 30% !important;
}

.new-in-badge-small
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_new_in.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 30% !important;
}

.sale-badge-small
{
    width: 184px;
    height: 184px;
    background-image:url(../images/frontend/ribbon_sale.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 30% !important;
}
}


.product-image-container
{
    margin: 20px;
    position: relative;
}

#playing_video {
    border: 5px solid #f7f5dd;
}

video::-webkit-media-controls-start-playback-button {
    display: none;
}

.product-image-container img{
    border: 5px solid #f7f5dd;
}

.product-info-item .product-title h1
{
    margin-top: 0;
    font-size: 22px;
}

.accessories-info-item
{
    text-align: right;
    padding: 10px;
    font-size: 16px;
}

.accessories-info-item label span
{
    font-weight: 400;
    font-size: 16px;
}

.accessories-info-item label span
{
    font-weight: bold;
}

@media (min-width: 992px)
{

    .product-image-container, .product-info-main
    {
        height: 608px;
        overflow: hidden;
    }

    .prod-desc-container
    {
        height: 100px;
        overflow: auto; /*elotte hidden volt - 2018-03-22*/
    }

}

@media (min-width: 1200px)
{

    .product-image-container
    {
        height: 758px;
        overflow: hidden;
    }

    .product-info-main
    {
        min-height: 758px;
        height: auto;
        overflow: hidden;
    }

    .prod-desc-container
    {
        height: 210px;
        overflow: auto;
    }
}

@media (max-width: 991px)
{
    .product-image-container, .product-info-main
    {
        height: auto;
        overflow: hidden;
    }

    .product-info-item.no-border.social
    {
        text-align: center;
    }

    .product-info-item.no-border.social .prod-desc-container
    {
        display: inline-block;
    }

    .product-info-item.no-border.social.accessorie-row .prod-desc-container
    {
        margin-top: 10px;
    }
}

.product-info-item.no-border.social .prod-desc-container
{
    margin-top: 10px;
    overflow: hidden;
}

.product-info-item.no-border.social.accessorie-row .prod-desc-container
{
    margin-top: 100px;
}

div.price-actual
{
    font-size: 22px;
    color: #304444;
    text-align: right;
    line-height: 1.2em;
}

div.price-actual.saleprice
{
    font-size: 22px;
    color: #ff0000;
    text-align: right;
    line-height: 1.2em;
}

div.price-stroke
{
    font-size: 14px;
    text-align: right;
    text-decoration: line-through;
    color: #304444;
}

div.separator-vertical
{
    border-left: 1px solid #718b8f;
    height: 4em;
    width: 1px;
    overflow: hidden;
    margin-top: 0.5em;
}

.product-info-main
{
    margin: 20px 0;
    position: relative;
}

.product-info-item
{
    border-bottom: 1px solid #a6bfc2;
    padding-bottom: 0.5em;
}

.product-info-item-element
{
    margin: 1em 0 0.5em 1em;
    font-size: 16px;
    color: #718b8f;
}

.product-info-item.social .prod-desc-container
{
    height: 45px;
}

@media(max-width: 991px)
{
    .product-info-item #galery1
    {
        text-align: center;
    }

    .product-info-main .p-right
    {
        margin-right: 0px;
    }

    div.price-actual
    {
        font-size: 22px;
        color: #304444;
        text-align: left;
        line-height: 1.2em;
        margin-bottom: 20px;
    }

    div.separator-vertical
    {
        border-left: none;
        border-top: 1px solid #718b8f;
        height: 1px;
        width: 100%;
    }
}

.product-info-item #galery1
{
    display: inline-block;
}

.product-info-item a.switch-prod-img
{
    margin: 10px 5px 0px 0px;
    display: inline-block;
    width: 100px;
    height: auto;
    padding: 0px;
    border: 5px solid #f7f5dd;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.product-info-item a.switch-prod-img:hover
{
    border: 5px solid #718b8f;
}

.no-border
{
    border: 0 none transparent !important;
}

p.product-subtitle
{
    font-size: 16px;
}

.product-title h1{
    margin-bottom: 0;
}

.product-title p{
    margin: 0 !important;
}

a.alert-stock{
    display: block;
    width: 100%;
    text-align: center;
}

a.alert-stock-sent{
    display: block;
    width: 100%;
    text-align: center;
}

table.product-sizes
{
    margin: 0;
}

table.product-sizes td,
table.product-sizes th
{
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    color: #718b8f;
    width: 11%;
    border: 0 none transparent !important;
    padding: 4px !important;
}

table.product-sizes th
{
    padding-top: 8px !important;
}

table.product-sizes td
{
    font-size: 12px;
}

table.product-sizes input.out-of-stock-input,
table.product-sizes td.out-of-stock-td
{
    cursor: default !important;
}

table.product-sizes div.out-of-stock-sign
{
    display: none !important;
}

td.out-of-stock-td:hover > div.out-of-stock-sign
{
    display: block !important;
    position: absolute;
    color: red;
    top: 110px;
}

@media (max-width: 768px)
{
    td.out-of-stock-td:hover > div.out-of-stock-sign
    {
        top: 155px !important;
    }
}

img.product-body-shape
{
    margin: 1em 0 0.5em 1em;
}

div.cart-button-container
{
    margin-top: 1em;
    text-align: center;
}

div.cart-button-container .btn-wishlist
{
    margin-bottom: 5px;
}

.btn-wishlist
{
    background-color: #606060;
    color: #e0e0e0;
    font-size: 18px;
}

.btn-continue-shopping
{
    background-color: #606060;
    color: #e0e0e0;
    font-size: 24px;
}

.btn-cart
{
    font-size: 18px;
    padding-left: 60px;
    background-image: url(../images/frontend/cart.png);
    background-repeat: no-repeat;
    background-position: 15px center !important;
}

.btn-cart:hover
{
    background-position: 15px center !important;
}

.btn-cart:active
{
    background-image: url(../images/frontend/cart.png);
}

.prod-desc-container
{
    margin-top: 1em;
}

h2.prod-desc-sub
{
    margin-top: 0;
    font-size: 20px;
}

p.prod-color-sub
{
  margin-bottom: 0;
  font-size: 15px;
  color: #718b8f;
}

p.product-article-id
{      
    margin-bottom: 0;
    font-size: 16px;
    color: #718b8f;
}

.product-info-item.small-images
{
    margin-top: 1em;

}

@media (min-width: 992px)
{
    .product-info-item.small-images{
        position: absolute;
        bottom: 0;
        padding-bottom: 0;
    }
}

/*end product page*/

/*product list*/
ul.product-list
{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 0 -15px;
}

li.product-item
{
    display:block;
    list-style:none;
    float:left;
    position: relative;
    margin-bottom: 1em;
}

@media (max-width: 992px)
{
    ul.product-list
    {
        text-align: center;
    }

    li.product-item
    {
        display:inline-block;
        float:none;
    }
}

div.product-details
{
    display:block;
    position:relative;
    min-height: 230px;
}

div.product-details.presss
{
    display:block;
    position:relative;
    height: auto;
}

div.product-details a img
{
    max-height: 235px;
    max-width: 158px;
}

div.product-details.presss a img
{
    max-width: 100%;
    max-height: auto;
}

a.product-image
{
    display:block;
    position: relative;
    border: 5px solid #f7f5dd;
    background-color: #f7f5dd;
    transition:  all 0.2s ease-in-out;
}

.press-imgs > img {
    height: 254px;
}

li.product-item:hover a.product-image
{
    border: 5px solid #718b8f;
}

.product-item .cart-button
{
    position: absolute;
    width: 100%;
    bottom: 0;
    display:block;
    text-decoration:none;
}

.cart-button span.spacer
{
    display:block;
    height: 60px;
    background-color: #718b8f;
    background-color: rgba(113,139,143,0.5);
    margin: 0 5px 5px 5px;
}


.product-item span.price,
.product-item span.cart-icon
{
    font-size: 20px;
    color:#fff;
    text-decoration: none;
    display:block;
    margin: 0 0.8em;
}

.product-item span.price
{
    line-height: 1.6em;
    text-align: right;
    border-bottom: 1px solid #fff;
}

.product-item span.cart-icon
{
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 0 0 30px;
    background-image:url(../images/frontend/product_list_cart.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.product-item span.title
{
    line-height: 1.6em;
    text-align: right;
    border-bottom: 1px solid #fff;
    font-size: 13px;
    color:#fff;
    text-decoration: none;
    display:block;
    margin: 0 0.8em;
    /*padding-top: 30px;*/
}

/*end product list*/

/*pagination*/
div.pagination
{
    text-align: center;
}

ul.pagination
{
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

ul.pagination li
{
    display: inline-block;
}

ul.pagination li a
{
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.pagination>li>a, .pagination>li>span
{
    border: 0 none transparent;
    color: #718b8f;
    background-color: #f7f5dd;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus
{
    background-color: #718b8f;
    color: #f7f5dd;
}

.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus
{
    background-color: #a6bfc2;
    color: #f7f5dd;
}

.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus
{
    background-color: #f6f6f6;
}

.pagination>li.jump-left
{
    border-right: 1em solid transparent;
}

.pagination>li.jump-right
{
    border-left: 1em solid transparent;
}
/*end pagination*/

/*wholesale cart*/

.ws-cart-form .row{
    padding-bottom: 0.5em;
}

.ws-cart-form>div
{
    border-top: 1px solid #718b8f;
}

.ws-product-list
{
    background-color: #f7f5dd;
}

.product-list-header
{
    padding: 1.5em 0;
    border-bottom: 1px solid #718b8f;
}

.product-list-header .product-price
{
    text-align: center;
}

.ws-product-list-item
{
    padding: 0.2em 0;
    border-bottom: 1px solid #a6bfc2;
}

.ws-product-list-item .product-image-mini
{
    max-height: 32px;
}

.ws-product-list-item .product-title
{
    font-size: 16px;
    line-height: 32px;
}

.ws-product-list-item .product-title a
{
    font-size: 14px;
    line-height: 32px;
    color: #000;
}

.ws-product-list-item .product-title a:hover
{
    font-weight: bold;
}

/*.ws-size-column
{
    display: inline-block;
    width: 10%;
    margin-right:3px;
    text-align: center;
}*/

.ws-product-list-item .ws-size-column
{

    padding-top: 6px;
    padding-bottom: 6px;
}

.ws-product-list-item .product-price
{
    line-height: 32px;
}

.ws-product-list-item .total-darab-ws
{
    line-height: 32px;
}

.ws-product-list-item .unit-product-price
{
    line-height: 32px;
}

.ws-product-list-item .wsale-cart-product-delete
{
    padding-top: 5px;
}

.ws-cart-form .subtotal,
.ws-cart-form .shipping,
.ws-cart-form .discount,
.ws-cart-form .shipping-method
{
    font-weight: bold;
    display: inline-block;
    float: right;
    margin-right: 0.5em;
}

.ws-cart-form .subtotal-title,
.ws-cart-form .shipping-title
{
    display: inline-block;
}

.ws-cart-form .subtotal-ct,
.ws-cart-form .shipping-ct
{
    font-size: 16px;
}

.ws-cart-form .subtotal-ct
{
    margin-top: 0.7em;
}

.ws-cart-form .total-title
{
    font-size: 28px;
    line-height: 1em;
}

.ws-cart-form .total
{
    font-size: 28px;
    font-weight: bold;
}

.ws-size-column input.ordered-qty
{
    margin-bottom: 10px;
}

.ws-btn
{
    padding: 10px 12px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/*wholesale cart form elements*/

/*Regular cart*/

.cart-product-image
{
    max-height: 100px;
}

table.cart div.product-title h2
{
    margin: 0;
    font-size: 18px;
}

table.cart div.product-title h2 a
{
    margin: 0;
    font-size: 18px;
    color: rgb(65,80,83);
}

table.cart div.product-title p
{
    font-size: 14px;
}

table.cart .qty-control
{
    width: 3.5em;
    text-align: right;
}

table.cart .qty-controls .form-control
{
    font-size: 14px;
}

table.cart .qty-controls .btn
{
    font-size: 16px;
    font-family: verdana, helvetica, sans-serif;
    line-height: 1em;
}

table.cart a.cart-item-delete
{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    color: transparent;
    background-image: url(../images/frontend/cart_item_delete.png);
}

table.cart td
{
    vertical-align: middle !important;
    text-align: center;
    background-color: #f7f5dd;
    border: 0 none transparent !important;
}

table.cart tr:nth-child(odd) td
{
    background-color: transparent;
}

table.cart .subtotals td
{
    background-color: transparent;
    line-height: 1;
    font-size: 16px;
}

table.cart tr.subtotals:first-child td
{
    padding-bottom: 0 !important;
}

table.cart .totals td
{
    border-top: 1px solid rgb(65,80,83) !important;
    border-bottom: 1px solid rgb(65,80,83) !important;
    font-size: 20px;
    font-weight: bold;
}

table.cart .foot-top-border td
{
    border-top: 1px solid rgb(65,80,83) !important;
}

table.cart th
{
    text-align: center;
    color: #718b8f;
    font-weight: normal;
    font-size: 16px;
    border-bottom: 1px solid rgb(65,80,83) !important;
}

table.cart .cart-img-col
{
    width: 10%;
}

table.cart .cart-title-col
{
    text-align: left;
}

table.cart .cart-size-col
{
    width: 10%;
}

table.cart .cart-color-col
{
    width: 10%;
}

table.cart .cart-qty-col
{
    width: 10%;
}

table.cart .cart-price-col
{
    width: 15%;
    text-align: right;
}

table.cart .cart-action-col
{
    width: 10%;
}

table.cart .subtotal-label
{
    text-align: left;
}

table.cart .subtotal-value
{
    text-align: right;
}

table.cart ul.transport
{
    margin-bottom: 0px;
}

table.cart td.additional-info
{
    text-align: left;
}

table.cart.table>tfoot>tr>td {
    padding: 5px;
}

.cart-margin-top
{
    margin-top: 2em;
}

.cart-margin-bottom
{
    margin-bottom: 2em;
}

.centered
{
    text-align: center;
}

.btn-placeorder
{
    color: #e0e0e0;
    font-size: 24px;
}

.col-md-4.cart-margin-top.cart-margin-bottom .btn-placeorder
{
    font-size: 16px;
}

.payment_options_container
{
    font-size: 16px;
    margin-top: 9px;
}

/*end regular cart*/

/*end wholesale cart*/

/*info*/
.info
{
    margin: 0.5em 0;
    font-size: 14px;
    font-weight: normal;
}

.warn{
    color: #e07b4a;
}
/*end info divs*/

/*Sidebar*/

.sidebar
{
    min-height: 100%;
}

.sidebar-item
{
    border-bottom: 1px solid #718b8f;
    margin-bottom: 1em;
}

.sidebar-title p
{
    color: #718b8f;
    font-size: 20px;
    margin: 0.8em 0;
}

.sidebar-body
{
    margin-bottom: 1em;
}

.last-sidebar-item
{
    border-bottom: 0 none transparent;
    margin-bottom: 0;
}
/*End Sidebar*/

/*Press*/
.press-image {
    margin-top: 30px;
    margin-bottom: 10px;
    border: 5px solid #f7f5dd;
}

/*End Press*/

/*Press sidebar*/
.sidebar-link-button
{
    transition: 0.5s all ease-in-out;
    line-height: 40px;
    font-size: 18px;
    color: #718b8f;
    background-color: #f7f5dd;
    text-align: center;
    padding: 0.5em 0.3em;
    display: block;
    margin: 0.2em 0.3em;
    background-image: url(../images/frontend/weekblogger_small.png);
    background-position: 1em center;
    background-repeat: no-repeat;
    text-align: left;
    padding-left: 4em;
}

.sidebar-link-button:hover
{
    transition: 0.5s all ease-in-out;
    background-color: #718b8f;
    color: #f7f5dd;
    text-decoration: none;
}

/*End press sidebar*/

/*Filters*/
ul.filter-list
{
    list-style:none;
    display:block;
    margin: 0;
    padding: 0;
}

ul.filter-list li
{
    list-style:none;
    display:block;
    float: left;
    padding: 0;
}

ul.filter-list li input[type="checkbox"],
ul.filter-list li input[type="radio"]
{
    margin: 0 0.5em 0 2em;
    vertical-align: middle;
}

ul.filter-shape-list li input[type="checkbox"],
ul.filter-shape-list li input[type="radio"]
{
    margin: 0 0.5em 0 1em;
    vertical-align: middle;
}

ul.filter-shape-list
{
    margin-left: 1em;
    vertical-align: middle;
}

div.guest-blogger
{
    width: 204px;
    height: 204px;
    background-image: url(../images/frontend/weekblogger.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin: 2em auto;
    position: relative;
}

.guest-blogger p.gb-name
{
    position: absolute;
    left: 2em;
    top: 4em;
    color: #f7f5dd;
    text-shadow: 1px 1px 1px #718b8f;
}

.guest-blogger p.gb-name>a{
    color: #fff;
}

.guest-blogger p.gb-name>a:hover{
    color: #fff;
}

.guest-blogger img.gb-image
{
    background-color: #f7f5dd;
    width: 92px;
    height: 92px;
    border-radius: 46px;
    position: absolute;
    right: 1.7em;
    bottom: 1.7em;
    border: 5px solid #f7f5dd;
}

.sidebar-blog-categories
{
    padding-left: 1em;
}

.sidebar-blog-categories li
{
    background-image: url(../images/frontend/weekblogger_tiny.png);
    background-repeat: no-repeat;
    list-style: none;
    display: block;
    padding-left: 30px;
    height: 1.8em;
}

/*End filters*/

/*blog list*/

.article-content
{
    font-size: 16px;
    line-height: 1.5em;
    padding-bottom: 1em;
}

.featured-image
{
    border: 5px solid #718b8f;
}

.article-page-image
{
    margin: 1em 0;
}

h2.post-title
{
    font-size: 20px;
    margin-bottom: 1em;
}

.blog-list .article-content
{
    border-top: 1px solid #718b8f;
}

.blog-controls
{
    padding: 1em 0;
    border-top: 1px solid #718b8f;
}

.blog-list .article-first
{
    border-top: 0 none transparent !important;
}

.blog-list .article-first .featured-image
{
    max-height: 200px;
}
/*end blog list*/

/*End content*/

/*Footer*/

div.footer
{
    background-color: #718b8f;
    min-height: 150px;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-bottom: 2em;
}

.footer-title
{
    color: #f7f5dd;
    font-size: 18px;
    margin: 20px 0 5px 0;
}

p.fitting-booth-title
{
    margin-left: 30px;
}

span.newsletter-form-mini
{
    display: block;
    font-size: 12px;
    margin-bottom: -0.5em;
}

#newsletter-form p
{
    margin-bottom: 5px;
}

#newsletter-form p input.form-control
{
    height: 25px;
}

ul.footer-menu
{
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 14px;/*18*/
}

ul.footer-menu li
{
    list-style: none;
    margin:0;
    padding: 0;
}

ul.footer-menu li a
{
    color: #f7f5dd;
}

ul.footer-menu li a:hover
{
    transition: all 1s ease-in-out;
    color: #ffffff;
}

p.newsletter-submit
{
    text-align: right;
    margin-bottom: 10px !important;
}

@media(max-width: 991px)
{
    div.footer {
        text-align: center;
    }

    div.footer .fitting-booth-title {
        margin-left: 0px;
    }

    div.footer .footer-fib-btn {
        margin-left: -30px;
    }
}

/*end footer*/

/*Equal columns*/

/* columns of same height styles */
.container-xs-height {
    display:table;
    padding-left:0px;
    padding-right:0px;
}
.row-xs-height {
    display:table-row;
}
.col-xs-height {
    display:table-cell;
    float:none;
}
@media (min-width: 768px) {
    .container-sm-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-sm-height {
        display:table-row;
    }
    .col-sm-height {
        display:table-cell;
        float:none;
    }
}

@media (max-width: 991px)
{
    .fitting-booth
    {
        background-color: #718b8f;
        background-image: none;
        padding: 1em 0 1em 0;
        margin: 0;
    }

    div.fitting-measurements
    {
        margin: 0 0 0 0;
        text-align: center;
    }

    div.fitting-bodytypes
    {
        margin: 1em 0 0 0;
    }

    div.fitting-submit
    {
        margin: 1em 0 0 0;
        text-align: center
    }

    div.fitting-submit .fitting-submit-btn
    {
        margin-left: -30px;
    }
}

@media (min-width: 992px) {
    .container-md-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-md-height {
        display:table-row;
    }
    .col-md-height {
        display:table-cell;
        float:none;
    }
}
@media (min-width: 1200px) {
    .container-lg-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-lg-height {
        display:table-row;
    }
    .col-lg-height {
        display:table-cell;
        float:none;
    }
}

/* firefox fix */
@media (min-width: 992px){ /*en tettem - 2018-03-22*/
.img-responsive {
    width: 100%;
}
}
/* vertical alignment styles */
.col-top {
    vertical-align:top;
}
.col-middle {
    vertical-align:middle;
}
.col-bottom {
    vertical-align:bottom;
}

/*end equal columns*/


/*Error pages*/
.mError
{
    font-size: 22px;
    color: #f7f5dd;
    line-height: 2em;
}
/**/

/*modal generic*/

#login-modal .modal-dialog
{
    width: 900px;
}

#login-modal .modal-content
{
    width: 900px;
}

@media(max-width: 991px)
{
    #login-modal .modal-dialog
    {
        width: auto;
        max-width: 900px;
        margin: 10px;
    }

    #login-modal .modal-content
    {
        width: auto;
        max-width: 900px;
    }
}

.aligncenter
{
    text-align: center;
}

#login-modal small
{
    color: #999;
}


#login-modal div.form-row
{
    margin-bottom: 0.5em;
}

.close-abs
{
    position: absolute;
    right: 15px;
    top: 15px;
    x-index: 9999999;
}

.forgot-pass-form
{
    transition: all 0.3s ease-in-out;
}

.login-form
{
    transition: all 0.3s ease-in-out;
}

.signup-wholesale
{
    transition: all 0.3s ease-in-out;
}

.invisible
{
    transition: all 0.3s ease-in-out;
    height: 0;
    width: 0px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}
/*end modal generic*/

.white
{
    color: #fff;
}

.alert
{
    background-color: #fff;
    background-image: none;
    border-radius: 0;
}

label.error, .alert-danger
{
    color: #FE7481;
    border-color: #FE7481;
    font-size: 14px;
    text-align: center;
}

.container.header-message label.error,
.container.header-message .alert-danger
{
    color: #FE7481;
    border-color: #FE7481;
    font-size: 26px;
    text-align: center;
}

.modal.in
{
    display: block;
}

.container.header-message
{
    padding: 0;
}

.container.header-message .alert
{
    margin: 4px 0 6px;
}

.container.header-message .alert-success
{
    border-color: #F7F5DD;
    border-width: 5px;
    font-size: 26px;
    color: rgb(113, 139, 143);
    background-color: rgb(251, 255, 248);
    text-align: center;
}

li.flexMenu-viewMore
{
    position: relative;
    width: 80px;
}

li.flexMenu-viewMore>a
{
    position: relative;
    display: inline-block;
    top: 0;
    left: 0;
    width: 80px;
    line-height: 3px;
}


li.flexMenu-viewMore>a>span
{
    display: inline-block;
    background-color: #fff;
    height: 3px;
    width: 30px;
    clear: both;
}

.no-padding
{
    padding: 0px !important;
}

.no-padding-left
{
    padding-left: 0px !important;
}

.no-padding-right
{
    padding-right: 0px !important;
}

/* CONTACT FORM */

#contact_form,
#contact_user_form
{
    margin: 20px auto 100px;
}

#contact_form input,
#contact_user_form input
{
    max-width: 230px;
}

#contact_form textarea,
#contact_user_form textarea
{
    width: 100%;
}

#contact_form label,
#contact_user_form label
{
    margin-top: 10px;
}

#contact_form .submit_contact_form,
#contact_user_form .submit_contact_form
{
    color: #e0e0e0;
    font-size: 16px;
}

#contact_form .submit_contact_form:hover,
#contact_user_form .submit_contact_form:hover
{
    background-color: #606060;
}

/* END CONTACT FORM */

/* MY ACCOUNT */
#account_details_form, #change_pass_form
{
    margin-bottom: 50px;
}

.submit_row
{
    margin-top: 20px;
    text-align: center;
}
/* END MY ACCOUNT */

/* SOCIAL ICONS */
a.social-facebook
{
    background: url('../images/frontend/facebook_logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: relative;
    float: left;
}

a.social-pinterest
{
    background: url('../images/frontend/pinterest_logo.png')!important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    width: 40px !important;
    height: 40px !important;
    position: relative !important;
    float: left !important;
    color: transparent;
}

a.PIN_1442925432749_pin_it_button_en_20_gray {
    background: url('../images/frontend/pinterest_logo.png')!important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    width: 40px !important;
    height: 40px !important;
    position: relative !important;
    float: left !important;
}

a.PIN_1442927038028_pin_it_button_en_28_red {
    background-image: url('../images/frontend/pinterest_logo.png')!important;
}

.pibfi_pinterest .xc_pin {
    background: url('../images/frontend/pinterest_logo.png')!important;
    background-image: url('../images/frontend/pinterest_logo.png')!important;
}

a.social-twitter
{
    background: url('../images/frontend/twitter_logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: relative;
    float: left;
}

a.social-instagram
{
    background: url('../images/frontend/instagram_logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    position: relative;
    float: left;
}

/* Footer social*/
div.footer-social
{
    margin: 5px auto;
    height: 30px;
    display: inline-block;
}

a.footer-social-facebook
{
    background: url('../images/frontend/facebook_logo_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: relative;
    float: left;
}

a.footer-social-pinterest
{
    background: url('../images/frontend/pinterest_logo_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: relative;
    float: left;
}

a.footer-social-twitter
{
    background: url('../images/frontend/twitter_logo_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: relative;
    float: left;
}

a.footer-social-instagram
{
    background: url('../images/frontend/instagram_logo_white.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: relative;
    float: left;
}

p.fitting-booth-img
{
    margin-top: 20px;
}

p.fitting-booth-img img
{
    width: 100px;
}
/* END SOCIAL ICONS */

/* ORDER HISTORY */
.history-details
{
    background-color: #f7f5dd;
    height: 100%;
    width: 100%;
}

.history-details .title
{
    font-size: 20px;
    text-align: center;
}

.history-details .content
{
    margin-bottom: 1em;
}

.history-details blockquote
{
    border-left: 5px solid #718B8F;
    background-color: #F5FFFF;
}

#zoom_galery img
{
    /*border:2px solid white;*/
    border-color: #718B8F;
}
/*Change the colour*/
.product-info-main .switch-prod-img.active
{
    border-color: #718B8F;
}

/* END ORDER HISTORY */

.color_box {
    float: left;
    width: 27px;
    height: 27px;
    margin: 1px;
    border: 1px solid #718b8f;
}

/*a.color_selected:hover {*/
.color_box:hover {
    cursor: pointer;
    opacity: 0.75;
}

.color_box .color-1 {
    width: 50%;
    height: 50%;
    float: left;
    background-color: #BF1E2E;
}

.color_box .color-2 {
    width: 50%;
    height: 50%;
    float: right;
    background-color: #135936;
}

.color_box .color-3 {
    width: 50%;
    height: 50%;
    float: left;
    background-color: #7D3895;
}

.color_box .color-4 {
    width: 50%;
    height: 50%;
    float: right;
    background-color: #F79822;
}

/******** pipa a kivalasztott szinre *****/

div.color-filter
{
    position: relative;
}

div.color-filter-selected
{
    color: #eee !important;
    position: absolute;
    background-color: transparent !important;
    left: 7px;
    top: 6px;
    font-size: 13px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.9);
}


/******************/

a.ws-cart-item-delete
{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    color: transparent;
    background-image: url(../images/frontend/cart_item_delete.png);
}

a.kosar-counter-main
{
    margin-top: 0.2em;
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../images/frontend/cart.png");
    float: right;
    position: relative;
    text-decoration: none;
}

a.kosar-counter-main span.cart-counter
{
    position: absolute;
    right: 0;
    top: 0;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #f7f5dd;
    color: #718b8f;
    font-size: 12px;
    line-height: 18px;
    height:20px;
    display: block;
    min-width:20px;
    text-align: center;
    padding: 0 3px;

}

span.unread-counter
{
    position: absolute;
    left: 77px;
    top: -4px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #f7f5dd;
    color: #718b8f;
    font-size: 12px;
    line-height: 18px;
    height: 20px;
    display: block;
    min-width: 20px;
    text-align: center;
    padding: 0 3px;
}
/******************/

@media(max-width: 1199px)
{
    .product-info-item a.switch-prod-img
	{
	    margin: 10px 5px 0px 0px;
	    display: inline-block;
	    width: 80px;
	    height: auto;
	    padding: 0px;
	    border: 5px solid #f7f5dd;
	    cursor: pointer;
	    transition: all 0.2s ease-in-out;
	}
	
}

@media(max-width: 991px)
{
    .product-info-item a.switch-prod-img
	{
	    margin: 10px 5px 0px 0px;
	    display: inline-block;
	    width: 100px;
	    height: auto;
	    padding: 0px;
	    border: 5px solid #f7f5dd;
	    cursor: pointer;
	    transition: all 0.2s ease-in-out;
	}
	
	.measurements tbody td.meret{
		font-size: 12px;
		text-align: center;
		 font-weight: bold;
	}
	
	.fit-size-body{
		font-size: 12px;
		text-align: center;
	}
	
	.fib-size-table{
	   padding-left:10px;
	   padding-right:10px;
	   overflow-x: auto;
	   white-space: nowrap;
	}
	
	.fib-size-table table {
		margin-left: -10px;
	}
	
}

@media (min-width: 992px) and (max-width: 1200px)
{
    .btn-wishlist 
	{
	    background-color: #606060;
	    color: #e0e0e0;
	    font-size: 18px;
	    max-width: 200px; /*2018-03-22*/
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}
	
	.btn-cart 
	{
	    font-size: 18px;
	    padding-left: 60px;
	    background-image: url(../images/frontend/cart.png);
	    background-repeat: no-repeat;
	    background-position: 15px center !important;
	    max-width: 200px; /*2018-03-22*/
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}
	
	.table-res-meas{
	   width: 400px;
	   overflow-x: auto;
	   white-space: nowrap;
	}
}

@media (min-width: 1200px)
{
	.btn-wishlist 
	{
	    background-color: #606060;
	    color: #e0e0e0;
	    font-size: 18px;
	    max-width: 250px; 
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}
	
	.btn-cart
	{
	    font-size: 18px;
	    padding-left: 60px;
	    background-image: url(../images/frontend/cart.png);
	    background-repeat: no-repeat;
	    background-position: 15px center !important;
	    max-width: 250px;
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}
}

@media (min-width: 992px)
{
	.measurements tbody td.meret{
		font-size: 10px;
		text-align: center;
		font-weight: bold;
	}
}

/*****************************************/
table.history-table tfoot td,
table.history-table tfoot th
{
    font-weight: normal;
}

.missing-red {
    color:red;
}


/* Scrollbar styles */
.table-on-mobile-scroll::-webkit-scrollbar {
	width: 12px;
	height: 12px;
}

.table-on-mobile-scroll::-webkit-scrollbar-track {
	border: 1px solid #718b8f;
	border-radius: 10px;
}

.table-on-mobile-scroll::-webkit-scrollbar-thumb {
	background: #718b8f;  
	border-radius: 10px;
}

.table-on-mobile-scroll::-webkit-scrollbar-thumb:hover {
	background: #718b8f;  
}

.table-res-cart {
	overflow-x: auto;
}

.fib-size-table table {
	margin-bottom: 0px;
}

@media (max-width: 407px) {
	img.product-body-shape {
	    margin: 1em 0 0.5em 0em;
	}
}

.ws-size-column
{
    text-align: center;
    padding-right:0.5%;
    width: 5%;
}

@media (min-width: 560px) and (max-width: 991px) {
	.ws-btn-left {
		float: left;
	}
		
	.ws-btn-right {
		float: right;
	}	
}


@media (max-width: 559px) {
	.ws-btn-left {
		text-align: center;
		margin-bottom:5px;
	}
	
	.ws-btn-right {
		text-align: center;
	}
}

@media (min-width: 992px) {
	.ws-btn-left {
		text-align: center;
	 	margin-bottom:5px;
	}
	
	.ws-btn-right {
		text-align: center;
	}
}

.inline-block {
   display: inline-block;
   padding: 10px;
}

.swal-wide {
	width: 410px;
}

.swal-wide h2 {
	font-size: 20px;
	margin: 0;
	line-height: 30px;
}



@-moz-keyframes bounceDown {
  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 bounceDown {
  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 bounceDown {
  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);
  }
}





@-webkit-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
}
@-moz-keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(30px);
  }
  60% {
    transform: translateX(15px);
  }
}
@keyframes bounceLeft {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  60% {
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
}
/* /left bounce */


/* right bounce */
@-webkit-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -webkit-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
@-moz-keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-30px);
  }
  60% {
    transform: translateX(-15px);
  }
}
@keyframes bounceRight {
  0%,
  20%,
  50%,
  80%,
  100% {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  60% {
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
  }
}
/* /right bounce */


/* assign bounce */

@media (max-width: 991px){
    .glyphicon-arrow-right {
      -webkit-animation: bounceRight 2s infinite;
      animation: bounceLeft 2s infinite;
    }
}

/*tobb kep a termekoldalon*/

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px !important;
}

.owl-prev {
  left: -2rem;
}

.owl-next {
  right: -2rem;
}

@media (min-width: 1200px){
#galery1 {
    width: 525px;
}
}

@media (min-width: 992px) and (max-width: 1199px){
#galery1 {
    width: 430px;
}
.product-info-item.small-images{
    bottom: -5px;
}
}

@media (min-width: 768px) and (max-width: 991px){
#galery1 {
    width: 680px;
    margin-left: 5px;
}
.owl-next {
  right: -1rem;
}
}

@media (min-width: 720px) and (max-width: 767px){
#galery1 {
    width: 640px;
}
.owl-next {
  right: -1rem;
}
}

@media (min-width: 713px) and (max-width: 719px){
#galery1 {
    width: 625px;
}
}

@media (min-width: 698px) and (max-width: 712px){
#galery1 {
    width: 600px;
}
}

@media (min-width: 668px) and (max-width: 697px){
#galery1 {
    width: 570px;
}
}

@media (min-width: 638px) and (max-width: 667px){
#galery1 {
    width: 540px;
}
}

@media (min-width: 598px) and (max-width: 637px){
#galery1 {
    width: 510px;
}
}

@media (min-width: 568px) and (max-width: 597px){
#galery1 {
    width: 480px;
}
}

@media (min-width: 538px) and (max-width: 567px){
#galery1 {
    width: 450px;
}
}

@media (min-width: 508px) and (max-width: 537px){
#galery1 {
    width: 420px;
}
}

@media (min-width: 500px) and (max-width: 507px){
#galery1 {
    width: 400px;
}
}

@media (max-width: 767px){
.product-info-item.small-images {
     margin-top: -1em; 
}
}


/*nagykeres meret filter*/

.btn-group-toggle {
    padding-left: 25px;
}    

.btn-group-toggle>label {
    background-color: #f7f5dd;
    color: #718b8f;
    border: 1px solid #718b8f;
    font-size: 16px;
    margin: 0.7em 0 0.7em 0;
    padding: 0 1em;
}

.btn-group-toggle>label:hover,
.btn-group-toggle>label:focus {
    background-color: #2d6ca2;
    color: #fff;
    border: 1px solid #357ebd;
    font-size: 16px;
    margin: 0.7em 0 0.7em 0;
    padding: 0 1em;
}

.btn-group-toggle>label.active {
    background-color: #718b8f;
    color: #f7f5dd;
    font-size: 16px;
    margin: 0.7em 0 0.7em 0;
    padding: 0 1em;
}

/* new paypal button - 2020.05.19. */

@media screen and (max-width: 400px) {
 #paypal-button-container {
 width: 100%;
 }
}

@media screen and (min-width: 400px) {
 #paypal-button-container {
 width: 250px;
 }
}

.product-image-container > video {
    border: 5px solid #f7f5dd;
}

.video #play {
    position: absolute;
    background-image: url("../images/frontend/play.png");
    margin: 0 auto;
    width: 50%;
    height: 100px;
    bottom: 35%;
    left: 27%;
    background-repeat: no-repeat;
    background-position: bottom;
}


a.cart-x-disabled {
  pointer-events: none;
  cursor: default;
}

.div_care > table{
    width: 100% !important;
}

table.product-sizes tbody tr div.last-piece-sign
{
    display: none !important;
}

td.last-piece-check-td:hover > div.last-piece-sign
{
    display: block !important;
    position: absolute;
    color: red;
    top: 125px;
    margin-left: 10px;
}

@media (max-width: 768px)
{
    td.last-piece-check-td:hover > div.last-piece-sign
    {
        top: 155px !important;
    }
}