<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* РћР±С‹С‡РЅС‹Р№ */
@font-face {
	font-family: 'HeliosCond'; 
	src: url(../fonts/HeliosCond-Regular.ttf); 
}
 
/* Р–РёСЂРЅС‹Р№ */
@font-face {
	font-family: 'HeliosCond-Bold'; 
	src: url(../fonts/HeliosCond-Bold.ttf); 
}

@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;800;900&amp;display=swap);

body {
  font-family: 'Roboto', sans-serif;
}

body{
    /* font-family: 'HeliosCond'; */
    /* background: url('../img/bg.jpg') center / cover; */
}

.m25{
    margin-top: 25px;
}

.containerCenter{
    display: flex;
    justify-content: center;
}

.btnOutline{
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #F82628;
    color: #F82628;
    /* font-family: 'HeliosCond-Bold'; */
    transition: .4s;
}

.btnOutline:hover{
    background: #F82628;
    color: #fff;
}

.btn{
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    cursor: pointer;
    background: #F82628;
    color: #fff;
    /* font-family: 'HeliosCond-Bold'; */
    transition: .4s;
}

.btn:hover{
    background: #d61215;
}

.back{
    text-decoration: underline !important;
    color: #666;
    transition: .4s;
}

.back:hover{
    text-decoration: none !important;
}

.btnSvg{
    display: flex;
    align-items: center;
}

.btnSvg svg{
    margin-right: 8px;
}

.sectionPage{
    margin-top: 160px;
}

.pageTitle h1{
    /* font-family: 'HeliosCond-Bold'; */
    font-size: 32px;
    color: #111;
}

.pageTitle p{
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    /*width: 600px;*/
}

.hrPageContainer{
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 20px;
}

.hrPage{
    background: #007153;
    width: 140px;
    height: 100%;
}

/* breadcrumbs */

.breadcrumbs{
    display: flex;
    margin-top: 20px;
}

.breadcrumbs a{
    color: #666;
    text-decoration: underline #666 !important;
    transition: .4s;
}

.breadcrumbs a:hover{
    text-decoration: none !important;
}

.breadcrumbs span{
    color: #666;
    margin: 0 5px;
}

.breadcrumbs p{
    color: #999;
}

.section{
    margin-top: 60px;
}

.sectionTitle{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.sectionTitle h2{
    /* font-family: 'HeliosCond-Bold'; */
    font-size: 32px;
    color: #111;
    width: 100%;
}

.sectionTitle p{
    margin-top: 12px;
    font-size: 14px;
    color: #333;
    width: 600px;
}

@media(min-width: 320px) and (max-width: 1020px){
    
    .sectionPage{
        margin-top: 100px;
    }

    .pageTitle p{
        width: 100%;
    }
    
}

.notification {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #4caf50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

.inputError{
    border: 1px solid #d61215 !important;
    background: #ffd6d7 !important;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.pagination-btn {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: #fff;
}

.pagination-btn.active {
    background: #F82628;
    color: #fff;
    border: 1px solid #F82628;

    font-weight: bold;
}

.pagination-btn:hover {
    background-color: #f0f0f0;
}


.basketProductItemQuantity {
    margin: 10px 0;
}

.basketProductItemQuantity label {
    margin-right: 10px;
}

.basketProductItemQuantity input {
    width: 60px;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}</pre></body></html>