@charset "utf-8";
/* CSS Document */
/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Header Main
	3.3 Main Navigation
	3.4 Page Menu
4. Banner
5. Characteristics
6. Deals of the week
	6.1 Deals
	6.2 Featured
7. Popular Categories
8. Banner 2
9. Hot New Arrivals
10. Hot Best Sellers
11. Adverts
12. Trends
13. Latest Reviews
14. Recently Viewed
15. Brands
16. Pages
    16.1 Blog
    16.2 Newsletter
17. Footer


******************************/
/***********
1. Fonts
***********/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900|Rubik:300,400,500,700,900');

/*********************************
2. Body and some general stuff
*********************************/

* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background: #FFFFFF;
    color: #000000;
}

div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin-bottom: 0;
}

p {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #828282;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
    display: inline;
    position: relative;
    color: inherit;
    border-bottom: solid 1px #ffa07f;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

a, a:hover, a:visited, a:active, a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
    position: relative;
    color: #FF6347;
}

p a:hover {
    color: #FFFFFF;
    background: #ffa07f;
}

p a:hover::after {
    opacity: 0.2;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

img {
    max-width: 100%;
}

.form-control {
    color: #db5246;
}

section {
    display: block;
    position: relative;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

.clearfix::before, .clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.fill_height {
    height: 100%;
}

.super_container {
    width: 100%;
    overflow: hidden;
}

.prlx_parent {
    overflow: hidden;
}

.prlx {
    height: 130% !important;
}

.nopadding {
    padding: 0 !important;
}

.button {
    display: inline-block;
    background: #0e8ce4;
    border-radius: 5px;
    height: 48px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.button a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
}

.button:hover {
    opacity: 0.8;
}

/*********************************
3. Header
*********************************/

.header {
    position: relative;
    width: 100%;
    z-index: 10;
}

/*********************************
3.1 Top Bar
*********************************/

.top_bar {
    width: 100%;
    height: 56px;
    background: #fafafa;
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.header.scrolled .top_bar {
    display: none;
}

.top_bar_contact {
    display: inline-block;
}

.top_bar_contact_item {
    font-size: 16px;
    font-weight: 300;
    line-height: 56px;
    margin-right: 40px;
}

.top_bar_contact_item:not(:first-child) {
    margin-right: 0;
}

.top_bar_contact_item a {
    font-size: 16px;
    font-weight: 300;
    line-height: 56px;
    color: #000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.top_bar_contact_item a:hover {
    color: #8a8a8a;
}

.top_bar_contact_item:last-child {
    margin-right: 0;
}

.top_bar_icon {
    display: inline-block;
    margin-right: 14px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.top_bar_menu {
    display: inline-block;
}

.top_bar_dropdown li {
    padding-left: 13px;
    padding-right: 13px;
}

.standard_dropdown li {
    display: inline-block;
    position: relative;
    height: 56px;
}

.standard_dropdown li li {
    display: block;
    width: 100%;
}

.standard_dropdown li li a {
    display: block;
    width: 100%;
    border-bottom: solid 1px #f2f2f2;
    font-size: 16px;
}

.standard_dropdown li:last-child a {
    border-bottom: none;
}

.standard_dropdown li.hassubs > a i {
    display: inline-block;
    margin-left: 5px;
}

.standard_dropdown li a {
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 56px;
    white-space: nowrap;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.standard_dropdown li a:hover {
    color: #0e8ce4;
}

.standard_dropdown li a i {
    display: none;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
    font-size: 12px;
}

.standard_dropdown li ul {
    display: block;
    position: absolute;
    top: 120%;
    left: 0;
    width: auto;
    visibility: hidden;
    opacity: 0;
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.standard_dropdown li:hover > ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.standard_dropdown ul ul {
    left: 100%;
    top: 0 !important;
}

.top_bar_user {
    display: inline-block;
    margin-left: 35px;
}

.user_icon {
    display: inline-block;
    margin-right: 7px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    width: 15px;
}

.user_icon img {
    width: 100%;
}

.top_bar_user div {
    display: inline-block;
}

.top_bar_user div:nth-child(2) {
    margin-right: 21px;
}

.top_bar_user div:nth-child(2)::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -13px;
    width: 1px;
    height: 17px;
    background: rgba(0, 0, 0, 0.1);
    content: '';
}

.top_bar_user a {
    font-size: 16px;
    font-weight: 300;
    line-height: 56px;
    color: #000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.top_bar_user a:hover {
    color: #8a8a8a;
}

/*********************************
3.2 Header Main
*********************************/

.header_main {
    z-index: 1;
}

.header.scrolled .header_main {
    display: none;
}

.header_main_item {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.logo_container {
    height: 100px;
}

.logo {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.logo a {
    font-size: 36px;
    font-weight: 500;
    color: #0e8ce4;
}

.header_search {
    height: 100px;
}

.header_search_content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header_search_form_container {
    width: 100%;
    height: 50px;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
}

.header_search_form {
    width: 100%;
    height: 100%;
}

.header_search_input {
    display: block;
    position: relative;
    width: calc(100% - 78px);
    height: 100%;
    line-height: 50px;
    border: none !important;
    outline: none !important;
    padding-left: 26px;
    color: #7f7f7f;
    float: left;
}

.header_search_input::-webkit-input-placeholder {
    font-size: 16px !important;
    font-weight: 300;
    line-height: 50px;
    color: #a3a3a3 !important;
}

.header_search_input:-moz-placeholder /* older Firefox*/
{
    font-size: 16px !important;
    font-weight: 300;
    line-height: 50px;
    color: #a3a3a3 !important;
}

.header_search_input::-moz-placeholder /* Firefox 19+ */
{
    font-size: 16px !important;
    font-weight: 300;
    line-height: 50px;
    color: #a3a3a3 !important;
}

.header_search_input:-ms-input-placeholder {
    font-size: 16px !important;
    font-weight: 300;
    line-height: 50px;
    color: #a3a3a3 !important;
}

.header_search_input::placeholder {
    font-size: 16px !important;
    font-weight: 300;
    line-height: 50px;
    color: #a3a3a3 !important;
}

.custom_dropdown {
    width: calc((100% - 50px) * 0.399);
    height: 50px;
    float: left;
    padding-left: 26px;
}

.custom_dropdown::before {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 28px;
    background: #e5e5e5;
    content: '';
}

.custom_dropdown_list i {
    display: inline-block;
    color: #a3a3a3;
    font-size: 10px;
    margin-left: 3px;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.custom_dropdown_placeholder {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    color: #a3a3a3;
    line-height: 48px;
    cursor: pointer;
}

.custom_dropdown_placeholder i {

}

.custom_list {
    text-align: left;
    position: absolute;
    padding: 0;
    top: 75px;
    left: -15px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: all 0.2s ease;
}

.custom_list.active {
    visibility: visible;
    opacity: 1;
    top: 50px;
    box-shadow: 0 0 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.custom_list li {
    height: 35px;
    padding-left: 15px;
    padding-right: 15px;
    background: #FFFFFF;
}

.custom_list li a {
    display: block;
    color: #a3a3a3;
    line-height: 35px;
    border-bottom: solid 1px #ededed;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.custom_list li a:hover {
    color: #0e8ce4;
}

select {
    display: inline;
    border: 0;
    width: auto;
    margin-left: 10px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-bottom: 2px solid #555;
    color: #7b00ff;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

select:hover {
    cursor: pointer;
}

select option {
    border: 0;
    border-bottom: 1px solid #555;
    padding: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.header_search_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: #0e8ce4;
    border: none;
    outline: none;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.wishlist_cart {
    height: 100px;
}

.wishlist {
    margin-right: 50px;
}

.wishlist_icon img {
    width: 100%;
}

.wishlist_content {
    margin-left: 14px;
}

.wishlist_text a {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.wishlist_text a:hover {
    color: #0e8ce4;
}

.wishlist_count {
    margin-top: -2px;
    color: #a3a3a3;
    font-size: 14px;
}

.cart_count {
    position: absolute;
    bottom: -1px;
    right: -14px;
    width: 23px;
    height: 23px;
    background: #0e8ce4;
    border-radius: 50%;
    text-align: center;
}

.cart_count span {
    display: block;
    line-height: 23px;
    font-size: 12px;
    color: #FFFFFF;
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
}

.cart_icon img {
    width: 100%;
}

.cart_content {
    margin-left: 28px;
}

.cart_text a {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.cart_text a:hover {
    color: #0e8ce4;
}

.cart_price {
    font-size: 14px;
    color: #a3a3a3;
    margin-top: -2px;
}

/*********************************
3.3 Main Navigation
*********************************/

.main_nav {
    width: 100%;
    border-top: solid 1px #f2f2f2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.header.scrolled .main_nav {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.main_nav_content {
    width: 100%;
    height: 60px;
}

.cat_menu_container {
    width: 293px;
    height: 100%;
    background: #0e8ce4;
    padding-left: 35px;
    cursor: pointer;
    z-index: 1;
}

.cat_menu_title {
    height: 100%;
}

.cat_burger {
    width: 18px;
    height: 14px;
}

.cat_burger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
}

.cat_burger span:nth-child(2) {
    top: 6px;
}

.cat_burger span:nth-child(3) {
    top: 12px;
}

.cat_menu_text {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-left: 20px;
}

.cat_menu_container ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    /*visibility: hidden;
	opacity: 0;*/
    min-width: 100%;
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.inner_menu ul {
    visibility: hidden;
    opacity: 0;
}

.cat_menu_container > ul {
    padding-top: 13px;
}

.cat_menu_container:hover .cat_menu {
    visibility: visible;
    opacity: 1;
}

.cat_menu li {
    display: block;
    position: relative;
    width: auto;
    height: 46px;
    border-bottom: solid 1px #f2f2f2;
    padding-left: 35px;
    padding-right: 30px;
}

.main_menu li {
    position: static;
    height: auto;
    line-height: 16px;
    padding: 12px 10px;
}

.cat_menu li.hassubs > a i {
    display: block;
}

.cat_menu li a {
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 46px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.cat_menu li ul li a {
    font-size: 14px;
}

.main_menu li a {
    line-height: 18px;
    padding-right: 10px;
}

.cat_menu li a:hover {
    color: #0e8ce4;
}

.cat_menu li a i {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    font-size: 12px;
}

.cat_menu li ul {
    display: block;
    position: absolute;
    top: 35px;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.main_menu li ul {
    bottom: 0;
}

.cat_menu li:hover > ul {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.main_nav_dropdown li {
    margin-right: 35px;
}

.main_nav_dropdown li:last-child {
    margin-right: 0;
}

.main_nav_dropdown li a {
    font-size: 18px;
    font-weight: 400;
    color: #a19a9a;
    line-height: 60px;
}

.main_nav_dropdown li li {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 0;
}

.menu_trigger_container {
    display: none;
    width: auto;
    height: 100%;
    padding-right: 25px;
    padding-left: 25px;
    cursor: pointer;
}

.menu_trigger {
    height: 100%;
}

.menu_burger_inner {
    display: inline-block;
}

.menu_trigger_text {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-right: 16px;
}

/*********************************
3.4 Page Menu
*********************************/

.page_menu {
    margin-top: 15px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.page_menu_content {
    height: 0;
    background: #0e8ce4;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden;
}

.page_menu_search {
    display: none;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page_menu_search_input {
    width: 100%;
    height: 40px;
    background: #FFFFFF;
    border: none;
    outline: none;
    padding-left: 25px;
}

.page_menu_item {
    display: block;
    position: relative;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.page_menu_item > a {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.page_menu_item > a:hover {
    color: #b5aec4;
}

.page_menu_item a i {
    display: none;
    margin-left: 8px;
}

.page_menu_item.has-children > a > i {
    display: inline-block;
}

.page_menu_selection {
    margin: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    z-index: 1;
}

.page_menu_selection li {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 50px;
}

.page_menu_selection li a {
    display: block;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.page_menu_selection li a:hover {
    color: #b5aec4;
}

.page_menu_selection li:last-child a {
    border-bottom: none;
}

.menu_contact_item {
    display: inline-block;
    font-size: 12px;
    font-weight: 300;
    line-height: 56px;
    margin-right: 40px;
    color: #FFFFFF;
}

.menu_contact_item:not(:first-child) {
    margin-right: 0;
}

.menu_contact_item a {
    font-size: 12px;
    font-weight: 300;
    line-height: 56px;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.menu_contact_item a:hover {
    color: #8a8a8a;
}

.menu_contact_item:last-child {
    margin-right: 0;
}

.menu_contact_icon {
    display: inline-block;
    margin-right: 14px;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

/*********************************
4. Banner
*********************************/

.banner {
    width: 100%;
    min-height: 620px;
    padding-top: 68px;
    padding-bottom: 83px;
    overflow: hidden;
}

.banner_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.home_banner {
    background-image: url("../image/banner_background.jpg");
}

.banner_product_image img {
    width: 200px;
}

.home_banner_text {
    margin-top: 40px;
}

.home_banner_text .banner_product_name {
    font-size: 15px;
}

.banner_content {
    z-index: 1;
}

.banner_text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 1.166;
    color: #7599b2;
    text-transform: uppercase;
    letter-spacing: 0.038em;
}

.banner_price {

}

.banner_price {
    font-size: 30px;
    color: #df3b3b;
    margin-top: 87px;
}

.banner_price span {
    display: inline-block;
    position: relative;
    color: #7e8285;
    margin-right: 14px;
}

.banner_price span::after {
    display: block;
    position: absolute;
    top: 21px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8d8d8d;
    content: '';
}

.banner_product_name {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-top: 8px;
}

.banner_button {
    margin-top: 42px;
}

.banner_product_image {
    position: absolute;
    top: -5px;
    right: -52px;
    z-index: 0;
}
.banner .iso {
    display: table;
    border: dashed 1px #7599b2;
    border-radius: 4px;
    padding: 4px;
}
.banner .iso:hover {
    border-color: #007bff;
}
.banner .iso img {
    height: 160px;
}

/*********************************
5. Characteristics
*********************************/

.characteristics {
    padding-top: 70px;
    padding-bottom: 70px;
}

.char_item {
    width: 100%;
    height: 100px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border: solid 1px #e8e8e8;
    padding-left: 36px;
}

.char_icon {
    margin-right: 24px;
}

.char_content {
    transform: translate(-1px, 3px);
}

.char_title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.char_subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 3px;
}

/*********************************
5. Single Product
*********************************/

.single_product {
    padding: 40px 0;
}

.image_list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 165px;
    border: solid 1px #e8e8e8;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    cursor: pointer;
    padding: 15px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    overflow: hidden;
}

.image_list li:last-child {
    margin-bottom: 0;
}

.image_list li:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.image_list li img {
    max-width: 100%;
}

.image_selected {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% + 15px);
    height: 525px;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    transform: translateX(-15px);
    border: solid 1px #e8e8e8;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
}

.image_selected img {
    max-width: 100%;
}

.product_description {
    padding-left: 50px;
}

.product_category {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.product_name {
    font-size: 30px;
    font-weight: 500;
    margin-top: 11px;
}

.product_rating {
    margin-top: 7px;
}

.product_rating i {
    margin-right: 4px;
}

.product_rating i::before {
    font-size: 13px;
}

.product_text {
    margin-top: 4px;
}

.product_text p:last-child {
    margin-bottom: 0;
}

.product_in-stock {
    padding: 6px 0;
}

.product_in-stock > div {
    display: inline-block;
    background-color: #0e8ce4;
    color: #fff;
    font-weight: 500;
    padding: 4px 12px;
}

.product_request {
    margin: 12px 0;
}

.product_request a {
    display: inline-block;
    text-decoration: none;
    border-bottom: dashed 1px #0e8ce4;
    margin-right: 20px;
}
.product_request a:hover {
    border-bottom: dashed 1px transparent;
}

.order_info {
    margin-top: 53px;
}

.product_quantity {
    width: 182px;
    height: 50px;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
    padding-left: 25px;
    float: left;
    margin-right: 30px;
}

.product_quantity span {
    display: block;
    height: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    line-height: 50px;
    float: left;
}

.product_quantity input {
    display: block;
    width: 30px;
    height: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
    padding-left: 9px;
    line-height: 50px;
    float: left;
}
.buy-button {
    display: table;
}
.buy-quantity {
    display: block;
    width: 80px;
    height: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
    padding-left: 20px;
    line-height: 48px;
    border-top: solid 1px #e5e5e5;
    border-left: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    float: left;
}
#quantity_input {
    display: block;
    width: 47px;
    height: 50px;
    border: none;
    background: none;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
    padding: 0 10px;
    line-height: 50px;
    border-top: solid 1px #e5e5e5;
    border-right: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    float: left;
}
.quantity_buttons {
    display: block;
    width: 29px;
    height: 50px;
    border-top: solid 1px #e5e5e5;
    border-right: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    float: left;
}
.quantity_control:hover i {
    color: rgba(0, 0, 0, 0.7);
}
.quantity-button {
    display: block;
    width: 100px;
    height: 50px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding: 0 6px;
    line-height: 48px;
    background-color: #0e8ce4;
    border: solid 1px #0e8ce4;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    float: left;
}
.quantity-button:hover {
    background: rgba(14, 140, 228, 0.8);
}
/*
.quantity_buttons {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 29px;
    border-left: solid 1px #e5e5e5;
}
*/
.quantity_inc,
.quantity_dec {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 50%;
    cursor: pointer;
}

.quantity_control i {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.quantity_control:active {
    border: solid 1px rgba(14, 140, 228, 0.2);
}

.quantity_inc {
    padding-bottom: 2px;
    justify-content: flex-end;
    border-top-right-radius: 5px;
}

.quantity_dec {
    padding-top: 2px;
    justify-content: flex-start;
    border-bottom-right-radius: 5px;
}

.product_color {
    width: 182px;
    height: 50px;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    float: left;
    cursor: pointer;
}

.product_color span {
    display: block;
    height: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    line-height: 50px;
    float: left;
}

.color_dropdown_button {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
}

.color_dropdown_button i {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.color_mark_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 48px;
    float: right;
}

.color_mark {
    width: 20px;
    height: 20px;
    background: #999999;
    border-radius: 50%;
}

.product_color > li {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: 25px;
    padding-right: 49px;
}

.product_color li ul {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    width: auto;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_color > li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.product_color li ul li {
    padding-right: 49px;
    padding-left: 49px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.product_color li ul li div {
    margin-left: auto;
}

.product_price {
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    margin-top: 75px;
    clear: left;
}

.button_container {
    margin-top: 43px;
}

.cart_button {
    display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
    outline: none;
    cursor: pointer;
}

.cart_button:focus {
    outline: none;
}

.product_fav {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-left: 36px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav i {
    line-height: 36px;
    color: #cccccc;
}

.product_fav.active i {
    color: #df3b3b;
}
.single_product .breadcrumb {
    margin: 0;
    padding: 0;
    background-color: transparent;
}

/*********************************
6. Deals of the week
*********************************/

.deals_featured {
    width: 100%;
}

/*********************************
6.1 Deals
*********************************/

.deals {
    width: 36%;
    margin-right: 7%;
    padding-top: 85px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.deals_title {
    position: absolute;
    top: 27px;
    left: 40px;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.deals_slider_container {
    width: 100%;
}

.deals_item {
    width: 100% !important;
}

.deals_image {
    width: 100%;
}

.deals_image img {
    width: 100%;
}

.deals_content {
    margin-top: 33px;
}

.deals_item_category a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

.deals_item_price_a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.deals_item_name {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
}

.deals_item_price {
    font-size: 24px;
    font-weight: 500;
    color: #df3b3b;
}

.available {
    margin-top: 19px;
}

.available_title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.available_title span {
    font-weight: 700;
}

.sold_title {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.sold_title span {
    font-weight: 700;
}

.available_bar {
    width: 100%;
    height: 10px;
    background: #e8e8e8;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.available_bar span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 5px;
    background: #0e8ce4;
}

.deals_timer {
    margin-top: 30px;
}

.deals_timer_title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.deals_timer_subtitle {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.deals_timer_content {
    padding-bottom: 17px;
}

.deals_timer_box {
    width: 173px;
    padding-left: 3px;
    padding-right: 3px;
    border: solid 1px #cccccc;
    border-radius: 5px;
    margin-right: 1px;
}

.deals_timer_unit {
    width: 33.33333333%;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    padding-bottom: 2px;
    float: left;
}

.deals_timer_unit:first-child::after,
.deals_timer_unit:nth-child(2)::after {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 25px;
    background: #e5e5e5;
    content: '';
}

.deals_timer_unit span {
    position: absolute;
    display: block;
    bottom: -22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 8px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.deals_slider_nav_container {
    position: absolute;
    top: 20px;
    right: 40px;
}

.deals_slider_nav {
    display: inline-block;
    cursor: pointer;
}

.deals_slider_nav i {
    font-size: 18px;
    padding: 10px;
    color: #666666;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.deals_slider_nav:hover i {
    color: #000000;
}

.deals_slider_nav:active i {
    color: #df3b3b;
}

.deals_slider_prev {
    margin-right: 4px;
}

/*********************************
6.2 Featured
*********************************/

.featured {
    width: 57%;
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
    transform: translateY(60px);
}

.tabbed_container {
    width: 100%;
}

.tabs {
    width: 100%;
}

.tabs ul li {
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    float: left;
    margin-right: 53px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.tabs ul li:hover {
    color: rgba(0, 0, 0, 0.8);
}

.tabs ul li:last-child {
    margin-right: 0;
}

.tabs ul li.active {
    color: rgba(0, 0, 0, 0.8);
}

.tabs_line {
    width: 100%;
    height: 1px;
    background: #dadada;
    margin-top: 12px;
}

.tabs.tabs-right .tabs_line {
    margin-top: 39px;
}

.tabs_line span {
    position: absolute;
    top: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #0e8ce4;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.tabs.tabs-right ul {
    float: right;
}

.product_panel {
    display: none;
    margin-left: -60px;
    margin-right: -60px;
}

.product_panel.active {
    display: block;
}

.featured_slider {
    width: 100%;
}

.featured_slider .slick-list {
    padding-left: 20px;
    padding-right: 20px;
}

.featured_slider .slick-track {
    padding-bottom: 120px;
}

.featured_slider_item {
    height: 263px;
    width: 25%;
}

.product_item {
    position: relative;
    left: -10px;
    width: calc(100% + 20px);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    background: #FFFFFF;
    cursor: pointer;
    padding-top: 40px;
    z-index: 0;
}

.slick-active .product_item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product_image {
    width: 100%;
    height: 115px;
}

.product_image img {
    display: block;
    position: relative;
    max-width: 100%;
}

.product_content {
    width: 100%;
}

.product_price {
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
}

.product_price.discount {
    color: #df3b3b;
}

.product_price .order__price {
    font-size: 28px;
}

.product_name {
    margin-top: 4px;
    overflow: hidden;
}

.product_name div {
    width: 100%;

}

.product_name div a {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_name div a:hover {
    color: #0e8ce4;
}

.product_color {
    visibility: hidden;
    opacity: 0;
    margin-top: 19px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_extras {
    width: 100%;
    background: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 200ms ease;
    -moz-transition: max-height 200ms ease;
    -ms-transition: max-height 200ms ease;
    -o-transition: max-height 200ms ease;
    transition: max-height 200ms ease;
}

.slick-active .product_item:hover .product_extras {
    max-height: 300px;
}

.slick-active .product_item:hover .product_color,
.slick-active .product_item:hover .product_cart_button {
    visibility: visible;
    opacity: 1;
}

.product_color input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 8px;
}

.product_color input:checked::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: 'FontAwesome';
    content: '\f00c';
    color: #FFFFFF;
}

.product_cart_button {
    position: relative;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 48px;
    background: #0e8ce4;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 19px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_cart_button:hover {
    background: rgba(14, 140, 228, 0.8);
}

.featured_slider .slick-dots {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 100px;
}

.featured_slider .slick-slide {
    outline: none;
}

.featured_slider .slick-dots li {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    content: '';
    background: #e8e8e8;
    margin-right: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.featured_slider .slick-dots li:hover {
    background: #0e8ce4;
}

.featured_slider .slick-dots li.slick-active {
    background: #0e8ce4;
}

.featured_slider .slick-dots li:last-child {
    margin-right: 0;
}

.featured_slider .slick-dots li button {
    display: none;
}

.featured_slider_dots_cover {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 100px;
    width: 100px;
    height: 30px;
    background: #FFFFFF;
    z-index: 1;
    display: none;
}

.product_fav {
    position: absolute;
    top: 33px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.product_item:hover .product_fav {
    top: 18px;
}

.product_fav i {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #cccccc;
    line-height: 36px;
    pointer-events: none;
    z-index: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav.active i {
    color: red;
}

.product_item:hover .product_fav {
    visibility: visible;
    opacity: 1;
}

.product_marks {
    display: none;
    position: absolute;
    top: 33px;
    left: 30px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.slick-active .product_marks {
    display: block;
}

.product_item:hover .product_marks {
    top: 18px;
    left: 18px;
}

.product_mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 36px;
    font-size: 12px;
}

.product_new {
    display: none;
    background: #0e8ce4;
    visibility: hidden;
    opacity: 0;
}

.product_discount {
    display: none;
    background: #df3b3b;
    visibility: hidden;
    opacity: 0;
}

.product_item.is_new .product_new,
.product_item.discount .product_discount {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

/*********************************
7. Popular Categories
*********************************/

.popular_categories {
    padding-top: 88px;
    padding-bottom: 90px;
}

.popular_categories_title {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
}

.popular_categories_slider_nav {
    margin-top: 27px;
}

.popular_categories_nav {
    display: inline-block;
    width: 36px;
    height: 36px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-right: 16px;
}

.popular_categories_nav:last-child {
    margin-right: 0;
}

.popular_categories_nav i {
    line-height: 36px;
    color: #e5e5e5;
    font-size: 18px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.popular_categories_nav:hover i {
    color: #474747;
}

.popular_categories_link {
    margin-top: 40px;
}

.popular_categories_link a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0e8ce4;
}

.popular_category {
    height: 216px;
    padding-left: 40px;
    padding-right: 40px;
}

.popular_categories_slider .owl-item:nth-child(even) {
    background: #eff6fa;
}

.popular_category_image img {
    max-height: 100%;
    max-width: 100%;
}

.popular_category_text {
    margin-top: 20px;
    line-height: 1.714;
    text-align: center;
}

/*********************************
8. Banner 2
*********************************/

.banner_2 {
    width: 100%;
}

.banner_2_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.banner_2_item {
    height: 580px;
}

.banner_2_content {
    padding-top: 145px;
}

.banner_2_image_container {
    width: 100%;
    height: 100%;
}

.banner_2_image {
    min-width: 100%;
    width: calc(44.8vw);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.banner_2_image img {
    width: 100%;
}

.banner_2_category {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.banner_2_title {
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    margin-top: 11px;
}

.banner_2_text {
    font-size: 16px;
    font-weight: 300;
    color: #828282;
    line-height: 1.5;
    margin-top: 9px;
}

.banner_2_rating {
    margin-top: 18px;
}

.rating_r i::before {
    font-family: 'FontAwesome';
    content: "\f006";
    font-style: normal;
    font-size: 19px;
    margin-right: 4px;
    color: #f5e211;
}

.rating_r_1 i:first-child::before {
    content: "\f005";
}

.rating_r_2 i:first-child::before {
    content: "\f005";
}

.rating_r_2 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_3 i:first-child::before {
    content: "\f005";
}

.rating_r_3 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_3 i:nth-child(3)::before {
    content: "\f005";
}

.rating_r_4 i:first-child::before {
    content: "\f005";
}

.rating_r_4 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_4 i:nth-child(3)::before {
    content: "\f005";
}

.rating_r_4 i:nth-child(4)::before {
    content: "\f005";
}

.rating_r_5 i:first-child::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(2)::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(3)::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(4)::before {
    content: "\f005";
}

.rating_r_5 i:nth-child(5)::before {
    content: "\f005";
}

.banner_2_button {
    margin-top: 43px;
}

.banner_2_dots {
    position: absolute;
    bottom: 40px;
    left: calc((100% - 1170px) / 2 + 15px);
    z-index: 1000000;
}

.banner_2_dots .owl-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border-radius: 50%;
    margin-right: 16px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.banner_2_dots .owl-dot:last-child {
    margin-right: 0;
}

.banner_2_dots .owl-dot.active {
    background: #0e8ce4;
    box-shadow: none;
}

/*********************************
9. Hot New Arrivals
*********************************/

.new_arrivals {
    width: 100%;
    padding-top: 96px;
    padding-bottom: 96px;
}

.new_arrivals_title {
    position: absolute;
    left: 0;
    top: -7px;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -29px;
}

.arrivals_slider {
    width: 100%;
}

.arrivals_slider .slick-list {
    padding-left: 20px;
    padding-right: 20px;
}

.arrivals_slider .slick-track {
    padding-bottom: 80px;
}

.arrivals_slider_item {
    visibility: hidden;
    height: 263px;
    width: 25%;
}

.arrivals_slider .slick-active .arrivals_slider_item {
    visibility: visible;
}

.border_active.active {
    display: block;
}

.border_active {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 1px;
    height: 183px;
    background: #e5e5e5;
    content: '';
    z-index: 1;
}

.arrivals_slider .slick-dots {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 50px;
}

.arrivals_slider .slick-slide {
    outline: none;
}

.arrivals_slider .slick-dots li {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    content: '';
    background: #e8e8e8;
    margin-right: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.arrivals_slider .slick-dots li:hover {
    background: #0e8ce4;
}

.arrivals_slider .slick-dots li.slick-active {
    background: #0e8ce4;
}

.arrivals_slider .slick-dots li:last-child {
    margin-right: 0;
}

.arrivals_slider .slick-dots li button {
    display: none;
}

.arrivals_slider_dots_cover {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 100px;
    width: 100px;
    height: 30px;
    background: #FFFFFF;
    z-index: 1;
    display: none;
}

.arrivals_single {
    width: 100%;
    padding-top: 73px;
}

.arrivals_single > div {
    width: 212px;
    float: right;
}

.arrivals_single_image {
    width: 100%;
}

.arrivals_single_image img {
    max-width: 100%;
}

.arrivals_single_content {
    width: 100%;
}

.arrivals_single_button {
    position: relative;
    left: 0;
    width: 100%;
    height: 48px;
    background: #0e8ce4;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    margin-top: 19px;
    border-radius: 5px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.arrivals_single_button:hover {
    background: rgba(14, 140, 228, 0.8);
}

.arrivals_single_category {
    margin-top: 27px;
}

.arrivals_single_category a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.arrivals_single_category a:hover {
    color: #0e8ce4;
}

.arrivals_single_name_container {
    width: 100%;
}

.arrivals_single_name {
    margin-top: 2px;
    float: left;
}

.arrivals_single_name a {
    font-size: 16px;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.arrivals_single_name a:hover {
    color: #0e8ce4;
}

.arrivals_single_price {
    font-size: 16px;
    font-weight: 500;
    float: right;
}

.arrivals_single_rating {
    margin-top: 9px;
}

.arrivals_single_marks {
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.arrivals_single_marks .product_mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 36px;
    font-size: 12px;
}

.arrivals_single_marks .product_new {
    display: block;
    background: #0e8ce4;
    visibility: visible;
    opacity: 1;
}

.arrivals_single_marks .product_discount {
    display: block;
    background: #df3b3b;
    visibility: visible;
    opacity: 1;
}

.arrivals_single .product_fav {
    position: absolute;
    top: -15px;
    right: 0;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav i {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #cccccc;
    line-height: 36px;
    pointer-events: none;
    z-index: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav.active i {
    color: red;
}

/*********************************
10. Hot Best Sellers
*********************************/

.best_sellers {
    padding-top: 56px;
    background: #eff6fa;
    padding-bottom: 50px;
    margin-top: -77px;
}

.bestsellers_panel {
    display: none;
    width: 100%;
    padding-top: 50px;
}

.bestsellers_panel.active {
    display: block;
    padding-top: 50px;
}

.bestsellers_slider {
    width: calc(100% + 30px);
    left: -15px;
    padding-bottom: 67px;
}

.bestsellers_item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
}

.bestsellers_slider .slick-slide > div:first-child {
    margin-bottom: 30px;
}

.bestsellers_slider .slick-slide {
    outline: none;
}

.bestsellers_slider .slick-slide {
    margin: 0 15px;
}

.bestsellers_image {
    width: 115px;
    height: 115px;
}

.bestsellers_image img {
    max-width: 100%;
    max-height: 100%;
}

.bestsellers_content {
    padding-left: 25px;
}

.bestsellers_category a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.bestsellers_category a:hover {
    color: #0e8ce4;
}

.bestsellers_name {
    margin-top: 2px;
}

.bestsellers_name a {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.bestsellers_name a:hover {
    color: #0e8ce4;
}

.bestsellers_rating {
    margin-top: 9px;
}

.bestsellers_rating i::before {
    font-size: 13px;
    margin-right: 8px;
}

.bestsellers_price {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.bestsellers_item.discount .bestsellers_price {
    color: #df3b3b;
}

.bestsellers_price span {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 9px;
}

.bestsellers_price span::after {
    display: block;
    position: absolute;
    left: -2px;
    top: 6px;
    width: calc(100% + 4px);
    height: 1px;
    background: #8d8d8d;
    z-index: 1;
    content: '';
}

.bestsellers_fav {
    display: none;
    position: absolute;
    top: 30px;
    right: 29px;
}

.bestsellers_fav.active {
    display: block;
}

.bestsellers_fav i {
    font-size: 13px;
    color: #df3b3b;
}

.bestsellers_marks {
    position: absolute;
    left: 18px;
    top: 18px;
}

.bestsellers_mark {
    display: none;
    width: 36px;
    height: 36px;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
}

.bestsellers_discount {
    background: #df3b3b;
}

.bestsellers_item.discount .bestsellers_discount,
.bestsellers_item.is_new .bestsellers_new {
    display: block;
}

.bestsellers_new {
    background: #0e8ce4;
}

.bestsellers_slider .slick-dots {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -5px;
}

.bestsellers_slider .slick-dots li {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    content: '';
    background: #e8e8e8;
    margin-right: 20px;
    cursor: pointer;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.bestsellers_slider .slick-dots li:hover {
    background: #0e8ce4;
}

.bestsellers_slider .slick-dots li.slick-active {
    background: #0e8ce4;
}

.bestsellers_slider .slick-dots li:last-child {
    margin-right: 0;
}

.bestsellers_slider .slick-dots li button {
    display: none;
}

/*********************************
11. Adverts
*********************************/

.adverts {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.advert {
    width: 100%;
    height: 180px;
    border: solid 1px #e8e8e8;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.advert_content {
    padding-left: 30px;
}

.advert_subtitle {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 26px;
}

.advert_title a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.advert_title a:hover {
    color: #0e8ce4;
}

.advert_title_2 a {
    font-size: 18px;
    font-weight: 500;
    color: #0e8ce4;
}

.advert_title_2 a:hover {
    opacity: 0.8;
}

.advert_text {
    color: #828282;
    margin-top: 10px;
}

.advert_image {
    width: 178px;
    height: 100%;
}

.advert_image img {
    display: block;
    max-width: 100%;
}

/*********************************
12. Trends
*********************************/

.trends {
    padding-top: 80px;
    padding-bottom: 80px;
}

.trends_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(203, 225, 238, 0.3);
}

.trends_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.trends_container {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-right: 40px;
}

.trends_title {
    padding-right: 50px;
}

.trends_text {
    margin-top: 17px;
}

.trends_text p:last-child {
    margin-bottom: 0;
}

.trends_slider_nav {
    margin-top: 27px;
}

.trends_nav {
    display: inline-block;
    width: 36px;
    height: 36px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-right: 16px;
}

.trends_nav:last-child {
    margin-right: 0;
}

.trends_nav i {
    line-height: 36px;
    color: #e5e5e5;
    font-size: 18px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trends_nav:hover i {
    color: #474747;
}

.trends_item {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
}

.trends_image {
    width: 100%;
    height: 212px;
}

.trends_image img {
    width: auto !important;
    max-width: 100% !important;
}

.trends_category a {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
}

.trends_category a:hover {
    color: #0e8ce4;
}

.trends_content {
    margin-top: 24px;
}

.trends_name {
    float: left;
}

.trends_name a {
    font-size: 16px;
    color: #000000;
}

.trends_name a:hover {
    color: #0e8ce4;
}

.trends_price {
    font-size: 16px;
    font-weight: 500;
    float: right;
}

.trends_fav {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    cursor: pointer;
}

.trends_fav.active {
    visibility: visible;
    opacity: 1;
}

.trends_fav:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.trends_item:hover .trends_fav {
    visibility: visible;
    opacity: 1;
    top: 18px;
}

.trends_fav i {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #cccccc;
    line-height: 36px;
    pointer-events: none;
    z-index: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.trends_fav.active i {
    color: red;
}

.trends_item:hover .trends_fav {
    visibility: visible;
    opacity: 1;
}

.trends_marks {
    position: absolute;
    left: 18px;
    top: 18px;
}

.trends_mark {
    display: none;
    width: 36px;
    height: 36px;
    font-size: 10px;
    font-weight: 500;
    color: #FFFFFF;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
}

.trends_discount {
    background: #df3b3b;
}

.trends_item.discount .trends_discount,
.trends_item.is_new .trends_new {
    display: block;
}

.trends_new {
    background: #0e8ce4;
}

/*********************************
13. Latest Reviews
*********************************/

.reviews {
    padding-top: 96px;
    padding-bottom: 125px;
}

.reviews_title_container {
    border-bottom: solid 1px #dadada;
}

.reviews_title {
    font-weight: 500;
    margin-bottom: 14px;
}

.reviews_all {
    position: absolute;
    right: 0;
    bottom: 14px;
}

.reviews_all a {
    font-size: 10px;
    color: #0e8ce4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.reviews_all a:hover {
    opacity: 0.8;
}

.reviews_slider_container {
    padding-top: 37px;
}

.review {
    width: 100%;
}

.review_image {
    width: 115px;
    height: 115px;
}

.review_image img {
    max-width: 100%;
}

.review_content {
    padding-left: 30px;
    margin-top: -4px;
}

.review_name {
    font-size: 16px;
    font-weight: 500;
}

.review_rating_container {
    margin-top: 1px;
}

.review_rating {
    display: inline-block;
}

.review_rating i::before {
    font-size: 13px;
    margin-right: 8px;
}

.review_time {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}

.review_text {
    margin-top: 12px;
}

.review_text p:last-child {
    margin-bottom: 0;
}

.reviews_dots {
    position: absolute;
    bottom: -69px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
}

.reviews_dots .owl-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #e8e8e8;
    border-radius: 50%;
    margin-right: 16px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.reviews_dots .owl-dot:last-child {
    margin-right: 0;
}

.reviews_dots .owl-dot.active {
    background: #0e8ce4;
    box-shadow: none;
}

/*********************************
14. Recently Viewed
*********************************/

.viewed {
    padding-top: 51px;
    padding-bottom: 60px;
    background: #eff6fa;
}

.viewed_title_container {
    border-bottom: solid 1px #dadada;
}

.viewed_title {
    margin-bottom: 14px;
}

.viewed_nav_container {
    position: absolute;
    right: -5px;
    bottom: 14px;
}

.viewed_nav {
    display: inline-block;
    cursor: pointer;
}

.viewed_nav i {
    color: #dadada;
    font-size: 18px;
    padding: 5px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.viewed_nav:hover i {
    color: #606264;
}

.viewed_prev {
    margin-right: 15px;
}

.viewed_slider_container {
    padding-top: 50px;
}

.viewed_item {
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 15px;
    padding-right: 15px;
}

.viewed_image {
    width: 115px;
    height: 115px;
}

.viewed_image img {
    display: block;
    max-width: 100%;
}

.viewed_content {
    width: 100%;
    margin-top: 25px;
}

.viewed_price {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.viewed_item.discount .viewed_price {
    color: #df3b3b;
}

.viewed_price span {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 8px;
}

.viewed_price span::after {
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: 1px;
    background: #8d8d8d;
    content: '';
}

.viewed_name {
    margin-top: 3px;
}

.viewed_name a {
    font-size: 14px;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.viewed_name a:hover {
    color: #0e8ce4;
}

.item_marks {
    position: absolute;
    top: 18px;
    left: 18px;
}

.item_mark {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
}

.item_discount {
    background: #df3b3b;
    margin-right: 5px;
}

.item_new {
    background: #0e8ce4;
}

.viewed_item.discount .item_discount {
    display: inline-block;
}

.viewed_item.is_new .item_new {
    display: inline-block;
}

/*********************************
15. Brands
*********************************/

.brands {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.brands_slider_container {
    height: 130px;
    border: solid 1px #e8e8e8;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 97px;
    padding-right: 97px;
}

.brands_slider {
    height: 100%;
}

.brands_item {
    height: 100%;
}

.brands_item img {
    max-width: 100%;
}

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer;
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.brands_nav:hover i {
    color: #676767;
}

.brands_prev {
    left: 40px;
}

.brands_next {
    right: 40px;
}

/*********************************
16.1 Blog
*********************************/

.single_post {
    padding-top: 22px;
    padding-bottom: 22px;
}

.single_post_title {
    font-size: 30px;
    font-weight: 500;
}

.single_post_text {
    margin-top: 33px;
}

.single_post_text p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    line-height: 2;
}

.single_post_text p:not(:first-of-type) {
    margin-top: 12px;
}

.single_post_text ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 14px;
    line-height: 20px;
}

.single_post_text ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 20px;
    background: url("../image/dot.png") 0 7px no-repeat;
    background-size: 6px auto;
}

.single_post_quote {
    margin-top: 43px;
    border: solid 1px #e8e8e8;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    padding: 35px 60px 40px;
}

.quote_image {

}

.quote_text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 28px;
    line-height: 1.875
}

.quote_name {
    font-size: 16px;
    font-weight: 500;
    margin-top: 23px;
}

/*********************************
16.2 Newsletter
*********************************/

.newsletter {
    width: 100%;
    background: #fafafa;
    padding-top: 60px;
    padding-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter_container {
    width: 100%;
}

.newsletter_title_container {
    width: 40%;
    padding-left: 95px;
}

.newsletter_icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.newsletter_title {
    font-size: 18px;
    color: #000000;
}

.newsletter_text p:last-child {
    margin-bottom: 0;
}

.newsletter_icon img {
    max-width: 100%;
}

.newsletter_content {
    width: 60%;
}

.newsletter_form {
    position: relative;
    width: 569px;
    float: left;
}

.newsletter_input {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    padding-left: 25px;
    font-size: 16px;
    outline: none;
    color: #0e8ce4;
}

.newsletter_input:focus {
    border: solid 1px rgba(14, 140, 228, 0.3);
    box-shadow: 0 1px 5px rgba(14, 140, 228, 0.3);
}

.newsletter_input::-webkit-input-placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
}

.newsletter_input:-moz-placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
}

.newsletter_input::-moz-placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
}

.newsletter_input:-ms-input-placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
}

.newsletter_input::placeholder {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.3);
}

.newsletter_button {
    position: absolute;
    top: 0;
    right: 0;
    width: 153px;
    height: 50px;
    background: #0e8ce4;
    color: #FFFFFF;
    line-height: 50px;
    font-size: 18px;
    border: none;
    outline: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}

.newsletter_button:hover {
    opacity: 0.8;
}

.newsletter_unsubscribe_link {
    float: right;
    text-align: right;
    height: 50px;
}

.newsletter_unsubscribe_link a {
    font-size: 10px;
    color: #0e8ce4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 50px;
}

.newsletter_unsubscribe_link a:hover {
    color: #0d82d3;
}

/*********************************
17. Footer
*********************************/

.footer {
    padding-top: 52px;
    padding-bottom: 40px;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.1);
}

.footer .logo_container {
    height: auto;
    margin-bottom: 18px;
    margin-top: -10px;
}

.footer .logo {
    top: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.footer .logo a {
    color: #000000;
}

.footer_title {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

.footer_phone {
    font-size: 18px;
    font-weight: 500;
    color: #0e8ce4;
    margin-top: 13px;
}

.footer_contact_text {
    margin-top: 10px;
}

.footer_contact_text p {
    margin-bottom: 0;
}

.footer_social {
    margin-top: 27px;
}

.footer_social ul li {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #fafafa;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    margin-right: 16px;
    text-align: center;
}

.footer_social ul li i {
    color: #000000;
    line-height: 30px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_social ul li:hover i {
    color: #0e8ce4;
}

.footer_subtitle {
    font-size: 12px;
    color: #000000;
}

.footer_column ul:first-of-type {
    margin-top: 21px;
}

.footer_column ul {
    margin-top: 7px;
}

.footer_list li {
    margin-bottom: 6px;
}

.footer_list li a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.footer_list li a:hover {
    color: #0e8ce4;
}

.footer_list_2 {
    margin-top: 42px !important;
}

.copyright {
    width: 100%;
    background: #fafafa;
}

.copyright_container {
    width: 100%;
    height: 56px;
}

.copyright_content {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.copyright_content span {
    font-weight: 500;
}

.logos {

}

.logos_list li {
    display: inline-block;
    margin-right: 16px;
}

.logos_list li:last-child {
    margin-right: 0;
}

/*********************************
5. Shop
*********************************/

.shop {
    background: #FFFFFF;
    padding: 20px 0;
}

.shop_content {
    width: 100%;
}

.shop_bar {
    border-bottom: solid 1px #dadada;
    padding-bottom: 2px;
    z-index: 1;
}

.shop_product_count {
    font-size: 14px;
    font-weight: 500;
    float: left;
}

.shop_product_count span {
    color: #0e8ce4;
}

.shop_sorting {
    float: right;
}

.shop_sorting span {
    display: inline-block;
    font-weight: 500;
}

.shop_sorting > ul {
    display: inline-block;
    position: relative;
    margin-left: 6px;
}

.shop_sorting ul li {
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.shop_sorting ul li:hover {
    color: rgba(0, 0, 0, 0.8);
}

.shop_sorting ul li i {
    display: inline-block;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 4px;
    vertical-align: middle;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

.shop_sorting ul li ul {
    display: block;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    text-align: right;
    background: #FFFFFF;
    width: auto;
    padding-top: 15px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.shop_sorting ul li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.shop_sorting ul li ul li {
    white-space: nowrap;
    padding-right: 13px;
    padding-left: 20px;
    margin-bottom: 5px;
    border-bottom: solid 1px #f2f2f2;
    padding-top: 5px;
    padding-bottom: 9px;
}

.shop_sorting ul li ul li:last-child {
    border-bottom: none;
}

/*********************************
5.1 Shop Products
*********************************/

.product_grid {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
    width: calc(100% + 40px);
}

.product_grid_border {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: #FFFFFF;
    z-index: 1;
}

.product_item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 20%;
    background: #FFFFFF;
    cursor: pointer;
    padding-top: 40px;
    padding-bottom: 24px;
    text-align: center;
}

.product_border {
    display: block;
    position: absolute;
    top: 52px;
    right: 1px;
    width: 1px;
    height: calc(100% - 71px);
    background: #e5e5e5;
}

.product_image {
    width: 100%;
    height: 115px;
}

.product_image img {
    display: block;
    position: relative;
    max-width: 100%;
}

.product_content {
    width: 100%;
}

.product_price {
    font-size: 16px;
    font-weight: 400;
    margin-top: 25px;
}

.product_item.discount {
    color: #df3b3b;
}
/*
.product_price span {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 10px;
}

.product_price span::after {
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: 1px;
    background: #8d8d8d;
    content: '';
}*/

.product_name h1 {
    font-size: 30px;
}

.product_name div {
    width: 100%;
}

.product_name div a {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_name div a:hover {
    color: #0e8ce4;
}

.product_fav {
    position: absolute;
    top: 33px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav i {
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #cccccc;
    line-height: 36px;
    pointer-events: none;
    z-index: 0;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav.active i {
    color: red;
}

.product_item:hover .product_fav {
    visibility: visible;
    opacity: 1;
}

.product_marks {
    display: block;
    position: absolute;
    top: 33px;
    left: 24px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    text-align: center;
    line-height: 36px;
    font-size: 12px;
}

.product_new {
    display: none;
    background: #0e8ce4;
    visibility: hidden;
    opacity: 0;
}

.product_discount {
    display: none;
    background: #df3b3b;
    visibility: hidden;
    opacity: 0;
}

.product_item.is_new .product_new,
.product_item.discount .product_discount {
    display: inline-block;
    visibility: visible;
    opacity: 1;
}

.product-description {
    margin: 40px 0;
}
.product-description #myTabContent {
    padding: 20px 0;
}

/*********************************
5.2 Shop Page Navigation
*********************************/

.shop_page_nav {
    width: 100%;
    height: 50px;
    margin-top: 80px;
}

.page_prev,
.page_next {
    width: 50px;
    height: 100%;
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    cursor: pointer;
}

.page_prev i,
.page_next i {
    font-size: 12px;
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.page_prev:hover i,
.page_next:hover i {
    color: #636363;
}

.page_nav {
    border: solid 1px #e5e5e5;
    border-radius: 5px;
    margin-left: 15px;
    margin-right: 15px;
}

.page_nav li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-right: solid 1px #e5e5e5;
    cursor: pointer;
}

.page_nav li a {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.page_nav li:hover a {
    color: #0e8ce4;
}

.page_nav li:last-child {
    border-right: none;
}

/*********************************
6. Shop Sidebar
*********************************/

.shop_sidebar {
    width: 100%;
    -webkit-transform: translateX(-37px);
    -moz-transform: translateX(-37px);
    -ms-transform: translateX(-37px);
    -o-transform: translateX(-37px);
    transform: translateX(-37px);
}

.sidebar_title {
    font-size: 18px;
    font-weight: 500;
}

.sidebar_categories {
    margin-top: 37px;
}

.sidebar_categories li {
    margin-bottom: 7px;
}

.sidebar_categories li a {
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.sidebar_categories li a:hover {
    color: #0e8ce4;
}

.filter_by_section {
    margin-top: 45px;
}

.filter_price {
    margin-top: 28px;
}

.slider_range {
    max-width: 195px;
}

.filter_price p {
    display: inline-block;
    font-size: 12px;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

.sidebar_subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-top: 25px;
}

.filter_price p input {
    font-size: 12px;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.5)
}

.filters__category p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.filters__category label input[type=checkbox] {
    margin-right: 6px;
}

div.multi_filter,
div.solo-filter {
    margin-bottom: 8px;
}

div.multi_filter strong,
div.solo-filter strong {
    font-size: 14px;
    font-weight: 500;
}

div.multi_filter > div[data-filter-preset] {
    margin-bottom: 8px;
}

div.multi_filter > div.checkbox {
    padding-left: 12px;
    color: rgba(0, 0, 0, 0.5);
}

div.multi_filter > div.checkbox:hover {
    color: #0e8ce4;
}

.amount {
    margin-top: 18px;
}

.color_subtitle {
    margin-top: 27px;
}

.colors_list {
    margin-top: 14px;
}

.color {
    display: inline-block;
    margin-right: 6px;
}

.color a {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.brands_subtitle {
    margin-top: 27px;
}

.brands_list {
    margin-top: 12px;
}

.brand {
    margin-bottom: 7px;
}

.brand a {
    color: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.brand a:hover {
    color: #0e8ce4;
}

/*********************************
4. Home
*********************************/

.home {
    width: 100%;
    height: 140px;
    background: transparent;
}

.home_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.home_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cde4f1;
    background: linear-gradient(#FFFFFF, #cde4f1);
    opacity: 0.9;
}

.home_content {
    width: 100%;
    height: 100%;
}

.home_title {
    font-size: 36px;
}

/* Extended */
.fade.in {
    opacity: 1;
}

.hidden {
    display: none !important;
}

/* Product */
.category__main-image {
    text-align: center;
}

.product__item {
    min-height: 200px;
    margin-top: 30px
}

.product__item h4 {
    font-size: 16px
}

.product__item .thumbnail {
    margin-bottom: 5px;
    height: auto !important;
    max-width: 190px;
    max-height: 190px;
    text-align: center;
}

.product__item .thumbnail img {
    max-height: 190px;
}

.product___articul {
    text-align: center;
    margin-top: 0 !important
}

.product___articul .label {
    font-size: 12px
}

.product__description {
    min-height: 75px
}

.product__description-short {
    line-height: 1.5
}

.product__pricetext {
    line-height: 40px;
    text-align: center
}

.product__flag {
    margin-top: 15px
}

.product__flag:first-child {
    margin-top: 10px
}

.product__flag .label {
    font-size: 15px !important
}

.product__buy {
    display: flex;
    justify-content: center
}

.product__buy-container {
    width: 140px !important;
    text-align: center
}

@media (max-width: 768px) {
    .product__flag {
        display: flex;
        justify-content: center
    }
}

.category__main-image {
    text-align: center
}

.product__main-image {
    max-width: 100%
}

.product__thumbs {
    margin-top: 5px
}

.product__articul-sku {
    font-size: 20px
}

.product__price {
    margin-top: 30px
}

.product__price-text {
    font-size: 18px
}

.product__price-value {
    font-weight: 900;
    white-space: nowrap
}

.product__tabbuttons {
    margin-top: 20px;
    margin-bottom: 20px
}

@media (min-width: 768px) {
    .product__related {
        height: 285px;
        overflow: hidden
    }

    .product__related > img {
        max-height: 200px
    }
}

.product__system {
    margin-top: 30px
}

.product__system-info {
    font-size: 16px
}

.product__sale {
    margin-top: 10px;
    margin-bottom: 10px
}

.cart-popup__product-img .product__main-image {
    max-width: 100px
}

.product__pricetext {
    font-size: 16px;
    color: #000;
}

.product__pricetext b {
    font-weight: 500;
}

.product__pricetext span {
    font-size: 24px;
}

.product__description .dropdown-menu > li > a {
    max-width: 400px !important;
    white-space: normal !important
}

.product__description .dropdown-menu > li {
    margin-bottom: 5px
}

.product__description .dropdown-menu > li:last-child {
    margin-bottom: 0
}

.product__sale {
    margin-top: 30px
}

.product-info-link {
    text-decoration: none;
    border-bottom: dashed 1px #337ab7;
    margin-right: 12px;
    font-size: 13px
}

.product-info-link:focus, .product-info-link:hover {
    text-decoration: none
}

.product-info-link:last-child {
    margin: 0
}

div.product__system {
    margin-top: 0
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border .2s ease-in-out;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-right: 0;
    padding-left: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell
}

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.form-control {
    height: 38px !important;
}

.form-control {
    display: block;
    width: 100%;
    height: 38px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.breadcrumb li::before {
    content: '/';
    padding: 0 6px;
}

.breadcrumb li:first-child::before {
    content: '';
    padding: 0
}

.shop_sorting.in_stock {
    margin-right: 30px;
    font-weight: 500;
    cursor: pointer;
}

.shop_sorting.in_stock:hover {
    color: #0e8ce4;
}

.shop_sorting.in_stock label {
    cursor: pointer;
}

.shop_sorting.in_stock #in_stock {
    margin-right: 8px;
}

.h4-category {
    font-size: 18px;
    font-weight: 500;
}

.product__description-short {
    color: rgba(0, 0, 0, .8);
}

#register-container .authorize-button {
    background-color: #4e9bd2;
    color: #fff;
    padding: 5px 10px 8px 10px;
    margin-bottom: -10px;
    margin-left: 10px;
    border-radius: 4px
}

#register-container .personal_data input {
    display: inline-block
}

#register-container .personal_data label {
    display: inline-block;
    padding: 2px;
    font-style: italic;
    cursor: pointer
}

#register-container .personal_data .personal_data_text {
    display: block;
    width: 500px;
    position: absolute;
    background: #fff6d3;
    padding: 5px 10px;
    font-size: 85%;
    line-height: 1.4
}

#register-container .required {
    margin-left: -15px;
    color: red;
    padding: 0 5px 0 0;
    float: left;
    display: inline-block;
    width: 5px
}

#register-container .input_block {
    margin: 5px 0 10px 5px;
    float: none !important;
    width: 100%;
    display:table;
}

#register-container .input_block label {
    display: block;
    width: 100px;
    padding: 5px;
    float: left;
    cursor: pointer
}

#register-container .input_block input, #register-container .input_block select {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 200px;
    float: left;
    box-sizing: content-box
}

#register-container .input_block label.right {
    width: 500px;
    margin-top: -3px
}

#register-container .input_block input[type=checkbox], #register-container .input_block input[type=radio] {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 20px;
    float: left
}

#register-container .input_block .additional {
    margin-left: 10px;
    display: block
}

#register-container .input_block .additional label {
    margin-left: 10px
}

#register-container .input_block .additional input {
    width: 50px
}

#register-container .input_block .additional_info {
    margin-left: 10px;
    display: block
}

#register-container .input_block .additional_info label {
    width: 90px;
    margin-left: 10px
}

#register-container .input_block .additional_info input {
    width: 200px
}

#register-container .input_block #phone_main_country {
    width: 20px
}

#register-container .input_block #phone_main_city {
    width: 50px
}

#register-container .input_block #phone_main_number {
    width: 118px
}

#register-container .input_block_3 {
    margin: 5px 0 10px 5px
}

#register-container .input_block_3 label {
    display: block;
    width: 90px;
    float: left;
    cursor: pointer
}

#register-container .input_block_3 label:first-of-type {
    width: 100px
}

#register-container .input_block_3 label:nth-of-type(2) {
    width: 80px
}

#register-container .input_block_3 input, #register-container .input_block_3 select {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 50px;
    float: left;
    margin-right: 14px
}

#register-container .input_block_3 label.right {
    width: 500px;
    margin-top: -3px
}

#register-container .input_block_2 {
    margin: 5px 0 10px 5px
}

#register-container .input_block_2 label {
    display: block;
    width: 90px;
    float: left;
    cursor: pointer
}

#register-container .input_block_2 label:first-of-type {
    width: 100px
}

#register-container .input_block_2 input, #register-container .input_block_2 select {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 200px;
    float: left;
    margin-right: 14px
}

#register-container .input_block_2 label.right {
    width: 500px;
    margin-top: -3px
}

#register-container .area_block {
    margin-top: 15px
}

#register-container .area_block label {
    display: block;
    cursor: pointer
}

#register-container .area_block textarea {
    display: block;
    width: 620px;
    margin-bottom: 20px;
    height: 60px
}

#register-container .address_block {
    margin-top: 20px
}

#register-container .red_border {
    border: 1px solid red !important
}

#login-container .button_container, #register-container .button_container {
    width: 300px;
    height: 50px;
    text-align: center
}

#login-container input, #register-container input {
    border: 1px solid #bbb;
    border-radius: 3px;
    padding: 5px;
    outline: 0;
    transition: background .3s
}

#login-container input:active, #login-container input:focus, #register-container input:active, #register-container input:focus {
    background: rgba(249, 255, 171, .63)
}

#login-container .back_to_login, #login-container .forget_notice, #register-container .back_to_login, #register-container .forget_notice {
    text-align: center
}

#login-container button, #register-container button {
    border: 1px solid #e8e8e8;
    color: #fff;
    border-radius: 3px;
    padding: 6px 15px;
    background: #4e9bd2;
    cursor: pointer;
    margin-bottom: 10px
}

#login-container button:hover, #register-container button:hover {
    text-decoration: none;
    background: #66a9d8
}

#login-container button:after, #register-container button:after {
    clear: both;
    content: '.';
    display: block;
    visibility: hidden;
    height: 1px
}

.checkout_cart .cart-info {
    border: 1px solid #000
}

.checkout_cart .cart-info thead {
    font-weight: 700
}

.checkout_cart .cart-info td {
    padding: 5px;
    border: 1px solid #eaeaea
}

.checkout_cart .cart-info .image {
    width: 50px
}

.checkout_cart .cart-info .name {
    width: 280px
}

.checkout_cart .cart-info .name .service_parent {
    font-size: 9pt;
    color: grey
}

.checkout_cart .cart-info .name .service_parent a {
    color: grey
}

.checkout_cart .cart-info .model {
    width: 65px
}

.checkout_cart .cart-info .quantity {
    text-align: center;
    width: 80px
}

.checkout_cart .cart-info .quantity > input {
    margin-bottom: 5px;
    width: 60px
}

.checkout_cart .cart-info .quantity img {
    cursor: pointer
}

.checkout_cart .cart-info .price_one {
    width: 80px
}

.checkout_cart .cart-info .price_sale {
    width: 80px
}

.checkout_cart .cart-info .price_sale_total {
    width: 80px
}

.checkout_cart .cart-info .totals_name {
    text-align: right
}

.checkout_cart .cart-info .totals_name, .checkout_cart .cart-info .totals_price {
    font-weight: 700
}

.checkout_cart .buttons-cart {
    width: 778px
}

.checkout_cart .buttons-cart .continue {
    display: block;
    float: left;
    margin-top: 37px
}

.checkout_cart .buttons-cart .continue a {
    border: 1px solid #e8e8e8;
    color: #000;
    border-radius: 3px;
    padding: 7px 10px;
    background: #f4f4f4
}

.checkout_cart .buttons-cart .continue a:hover {
    border: 1px solid #dedede;
    text-decoration: none;
    background: #eee
}

.checkout_cart .buttons-cart .continue:after {
    content: ".";
    height: 0;
    visibility: hidden;
    clear: both;
    display: block
}

.checkout_cart .buttons-cart .continue .sign {
    padding-right: 5px;
    font-size: 10pt;
    font-family: Tahoma;
    color: #4e9bd2;
    font-weight: 700
}

.checkout_cart .buttons-cart .to_checkout {
    display: block;
    margin-top: 37px;
    float: right
}

.checkout_cart .buttons-cart .to_checkout a {
    border: 1px solid #e8e8e8;
    color: #fff;
    border-radius: 3px;
    padding: 7px 10px;
    margin-top: -20px;
    background: #4e9bd2
}

.checkout_cart .buttons-cart .to_checkout a:hover {
    text-decoration: none;
    background: #66a9d8
}

.checkout_cart .buttons-cart .to_checkout:after {
    content: ".";
    height: 0;
    visibility: hidden;
    clear: both;
    display: block
}

.checkout_cart .buttons-cart .to_checkout .sign {
    padding-left: 5px;
    font-size: 10pt;
    font-family: Tahoma;
    color: #fff;
    font-weight: 700
}

.checkout_checkout .warn {
    color: red;
    float: left;
    display: block;
    margin: 25px 0 0 10px
}

.checkout_checkout .checkout_form {
    padding-top: 10px
}

.checkout_checkout table {
    width: 758px;
    min-height: 20px;
    border: 1px solid #eaeaea
}

.checkout_checkout table td, .checkout_checkout table th {
    border: 1px solid #eaeaea;
    padding: 4px 5px
}

.checkout_checkout h2 {
    margin: 10px 0 15px 0
}

.checkout_checkout button.continue {
    float: left;
    border: 1px solid #e8e8e8;
    color: #fff;
    border-radius: 3px;
    padding: 6px 15px;
    background: #4e9bd2;
    cursor: pointer;
    margin: 20px 0 10px 20px
}

.checkout_checkout button.continue:hover {
    text-decoration: none;
    background: #66a9d8
}

.checkout_checkout .step_title {
    font-size: 9pt
}

.checkout_checkout .step_body {
    padding: 5px 25px;
    border: none;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea
}

.checkout_checkout .step_edit {
    float: right;
    margin: 0 10px 0 0;
    color: #08568c;
    cursor: pointer
}

.checkout_checkout .step_edit:hover {
    text-decoration: underline
}

.checkout_checkout .body.checkout_step.confirm {
    background: #f5f5f5
}

.checkout_checkout .full_name {
    font-weight: 700
}

.checkout_checkout #logout {
    color: #08568c;
    cursor: pointer;
    margin-left: 10px;
    text-decoration: underline
}

.checkout_checkout #logout:hover {
    text-decoration: none
}

.checkout_checkout #delivery_info_block {
    margin: 10px 25px
}

.checkout_checkout #delivery_info_block .delivery_info {
    font-weight: 700
}

.checkout_checkout .entry_block {
    margin-left: 15px
}

.checkout_checkout .entry_block_body {
    margin-left: 10px
}

.checkout_checkout #dropdown_address {
    padding: 5px;
    border: 1px solid #4e9bd2;
    background: #fff;
    width: 300px;
    min-height: 20px;
    box-shadow: 0 5px 5px #bbb
}

.checkout_checkout #dropdown_address .dropdown_item {
    display: block;
    width: 100%;
    padding: 3px 0;
    cursor: pointer
}

.checkout_checkout #dropdown_address .dropdown_item:hover {
    background: #eaeaea
}

