@charset "UTF-8";
/* --------------------------------

Primary style

-------------------------------- */
*, *::after, *::before {
    box-sizing: border-box;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.eot');
    src: url('../fonts/MyriadPro-Regular.eot?#iefix') format("embedded-opentype"),
    url('../fonts/MyriadPro-Regular.woff') format("woff"),
    url('../fonts/MyriadPro-Regular.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Semibold.eot');
    src: url('../fonts/MyriadPro-Semibold.eot?#iefix') format("embedded-opentype"),
    url('../fonts/MyriadPro-Semibold.woff') format("woff"),
    url('../fonts/MyriadPro-Semibold.ttf') format("truetype");
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'MyriadPro', sans-serif;
    color: #333333;
    background-color: #ffffff;
}


a {
    color: #333333;
    text-decoration: none;
}

img {
    max-width: 100%;
}

input {
    font-family: sans-serif;
    font-size: 1.6rem;
}

/* remove “X” from search input field */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.cb {
    clear: both;
}

.mt-17 {
    margin-top: 17px;
}

.navbar .mt-17 {
    margin-top: 0;
}

.mb-17 {
    margin-bottom: 17px;
}

.new-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 1.52857143;
    border-radius: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 67, 79, 1);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 67, 79, 1);
    box-shadow: 0px 1px 3px 0px rgba(0, 67, 79, 1);
    text-shadow: 1px 1px 3px rgba(53, 53, 53, 0.6);
    color: #ffffff;
    border: none;
    margin-right: 5px;
    margin-bottom: 8px;
}

.new-btn:hover {
    color: #fff;
}

