/* theme */

* {
    box-sizing: border-box;
    margin: 0;
    font-family: Work Sans, sans-serif;
    color: rgb(35,35,35);
}
body, html {
    max-width: 3840px;
    margin: auto;
}
img, picture {
    display: inline-block;
    max-width: 100%;
    height: auto;
}
a {
    color: rgb(34,34,34);
    text-decoration: none;
}
footer, header, main, nav, section {
    width: 100%;
}
.text-center {
    text-align: center !important;
}
header::after, main::after, footer::after, .row::after, section {
    content: "";
    clear: both;
    display: block;
}
section {
    padding: 15px 0px;
}
ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
h1, h2 {
    font-size: 22px;
}
.active {
    color: rgb(125,185,45);
}
nav, main, footer {
    position: relative;
}
.container {
    margin: auto;
    max-width: 1200px;
    padding: 0px 5px;
}
[class*=col-] {
    float: left;
}
.col-m-1 {width: 8.33%}
.col-m-2 {width: 16.66%}
.col-m-3 {width: 25%}
.col-m-4 {width: 33.33%}
.col-m-5 {width: 41.66%}
.col-m-6 {width: 50%}
.col-m-7 {width: 58.33%}
.col-m-8 {width: 66.66%}
.col-m-9 {width: 75%}
.col-m-10 {width: 83.33%}
.col-m-11 {width: 91.66%}
.col-m-12 {width: 100%}
nav {
    width: 100%;
    background-color: rgb(245,245,245);
}
nav ol {
    list-style-type: none;
    max-width: 1200px;
    margin: auto;
    padding: 10px 5px;
}
nav ol li {
    display: inline-block;
}
nav ol li a {
    text-decoration: none;
    color: rgb(0,0,0);
}
nav ol li a span {
    font-size: 14px;
}
nav ol>li:not(:last-child):after {
    content: "/";
    margin: 0 6px;
    color: rgb(0,0,0);
}
header {
    position: fixed;
    z-index: 2;
}
header + main {
    padding-top: 82px;
}
#header-top {
    display: none;
    padding: 6px 0px;
    font-size: 14px;
}
#header-top-left, #header-top-right {
    display: inline-block;
}
#header-top-right {
    float: right;
}
#header-top-right a {
    margin: 0px 4px;
    display: inline-block;
}
#header-bottom {
    padding: 25px 0px;
    background-color: rgb(125,185,45);
}
#header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#search-header {
    display: none;
}
.user-action {
    display: none;
}
#user-panel a {
    padding: 0px 10px;
}
#user, #cart {
    display: inline-block;
}
#cart {
    position: relative;
    cursor: pointer;
}
#cart-count {
    position: absolute;
    top: -7px;
    left: 15px;
    font-size: 12px;
    line-height: 15px;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    text-align: center;
    color: rgb(0,0,0);
    background-color: rgb(250,250,250);
}
.cart-info {
    display: flex;
    justify-content: space-between;
}
.cart-text-info {
    font-size: 14px;
    font-weight: 300;
}
.cart-text-info-result {
    font-size: 14px;
    font-weight: 700;
}
.cart-info-detail {
    margin-top: 15px;
    display: block;
    padding: 11px 5px !important;
    text-align: center;
    color: rgb(0,0,0);
    font-size: 14px;
    border-radius: 3px;
    background-color: rgb(240,240,240);
    text-transform: uppercase;
    transition: background-color .3s, color .3s;
}
.cart-info-detail:hover {
    color: rgb(255,255,255);
    background-color: rgb(125,185,45);
}
#menu-button {
    padding: 2px;
    float: right;
}
#menu-button img {
    vertical-align: middle;
}
#menu {
    position: absolute;
    padding: 25px 30px 25px;
    top: 0px;
    width: 100%;
    height: 100vh;
    z-index: 3;
    background-color: rgb(255,255,255);
    transition: left .5s ease-in-out;
}
#menu .container {
    padding: 0px;
}
#menu.opened {
    left: 0px;
}
#menu.closed {
    left: -767px;
}
#menu-close {
    position: absolute;
    top: 25px;
    right: 10px;
    width: 30px;
    height: 30px;
    padding: 6px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgb(125,185,45);
    font-size: 18px;
}
#mobile-social-header {
    text-align: center;
}
#mobile-social-header a {
    margin: 10px 8px;
    display: inline-block;
}
#mobile-customer-support {
    padding: 20px 0px;
    display: flex;
    justify-content: center;
}
#mobile-customer-support picture {
    margin-right: 10px;
}
#mobile-customer-support a, #mobile-customer-support span {
    font-size: 15px;
}
#mobile-customer-support span {
    display: block;
    text-align: center;
}
#mobile-search-header {
    padding: 20px 0px;
}
#mobile-search-content {
    font-size: 12px;
    padding: 12px 10px 11px;
    height: 35px;
    float: left;
    width: 85%;
    margin: auto;
    display: inline-block;
    outline: none;
    border: 1px solid rgb(235,235,235);
    border-right: none;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