.checkout_checkout #dropdown_address .dropdown_item .dropdown-item-secondary {
    color: #aaa
}

.checkout_checkout .shiping_info {
    margin: 0 0 0 15px
}

.checkout_checkout .other_city {
    display: inline-block;
    height: 22px;
    width: 150px
}

.checkout_checkout #entry_city {
    margin-right: 40px
}

.checkout_checkout .entry_block_title {
    font-weight: 700;
    margin: 15px 0;
    font-size: 12pt
}

.checkout_checkout .shiping_address {
    margin-left: 15px
}

.checkout_checkout .entry_block_body {
    margin-left: 15px
}

.checkout_checkout .entry_block_body .delivery_pos {
    margin: 10px 0
}

.checkout_checkout .entry_block_body .delivery_pos:after {
    clear: both;
    display: block;
    height: 1px;
    visibility: hidden;
    content: '.'
}

.checkout_checkout .entry_block_body .delivery_pos > * {
    float: left
}

.checkout_checkout .entry_block_body .delivery_pos label {
    margin-left: 5px;
    margin-right: 50px;
    display: inline-block;
    width: 170px;
    border-bottom: 1px dashed grey
}

.checkout_checkout .entry_block_body .delivery_pos label img {
    display: inline-block;
    width: 16px;
    margin: 0 3px
}

