@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,700&subset=cyrillic');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600&subset=cyrillic');

html,
body,
address,
blockquote,
div,
dl,
form,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
table,
dd,
dt,
li,
tbody,
td,
tfoot,
th,
thead,
tr,
button,
del,
ins,
map,
object,
a,
abbr,
acronym,
b,
bdo,
big,
br,
cite,
code,
dfn,
em,
i,
img,
kbd,
q,
samp,
small,
span,
strong,
sub,
sup,
tt,
var,
legend,
fieldset,
menu,
figure {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

img,
fieldset {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgb(47, 47, 47);
    background: #1b1b25;
}

a {
    text-decoration: none;
    color: #277baa;
    border-bottom: 1px solid;
    border-color: rgba(39, 123, 170, 0.4);
    transition: all 0.4s
}

a:hover {
    color: #d55126;
    border-color: transparent
}

a.active {
    border-bottom: none
}

h1,
h2,
h3,
h4 {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400
}

h1 {
    font-size: 30px;
    text-align: center
}

h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #b65657;
    text-align: center
}

.catalog h2 {
    margin-top: 30px
}

h3 {
    font-size: 20px;
    color: #b65657
}

p + h3 {
    margin-top: 30px
}

h4 {
    font-size: 18px;
    color: #b65657
}

p {
    margin-top: 12px;
    line-height: 1.5em
}

ul, ol {
    line-height: 1.6em
}

/* Формы */

select, input, textarea {
    padding: 3px 5px 4px 5px;
    margin-bottom: 3px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #ааа;
    color:  rgba(0, 0, 0, 0.7);
    transition: all 0.4s
}

input, textarea {
    max-width: 400px;
    margin-bottom: 10px;
    padding: 4px 15px 5px 15px;
}

textarea {
    height: 200px
}

input[type='submit'] {
    color: #fff;
    background: #b65657;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 6px 15px 7px 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    transition: .4s
}

input[type='submit']:hover {
    background: #d2a29a;
    
}

.shop-search {
    margin-top: 20px;
    padding: 10px 20px 5px 20px;
    background-color: #eaeaea
}

.shop_search_param {
    display: inline-block;
    margin-right: 10px;
}

.checkboxItem {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px
}

.shop-search input[type='submit'] {
    width: auto;
    margin: -2px 0 0 0;
    padding: 2px 10px;
    font-size: 12px;
}

input[type='checkbox'] {
    width: auto
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:  rgba(0, 0, 0, 0.3);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:  rgba(0, 0, 0, 0.3);
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:  rgba(0, 0, 0, 0.3);
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:  rgba(0, 0, 0, 0.3);
}

.formLayout {
    background-color: #f3f3f3;
    margin-top: 20px;
    padding-bottom: 20px
}

.formLayout input, .formLayout textarea {
    width: 100% !important
}

.formLayout .error_message, .formLayout .error {
    display: none !important;
    position: absolute;
    padding: 5px 18px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background-color: #fff;
    opacity: 0.95;
    z-index: 10;
}

.feedback_form input, .feedback_form textarea {
    width: 100%;
    max-width: 400px
}