#mobile-search-button {
    text-align: center;
    width: 15%;
    float: left;
    border-left: none;
    height: 35px;
    background-color: rgb(125,185,45);
    border: 1px solid rgb(235,235,235);
    border-left: none;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}
#mobile-search-button picture img {
    vertical-align: middle;
}
#menu-list li a {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 8px;
    display: block;
    margin-bottom: 10px;
}
footer {
    border-top: 1px solid rgb(240,240,240);
}
#footer-top {
    padding: 10px 0px;
}
.footer-box {
    padding: 15px 0px;
}
.footer-box {
    text-align: center;
}
.footer-title {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(125,185,45);
    margin-bottom: 10px;
}
.footer-menu li a {
    display: block;
    font-size: 14px;
    line-height: 30px;
}
.customer-support {
    padding: 10px 0px;
}
.customer-support picture {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}
.customer-support-info {
    display: inline-block;
}
.customer-support a, .customer-support span {
    font-size: 15px;
}
.customer-support span {
    display: block;
}
#newsletter-text {
    display: block;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 20px;
}
#newsletter {
    position: relative;
    display: block;
    width: 100%;
}
#newsletter input {
    width: 100%;
    font-size: 14px;
    padding: 15px 15px 15px 20px;
    height: 44px;
    border: 1px solid rgb(230,230,230);
    outline: none;
    border-radius: 30px;
}
#newsletter button {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    outline: none;
    height: 44px;
    padding: 0px 15px;
    color: rgb(255,255,255);
    background-color: rgb(125,185,45);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.footer-imgs {
    margin-bottom: 20px
}
#copyright {
    padding: 8px 0px;
    color: rgb(255,255,255);
    background-color: rgb(125,185,45);
}
#copyright p {
    font-size: 12px;
    text-align: center;
    color: rgb(255,255,255);
}
.alert {
    width: 100%;
    padding: 5px 7px;
    font-size: 15px;
    background-color: rgb(245,65,55);
    color: rgb(255,255,255);
}
.alert.success {
    background-color: rgb(75,175,80);
}
.alert.warning {
    background-color: rgb(255,150,0);
}


/*
    <hakkimizda>
*/
#about-us {
    p {
        padding: 15px 0px;
        font-size: 14px;
        line-height: 28px;
        color: rgb(80,80,80);
    }
    .contact-box a, .contact-box span {
        display: inline-block;
        padding: 15px 0px;
        font-size: 14px;
    }
    .contact-box span {
        padding-right: 10px;
        font-weight: 500;
    }
    .contact-box a {
        color: rgb(120,120,120);
    }
    .contact-box picture {
        vertical-align: middle;
        margin-right: 3px;
    }
    .social-link {
        text-align: center;
    }
}
/*
    </hakkimizda>
*/