.checkout_checkout .entry_block_body .delivery_pos .show_pick_address_info {
    font-size: 9pt;
    color: #bbb
}

.checkout_checkout .entry_block_body .delivery_pos .delivery_cost {
    font-weight: 700;
    display: block;
    width: 90px;
    margin-left: 5px
}

.checkout_checkout .entry_block_body .delivery_pos .delivery_time {
    display: block;
    width: 160px;
    border-bottom: dashed 1px #bbb
}

.checkout_checkout .entry_block_body .delivery_pos .delivery_logo {
    display: block;
    height: 20px;
    margin-left: 25px
}

.checkout_checkout .entry_block_body .address_line {
    margin: 5px 0
}

.checkout_checkout .entry_block_body .address_line label {
    display: inline-block;
    width: 125px;
    text-align: right;
    margin-right: 37px
}

.checkout_checkout .entry_block_body .address_line input {
    width: 150px
}

.checkout_checkout .entry_block_body .address_line input#address_street {
    width: 310px
}

.checkout_checkout .entry_block_body .pickup_title, .checkout_checkout .entry_block_body .shiping_title {
    font-weight: 700;
    margin: 25px 0 10px 0
}

.checkout_checkout .pick_address_info {
    position: absolute;
    width: 200px;
    background: #fff;
    border: 1px solid #000
}

