/*https://onlinefontconverter.com/*/
@font-face
{
    font-family: 'MachineC';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/MachineC.woff') format('woff'),
    url('../fonts/MachineC.ttf') format('truetype');
}


@font-face
{
    font-family: 'CenturyGothic';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/CenturyGothic.woff') format('woff'),
    url('../fonts/CenturyGothic.ttf') format('truetype');
}


@font-face
{
    font-family: 'CenturyGothic';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../fonts/CenturyGothic-Bold.woff') format('woff'),
    url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
}


@font-face {
  font-family: 'Candara';
  src: url('/wp-content/themes/mthem/fonts/Candarab.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Candara';
  src: url('/wp-content/themes/mthem/fonts/Candara.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Candara';
  src: url('/wp-content/themes/mthem/fonts/Candarai.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Candara';
  src: url('/wp-content/themes/mthem/fonts/Candaraz.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}



*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:before,
*:after
{
    box-sizing: border-box;
}

img
{
    border: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active
{
    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset]
{
    -webkit-border-radius: 0;

    -webkit-appearance: none;
}

:focus
{
    outline: none;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*---------------
    Main styles
---------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #fff;
    --font_size: 14px;
    --font_size_title: 30px;
    --font_family: 'Candara', 'Arial', sans-serif;
}


.clear
{
    clear: both;
}


.left
{
    float: left;
}


.right
{
    float: right;
}



html
{
    height: 100%;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    height: 100%;

    transition: opacity .2s linear;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

body.show
{
    opacity: 1 !important;
}



.flex
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}


.cont
{
    width: 100%;
    max-width: 1165px;
    margin: 0 auto;
    padding: 0 20px;
}

.lozad
{
    transition: .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}

.wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    min-height: 100%;
}

.main {
    flex: 1 0 auto;
}

header.main {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 30px 0;
}

header.menu {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 25px 0;
}

header .cont.flex {
    align-items: center;
    align-content: center;
}

header .info .cont.flex {
    position: relative;
    z-index: 5;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

header.menu .info .cont.flex {
	display: block;
}

header.main .logo {
    display: flex;
    height: 113px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

header.menu .logo {
	text-align: center;
	margin-top: 60px;
}

header.menu .logo img {
	max-width: 768px;
}

header.main .menu {
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
}

header.menu .menu {
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    width: 900px;
    margin: 0 auto;
}

header.main .menu .item, header.menu .menu .item {
    position: relative;
}

header.main .menu .item + .item, header.menu .menu .item + .item {
    margin-left: 20px;
}

header.main .menu .item > a, header.menu .menu .item > a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    display: block;
    transition: .2s linear;
    text-decoration: none;
    text-transform: uppercase;
}

header.main .menu .item:hover > a, header.menu .menu .item:hover > a, header.menu .menu a.active, header.main .menu a.active
{
    color: #fe6f01;
}

.logo_mob {
	display: none;
}

.logo_mob img {
	min-width: 150px;
}

.mob_menu_link {
    position: relative;
    z-index: 100;

    display: none;

    width: 48px;
    height: 35px;
}

.mob_menu_link span
{
    position: relative;

    display: block;

    width: 100%;
    height: 5px;

    transition: .2s linear;

    background: #fff;
}

.mob_menu_link span + span
{
    margin-top: 10px;
}

.mob_menu_link.active span
{
    background: #000;
}



.mob_menu_link.active span:nth-child(2)
{
    opacity: 0;
}

.mob_menu_link.active span:nth-child(1)
{
    top: 15px;
    transform: rotate(45deg);
}

.mob_menu_link.active span:nth-child(3)
{
    top: -15px;
    transform: rotate(-45deg);
}

.first_section .cont, .first_section_menu .cont {
    position: relative;
    z-index: 5;
	color: #fff;
}

.first_section .cont:after {
	position: absolute;
	bottom: -40px;
	left: 0;
	background: transparent url('../images/pomidor.png') no-repeat 0 0;
	width: 92px;
	height: 97px;
	content: '';
}


.first_section_menu:before {
    position: absolute;
    bottom: -68px;
    left: 0;
    background: transparent url(../images/pomidor_2.png) no-repeat 0 0;
    width: 116px;
    height: 123px;
    content: '';
    z-index: 3;
}


.first_section .title {
    font-size: 68px;
    margin-bottom: 40px;
    font-family: 'MachineC';
}

.first_section .desc {
    font-size: 18px;
    margin-bottom: 40px;
    font-family: 'CenturyGothic';
	font-weight: 700;
}

.first_section {
    position: relative;
    padding: 260px 0 0;
	margin-bottom: 78px;
}

.first_section_menu {
    position: relative;
    padding: 300px 0 0 0;
	margin-bottom: 25px;
	min-height: 490px;
}

.first_section .bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	background-image: url(../images/bg_first_section.jpg);
    background-repeat: no-repeat;
    background-position: top center; 
}


.first_section_menu .bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
	height: 100%;
	background-image: url(/wp-content/themes/mthem/images/43.png);
	/*../images/2.png*/
    background-position: 50% 0%;
    background-size: cover;
    background-repeat: no-repeat;
}

.first_section_menu .title {
    font-size: 72px;
    margin-bottom: 30px;
    font-family: Candara, sans-serif;
	text-align: center;
}

.first_section_menu .desc {
    font-size: 37px;
    margin-bottom: 0px;
    font-family: 'MachineC';
	text-align: center;
}

.first_section .bron {
	text-transform: uppercase;
    font-family: 'CenturyGothic';
	/*padding-bottom: 280px;*/
	padding-bottom: 100px;
}

.first_section .bron .title_bron {
    font-size: 20px;
    margin-bottom: 30px;
	font-weight: 700;
}

.first_section .bron .item {
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
}

.first_section .bron .item img {
	height: 25px;
}

.first_section .bron .item:before {
    position: absolute;
    content: '•';
    left: -23px;
    top: 11px;
}

.first_section .bron .item span {
	font-weight: 700;
}

.first_section .bron .item span a {
	color: #fff;
	text-decoration: none;
}

.first_section .soc {
	position: absolute;
	bottom: 35px;
	right: 0;
}

.first_section .soc img {
	vertical-align: middle;
}

.first_section .soc img:hover {
	opacity: 0.8;
}

.first_section .soc .ya {
	margin-right: 60px;
	display: inline-block;
}

.first_section .soc a + a {
    margin-left: 4px;
	display: inline-block;
	
}

.menu_section.gallery .desc {
	font-weight: 700;
	font-size: 18px;
}

.menu_section.gallery .desc:before {
    position: absolute;
    top: 12px;
    left: 0;
    border-top: 1px solid #d9d9d9;
    width: 100%;
    content: '';
    z-index: 1;
}

.gallery {
	text-align: center;
}

.gallery .cont {
    position: relative;
    z-index: 5;
	color: #000;
	padding-bottom: 10px;
}

.gallery .title {
    font-size: 60px;
    margin-bottom: 72px;
    font-family: 'MachineC';
	color: #000;
}

.gallery .desc {
    font-size: 15px;
    margin-bottom: 40px;
    font-family: 'CenturyGothic';
	color: #000;
	position: relative;
	margin-top: 20px;
}

.gallery .desc:before {
	position: absolute;
	top: 10px;
	left: 0;
	border-top: 1px solid #d9d9d9;
	width: 100%;
	content: '';
	z-index: 1;
}


.gallery .desc span {
	background: #fff;
	z-index: 2;
	position: relative;
	padding: 0 10px;
}


.gallery .flex
{
    margin-left: -20px;
    align-items: stretch;
    align-content: stretch;
    --cats_wall_count: 3;
}


.gallery .flex > * {
    width: calc(33.33% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
}

.gallery .flex .foto img {
    width: 100%;
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.action {
	background: transparent url('../images/action.jpg') no-repeat top center;
	padding: 110px 0;
}

.action .title {
    font-size: 60px;
    margin-bottom: 82px;
    font-family: 'MachineC';
	color: #fff;
	text-align: center;
	position: relative;
}

.action .title:before {
	position: absolute;
	bottom: -25px;
	left: calc(50% - 57px);
	content: '';
	border-top: 1px solid #8fd24e;
	width: 114px;
}

.action .slide {
	border: 1px solid #fff;
	padding: 35px 10px;
	border-radius: 5px;
	min-height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	color: #000;
	font-size: 15px;
	display: table;
}

.action .slide .slide-text {
	display: table-cell;
	vertical-align: middle;
}

.action .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.action .slide i {
	color: #999;
}

.action .slide p {
	margin-bottom: 10px;
}

.action .slide .rest {
	margin: 20px 0 0 0;
	text-align: center;
}



/*
.action .slide img {
	width: 100%;
	display: block;
}*/

.reviews {
	padding: 75px 0 110px 0;
}

.reviews .title {
    font-size: 60px;
    margin-bottom: 30px;
    font-family: 'MachineC';
	color: #000;
	text-align: center;
}

.reviews .ost-z {
	text-align: center;
}

.reviews .ost-z button {
	background: #000;
	color: #fff;
	border: none;
	padding: 10px 30px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
    margin-bottom: 30px;
	border-radius: 20px;
    font-family: var(--font_family);
}

.reviews .ost-z button:hover {
	background: #5d5959;
}

.reviews .slider {
	padding: 0 44px;
}

.reviews .slide {
	padding: 5px;
	display: table;
	height: 100%;
}

.reviews .slide .rev {
    color: #000;
    padding: 18px 30px;
    text-align: center;
    font-size: 13px;
    border-radius: 4px;
    margin: 0;
    line-height: 22px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border: 1px solid #cecece;
    display: table-cell;
    vertical-align: middle;
}

.reviews .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.reviews .slide .rev .r {
	background: transparent url('../images/r.jpg') no-repeat top center;
	margin: 28px auto 20px auto;
	width: 63px;
	height: 12px;
}

.reviews .slide .rev strong {
	font-size: 16px;
}



.map {
    position: relative;
    overflow: hidden;
	padding-bottom: 650px;
    background: #eee;
}

.map .cont {
    position: relative;	
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: transparent url('../images/maps.jpg?11') no-repeat top center;
}

#map .yandex {
	width: 100%;
	display: none;
	height: 100%;
}

.contacts {
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 5px;
	background: #fff;
	width: 400px;
	padding: 28px 45px;
	color: #000;
}

.contacts .title {
    font-family: 'CenturyGothic';
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.contacts .title span {
	border-bottom: 1px solid #8fd24e;
	padding-bottom: 10px;
	display: inline-block;
	padding-right: 25px;
}


.contacts .item {
    font-size: 18px;
	margin-bottom: 20px;
	position: relative;
	margin-left: 21px;
	text-transform: uppercase;
}



.contacts .item i {
	cursor: pointer;
	font-style: normal;
	border-bottom: 1px dashed #ccc;
}

.contacts .item:before {
    position: absolute;
    content: '•';
    left: -23px;
    top: 11px;
	color: #8fd24e;
}

.contacts .item span {
	font-weight: 700;
}

.contacts .item span a {
	text-decoration: none;
	color: #000;
}

.first_section .soc {
	align-items: center;
}

.contacts .soc img {
	margin-right: 5px;
}

.contacts .soc img:hover {
	opacity: 0.8;
}

.contacts-block-mob {
	display: none;
}

footer {
	background: #1e1e1e;
	color: #fff;
	overflow: hidden;
	padding: 15px 0;
}

footer .left, footer .right {
	width: 49%;
}

footer .left img {
	width: 170px;
	vertical-align: middle;
}

footer .right {
	text-align: right;
	padding-top: 30px;
}

.more {
	margin-bottom: 35px;
}

.gallery .foto.hide
{
	display: none;
	pointer-events: none;
}

.gallery .foto.show {
	display: block;
	pointer-events: auto;
}

.more button {
	background: #a1d740;
	color: #fff;
	border-radius: 20px;
	border: none;
	padding: 9px 0;
	text-transform: uppercase;
	font-size: 18px;
	width: 215px;
	cursor: pointer;
}

.more button span + span, .more button.active span {
    display: none;
}

.more button.active span + span {
    display: inline;
}


.gallery .flex .menu-bl {
	min-height: 445px;
	border: 1px solid #d7d7d7;
	color: #000;
	position: relative;
	padding-bottom: 42px;
}

.gallery .flex .menu-bl .foto img {
	width: 100%;
}

.gallery .flex .menu-bl .foto {
	margin-bottom: 30px;
}

.gallery .flex .menu-bl .name {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 20px;
	padding: 0 10px;
}

.gallery .flex .menu-bl .sost {
	font-weight: normal;
	font-size: 14px;
	margin-bottom: 30px;
	padding: 0 10px;
}

.gallery .flex .menu-bl .price {
	position: absolute;
	bottom: 0;
	right: 0;
	background: #fe6f01;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	padding: 11px 16px;
	text-align: center;
}

.gallery .flex .menu-bl button.shk-but {
	position: absolute;
	bottom: 0;
	left: 0;
	background: hsla(13.33333333333334, 9.09%, 19.41%, 1.00);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	padding: 11px 16px;
	text-align: center;
	margin: 0;
	border: none;
	cursor: pointer;
}


.gallery .flex .menu-bl button.shk-but:hover {
	opacity: 0.8;
}

#stuffHelper {
	color: #000;
	width: 250px !important;
	padding: 8px !important;
}

#stuffHelperName {
	display: inline-block;
	margin-bottom: 8px;
}

.shs-tocart form label, .shs-count label {
	vertical-align: middle;
}

#stuffHelper .shk-but {
	background: #7d2d4a;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 5px 10px;
	text-align: center;
	border: none;
	cursor: pointer;
}

.menu_section_mobile {
	margin: 25px 0 0 0;
	display: none;
}

.menu_section_mobile a {
	background: #199c68;
	color: #fff;
	text-decoration: none;
	border-radius: 20px;
	padding: 10px 20px; 
	text-align: center;
	font-weight: bold;
}


.desc_2 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 40px;
    font-family: 'CenturyGothic';
    color: #000;
    margin-top: 25px;
}


/*---------------
   PopUp
---------------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 555px;
    max-width: 100%;
    padding: 40px 90px;
    color: #000;
    background: #fff;
}

.modal_title
{
    font-size: 24px;
    font-weight: 700;
    line-height: normal;

    margin-bottom: 30px;
}

.modal_desc
{
    font-size: 13px;

    margin-top: -20px;
    margin-bottom: 30px;
}

.modal_title.center,
.modal_desc.center
{
    text-align: center;
}


.modal .form
{
    --form_border_color: #f4f4f4;
    --form_focus_color: #f4f4f4;
    --form_bg_color: #f4f4f4;
}

.modal .form .submit_btn
{
    width: 175px;
}


.form
{
    --form_border_color: #fff;
    --form_focus_color: #fff;
    --form_error_color: red;
    --form_success_color: green;
    --form_border_radius: 3px;
    --form_bg_color: #fff;
    --form_label_width: 190px;
    --form_placeholder_color: #616161;
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .columns
{
    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 7px;
}

.form .columns > *
{
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line
{
    margin-bottom: 12px;
}


.form .label
{
    font-size: 11px;
    font-weight: 700;
    line-height: 34px;

    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    padding: 0 14px;

    white-space: nowrap;
    text-transform: uppercase;
    text-overflow: ellipsis;

    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form .field
{
    position: relative;
}


.form .line.flex
{
    justify-content: flex-end;
}

.form .line.flex .label
{
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;

    position: relative;

    display: flex;

    width: var(--form_label_width);
    max-width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 0 15px 0 0;

    text-transform: none;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .line.flex .field
{
    width: calc(100% - var(--form_label_width));
}


.form .required
{
    color: #e2001a;

    margin-left: 3px;
}


.form .input
{
    color: #616161;
    font: 12px var(--font_family);

    display: block;

    width: 100%;
    height: 58px;
    padding: 19px 13px 0;

    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea
{
    color: #616161;
    font: 12px var(--font_family);

    display: block;

    width: 100%;
    height: 125px;
    padding: 34px 13px 13px;

    resize: none;
    transition: .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}


.form .input:focus,
.form textarea:focus,
.form .nice-select.open .current
{
    border-color: var(--form_focus_color);
}

.form .success,
.form .success + .nice-select .current
{
    border-color: var(--form_success_color);
}

.form .error,
.form .error + .nice-select .current
{
    border-color: var(--form_error_color);
}


.form .input:disabled,
.form textarea:disabled,
.form input[type=checkbox]:disabled + label
{
    cursor: default;
    pointer-events: none;

    opacity: .5;
}


.form .error_text
{
    color: var(--form_error_color);
    font-size: 14px;
    line-height: 20px;

    margin-top: 5px;
}


.form .exp
{
    font-size: 11px;

    padding-top: 3px;

    text-align: right;
}


.form .agree
{
    padding-top: 8px;
}


.form input[type=checkbox]
{
    display: none;
}

.form input[type=checkbox] + label
{
    font-size: 13px;
    line-height: normal;

    position: relative;

    display: table-cell;

    height: 21px;
    padding-left: 40px;

    cursor: pointer;
    text-align: left;
    vertical-align: middle;
}

.form input[type=checkbox] + label a
{
    color: #003569;

    text-decoration: none;
}

.form input[type=checkbox] + label a:hover
{
    text-decoration: underline;
}

.form input[type=checkbox] + label:before
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 21px;
    height: 21px;

    content: '';
    transition: .2s linear;

    border: 1px solid #bababa;
    background: #fff;
}

.form input[type=checkbox]:checked + label:before
{
    border-color: #000;
    box-shadow: inset 0 0 0 6px #000;
}


.form .bottom
{
    display: flex;

    padding-top: 5px;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .bottom .agree
{
    width: calc(100% - 230px);
    padding: 0;
}

.form .bottom .submit
{
    width: 175px;
    max-width: 100%;
    padding-top: 0;
}

.form .bottom .submit_btn
{
    width: 100%;
}


.form .submit
{
    display: flex;

    padding-top: 13px;

    justify-content: flex-end;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .submit_btn
{
    color: #fff;
    font: 700 14px/51px var(--font_family);

    display: inline-block;

    height: 51px;
    padding: 0 40px;

    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;

    border: none;
    background: #000;
}

.form .submit_btn:hover
{
    background: #504e4e;
}

.fancybox-slide--html .fancybox-close-small {
	color: #000;
}


.ok_modal {
    font-size: 18px;
    text-align: center;
    margin: 0;
    padding: 35px 0;
}

#menu59, #menu60 {
	display: none;
}

.buttonUp {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 70px;
    display: none;
}

.buttonUp button {
    background: #fe6f01;
    color: #fff;
	padding: 10px 20px;	
	border: none;
	border-radius: 5px 0 0 5px;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
}
/* герлянды в шапке */
.lights{
	height: 70px;
    background: url(http://kolkhida.ru/assets/images/lights.png) repeat-x 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
}

.short_cart {
	color: #000;
	text-align: center;
	margin-top: 50px;
	font-size: 27px;
}

.short_cart img {
	vertical-align: middle;
}

.short_cart a {
	color: #000;
	text-decoration: none;
}

.short_cart a i {
    font-style: normal;
	border-bottom: 1px dashed #fe6f01;
}


#cartInner fieldset {
	border: none;
}

#cartInner table {
	border: 1px solid #fe6f01;
	border-collapse: collapse;
}

#cartInner table td {
	border: 1px solid #fe6f01;
	padding: 6px;
	color: #000;
}