/*
    <aydinlanma-metni>
*/
#policy {
    p {
        font-size: 16px;
        padding: 10px 0px;
    }
    ul {
        margin: 10px 0px 10px 20px;
        list-style-type: initial !important;
    }
    ul li {
        padding: 5px 0px;
    }
    h2 {
        padding: 10px 0px;
        font-size: 25px;
    }
    table {
      font-family: arial, sans-serif;
      border-collapse: collapse;
      width: 100%;
    }
    table thead tr td, table tbody tr td, table thead tr th, table tbody tr th {
      border: 1px solid rgb(220,220,220);
      text-align: left;
      padding: 8px;
    }
}
/*
    </aydinlanma-metni>
*/

/*
    <iletisim>
*/
#contact {
    p {
        padding: 15px 0px;
        font-size: 14px;
        line-height: 28px;
        color: rgb(80,80,80);
    }
}
/*
    </iletisim>
*/

/*
    <products>
*/
#products {
    padding: 15px 0px;
    #sidebar {
        padding: 7px 10px;
    }
    .filter-list-box {
        padding: 5px 0px 10px;
    }
    .filter-list-header {
        font-size: 18px;
        font-weight: 700;
        padding-bottom: 5px;
    }
    .filter-list {
        font-size: 14px;
        padding: 5px 0px;
    }
    h1 {
        font-size: 21px;
    }
    #product-toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 10px;
        border: 1px solid rgb(250,250,250);
    }
    #product-count {
        font-size: 14px;
    }
    #list-option select {
        font-size: 14px;
        padding: 3px 5px;
        outline: none;
    }
    #product-list {
        padding: 15px 0px;
    }
    #loading {
        text-align: center;
    }
    .product-box {
        padding: 20px 0px;
    }
    .product-box a {
        display: block;
        text-align: center;
    }
    .product-image img {
        display: inline-block;
    }
    .product-title {
        font-size: 16px;
        padding: 15px 0px;
        height: 68px;
        color: rgb(80,80,80);
    }
    .current-price {
        display: inline-block;
        font-size: 17px;
        color: rgb(125,185,45);
        padding-right: 17px;
        text-align: right;
    }
    .old-price {
        display: inline-block;
        font-size: 14px;
        color: rgb(30,30,30);
        text-decoration: line-through;
        text-align: left;
    }
    #load-more {
        display: none;
        padding: 15px 0px;
        text-align: center;
    }
    #load-more-button {
        display: inline-block;
        padding: 10px 15px;
        font-size: 14px;
        font-weight: 700;
        border: none;
        outline: none;
        background-color: rgb(125,185,45);
        color: rgb(255,255,255);
        cursor: pointer;
    }
}
/*
    </products>
*/