.checkout_checkout .pick_address_info td {
    border: none;
    border-top: 1px solid #eaeaea;
    padding: 2px
}

.checkout_checkout .pick_address_info tr:first-child td {
    border-top: #000
}

.checkout_checkout .commment_block {
    margin: 20px 0 0 0
}

.checkout_checkout .commment_block label {
    display: block
}

.checkout_checkout .commment_block textarea {
    display: block;
    width: 467px;
    height: 80px
}

.checkout_checkout #check_all td, .checkout_checkout #check_all th {
    padding: 5px 15px
}

.checkout_checkout #qiwi_phone td {
    padding: 20px
}

.checkout_checkout #qiwi_phone td input {
    padding: 3px
}

.modalcart {
    top: 50%;
    left: 50%;
    margin: -300px 0 0 -200px;
    width: 400px;
    height: 200px;
    display: none;
    position: fixed;
    z-index: 1005;
    background: #fff;
    font-size: 13px;
    border: 1px solid #000;
    text-align: center
}

.modalcart__text {
    font-size: 14px;
    margin: 40px 0
}

.modalcart__button-btn {
    cursor: pointer;
    background-color: #4e9bd2;
    padding: 5px 20px;
    position: relative;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #4e9bd2;
    border-radius: 3px
}

.checkout-total__header {
    white-space: nowrap
}