.new-btn.new-green {
    background: #92d900; /* Old browsers */
    background: -moz-linear-gradient(top, #92d900 0%, #429c00 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #92d900 0%, #429c00 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #92d900 0%, #429c00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#92d900', endColorstr='#429c00', GradientType=0); /* IE6-9 */
}

.new-btn.new-red {
    background: #ff0917; /* Old browsers */
    background: -moz-linear-gradient(top, #ff0917 0%, #bc000a 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ff0917 0%, #bc000a 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ff0917 0%, #bc000a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0917', endColorstr='#bc000a', GradientType=0); /* IE6-9 */
}

/* --------------------------------

Main Components

-------------------------------- */
header {
    height: 102px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,f7f7f7+82,f1f1f1+100 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 50%, #f7f7f7 82%, #f1f1f1 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 50%, #f7f7f7 82%, #f1f1f1 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #f7f7f7 82%, #f1f1f1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f1f1f1', GradientType=0); /* IE6-9 */

    -webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
    position: relative;
}

.cd-dropdown-wrapper {
    display: inline-block;
    position: relative;
    height: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-dropdown-trigger {
    display: block;
    position: relative;
    padding: 0 14px 0 14px;
    line-height: 40px;
    border-radius: 3px;
    font-weight: bold;
    border: solid 1px rgba(255, 255, 255, 0);
}

.no-touch .cd-dropdown-trigger:hover {
    background-color: #171b46;
}

.cd-dropdown-trigger::before, .cd-dropdown-trigger::after {
    /* this is the arrow inside the dropdown trigger*/
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 9px;
    background: #333333;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s;
}

.cd-dropdown-trigger::before {
    right: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-dropdown-trigger::after {
    right: 17px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (min-width: 1024px) {
    .cd-dropdown-trigger {
        font-size: 1.8rem;
    }

    .cd-dropdown-trigger.dropdown-is-active {
        background-color: #ffffff;
        border: solid 1px #f3f3f3;
    }

    .no-touch .cd-dropdown-trigger.dropdown-is-active:hover {
        background-color: #cccccc;
    }

    .cd-dropdown-trigger.dropdown-is-active::before, .cd-dropdown-trigger.dropdown-is-active::after {
        /* transform the arrow into a 'X' */
        width: 14px;
    }

    .cd-dropdown-trigger.dropdown-is-active::before {
        /* transform the arrow into a 'X' */
        -webkit-transform: translateX(5px) rotate(-45deg);
        -moz-transform: translateX(5px) rotate(-45deg);
        -ms-transform: translateX(5px) rotate(-45deg);
        -o-transform: translateX(5px) rotate(-45deg);
        transform: translateX(5px) rotate(-45deg);
    }

    .cd-dropdown-trigger.dropdown-is-active::after {
        /* transform the arrow into a 'X' */
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
}

@media only screen and (min-width: 768px) {
    .cd-dropdown h2,
    .cd-dropdown-content a,
    .cd-dropdown-content ul a {
        height: 60px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-dropdown h2,
    .cd-dropdown-content a,
    .cd-dropdown-content ul a {
        height: 50px;
        line-height: 50px;
    }
}

.cd-dropdown h2,
.cd-dropdown-content a,
.cd-dropdown-content ul a,
.cd-dropdown-content .cd-divider {
    padding: 0 20px;
}

.cd-dropdown {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #333333;
    visibility: hidden;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
    -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0.5s;
    transition: transform 0.5s 0s, visibility 0s 0.5s;
}

.cd-dropdown h2 {
    /* dropdown title - mobile version only */
    position: relative;
    z-index: 100;
    color: #333333;
    background-color: #fff;
    border-bottom: 1px solid #d8d8d8;
    margin-top: 0;
    font-size: 15px;
}

.cd-dropdown .cd-close {
    /* 'X' close icon - mobile version only */
    position: absolute;
    z-index: 100;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
}

.cd-dropdown .cd-close::after, .cd-dropdown .cd-close::before {
    /* this is the 'X' icon */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 20px;
    width: 2px;
    background-color: #333333;
}

.cd-dropdown .cd-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-dropdown .cd-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-dropdown.dropdown-is-active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.5s 0s, visibility 0s 0s;
    transition: transform 0.5s 0s, visibility 0s 0s;
}

@media only screen and (min-width: 768px) {
    .cd-dropdown .cd-close {
        top: 5px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-dropdown {
        position: absolute;
        top: calc(100% - 2px);
        /* reset style*/
        height: auto;
        width: auto;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        background-color: #ffffff;
        color: #111433;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        opacity: 0;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
        -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
        transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
    }

    .open-to-left .cd-dropdown {
        /* use the .open-to-left class if you want to open the dropdown on the left */
        right: 0;
        left: auto;
    }

    .cd-dropdown h2, .cd-dropdown .cd-close {
        /* on desktop - hide title and 'X' */
        display: none;
    }

    .cd-dropdown.dropdown-is-active {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
        -moz-transition: opacity 0.3s 0s, visibility 0.3s 0s, -moz-transform 0.3s 0s;
        transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
    }
}

.cd-dropdown-content, .cd-dropdown-content ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
    padding-top: 50px;
}
.cd-dropdown-content-kategori, .cd-dropdown-content-kategori ul {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.cd-dropdown-content-kategori a, .cd-dropdown-content-kategori ul a {
    display: block;
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-top-width: 1px;
    border-color: #f0f0f0;
    border-style: solid;
    line-height: 30px;
}

.cd-dropdown-content-kategori .cd-secondary-dropdown > li > a {
    color: #3f8654;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    pointer-events: none;
}

.cd-dropdown-content a, .cd-dropdown-content ul a {
    display: block;
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-top-width: 1px;
    border-color: #f0f0f0;
    border-style: solid;
}

.cd-dropdown-content li:first-of-type > a, .cd-dropdown-content ul li:first-of-type > a {
    border-top-width: 0;
}

.cd-dropdown-content li:last-of-type > a, .cd-dropdown-content ul li:last-of-type > a {
    border-bottom-width: 1px;
}

.cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #0b0e23;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #585a70;
    text-transform: uppercase;
}

.cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
    border-top-width: 0;
}

.cd-dropdown-content a, .cd-dropdown-content .cd-search, .cd-dropdown-content .cd-divider, .cd-dropdown-content ul a, .cd-dropdown-content ul .cd-search, .cd-dropdown-content ul .cd-divider {
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
}

.cd-dropdown-content.is-hidden, .cd-dropdown-content ul.is-hidden {
    /* push the secondary dropdown items to the right */
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

.cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
    /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
    opacity: 0;
}

.cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
    /* push the dropdown items to the left when secondary dropdown slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

.dropdown-is-active .cd-dropdown-content, .dropdown-is-active .cd-dropdown-content ul {
    -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 768px) {
    .cd-dropdown-content, .cd-dropdown-content ul {
        padding-top: 60px;
    }

    .cd-dropdown-content a, .cd-dropdown-content ul a {
        font-size: 1.8rem;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-dropdown-content, .cd-dropdown-content ul {
        padding-top: 0;
        overflow: visible;
    }

    .cd-dropdown-content a, .cd-dropdown-content ul a {
        color: #111433;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
        border-color: #ebebeb;
    }

    .cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
        background-color: transparent;
        color: #b3b3b3;
        border-top: 1px solid #ebebeb;
    }

    .cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
        border-top-width: 1px;
    }

    .cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
        /* reset mobile style */
        opacity: 1;
    }
}

.cd-dropdown-content .see-all a {
    /* different style for the See all links */
    color: #3f8654;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    /* items with picture (or icon) and title */
    height: 80px;
    line-height: 80px;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item h3, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding-left: 90px;
}

.cd-dropdown-content .cd-dropdown-gallery img {
    position: absolute;
    display: block;
    height: 40px;
    width: auto;
    left: 20px;
    top: 50%;
    margin-top: -20px;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    padding-left: 75px;
    position: relative;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
    color: #111433;
    font-size: 1.3rem;
    /* hide description on small devices */
    display: none;
}

.cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
    /* item icon */
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
}

@media only screen and (min-width: 1024px) {
    .cd-dropdown-content {
        /* reset mobile style */
        position: static;
        height: auto;
        width: 280px;
    }

    .cd-dropdown-content > li:last-of-type a {
        border-bottom: none;
    }

    .no-touch .cd-dropdown-content > li:not(.has-children) a:hover {
        color: #3f8654;
    }

    .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider {
        /* reset mobile style */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }

    .cd-dropdown-content .cd-secondary-dropdown, .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        left: 100%;
        height: auto;
        background-color: #ffffff;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    }

    .cd-dropdown-content .cd-secondary-dropdown::after, .cd-dropdown-content .cd-dropdown-gallery::after, .cd-dropdown-content .cd-dropdown-icons::after {
        clear: both;
        content: "";
        display: table;
    }

    .open-to-left .cd-dropdown-content .cd-secondary-dropdown, .open-to-left .cd-dropdown-content .cd-dropdown-gallery, .open-to-left .cd-dropdown-content .cd-dropdown-icons {
        /* use the .open-to-left class if you want to open the dropdown on the left */
        left: auto;
        right: 100%;
    }

    .cd-dropdown-content .cd-secondary-dropdown.is-hidden, .cd-dropdown-content .cd-dropdown-gallery.is-hidden, .cd-dropdown-content .cd-dropdown-icons.is-hidden {
        /* reset mobile style */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .cd-dropdown-content .cd-secondary-dropdown.fade-in, .cd-dropdown-content .cd-dropdown-gallery.fade-in, .cd-dropdown-content .cd-dropdown-icons.fade-in {
        /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
        -webkit-animation: cd-fade-in 0.2s;
        -moz-animation: cd-fade-in 0.2s;
        animation: cd-fade-in 0.2s;
    }

    .cd-dropdown-content .cd-secondary-dropdown.fade-out, .cd-dropdown-content .cd-dropdown-gallery.fade-out, .cd-dropdown-content .cd-dropdown-icons.fade-out {
        /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
        -webkit-animation: cd-fade-out 0.2s;
        -moz-animation: cd-fade-out 0.2s;
        animation: cd-fade-out 0.2s;
    }

    .cd-dropdown-content .cd-secondary-dropdown > .go-back, .cd-dropdown-content .cd-dropdown-gallery > .go-back, .cd-dropdown-content .cd-dropdown-icons > .go-back {
        display: none;
    }

    .cd-dropdown-content .cd-secondary-dropdown > .see-all, .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
        position: absolute;
        bottom: 20px;
        height: 45px;
        text-align: center;
    }

    .cd-dropdown-content .cd-secondary-dropdown > .see-all a, .cd-dropdown-content .cd-dropdown-gallery > .see-all a, .cd-dropdown-content .cd-dropdown-icons > .see-all a {
        margin: 0;
        height: 100%;
        line-height: 45px;
        background: #ebebeb;
        pointer-events: auto;
        -webkit-transition: color 0.2s, background-color 0.2s;
        -moz-transition: color 0.2s, background-color 0.2s;
        transition: color 0.2s, background-color 0.2s;
    }

    .no-touch .cd-dropdown-content .cd-secondary-dropdown > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-gallery > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-icons > .see-all a:hover {
        color: #ffffff;
        background-color: #111433;
    }

    .cd-dropdown-content .cd-secondary-dropdown .cd-dropdown-item, .cd-dropdown-content .cd-secondary-dropdown a, .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-gallery a, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons a {
        border: none;
    }

    .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
        padding: 20px 30px 100px;
    }

    .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
        width: calc(100% - 60px);
    }

    .cd-dropdown-content .cd-dropdown-icons > li, .cd-dropdown-content .cd-secondary-dropdown > li {
        width: 50%;
        float: left;
    }

    .cd-dropdown-content .cd-secondary-dropdown {
        overflow: hidden;
        width: 550px;
        padding-bottom: 65px;
    }

    .cd-dropdown-content .cd-secondary-dropdown::before {
        /* this is the separation line in the middle of the .cd-secondary-dropdown element */
        position: absolute;
        content: '';
        top: 290px;
        left: 15px;
        height: 1px;
        width: 520px;
        background-color: #ebebeb;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li > a {
        color: #3f8654;
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 30px;
        height: 30px;
        pointer-events: none;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li > a::after, .cd-dropdown-content .cd-secondary-dropdown > li > a::before {
        /* hide the arrow */
        display: none;
    }

    .cd-dropdown-content .cd-secondary-dropdown.move-out > li > a {
        /* reset mobile style */
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    .cd-dropdown-content .cd-secondary-dropdown > li {
        margin: 20px 0;
        border-right-width: 1px;
        border-color: #ebebeb;
        border-style: solid;
        padding: 0 30px;
        height: 250px;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li:nth-of-type(2n) {
        border-right-width: 0;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li > ul {
        /* reset mobile style */
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
        transform: translate(0);
        position: relative;
        height: auto;
    }

    .cd-dropdown-content .cd-secondary-dropdown > li > ul > .go-back {
        display: none;
    }

    .cd-dropdown-content .cd-secondary-dropdown a {
        line-height: 25px;
        height: 25px;
        font-size: 1.3rem;
        padding-left: 0;
    }

    .no-touch .cd-dropdown-content .cd-secondary-dropdown a:hover {
        color: #3f8654;
    }

    .cd-dropdown-content .cd-secondary-dropdown ul {
        padding-bottom: 25px;
        overflow: hidden;
        height: auto;
    }

    .cd-dropdown-content .cd-secondary-dropdown .go-back a {
        padding-left: 20px;
        color: transparent;
    }

    .no-touch .cd-dropdown-content .cd-secondary-dropdown .go-back a:hover {
        color: transparent;
    }

    .cd-dropdown-content .cd-secondary-dropdown .go-back a::before, .cd-dropdown-content .cd-secondary-dropdown .go-back a::after {
        left: 0;
    }

    .cd-dropdown-content .cd-secondary-dropdown .see-all {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .cd-dropdown-content .cd-dropdown-gallery {
        width: 600px;
        padding-bottom: 100px;
    }

    .cd-dropdown-content .cd-dropdown-gallery > li {
        width: 48%;
        float: left;
        margin-right: 4%;
    }

    .cd-dropdown-content .cd-dropdown-gallery > li:nth-of-type(2n) {
        margin-right: 0;
    }

    .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
        padding: 0;
        height: auto;
        line-height: normal;
        color: #3f8654;
        margin-bottom: 2em;
    }

    .cd-dropdown-content .cd-dropdown-gallery > li:nth-last-of-type(2) a,
    .cd-dropdown-content .cd-dropdown-gallery > li:last-of-type a {
        margin-bottom: 0;
    }

    .cd-dropdown-content .cd-dropdown-gallery img {
        position: static;
        height: auto;
        width: 100%;
        margin: 0 0 0.6em;
    }

    .cd-dropdown-content .cd-dropdown-icons {
        width: 600px;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
        height: 80px;
        line-height: 1.2;
        padding: 24px 0 0 85px;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item:hover {
        background: #ebebeb;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
        color: #3f8654;
        font-weight: bold;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
        display: block;
        font-size: 1.2rem;
    }

    .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
        left: 25px;
    }

    .cd-dropdown-content > .has-children > ul {
        visibility: hidden;
    }

    .cd-dropdown-content > .has-children > ul.is-active {
        /* when hover over .cd-dropdown-content items - show subnavigation */
        visibility: visible;
    }

    .cd-dropdown-content > .has-children > .cd-secondary-dropdown.is-active > li > ul {
        /* if .cd-secondary-dropdown is visible - show also subnavigation */
        visibility: visible;
    }

    .cd-dropdown-content > .has-children > a.is-active {
        /* hover effect for .cd-dropdown-content items with subnavigation */
        box-shadow: inset 2px 0 0 #333333;
        color: #333333;
        background: #f0f0f0;
    }

    .cd-dropdown-content > .has-children > a.is-active::before, .cd-dropdown-content > .has-children > a.is-active::after {
        background: #333333;
    }

    .open-to-left .cd-dropdown-content > .has-children > a.is-active {
        box-shadow: inset -2px 0 0 #333333;
    }
}

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes cd-fade-in {
    0% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: visible;
    }
}

@-moz-keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: visible;
    }
}

@keyframes cd-fade-out {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: visible;
    }
}