/*
    <product>
*/
#product {
    #images-frame {
        text-align: center;
    }
    .thumbnail {
        display: inline-block;
        width: 24%;
        cursor: pointer;
    }
    #product-title {
        margin-top: 20px;
        font-size: 21px;
    }
    .product-info-list {
        margin-bottom: 40px;
    }
    .hide-slide {
        display: none;
    }
    .show-slide {
        display: block;
    }
    .commented-stars {
        float: left;
        padding: 0px;
        display: inline-block;
    }
    #rating-value {
        float: left;
        margin-left: 10px;
        font-size: 15px;
    }
    .brand-detail {
        font-size: 14px;
    }
    .brand-detail:first-of-type {
        margin-top: 10px;
    }
    #product-short-desc {
        font-size: 15px;
        line-height: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgb(240,240,240);
    }
    #product-title, #aggregate-rating {
        margin-bottom: 10px;
    }
    #current-price {
        font-size: 23px;
        color: rgb(125,185,45);
    }
    #actual-price {
        font-size: 17px;
        margin-left: 30px;
        text-decoration: line-through;
        text-decoration-color: rgb(125,185,45);;
    }
    #shipping {
        padding: 10px 0px;
    }
    #quantity * {
        user-select: none;
    }
    #quantity span:first-of-type {
        font-size: 14px;
        font-weight: bold;
    }
    #quantity-frame {
        display: inline-block;
        width: 100px;
        height: 40px;
        padding: 8px;
        border: 1px solid rgb(220,220,220);
        border-radius: 4px;
    }
    #quantity input {
        width: 26px;
        display: inline;
        text-align: center;
        border: none;
        outline: none;
        padding: 0px 4px;
        color: rgb(0,0,0);
        font-weight: bold;
        margin-left: 6px;
        -moz-appearance: textfield;
    }
    #quantity input::-webkit-outer-spin-button, #quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0px;
    }
    #quantity #minus, #quantity #plus {
        font-weight: bold;
        cursor: pointer;
    }
    #quantity #minus {
        padding-left: 8px;
    }
    #add-cart {
        margin-left: 6px;
        padding: 11px 30px;
        display: inline-block;
        border: none;
        outline: none;
        font-size: 14px;
        font-weight: bold;
        border-radius: 4px;
        background-color: rgb(125,185,45);
        color: rgb(255,255,255);
        cursor: pointer;
    }
    #details {
        padding: 15px 0px;
    }
    .tab {
        overflow: hidden;
        border: 1px solid #ccc;
        background-color: rgb(240,240,240);
    }
    .tab button.activetab {
        background-color: rgb(205,205,205);
    }
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 15px;
    }
    .tabcontent {
        display: none;
        padding: 6px 12px;
        border: 1px solid rgb(205,205,205);
        border-top: none;
    }
    .close-tabcontent {
        display: none;
    }
    .open-tabcontent {
        display: block;
    }
    #description h2, #technical h2 {
        padding: 10px 0px 20px;
        font-size: 18px;
        line-height: 25px;
    }
    #description p {
        font-size: 14px;
        line-height: 21px;
    }
    #technical table {
        width: 100%;
        background-color: rgb(205,205,205);
    }
    #technical table tr {
        border: 1px solid rgb(235,235,235);
    }
    #technical table th, #technical table td {
        padding: 10px 20px 7px;
        width: 50%;
    }
    #technical table th {
        background-color: rgb(235,235,235);
    }
    #technical table td {
        background-color: rgb(255,255,255);
    }
    #technical p {
        font-size: 14px;
        line-height: 21px;
        padding: 10px 0px 5px;
    }
    #comments {
        padding: 0px 0px 30px;
    }
    #comment-header, #related-products-header {
        display: block;
        margin-top: 20px;
        padding-bottom: 12px;
        font-size: 22px;
        font-weight: 700;
        color: rgb(125,185,45);
    }
    #comment-frame {
        padding: 15px 0px;
        border-top: 2px solid rgb(125,185,45);
        border-bottom: 2px solid rgb(125,185,45);
    }
    .comment-list {
        padding: 15px 0px;
    }
    .comment-list:not(:last-of-type) {
        border-bottom: 1px solid rgb(125,185,45);
    }
    .avatar {
        display: block;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        text-align: center;
        line-height: 75px;
        font-size: 17px;
        font-weight: 700;
        color: rgb(125,185,45);
        background-color: rgb(235,235,235);
    }
    .comment-list-name {
        padding: 0 15px;
        text-align: left;
        font-weight: 700;
    }
    .comment-list-date {
        padding: 0 15px;
        text-align: left;
        font-size: 14px;
    }
    .comment-list-rating {
        padding: 0 15px;
    }
    .commented-stars {
        display: inline-block;
        padding: 0px 0px 5px;
        vertical-align: middle;
    }
    .no-comment {
        font-size: 15px;
    }
}
/*
    </product>
*/