#login-container {
    padding: 15px;
    border-radius: 5px;
    position: fixed
}

#login-container .close-login-container {
    background: #fff;
    border: 1px solid #aaa;
    color: #aaa;
    position: absolute;
    right: 7px;
    top: 7px;
    padding: 5px;
    box-sizing: border-box;
    display: block;
    height: 25px;
    width: 25px;
    border-radius: 45%;
    text-align: center;
    cursor: pointer
}

#login-container .left-register, #login-container .right-login {
    float: left;
    width: 300px;
    border: 1px solid #eaeaea;
    padding: 0 15px;
    height: 200px
}

#login-container .input_block {
    margin: 10px 0
}

#login-container .input_block label {
    width: 65px;
    display: block;
    float: left;
    padding: 5px
}

#login-container .input_block input {
    float: left;
    display: block;
    width: 200px
}

#login-container .forgotten_notice {
    width: 100%;
    height: 30px
}

#login-container .forgotten_notice .warn {
    color: red;
    float: none;
    margin: 0;
    padding: 0
}

#login-container .fakt_address_input {
    margin-bottom: 20px
}

#login-container .reg_description {
    line-height: 1.5
}

#register-container .authorize-button {
    background-color: #4e9bd2;
    color: #fff;
    padding: 5px 10px 8px 10px;
    margin-bottom: -10px;
    margin-left: 10px;
    border-radius: 4px
}

