/* Box Sizing | https://css-tricks.com/box-sizing/ */
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
    line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster:
                                          http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.formfield2 {
    display: none !important;
    visibility: hidden;
}

.tinymce_body {
    margin: 0;
    padding: 0 10px;
    text-align: left;
    background: #fff;
    min-width: inherit;
    min-height: inherit;
    max-width: none;
    max-height: none;
}

.error {
    color: #c66;
}

/* Module: compare */

.compare-wrapper {
    max-width: 100%;
    overflow: auto;
}

.compare-tbl td {
    padding: 7px 5px;
}

.compare-tbl tr:hover td {
    background: #f2ede9;
}

.compare-tbl tr:first-child:hover td {
    background: none;
}

.compare-tbl .products-card {
    float: none;
}

/* Module: photo */
.photo-item {
    display: inline-block;
    margin: .5em 1.5em;
    height: 230px;
    vertical-align: top;
}

.photo-item:hover {
    opacity: .9;
}

.photo-title {
    display: block;
    margin: 5px 0 0;
    color: #1c1c1c;
    line-height: 1em;
    text-align: center;
}

.photo-catalog-item {
    display: inline-block;
    margin: 0 50px 50px 0;
    padding: 165px 0 0;
    width: 210px;
    height: 30px;
    line-height: 1em;
    vertical-align: top;
    position: relative;
}

.photo-catalog-1 img, .photo-catalog-2 img, .photo-catalog-3 img {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.photo-catalog-1, .photo-catalog-2, .photo-catalog-3 {
    position: absolute;
    top: -5px;
    left: -5px;
    transition: all .1s;
}

.photo-catalog-2 {
    top: 0;
    left: 5px;
    opacity: .7;
}

.photo-catalog-3 {
    top: 5px;
    left: 15px;
    opacity: .5;
}

.photo-catalog-item:hover .photo-catalog-1 {
    top: -10px;
    left: -10px;
}

.photo-catalog-item:hover .photo-catalog-3 {
    top: 10px;
    left: 20px;
}

/*! http://responsiveslides.com v1.54 by @viljamis */
.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.rslides li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}

.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}

.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
}

.rslides_tabs {
    position: absolute;
    bottom: 5px;
    left: 0;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    list-style: none;
    z-index: 2;
}

.rslides_tabs li {
    display: inline;
    float: none;
    margin-right: 14px;
}

.rslides_tabs a {
    display: inline-block;
    width: 15px;
    height: 15px;
    text-indent: -9999px;
    background: rgba(0, 0, 0, .1);
    border-radius: 7px;
}

.rslides_tabs li:first-child {
    margin-left: 0;
}

.rslides_tabs .rslides_here a {
    background: rgba(0, 0, 0, .5);
}

.rslides_nav {
    position: absolute;
    top: 50%;
    margin-top: -40px;
    left: 0;
    display: block;
    width: 40px;
    height: 80px;
    text-indent: -9999px;
    z-index: 2;
}

.rslides_nav:after {
    content: '‹';
    position: absolute;
    top: -2px;
    left: 50%;
    display: block;
    margin-left: -10px;
    font-size: 60px;
    color: #000;
    text-indent: 0;
    opacity: .4;
}

.rslides_nav.next:after {
    content: '›';
}

.rslides_nav:hover:after {
    opacity: .7;
}

.rslides_nav.next {
    left: auto;
    right: 0;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    /*cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;*/
}

