/*common*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

/*main*/
.layout {
    font-size: 16px;
    font-family: 'Ubuntu', 'Arial', sans-serif;
    font-weight: normal;
    color: #4e4b4b;

}

.layout__page {
    position: relative;
    width: 100%;
    min-width: 320px;
    min-height: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding-bottom: 100px;
}

.body__content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.body_inner .body__content {
    padding-top: 25px;
    padding-bottom: 45px;
}

.body__breadcrumbs {
    padding-top: 45px;
}

.body__bottom .content {
    padding-bottom: 30px;
}

.container {
    width: 1520px;
    max-width: 100%;
    min-width: 320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.container_wide {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.content {
    line-height: 1.5;
}

.content a {
    color: #ff9501;
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.content a:hover {
    color: #ffcd16;
}

.content ul {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    list-style: none;
}

.content ul > li {
    margin: 0;
    padding-left: 17px;
    position: relative;
}

.content ul > li:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ababab;
    position: absolute;
    top: 9px;
    left: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.breadcrumbs__items {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}

.breadcrumbs__item {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #ffcd16;
}

.breadcrumbs__item:after {
    content: '/';
    display: inline;
    font-size: 14px;
    color: #a9a9a9;
    padding: 0 8px;
}

.breadcrumbs__item:last-child:after {
    display: none;
}

.breadcrumbs__link {
    color: #a9a9a9;
}

.breadcrumbs__link:hover {
    color: #ff9501;
}

/*button*/
a.button,
.button {
    display: inline-block;
    font-family: 'Open Sans', 'Arial', sans-serif;
    padding: 0 10px;
    max-width: 100%;
    min-width: 150px;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    -webkit-appearance: none;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 36px;
    line-height: 36px;
    font-weight: normal;
    color: #ffffff !important;
    font-size: 14px;
    text-transform: uppercase;
    background: #ff9501;
    border: none;
    border-bottom: 2px solid #3d3b3b;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
}

a.button:hover,
.button:hover {
    background: #ffcd16;
}

a.button:active,
.button:active {
    background: #eebb00;
}

.button_default {
    background: #4d4b4b;
    border-bottom: 2px solid #c9c9c9;
}

.button_default:hover {
    background: #ff9501;
}

.button_default:active {
    background: #e38400;
}

.button_size_md {
    height: 40px;
    line-height: 40px;
}

a.button_size_lg,
.button_size_lg {
    height: 60px;
    line-height: 60px;
    padding: 0 50px;
    font-size: 18px;
}

/* product-cards */
.product-cards__item {
    display: grid;
    grid-template-columns: 200px 1fr 266px;
    height: 216px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    margin-bottom: 20px;
}

.product-cards__item:last-child {
    margin-bottom: 0;
}

.product-cards__banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.product-cards__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.product-cards__content {
    padding: 10px 10px 10px 40px;
    display: flex;
    max-height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
}

.product-cards__title {
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #4E4B4B;
    margin-bottom: 8px;
}

.product-cards__description {
    font-family: 'Ubuntu', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #4E4B4B;
}

.product-cards__store {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* media */
@media screen and (max-width: 1400px){
    .product-cards__item {
        grid-template-columns: 200px 1fr 200px;
    }
}

@media screen and (max-width: 767px){
    .product-cards__item {
        height: auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-cards__banner {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .product-cards__content {
        align-items: center;
        margin-bottom: 20px;
        padding: 10px;
    }

    .product-cards__title,
    .product-cards__description {
        text-align: center;
    }
}