.cd-search input[type="search"] {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #242643;
    color: #ffffff;
    border: none;
    border-radius: 0;
}

.cd-search input[type="search"]::-webkit-input-placeholder {
    color: #ffffff;
}

.cd-search input[type="search"]::-moz-placeholder {
    color: #ffffff;
}

.cd-search input[type="search"]:-moz-placeholder {
    color: #ffffff;
}

.cd-search input[type="search"]:-ms-input-placeholder {
    color: #ffffff;
}

.cd-search input[type="search"]:focus {
    background: #ffffff;
    color: #111433;
    outline: none;
}

.cd-search input[type="search"]:focus::-webkit-input-placeholder {
    color: rgba(17, 20, 51, 0.4);
}

.cd-search input[type="search"]:focus::-moz-placeholder {
    color: rgba(17, 20, 51, 0.4);
}

.cd-search input[type="search"]:focus:-moz-placeholder {
    color: rgba(17, 20, 51, 0.4);
}

.cd-search input[type="search"]:focus:-ms-input-placeholder {
    color: rgba(17, 20, 51, 0.4);
}

@media only screen and (min-width: 1024px) {
    .cd-search input[type="search"] {
        background-color: #ebebeb;
    }

    .cd-search input[type="search"]::-webkit-input-placeholder {
        color: #b3b3b3;
    }

    .cd-search input[type="search"]::-moz-placeholder {
        color: #b3b3b3;
    }

    .cd-search input[type="search"]:-moz-placeholder {
        color: #b3b3b3;
    }

    .cd-search input[type="search"]:-ms-input-placeholder {
        color: #b3b3b3;
    }
}