#cartInner table td a {
	color: #000;
}

.shop-cart {
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

#cartInner table td input {
	border: 1px solid #ccc;
	padding: 2px;
	text-align: center;
}

.shop-cart-head {
	padding: 0 !important;
	margin: 0 !important;
}

.shop-cart-head b {
	display: none;
}

#shopOrderForm table {
	border: 1px solid #fe6f01;
	border-collapse: collapse;
	margin: 0 auto 30px auto;
	width: 600px;
}

#shopOrderForm table td {
	border: 1px solid #fe6f01;
	padding: 8px;
	color: #000;
}

#shopOrderForm .l {
	text-align: left;
}

#shopOrderForm .c {
	text-align: center;
}

#shopOrderForm table td input[type="text"], 
#shopOrderForm table td input[type="tel"], 
#shopOrderForm table td select,
#shopOrderForm table td textarea {
	border: 1px solid #ccc;
	padding: 2px;
	width: 100%;
}

#shopOrderForm table td img {
	vertical-align: middle;
}

#shopOrderForm table td input[type="submit"] {
    background: #fe6f01;
    color: #fff;
    padding: 5px 20px;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	border: none;
}

#shopOrderForm table td input[type="submit"]:hover {
	opacity: 0.8;
}

#shopOrderForm .name {
	font-weight: bold;
}