#register-container .personal_data input {
    display: inline-block
}

#register-container .personal_data label {
    display: inline-block;
    padding: 2px;
    font-style: italic;
    cursor: pointer
}

#register-container .personal_data .personal_data_text {
    display: block;
    width: 500px;
    position: absolute;
    background: #fff6d3;
    padding: 5px 10px;
    font-size: 85%;
    line-height: 1.4
}

#register-container .required {
    margin-left: -15px;
    color: red;
    padding: 0 5px 0 0;
    float: left;
    display: inline-block;
    width: 5px
}

#register-container .input_block {
    margin: 5px 0 10px 5px
}

#register-container .input_block label {
    display: block;
    width: 100px;
    padding: 5px;
    float: left;
    cursor: pointer
}

#register-container .input_block input, #register-container .input_block select {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 200px;
    float: left;
    box-sizing: content-box
}

#register-container .input_block label.right {
    width: 500px;
    margin-top: -3px
}

#register-container .input_block input[type=checkbox], #register-container .input_block input[type=radio] {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 20px;
    float: left
}

#register-container .input_block .additional {
    margin-left: 10px;
    display: block
}

#register-container .input_block .additional label {
    margin-left: 10px
}

#register-container .input_block .additional input {
    width: 50px
}

#register-container .input_block .additional_info {
    margin-left: 10px;
    display: block
}