.mfp-zoom {
    /*cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;*/
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    filter: alpha(opacity=65);
    top: 50%;
    margin: -55px 0 0;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
         * Remove all paddings around the image on small screen
         */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

/* animation */
/* overlay at start */
.mfp-fade.mfp-bg {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;

    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.popup {
}

/* Module: sitemap */
.sitemap, .sitemap ul {
    list-style: none;
}

.sitemap > ul {
    margin: 0;
    padding: 0;
}

.sitemap li {
    background: none;
}

.sitemap1 {
    font-size: 1.3em;
    line-height: 1.8em;
}

/* Accordion block */

.user-accordion {
    margin: 0 0 1em;
}

.user-accordion-a {
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px dotted;
    cursor: pointer;
}

.user-accordion-text {
    display: none;
}

/* Module: guestbook */
.gbook {
    background: #f3f3f3;
}

.gbook .gbook_head {
    font-weight: bold;
}

/* Module: specs */

.spec-item {
    position: relative;
}

.spec-text1 {
    font-size: 22px;
    font-weight: bold;
}

.spec-texts {
    position: absolute;
    top: 90px;
    left: 490px;
    width: 420px;
}

.spec-item, .spec-item * {
    color: #000;
}

/* Module: news */
.news-item {
    display: block;
    margin: 0 0 3em;
    /*padding: 0 0 0 220px;
    min-height: 150px;*/
    position: relative;
}

.news-title, .news-date, .news-img, .news-anons, .news-text {
    display: block;
}

.news-img {
    position: absolute;
    top: 0;
    left: 0;
}

.news-title {
}

.news-date {
    margin: 0 0 1em;
    font-size: .8em;
}

.news-hr {
    margin: 3em 0 0;
    padding: 0 0 3em;
    border-top: 1px solid #000;
    clear: both;
}

.news_years {
    margin: 0 0 .9em;
}

.news_years span {
    padding: 3px;
    background: #ccc;
}

/* Module: search */
ol.search_results li {
    margin-bottom: 12pt;
}

ol.search_results span {
    font-size: 8pt;
}

/* Module: opros */
table.mod_opros_tbl td {
    padding: 0 60px 60px 0;
    text-align: left;
    vertical-align: top;
}

table.mod_opros_tbl .opros_head {
    font-weight: bold;
}

/* Module: product */
.products-item {
    display: inline-block;
    margin: .5em 2em;
    width: 200px;
    height: 260px;
    text-align: center;
}

.products-img, .products-title, .products-price {
    display: block;
}

.products-img {
    width: 200px;
    height: 200px;
    line-height: 200px;
}

.product {
    padding: 0 0 0 220px;
    min-height: 240px;
    position: relative;
}

.product .product-img-box {
    position: absolute;
    top: 0;
    left: 0;
}

.product-img2 {
    display: inline-block;
    margin: 10px 10px 0 0;
}

.product-img2 img {
    width: 95px;
}

table.tbl_prod {
    margin: 0 0 1em;
    width: 100%;
}

table.tbl_prod td {
    padding: 20px 10px;
    border-bottom: 1px solid #ccc;
}

table.tbl_prod td.td_center {
    text-align: center;
}

table.tbl_prod tr.prod_head td, table.tbl_prod td.prod_head {
    padding: 10px;
    font-weight: bold;
}

table.tbl_prod tr.prod_head td img {
    margin: 0 5px;
}

table.tbl_prod td.prod_img {
    width: 150px;
}

.bas_add_add {
    position: relative;
    top: 2px;
    left: 3px;
}

.bas_add_col {
    text-align: center;
    width: 50px;
}

table.tbl_prod .in_basket, table.tbl_prod2 .in_basket {
    font-size: 7pt;
}

table.tbl_prod2 {
    width: 100%;
}

table.tbl_prod2 td {
    padding: 5px 10px;
    text-align: left;
    vertical-align: top;
}

table.tbl_prod2 td.prod2_txt img.prod2_img {
    margin: 15px;
    float: right;
}

table.tbl_prod2 td.prod2_txt {
    width: 100%;
}

table.tbl_prod2 td.prod2_txt div.prod2_name {
    padding: 0 0 15px;
}

table.tbl_prod2 td.prod2_txt div.prod2_price {
    padding: 0 0 15px;
}

table.tbl_prod2 td.prod2_txt div.prod2_col {
    padding: 0 0 15px;
}

table.tbl_prod2 td.prod2_txt div.prod2_col input.bas_add_add {
    position: relative;
    top: 2px;
    left: 3px;
}

table.tbl_prod2 td.prod2_txt div.prod2_col input.bas_add_col {
    width: 50px;
    text-align: center;
}

table.tbl_prod2 td.prod2_txt div.prod2_descr {
    padding: 15px 0 0;
}

.basket_img {
    max-width: 100px;
}

/* Forms */
.form-row {
    margin: 0 0 1em;
}

.form-row-required .form-label:after {
    content: '*';
    color: #c66;
}

.form-form input.inp, .form-form textarea.inp {
    width: 35%;
}

.inp {
    padding: 7px 12px;
    line-height: 1em;
    border: 1px solid #dde1e8;
}

/*.inp:focus {}*/
.inp_but {
    padding: 5px;
    min-width: 160px;
}

/*.inp_but:focus {}*/
.inp_but, button, .img_captcha {
    cursor: pointer;
}

.page_nav {
    margin: 0 0 .9em;
}

.page_nav span {
    padding: 1px 4px;
    font-weight: normal;
    background: #ccc;
}

.page_sort {
    margin: 0 0 .9em;
    text-align: right;
}

/* Base grid */
.row {
    position: relative;
}

.col {
    display: inline-block;
    padding-right: 10px;
    vertical-align: top;
    position: relative;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33%;
}

.col-6 {
    width: 50%;
}

.col-8 {
    width: 66%;
}

.content-wrapper {
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 10px;
    padding-right: 10px;
    width: 940px;
    position: relative;
}

.content-block1 {
    background: #ccc 50% 50% no-repeat;
    background-size: cover;
    border-top: 1px solid #b5be9e;
    border-bottom: 1px solid #b5be9e;
}

.content-block1 .content-wrapper {
    margin: 54px 0;
}

/* Content table */
.table {
    width: 100%;
}

.table td {
    padding: 6px 10px;
    border: 1px solid #00589b;
}

.table .table-th, .table th {
    font-weight: bold;
}

table td{
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid #00589b;
}

table p{
    margin: 5px 0;
}


a:focus {
    outline: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 1.7em 0 .5em;
    color: #131313;
}

h1 {
    margin: 0 0 1em;
    font-size: 24px;
}

h2 {
    font-size: 23px;
}

h3 {
    font-size: 19px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 14px;
}

blockquote {
    margin: 0 0 1em;
    padding: 1px 25px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #00589b;
}

html, body {
    min-width: 1200px;
}

body {
    background: #002035 url(../file/site/bg.jpg) 50% 0 no-repeat;
    background-size: 100% auto;
}

body, td, select, input, textarea {
    color: #010101;
    font: 14px/1.4 Arial, sans-serif;
}

a, a * {
    color: #3184d6;
}

/*, a:focus, a:visited*/
a:hover, a:hover * {
    color: #6eb2f6;
}

.page-header {
    margin: 0 0 .9em;
}

.breadcrumb {
    margin: 0 0 .6em;
    padding: 0;
}

.breadcrumb li {
    display: inline-block;
    margin: 0;
    list-style: none;
    font-size: .85em;
}

.breadcrumb li:before {
    display: inline-block;
    margin: 0 5px;
    content: '>';
}

.breadcrumb li:first-child:before {
    margin: 0;
    content: '';
}

.breadcrumb * {
    color: #8b8a8a;
}

/* Template styles */

.wrapper {
    margin: 0 auto;
    width: 1200px;
    position: relative;
}

.header {
    height: 240px;
    position: relative;
    z-index: 2;
}

.middle {
    display: table;
    padding: 32px 32px 47px;
    width: 100%;
    background: #fff;
    /*background: #f7f7f7;
    background: linear-gradient(90deg, rgb(226, 236, 243) 0%, rgb(241, 246, 249) 8%, rgb(255, 255, 255) 50%, rgb(241, 246, 249) 93%, rgb(226, 236, 243) 100%);*/
    position: relative;
}

.content {
    display: table-cell;
    vertical-align: top;
    position: relative;
}

.left-sidebar {
    display: table-cell;
    vertical-align: top;
    padding: 22px 32px 0 0;
    width: 280px;
    position: relative;
}

.footer {
    padding: 46px 32px 23px;
    position: relative;
}

.footer * {
    color: #e0e0e0;
    font-size: 12px;
}

.menu, .menu li, .menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.logo {
    position: absolute;
    top: 95px;
    left: 32px;
    display: block;
    width: 225px;
    height: 62px;
    text-indent: -9999px;
    background: url(../file/site/logo.png);
}

.header * {
    color: #eff7ff;
}

.header p {
    margin-top: 0;
}

.head-contacts {
    position: absolute;
    top: 90px;
    left: 320px;
    font-size: 14px;
}

.head-phone {
    font-size: 29px;
    text-decoration: none;
}

.head-right {
    position: absolute;
    top: 45px;
    right: 32px;
    text-align: right;
}

.head-logotext {
    margin: 0 0 25px;
    font-size: 40px;
    line-height: 1em;
}

.form-search {
    margin: 0 0 20px;
    position: relative;
}

.search-input {
    padding-right: 30px;
    color: #010101;
}

.search-submit {
    position: absolute;
    top: 6px;
    right: 6px;
    display: inline-block;
    width: 20px;
    height: 19px;
    text-indent: -9999px;
    text-decoration: none;
    background: url(../file/site/ico-search.png);
    border: none;
    cursor: pointer;
    opacity: .7;
}

.search-submit:hover {
    opacity: 1;
}

.link-sitemap {
    display: inline-block;
    width: 26px;
    height: 21px;
    background: url(../file/site/ico-sitemap.png);
    opacity: .9;
}

.link-sitemap:hover {
    opacity: 1;
}

.link-print {
    display: inline-block;
    width: 23px;
    height: 21px;
    background: url(../file/site/ico-print.png);
    opacity: .8;
}

.link-print:hover {
    opacity: 1;
}

.main-menu {
    position: relative;
    z-index: 3;
}

.main-menu, .main-menu ul {
    display: block;
    background: #0764a3;
}

.main-menu ul ul.level-0{
    left: 100%;
    top: -2px;
    display: none;
}

.main-menu ul li:hover ul{
    display: block;
}

.main-menu  li {
    display: inline-block;
    position: relative;
}

.main-menu a {
    display: inline-block;
    padding: 11px 23px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
}

.main-menu a:hover, .main-menu a.active, .main-menu li.active > a {
    background: #08457d;
}

.main-menu > li:hover ul.level-1 {
    display: block;
}

.main-menu ul {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    border-top: 2px solid #f7f7f7;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    z-index: 4;
}

.main-menu ul a {
    display: block;
    padding: 13px 32px;
    min-width: 250px;
    font-size: 15px;
}

.spec-menu {
    display: table;
    width: 100%;
    margin: 0 0 8px;
    background: #054169;
    position: relative;
    z-index: 2;
}

.spec-menu li {
    display: table-cell;
    width: 20%;
    text-align: center;
    vertical-align: top;
}

.spec-menu a {
    margin: 0 auto;
    display: block;
    padding: 33px 0 30px;
    width: 140px;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    opacity: .9;
}

.spec-menu a:hover {
    opacity: 1;
}

.spec-menu-i1:before, .spec-menu-i2:before, .spec-menu-i3:before,
.spec-menu-i4:before, .spec-menu-i5:before, .spec-menu-i6:before {
    content: '';
    margin: 0 auto 8px;
    display: block;
    width: 36px;
    height: 36px;
    background: 50% 50% no-repeat;
}

.spec-menu-i6{
    display: none !important;
}

.spec-menu-i1:before {
    background-image: url(../file/site/ico-calc.png);
}

.spec-menu-i2:before {
    background-image: url(../file/site/ico-list.png);
}

.spec-menu-i3:before {
    background-image: url(../file/site/ico-basket.png);
}

.spec-menu-i4:before {
    background-image: url(../file/site/ico-menu.png);
}

.spec-menu-i5:before {
    background-image: url(../file/site/ico-al.png);
}

.spec-menu-i6:before {
    background-image: url(../file/site/ico-book.png);
}

.left-menu a {
    display: block;
    padding: 11px 32px;
    font-size: 19px;
    text-decoration: none;
}

.left-menu ul {
    margin: 0 0 24px;
}

.left-menu ul a {
    padding: 6px 32px;
    color: #010101;
    font-size: 15px;
}

.left-menu a:hover, .left-menu a.active, .left-menu li.active > a {
    color: #fff;
    background: #08457d;
}

.header p:first-child, .footer p:first-child {
    margin-top: 0;
}

.footer-style1 {
    color: #afd6f0;
    font-weight: bold;
}

.created {
    position: absolute;
    right: 32px;
    bottom: 16px;
}

.content-post-tools {
    display: none;
    margin: 3em 0 0;
    text-align: right;
}

body.tpl-print {
    background: #fff;
}

.start-block {
    margin: 0 0 8px;
    padding: 26px 32px;
    position: relative;
}

.start-header {
    margin: 0 0 19px;
    color: #010101;
    font-size: 27px;
}

.start-happyb-25 {
    height: 232px;
    background: url(../file/images/happy_birthday_25.jpg) 50% 50% no-repeat;
}

.start-happyb-25:after {
    content: '';
    position: absolute;
    top: -9px;
    left: -37px;
    display: block;
    width: 427px;
    height: 146px;
    background: url(../file/images/happy_birthday_25_balloons.png) 50% 50% no-repeat;
    z-index: 1;
}

.start-news {
    background: linear-gradient(to bottom, #fff 0%, #e4f6fb 100%);
}

.start-news .start-header:before {
    content: '';
    position: relative;
    top: -3px;
    display: inline-block;
    margin: 0 5px 0 0;
    width: 25px;
    height: 25px;
    background: url(../file/site/ico-news.png) 50% 50% no-repeat;
    vertical-align: middle;
}

.start-news-items {
    display: table;
    width: 100%;
}

.start-news-items .news-item {
    display: table-cell;
    vertical-align: top;
    margin: 0;
    padding: 0 16px;
    width: 25%;
    min-height: inherit;
    position: relative;
}

.start-news-items .news-item:first-child {
    padding-left: 0;
}

.start-news-items .news-item:last-child {
    padding-right: 0;
}

.start-news-items .news-date {
    margin: 0;
    color: #7e7e7e;
    font-size: 11px;
}

.start-news-items * {
    color: #010101;
    font-size: 13px;
    text-decoration: none;
}

.start-news-items a:hover * {
    color: #010101;
    text-decoration: underline;
}

.start-creating {
    background: #0764a3;
}

.start-creating .start-header {
    color: #fff;
}

.start-creating .start-header:before {
    content: '';
    position: relative;
    top: -3px;
    display: inline-block;
    margin: 0 5px 0 0;
    width: 29px;
    height: 28px;
    background: url(../file/site/ico-creating.png) 50% 50% no-repeat;
    vertical-align: middle;
}

.start-creating-row {
    display: table;
    width: 100%;
}

.start-creating-row * {
    color: #bee7ff;
    font-size: 13px;
}

.start-creating-row > div {
    display: table-cell;
    vertical-align: top;
    padding: 16px;
}

.start-creating-row > div:nth-child(1) {
    width: 240px;
}

.start-creating-row > div:nth-child(2) {
    width: 285px;
}

.start-creating-row > div:nth-child(3) {
    width: 320px;
}

.start-creating-row > div:first-child {
    padding-left: 0;
}

.start-creating-row > div:last-child {
    padding-right: 0;
}

.start-creating-row b {
    display: block;
    color: #fff;
    font-size: 19px;
    font-weight: normal;
}

.start-military {
    height: 198px;
    text-align: center;
    background: url(../file/images/military_acceptance.jpg) 50% 50% no-repeat;
}

.start-military .start-header {
    display: inline-block;
    margin: 35px 0 0;
    padding: 2px 23px;
    color: #fff;
    font-size: 56px;
    background: rgba(0, 0, 0, .5);
}

.start-info * {
    color: #fff;
}

.start-info .start-header {
    color: #00a2ff;
}

.start-info .start-header:before {
    content: '';
    position: relative;
    top: -3px;
    display: inline-block;
    margin: 0 5px 0 0;
    width: 25px;
    height: 25px;
    background: url(../file/site/ico-info.png) 50% 50% no-repeat;
    vertical-align: middle;
}

.start-info-style2 {
    font-size: .9em;
    font-style: italic;
    text-align: right;
}


.use-cookie-info {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 5px;
    padding: 4px 7px;
    max-width: 300px;
    color: #fff;
    font-size: 11px;
    line-height: 1.42em;
    text-align: left;
    background: #000;
    border: 1px solid #999;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .3);
    opacity: .7;
    z-index: 2000;
    cursor: pointer;
}

.use-cookie-info:after {
    content: 'x';
    position: absolute;
    top: 1px;
    right: 5px;
    display: block;
}

.yellow-button{
    background: url("../file/site/yellow-button.png") no-repeat 0 0;
    width: 255px;
    height: 48px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    font-family: "Arial", SansSerif;
    font-size: 24px;
    font-weight: bold;
    padding: 2px 0 0 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.yellow-button:hover{
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}

.estimate-button{
    position: fixed;
    bottom: 115px;
    right: 0;
    z-index: 10;
}

.write-to-us-button{
    position: fixed;
    bottom: 65px;
    right: 0;
    z-index: 10;
}

.fp_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.6;
    filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
    z-index: 1000;

}

.popup_window_write_to_us
{
    background-color: #e8e8e8;
    padding: 25px 35px 30px 35px;
    position: fixed;
    top: 5%;
    left: 50%;
    z-index: 9999;
    display: none;
    min-height: 200px;
    -webkit-box-shadow: 0px 5px 15px #000;
    -moz-box-shadow: 0px 5px 15px #000;
    box-shadow: 0px 3px 14px #000;
    width: 490px;
    margin-left: -245px;
}

#close_window {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 24px;
}

.popup_window_header{
    font-size: 28px;
    margin: 0px 0 20px 0;
}

.popup_window_write_to_us label{
    font-size: 17px;
    position: relative;
    top: -3px;
}

.popup_window_write_to_us .inp{
    border: 1px solid #406ca8;
    outline: none;
    font-size: 17px;
    padding: 9px 10px;
}

.popup_window_write_to_us .form-row {
    margin: 0 0 20px;
}

.red-star{
    color: #f45e53;
    font-size: 25px;
    position: relative;
    top: 5px;
    position: relative;
}

.blue-button.btn, .blue-button{
    border: none;
    outline: none;
    cursor: pointer;
    background: #054169;
    text-align: center;
    color: #fff;
    font-size: 24px;
    border-radius: 10px;
    padding: 5px 48px;
    margin: 15px 0 0 0;
}

.blue-button:hover{
    opacity: 0.8;
}

.estimate-item{
    float: left;
    width: 100%;
    margin: 0 0 25px 0;
}

.estimate-item textarea{
    width: 100%;
    margin: 16px 0 0 0;
}

.estimate-header-container{
    float: left;
    width: 100%;
}

.estimate-header{
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    float: left;
    margin: 0 35px 0 0;
}

.estimate-rating-container{
    display: inline-block;
    float: left;
}

.star_rating, .star_rating a {
    background: url('../css/vendor/star.png') no-repeat -30px 0;
    width: 21px;
    height: 20px;
    margin: 0 7px 0 0;
}

.submit-application-button {
    position: absolute;
    top: 104px;
    right: 234px;
    background: #ef9c00;
    padding: 0;
    height: inherit;
    border-radius: 7px;
    font-size: 20px;
    width: initial;
    padding: 3px 20px;
    box-shadow: 0px 3px 9px rgba(0,0,0,0.5);
}

.change-forms-container{
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 35px 0;
}

.forms-container{
    float: left;
    width: 100%;
    color: #6d6b6b;
}

.forms-container .form-item2, .forms-container .form-item3{
    display: none;
}

.forms-container label{
    color: #6d6b6b;
    font-size: 14px;
    padding: 0 10px 0 0;
    display: inline-block;
}

.forms-container .inp{
    color: #6d6b6b;
    border: 1px solid #cdcdcd;
    outline: none;
    padding: 7px;
}

.top-add-input-file-link{
    color: #6d6b6b;
    text-decoration: underline;
    cursor: pointer;
}

.top-add-input-file-link:hover, .top-add-input-file-link:active{
    text-decoration: none;
}

.order1-field15, label.order1-field15, .order1-field17, label.order1-field17, .order1-field19, label.order1-field19
, .order1-field23, label.order1-field23, .order1-field25, label.order1-field25
, .order1-field29, label.order1-field29, .order1-field32, label.order1-field32, .order1-field34, label.order1-field34,
.order3-field15, label.order3-field15, .order3-field17, label.order3-field17, .order3-field19, label.order3-field19,
.order3-field22, label.order3-field22, .order3-field23, label.order3-field23, .order3-field25, label.order3-field25
, .order3-field28, label.order3-field28, .order3-field29, label.order3-field29, .order3-field32, label.order3-field32, .order3-field33, label.order3-field33{
    display: none;
}

.table-contact td{
    border: none;
}