#shopOrderForm .error {
	color: red;
	font-size: 11px;
	text-align: left;
}

.shopThankYou {
	text-align: center;
	font-size: 28px;
	margin: 50px 0;
	color: #000;
}

#orders input[type="submit"] {
    background: #98c34b;
    color: #fff;
    padding: 13px 30px;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	border: none;
	margin: 25px 0;
}

#orders input[type="submit"]:hover {
	opacity: 0.8;
}

.orders-m {
    margin: 50px 0 0 0;
}

.gh2 {
	margin: 25px 0;
	font-weight: normal;
}

.gh3 {
	margin: 25px 0;
	font-weight: normal;
}


.op-u {
	text-align: center;
	padding: 10px;
}

.text {
    font-size: 16px;
    line-height: 25px;
	color: #000;
	font-family: Arial;
}

.text p {
    margin-bottom: 13px;
}

.spasibo-5 {
    font-size: 30px;
    margin-bottom: 30px;
    font-family: Candara, sans-serif;
    text-align: center;
}

.txt-footer {
    display: inline-block;
    clear: both;
    color: hsla(43.84615384615385, 72.22%, 85.88%, 1.00);
    font-size: 12px;
    line-height: 1.4em;
    text-align: center;
    text-decoration: none;
}

.footer-contact {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
	padding: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-right: 1px solid hsla(11.999999999999932, 2.15%, 54.31%, 1.00);
    text-align: center;
}

.heading-footer {
    font-family: Candara, sans-serif;
    color: #fff;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}

.Shopkeeper.fixed {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	background-color: rgba(254,111,1, 0.8);
	padding: 10px;
	border-radius: 0 0 0px 8px;
}

.Shopkeeper.fixed .short_cart {
	margin: 0;
	font-size: 22px;
}

.Shopkeeper.fixed .short_cart img {
	max-width: 20px;
}