.has-children > a, .go-back a {
    position: relative;
}

.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    /* arrow icon in CSS - for element with nested unordered lists */
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 2px;
    width: 10px;
    background: #333333;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.has-children > a::before, .go-back a::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.has-children > a::after, .go-back a::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media only screen and (min-width: 1024px) {
    .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
        background: #b3b3b3;
    }
}

.has-children > a {
    padding-right: 40px;
}

.has-children > a::before, .has-children > a::after {
    /* arrow goes on the right side - children navigation */
    right: 20px;
    -webkit-transform-origin: 9px 50%;
    -moz-transform-origin: 9px 50%;
    -ms-transform-origin: 9px 50%;
    -o-transform-origin: 9px 50%;
    transform-origin: 9px 50%;
}

@media only screen and (min-width: 1024px) {
    .open-to-left .cd-dropdown-content > .has-children > a {
        padding-left: 40px;
        padding-right: 20px;
    }

    .open-to-left .cd-dropdown-content > .has-children > a::before, .open-to-left .cd-dropdown-content > .has-children > a::after {
        right: auto;
        left: 20px;
        -webkit-transform-origin: 1px 50%;
        -moz-transform-origin: 1px 50%;
        -ms-transform-origin: 1px 50%;
        -o-transform-origin: 1px 50%;
        transform-origin: 1px 50%;
    }
}