#register-container .input_block .additional_info label {
    width: 90px;
    margin-left: 10px
}

#register-container .input_block .additional_info input {
    width: 200px
}

#register-container .input_block #phone_main_country {
    width: 20px
}

#register-container .input_block #phone_main_city {
    width: 50px
}

#register-container .input_block #phone_main_number {
    width: 118px
}

#register-container .input_block_3 {
    margin: 5px 0 10px 5px
}

#register-container .input_block_3 label {
    display: block;
    width: 90px;
    float: left;
    cursor: pointer
}

#register-container .input_block_3 label:first-of-type {
    width: 100px
}

#register-container .input_block_3 label:nth-of-type(2) {
    width: 80px
}

#register-container .input_block_3 input, #register-container .input_block_3 select {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 50px;
    float: left;
    margin-right: 14px
}

#register-container .input_block_3 label.right {
    width: 500px;
    margin-top: -3px
}

#register-container .input_block_2 {
    margin: 5px 0 10px 5px
}

#register-container .input_block_2 label {
    display: block;
    width: 90px;
    float: left;
    cursor: pointer
}

#register-container .input_block_2 label:first-of-type {
    width: 100px
}

#register-container .input_block_2 input, #register-container .input_block_2 select {
    border: 1px solid #eaeaea;
    display: block;
    padding: 2px;
    width: 200px;
    float: left;
    margin-right: 14px
}