/*
    <account>
*/
#account {
    #account-menu ul li {
        margin-bottom: 5px;
        border-radius: 3px;
        border: 1px solid rgb(240,240,240);
        transition: background-color .3s;
    }
    #account-menu ul li:hover {
        background-color: rgb(125,185,45);
    }
    #account-menu ul li:hover a {
        color: rgb(255,255,255);
    }
    #account-menu ul li.current {
        background-color: rgb(125,185,45);
    }
    #account-menu ul li.current a {
        color: rgb(255,255,255);
    }
    #account-menu ul li a {
        font-size: 14px;
        display: block;
        padding: 8px 15px;
    }
    .account-content-frame {
        text-align: center;
    }
    .account-menu-text {
        display: block;
        padding: 10px 0px;
    }
    .form-control {
        position: relative;
        margin: 5px 0px 10px;
    }
    .label-input {
        display: block;
        padding: 5px 0px;
        font-weight: 700;
        font-size: 14px;
    }
    .form-control input[type=text], .form-control select, .form-control textarea, .form-control input[type=password], .form-control input[type=submit] {
        width: 100%;
        padding: 7px 9px;
        font-size: 14px;
        border: 1px solid rgb(230,230,230);
        border-radius: 3px;
        outline: none;
    }
    .form-control textarea {
        resize: vertical;
    }
    .form-control #updatepassword, .form-control #saveaddress {
        cursor: pointer;
        font-size: 17px;
        color: rgb(255,255,255);
        text-transform: uppercase;
        font-weight: 700;
        background-color: rgb(125,185,45);
    }
    .hide-area {
        display: none;
    }
    .show-area {
        display: block;
    }
}
/*
    </account>
*/
/*
    <address>
*/
#account {
    .form-box {
        padding: 15px 0px;
    }
}
/*
    </address>
*/
@media only screen and (min-width:768px) {
    .col-l-1 {width: 8.33%}
    .col-l-2 {width: 16.66%}
    .col-l-3 {width: 25%}
    .col-l-4 {width: 33.33%}
    .col-l-5 {width: 41.66%}
    .col-l-6 {width: 50%}
    .col-l-7 {width: 58.33%}
    .col-l-8 {width: 66.66%}
    .col-l-9 {width: 75%}
    .col-l-10 {width: 83.33%}
    .col-l-11 {width: 91.66%}
    .col-l-12 {width: 100%}
    section {
        padding: 50px 0px 20px;
    }
    header {
        position: relative;
    }
    header + main {
        padding-top: 0px;
    }
    #header-top {
        display: block;
    }
    #header-bottom {
        padding: 30px 0px;
    }
    #search-header {
        position: relative;
        width: 220px;
        display: inline-block;
        border-bottom: 1px solid rgb(255,255,255);
        transition: width .4s ease-in-out;
    }
    #search-content {
        width: 100%;
        padding: 5px;
        font-size: 14px;
        border: none;
        outline: none;
        background-color: rgba(0,0,0,0);
        color: rgb(255,255,255);
    }
    #search-content::placeholder {
        color: rgb(255,255,255);
    }
    #search-header:hover {
        width: 350px;
    }
    #search-button {
        position: absolute;
        top: 3px;
        right: 0px;
        border: none;
        outline: none;
        background-color: rgba(0,0,0,0);
        color: rgb(255,255,255);
        vertical-align: middle;
        cursor: pointer;
    }
    .user-action {
        display: inline-block;
        vertical-align: super;
        font-size: 16px;
        color: rgb(255,255,255);
    }
    #menu-button {
        display: none;
    }
    #menu {
        position: relative;
        padding: 0px;
        height: 50px;
        text-align: center;
        transition: none;
    }
    #menu.closed {
        left: 0px;
    }
    #menu-list li {
        display: inline-block;
    }
    #menu-list li a {
        font-size: 15px;
        font-weight: 500;
        padding: 17px 10px;
        margin-bottom: 0px;
    }
    #menu-close, #mobile-social-header, #mobile-customer-support, #mobile-search-header {
        display: none;
    }
    .sticky {
        position: fixed !important;
    }
    .sticky + main {
        padding-top: 50px;
    }
    h1, h2 {
        margin-bottom: 25px;
    }
    #footer-top {
        padding: 20px 0px;
    }
    .footer-box {
        padding: 0px;
    }
    #logo-footer {
        padding-bottom: 5px;
    }
    .customer-support {
        padding: 14px 0px;
    }
    
    /*
    products
    */
    #products {
        .product-box {
            padding: 20px 5px;
        }
    }
    /*
        <aydinlanma-metni>
    */
    #policy {
        h2 {
            font-size: 30px;
        }
    }
    /*
        </aydinlanma-metni>
    */
    /*
        <product>
    */
    #product {
        #product-title {
            margin-top: 10px;
        }
        #details {
            padding: 30px 0px;
        }
        #description p {
            font-size: 15px;
            line-height: 22px;
        }
        #technical table {
            width: 60%;
            text-align: left;
        }
        .comment-list-date {
            text-align: right;
        }
        .comment-list-rating .commented-stars {
            margin: 10px 0px 5px;
        }
        .comment-list-post {
            padding: 6px 0px;
        }
    }
    /*
        </product>
    */
    /*
        <account>
    */
    #account {
        #account-menu {
            padding-right: 10px;
        }
        #account-content {
            padding-left: 10px;
        }
    }
    /*
        </account>
    */
    /*
        <address>
    */
    #account {
        .form-box {
            padding: 5px 10px;
        }
    }
    /*
        </address>
    */
}
@media only screen and (min-width:1280px) {
    .col-1 {width: 8.33%}
    .col-2 {width: 16.66%}
    .col-3 {width: 25%}
    .col-4 {width: 33.33%}
    .col-5 {width: 41.66%}
    .col-6 {width: 50%}
    .col-7 {width: 58.33%}
    .col-8 {width: 66.66%}
    .col-9 {width: 75%}
    .col-10 {width: 83.33%}
    .col-11 {width: 91.66%}
    .col-12 {width: 100%}
    section {
        padding: 75px 0px 25px;
    }
    #search-header {
        width: 400px;
    }
    #search-header:hover {
        width: 400px;
    }
    #footer-top {
        padding: 40px 0px;
    }
    .footer-box {
        text-align: left;
        padding: 0px;
    }
    .customer-support {
        text-align: left;
    }
    /*
        <product>
    */
    #product {
        #details {
            padding: 50px 0px;
        }
        #description p {
            font-size: 16px;
            line-height: 23px;
        }
        #technical table {
            width: 50%;
        }
    }
    /*
        </product>
    */
}