.cd-dropdown-content .go-back a {
    padding-left: 40px;
}

.cd-dropdown-content .go-back a::before, .cd-dropdown-content .go-back a::after {
    /* arrow goes on the left side - go back button */
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -moz-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    -o-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
}


.no-js .cd-dropdown-wrapper:hover .cd-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.no-js .cd-dropdown-wrapper .cd-close {
    display: none;
}

/*owl carousel*/

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */

.ps-nav {
    /*opacity: 0;*/
    transform: scale(1.15);
    -moz-transition: all .3s ease 0;
    -webkit-transition: all .3s ease 0;
    -ms-transition: all .3s ease 0;
    -o-transition: all .3s ease 0;
    z-index: 1;
    display: block;
    font-size: 68px;
    height: auto;
    position: absolute;
    text-align: center;
    top: 38%;
    width: auto;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.owl-carousel:hover + .ps-nav {
    transform: scale(1);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1)
}

.ps-next {
    right: 15px;
}

.ps-prev {
    left: 15px;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

.main-page-slider .owl-controls {
    margin-top: 10px;
}

@media only screen and (min-width: 767px) {
    .owl-item {
        margin-right: 0 !important;
    }
}


/*main page*/

.relative {
    position: relative;
}

.top-search .input-group .search-input.form-control {
    width: 100%;
    height: 42px;
    box-shadow: none;
}

.top-search .search-input-box .search-btn {
    color: #CCC;
}

.top-search .search-input-box .search-btn {
    background-color: #fff;
    font-size: 29px;
    padding: 5px 10px;
    line-height: 0;
    outline: 0;
    border: none;
}

.top-search .search-input-box {
    border: 2px solid #f1f1f1;
}

.top-search .input-group .search-input.form-control {
    border: none;
}

.top-container {
    margin: 0 auto;
    max-width: 1260px;
    width: 100%;
}

.logo-link img {
    height: 100px;
    padding: 10px;
}

.logo-link {
    float: right;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.image-block img {
    width: 100%;
}

.image-block div {
    margin-bottom: 30px;
}

.black-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.cd-dropdown-content span.cat-name {
    margin-left: 10px;
}

header:after {
    clear: both
}

/*question modal*/

.modal {
    text-align: center;
    padding: 0 !important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.question-modal .modal-header {
    background: #ffcc33;
    background: -moz-linear-gradient(top, #ffcc33 0%, #ff6633 100%);
    background: -webkit-linear-gradient(top, #ffcc33 0%, #ff6633 100%);
    background: linear-gradient(to bottom, #ffcc33 0%, #ff6633 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcc33', endColorstr='#ff6633', GradientType=0);
    color: #fff;
}

.question-modal {
    width: auto;
}

.question-modal input[type="radio"] {
    margin: 1px -20px;
}

.question-modal .btn.btn-block {
    height: 40px;
}
@media only screen and (max-width:768px){
    header .top-container .top-right-menu-cart{
        top : 20px!important;
    }
}
/* question modal end */
@media only screen and (max-width:600px){
     .top-logo {
        display: block;
        left: 0;
        right: 0;
        margin-left: auto !important;
        margin-right: auto;
        position: absolute;
        width: 90px;
        margin-top: 0;
        z-index: 10;
        background: #ffffff;
        -webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.2);
    }
     header .top-container .top-right-menu-cart{
        top : 50px!important;
    }
     .sepet-none{
        display: none!important;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .mt-17 {
        margin-top: 17px;
    }

    .image-block div {
        margin-bottom: 10px;
    }

    .top-right-menu-cart, .top-right-menu-user {
        text-align: center;
    }

    .top-right-menu-cart span, .top-right-menu-user span {
        width: 100%;
        text-align: center;
    }

    .top-search {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .show-search {
        display: inline-block;
    }

    .hide-search {
        display: none;
    }

    .top-right-menu-cart {
        text-align: center;
        right: 0;
        top: 0;
        position: absolute;
    }

    .top-right-menu-user {
        text-align: center;
        right: 55px;
        top: 0;
        position: absolute;
    }

    .top-left-search {
        text-align: center;
        left: 66px;
        top: 0;
        position: absolute;
        font-size: 30px;
    }

    .logo-link img {
        padding: 4px;
        height: auto;
    }

    .cd-dropdown-trigger {
        font-size: 35px;
    }

    .cd-dropdown-trigger span {
        display: none;
    }

    .cd-dropdown-trigger::before, .cd-dropdown-trigger::after {
        display: none;
    }

    header {
        height: auto;
        background: none;
        box-shadow: inherit;
    }

    .red-bar {
        border: solid 3px #ff0000;
        margin-top: 8px;
    }
}

/*accordion category */
.product-list-image-slider .owl-carousel.owl-drag .owl-item {
    max-height: 350px;
}

.list-group-item-heading {
    max-height: 38px;
    min-height: 38px;
    overflow: hidden;
}

.select-all-input {
    float: right;
    margin-top: 10px;
}

.accordion-category {
    background: #f6fbf7;
    border: solid 2px #dcdcdc;
}

.accordion-category .panel-default > .panel-heading {
    clear: both;
}

.accordion-category .accordion-category-name {
    font-size: 36px;
}

.accordion-category .accordion-category-arrow i {
    font-size: 40px;
}

.accordion-category .accordion-category-image {
    padding: 0;
}

.accordion-category-effect {
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

.accordion-category-effect:before, .accordion-category-effect:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 300px;
    background: #777;
    box-shadow: 0 15px 10px #777;
    transform: rotate(-3deg);
}

.accordion-category-effect:after {
    transform: rotate(3deg);
    right: 10px;
    left: auto;
}

a[aria-expanded="true"] .accordion-category {
    background-color: #fffac4;
    border: solid 2px #81c448;
}

a[aria-expanded=true] .fa-chevron-right {
    display: none;
}

a[aria-expanded=false] .fa-chevron-down {
    display: none;
}

@media only screen and (max-width: 767px) {
    .accordion-category .accordion-category-name, .accordion-category .accordion-category-arrow i {
        font-size: 16px;
    }
}

/* accordion category product list*/

.product-item.list-group-item .new-quantity-alan {
    width: 60px;
    float: right;
    /*padding-right: 12px;*/
    padding-top: 21px;
    margin-bottom: 0;
}

.new-quantity-alan {
    width: 60%;
    padding-bottom: 15px;
    margin: 0 auto;
}

.new-quantity-alan select.form-control {
    padding: 8px 7px;
}

.new-quantity-alan:after {
    content: "Adet";
    position: absolute;
    /* right: 68px; */
    bottom: 4px;
    height: 10px;
    font-size: 10px;
    line-height: 0px;
    z-index: 100;
    color: #6d6d6d;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

@supports (-webkit-overflow-scrolling: touch) {
    .new-quantity-alan:after {
        bottom: 16px;
        left: -2px;
    }
}

.quantity-text {
    width: 46px;
}

@media only screen and (max-width: 991px) {
    .product-item .new-quantity-alan {
        width: 40%;
        float: none;
        padding-top: 5px;
        padding-right: 0;
        padding-bottom: 9px;
    }

    .product-item.list-group-item .new-quantity-alan {
        padding-top: 5px;
        width: 65px;
        margin: inherit;
        margin-right: 23px;
        float: left;
        margin-bottom: 0px;
    }
}

.btn.btn-grid {
    background: #ffffff;
    border-radius: 10px !important;
    outline: none !important;
    color: #666666;
    font-size: 24px;
    line-height: 18px;
    font-weight: bold;
    padding: 4px 8px;
    margin-right: 10px;
    display: block;
    border: solid 1px #e1e1e1;
}

.btn.btn-grid.selected {
    background: #ffffff;
    color: #cacaca;
    cursor: default;
}

.added-to-cart {
    text-align: center;
    padding: 14px;
    font-size: 23px;
    background: #80c346;
    color: #ffffff;
    margin-bottom: 20px;
    border-radius: 16px;
    font-weight: bold;
    display: none;
}

.price-standart {
    color: #999999;
    font-size: 15px;
    font-weight: normal;
    text-decoration: line-through;
}

.price-sale {
    font-size: 18px;
    color: #333333;
    font-weight: normal;
}

.select-product-size {
    color: #238ccd;
    text-decoration: underline !important;
}

.select-product-size + .selected-product-size + .new-quantity-alan + input + .product-required {
    padding-top: 2px;
}

.product-item .product-name {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-item .product-name a {
    color: #333333;
    font-size: 15px;
    font-weight: normal;
}

.selected-product-size {
    display: inline-block;
    color: #50a700;
    width: 100%;
}

.gift-product {
    background: url(../images/icon-gift-product.png) no-repeat;
    background-size: 65px 78px;
    width: 65px;
    height: 78px;
    position: absolute;
    bottom: 39px;
    right: 10px;
    z-index: 2;
}

.product-image {
    position: relative;
}

.product-required {
    color: #f7796d;
    font-size: 13px;
    text-align: center;
    margin-top: 7px;
    line-height: 14px;
    height: 28px;
}

.list-products {
    margin-top: 15px;
}

.list-products select {
    text-align-last: center;
}

.product-item {
    text-align: center;
}

.select-all-input label input {
    -ms-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -webkit-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    margin-left: 10px;
}

.product-item input[type=checkbox] {
    -ms-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -webkit-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    padding: 10px;
    float: right;
    margin-right: 24px;
    margin-top: 27px;
    margin-left: 17px;
}

.product-item.list-group-item img.list-group-image {
    position: relative;
    width: 90px;
    min-height: 60px;
    float: left;
    margin-right: 10px;
}

.product-item.list-group-item .product-image {
    position: relative;
    width: 90px;
    min-height: 90px;
    float: left;
    margin-right: 10px;
}


.product-item.list-group-item {
    text-align: left;
}

.product-item.list-group-item .product-required {
    text-align: left;
    height: inherit;
    padding-top: 22px;
    margin: 0;
}

.product-item.list-group-item .gift-product {
    bottom: inherit;
    right: inherit;
    float: left;
    width: 25px;
    height: 30px;
    background-size: 25px 30px;
    margin-right: 10px;
    margin-top: 7px;
    position: absolute;
}

.product-item p.lead {
    margin-bottom: 5px;
}

.product-item.grid-group-item .product-name {
    overflow: hidden;
    text-overflow: unset;
    white-space: normal;
}

.product-item.list-group-item .product-name {
    float: left;
    width: 40%;
    min-height: inherit;
    max-height: 44px;
    overflow: hidden;
    text-overflow: unset;
    white-space: normal;
}

.product-item.list-group-item .lead {
    float: right;
    width: 23%;
    text-align: right;
    padding-right: 12px;
    padding-top: 22px;
}

.product-item.list-group-item .thumbnail {
    background: none;
}

.product-item.list-group-item .select-product-size {
    padding-right: 12px;
    padding-top: 26px;
    display: inline-block;
}

.product-item.list-group-item .product-name a {
    padding-top: 31px;
    display: inline-block;
}

.product-item input[type=checkbox] {
    margin-right: 2px;
    margin-top: 6px;
    margin-left: inherit;
}

.product-item.list-group-item input[type=checkbox] {
    margin-right: 8px;
    margin-top: 30px;
    margin-left: inherit;
}

.product-item.grid-group-item .thumbnail .product-image {
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
}

.product-item.grid-group-item .thumbnail .product-image img {
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    max-height: 250px;
}

.product-item.grid-group-item .thumbnail .product-image .owl-item img {
    width: auto;
    height: auto;
    position: inherit;
    margin: auto;
    max-height: 224px;
}

.green + img.list-group-image {
    -webkit-filter: opacity(50%);
    filter: opacity(50%);
}

/*.glyphicon { margin-right:5px; }*/
.thumbnail {
    margin-bottom: 20px;
    padding: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.item.list-group-item {
    /*float: none;*/
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
    padding: 0;
}

.item.list-group-item:nth-of-type(odd):hover, .item.list-group-item:hover {
    background: #f1f1f1;
}

.item.list-group-item .list-group-image {
    margin-right: 10px;
}

.item.list-group-item .thumbnail {
    margin-bottom: 0px;
    border: none;
}

.item.list-group-item .caption {
    padding: 0;
}

.item.list-group-item:nth-of-type(odd) {
    background: #f8f8f8;
}

.item.list-group-item:before, .item.list-group-item:after {
    display: table;
    content: " ";
}

.item.list-group-item img {
    float: left;
}

.item.list-group-item:after {
    clear: both;
}

.list-group-item-text {
    margin: 0 0 11px;
}

.modal-dialog.suggestion-modal {
    width: auto;
}

.suggestion-modal .modal-title {
    font-size: 24px;
}

.modal-dialog.suggestion-modal .modal-content {
    border-radius: 20px;
}

.product-item.list-group-item .selected-product-size {
    width: inherit;
    min-width: 75px;
}

.selected-product-size ~ .product-required {
    padding-top: 2px;
}

@media only screen and (max-width: 767px) {
    .product-item.list-group-item .select-product-size {
        padding-top: inherit;
        float: left;
    }
}

@media only screen and (max-width: 767px) {
    .product-item.grid-group-item .thumbnail .product-image {
        min-height: 150px;
        max-height: 226px;
    }

    .product-item.grid-group-item .thumbnail .price-standart {
        display: block;
    }

    .suggestion-modal a img {
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .suggestion-modal .modal-title {
        font-size: 17px;
    }

    .added-to-cart {
        padding: 9px;
        font-size: 18px;
        border-radius: 12px;
    }

    .gift-product {
        width: 30px;
        height: 42px;
        background-size: 30px 42px;
    }

    .product-item.list-group-item .product-name a {
        padding-top: 12px;
    }

    .product-item.list-group-item .price-sale {
        font-size: 16px;
    }

    .product-item.list-group-item .select-product-size {
        padding-top: inherit;
    }

    .product-item.list-group-item .gift-product {
        width: 25px;
        height: 30px;
        background-size: 25px 30px;
        margin-right: 5px;
        margin-top: 8px;
    }

    .product-item.list-group-item .lead {
        padding-top: 7px;
        margin-bottom: 0;
    }

    .product-item.list-group-item .product-required {
        font-size: 12px;
        padding-left: 100px;
        display: inline-block;
        padding-top: 0;
    }
}

/* product detail */

.product-detail-mini-img-slider {
    max-height: 613px;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-image-list a {
    display: inline-block;
}

.product-image-list a img {
    max-width: 80px;
    border: 1px solid #CCC;
    padding: 2px;
    margin: 6px 6px;
}

.product-image-list a.active img {
    /*border: 1px solid #ff5200;*/
}

.product-image-list {
    text-align: center;
}

#prd-images li {
    list-style: none;
}

.pdetail .product-title {
    color: #333333;
    margin-bottom: 20px;
    font-size: 28px;
}

.pdetail .product-detail-label {
    width: 120px;
    display: inline-block;
    font-size: 19px;
}

.pdetail .product-detail-list, .pdetail .product-detail-list a {
    color: #666666;
}

.underline {
    text-decoration: underline !important;
}

.pdetail .product-detail-list .pdetail-price-sales {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    color: #f7796d;
}

.pdetail .product-detail-list .pdetail-selected-size a {
    font-size: 19px;
    font-weight: 600;
    line-height: normal;
    color: #4caf50;
}

.pdetail .product-price .pdetail-price-standart {
    color: #999999;
    font-size: 15px;
    font-weight: normal;
    text-decoration: line-through;
}

.pdetail .quantity .input-group[class*="col-"] {
    float: left;
}

.pdetail .btn-cart {
    border: solid 2px #f8786b;
    padding: 5px;
    border-radius: 10px;
    color: #f8786b;
    font-size: 24px;
    line-height: 34px;
    position: relative;
}

.pdetail .btn-cart:active {
    top: 3px;
}

button:focus {
    outline: none;
}

.pdetail .quantity-left-minus {
    background: #f2f2f2;
    border: none;
    -webkit-border-top-left-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 10px;
    color: #999999;
    font-size: 20px;
}

.pdetail .quantity-right-plus {
    background: #f2f2f2;
    border: none;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-bottomright: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px;
    color: #999999;
    font-size: 20px;
}

.pdetail .quantity-number {
    padding: 10px;
    color: #999999;
    font-size: 20px;
    /*line-height: 48px;*/
    height: 48px;
}

@media only screen and (max-width: 991px) and (min-width: 513px) {
    .product-item.list-group-item .selected-product-size {
        width: 50%;
        min-width: 75px;
        text-align: right;
    }
}

@media only screen and (min-width: 513px) and (max-width: 767px) {
    .product-item.list-group-item .new-quantity-alan {
        padding-top: 5px;
        width: 65px;
        margin: inherit;
        margin-right: -23px;
    }

    .product-item.list-group-item .product-required {
        padding-left: 130px;
    }
}

.flag-1 {
    background: #337ab7;
    color: #ffffff;
    clear: both;
}

.flag-2 {
    background: #5cb85c;
    color: #ffffff;
    clear: both;
}

.flag-3 {
    background: #5bc0de;
    color: #ffffff;
    clear: both;
}

.flag-4 {
    background: #f0ad4e;
    color: #ffffff;
    clear: both;
}

.flag-5 {
    background: #d9534f;
    color: #ffffff;
    clear: both;
}

.well {
    margin-bottom: 10px;
}

.list-style {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
}

.list-style li {
    margin-bottom: 10px;
}

.cizili {
    text-decoration: line-through
}