#register-container .input_block_2 label.right {
    width: 500px;
    margin-top: -3px
}

#register-container .area_block {
    margin-top: 15px
}

#register-container .area_block label {
    display: block;
    cursor: pointer
}

#register-container .area_block textarea {
    display: block;
    width: 620px;
    margin-bottom: 20px;
    height: 60px
}

#register-container .address_block {
    margin-top: 20px
}

#register-container .red_border {
    border: 1px solid red !important
}

.nope_login {
    text-align: center;
    color: red
}

#login-container .button_container, #register-container .button_container {
    width: 300px;
    height: 50px;
    text-align: center
}

#login-container input, #register-container input {
    border: 1px solid #bbb;
    border-radius: 3px;
    padding: 5px;
    outline: 0;
    transition: background .3s
}

#login-container input:active, #login-container input:focus, #register-container input:active, #register-container input:focus {
    background: rgba(249, 255, 171, .63)
}

#login-container .back_to_login, #login-container .forget_notice, #register-container .back_to_login, #register-container .forget_notice {
    text-align: center
}

#login-container button, #register-container button {
    border: 1px solid #e8e8e8;
    color: #fff;
    border-radius: 3px;
    padding: 6px 15px;
    background: #4e9bd2;
    cursor: pointer;
    margin-bottom: 10px
}

#login-container button:hover, #register-container button:hover {
    text-decoration: none;
    background: #66a9d8
}

#login-container button:after, #register-container button:after {
     clear: both;
     content: '.';
     display: block;
     visibility: hidden;
     height: 1px
}

/* Table */
table.table {
    border-collapse: collapse;
}
table.table th,
table.table td {
    border: solid 1px #dee2e6;
}