/* 
    <index> 
*/

#slider {
    margin: auto;
    background-color: rgb(245,245,245);
}
#slider .container {
    padding: 0px;
}
.slide-container {
    position: relative;
    max-width: 100%;
    height: 275px;
    margin: auto;
}
.slides {
    display: none;
}
.slide-img {
    display: none;
}
.slide-title {
    position: absolute;
    width: 100%;
    font-size: 25px;
    top: 30px;
    text-align: center;
}
.text {
    position: absolute;
    font-size: 14px;
    top: 120px;
    width: 100%;
    text-align: center;
}
#dots {
    position: absolute;
    width: 100%;
    bottom: 0px;
    text-align: center;
}
.dot {
    height: 15px;
    width: 15px;
    margin: 0px 2px;
    border: 1px solid rgb(125,185,45);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active {
    background-color: rgb(125,185,45);
}
.category-box, .category-box-small {
    padding: 10px 5px;
}
.category-box:last-of-type {
    padding: 0px;
}
.category-content, .category-content-small {
    position: relative;
    display: block;
    background-color: rgb(246,246,246);
}
.category-content {
    height: 380px;
    padding: 18px 25px;
}
.category-content-small {
    height: 180px;
    padding: 12px 16px;
}
.section-info {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    padding-bottom: 3px;
}
.category-title {
    font-size: 17px;
    font-weight: 500;
    color: rgb(100,100,100);
}
.category-text {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    padding: 15px 20px;
    text-align: right;
}
.category-text span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
.category-text picture {
    vertical-align: middle;
    display: inline-block;
    z-index: 2;
}
.category-img, .category-img img {
    height: 100%;
}
.section-title {
    text-align: center;
    font-size: 21px;
    padding-bottom: 15px;
}
.new-box, .sale-box {
    padding: 10px 5px;
}
.new-content, .sale-content {
    position: relative;
    display: block;
    background-color: rgb(246,246,246);
}
.new-text {
    position: absolute;
    top: 15px;
    left: 20px;
    border-radius: 8px;
    padding: 4px 9px;
    background-color: rgb(125,185,45);
    color: rgb(255,255,255);
    font-size: 12px;
}
.sale-text {
    position: absolute;
    left: 15px;
    bottom: 20px;
}
.sale-text p {
    font-weight: 500;
    font-size: 17px;
    color: rgb(100,100,100);
    padding-bottom: 10px;
}
.sale-text span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
.sale-text picture {
    vertical-align: middle;
    display: inline-block;
    z-index: 2;
}
.sale-list picture {
    max-width: 100px;
    float: left;
    display: table-cell;
}
.sale-list picture img {
    max-width: 100px;
}
.sale-list-content {
    padding-left: 15px;
    display: table-cell;
}
.sale-list-title {
    display: block;
    font-size: 15px;
    padding-bottom: 12px;
}
.sale-list-category {
    display: block;
    font-size: 12px;
    padding-bottom: 12px;
}
.sale-list-price-new {
    display: inline-block;
    font-size: 17px;
    color: rgb(125,185,45);
    padding-right: 17px;
}
.sale-list-price-old {
    display: inline-block;
    font-size: 14px;
    color: rgb(30,30,30);
    text-decoration: line-through;
}
.sale-box .sale-list:nth-of-type(2) {
    margin: 22px 0px;
}
@media only screen and (min-width:768px) {
    .slide-container {
        overflow: hidden;
        height: 350px;
    }
    @keyframes slidetitle {
        0% {
            left: -100%;
            opacity: 0;
        }
        100% {
            left: 0%;
            opacity: 1;
        }
    }
    @keyframes slidetext {
        0% {
            left: -100%;
            
        }
        100% {
            left: 0%;
        }
    }
    .slide-title {
        font-size: 37px;
        top: 50px;
        padding-left: 5%;
        text-align: left;
        animation-name: slidetitle;
        animation-duration: 2s;
    }
    .text {
        font-size: 16px;
        top: 175px;
        padding-left: 5%;
        text-align: left;
        animation-name: slidetext;
        animation-duration: 2s;
        animation-delay: .4s;
        animation-fill-mode: backwards;
    }
    .slide-content, .slide-img {
        height: 350px;
        display: inline-block;
    }
    .slide-content {
        position: relative;
    }
    .slide-img {
        text-align: center;
        float: right;
    }
    .section-title {
        font-size: 30px;
    }
    .category-box {
        padding: 0px 12px;
    }
    .category-box-small {
        padding: 0px;
    }
    .category-box-small:first-of-type {
        padding-bottom: 20px;
    }
    #new-row, #sale-row {
        padding: 25px 0px;
    }
    .new-box, .sale-box {
        padding: 0px 12px;
    }
}
@media only screen and (min-width:1280px) {
    .slide-container {
        height: 380px;
    }
    .slide-content, .slide-img {
        height: 380px;
    }
    .slide-title {
        font-size: 39px;
        top: 70px;
        padding-left: 9%;
    }
    .text {
        font-size: 17px;
        top: 200px;
        padding-left: 10%;
    }
    .section-title {
        font-size: 32px;
    }
}

/*
    </index>
*/
