body {
	background: url("/assets/template/img/bg_body.png") top center;
}

body, input, textarea {
	font: 14px Helvetica, Arial, sans-serif;
}

table {
    width: 100%;
    max-width: 800px;
    margin: 15px auto;
    border-collapse: collapse;
    box-shadow: 0px 0px 10px 1px rgba(125, 120, 120, 0.5);
}

tr {
    text-align: center;
}

td {
    border: 1px solid #7d7878;
    box-sizing: border-box;
    padding: 4px 0px;
}

th {
    border: 1px solid #7d7878;
    background: #2376dc;
    color: #fff;
    text-shadow: 1px 0.6px 0px #656565;
    text-transform: uppercase;
    padding: 8px 0;
}

.bodyInner {
    max-width: 960px;
    margin: 30px auto 0;
}

.headerContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.headerLogo img {
    max-width: 250px;
}

.headerLogo img:hover,
.footerLogo img:hover {
    filter: brightness(0.9);
    transition: 0.3s;
}

.headerImg {
    background: url("/assets/template/img/slide.jpg");
    height: 85px;
    background-position: center;
    background-size: cover;
    filter: brightness(0.4);
}

.headerSlogan {
    font-size: 22px;
    max-width: 320px;
    text-align: center;
    color: #7d7878;
}

.headerButton {
	max-width: 220px;
	margin: 20px auto 0;
	box-shadow: 0px 0px 10px 1px rgba(125, 120, 120, 0.5);
	border-radius: 4px;
}

.headerButton button {
    background: #2376dc;
    border: 1px solid #7d7878;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 0.6px 0px #656565;
}

.headerContactsInner {
    padding-right: 15px;
    color: #7d7878;
    max-width: 210px;
    line-height: 24px;
    text-align: right;
}

.headerPhone a,
.headerEmail a {
    color: #7d7878;
    text-decoration: none;
}

.headerPhone a:hover,
.headerEmail a:hover {
	transition: 0.3s;
	color: #484646;
}

.headerPhone {
    font-size: 24px;
    padding-bottom: 6px;
    text-shadow: 0px 1px rgba(125, 120, 120, 0.4);
}

.headerEmail {
    font-size: 18px;
}

.headerMenu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    background: #2376dc;
    text-transform: uppercase;
    font-weight: bold;
    align-items: center;
    text-align: center;
}

.headerMenu li {
    list-style-type: none;
    width: 100%;
    position: relative;
}

.headerMenu li:hover,
.headerMenu li.active  {
	text-decoration: underline;
    box-shadow: inset 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.headerMenu a {
    display: block;
    padding: 20px 15px;
    color: #fff;
    text-decoration: none;
    text-shadow: 1px 0.6px 0px #656565;
}

.headerMenu li:after {
    content: "";
    background: url(/assets/template/img/menuSeparator.png) no-repeat;
    position: absolute;
    width: 1px;
    height: 20px;
    left: 0;
    transform: translate(-50%,-50%);
    top: 50%;
}

.headerMenu li:first-child:after {
	content: none;
}

header, .main {
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

.main.homePage {
    flex-direction: column;
}

.main {
    display: flex;
    margin-bottom: 15px;
}

.mainContent {
    background: #fff;
    padding: 5px 20px;
    box-sizing: border-box;
    width: 100%;
}

.breadCrumbs ul {
	display: flex;
	flex-direction: row;
	padding-left: 10px;
}

.breadCrumbs li {
	list-style-type: none;
	padding: 0 10px;
	position: relative;
}

.breadCrumbs li:after {
	content: "/";
	position: absolute;
	right: 0;
}

.breadCrumbs li:last-child:after {
	content: none;
}

.breadcrumb-item a {
	color: rgb(0, 0, 0);
}

.footerInner {
	background: url(/assets/template/img/footer-bg.png);
}

.footerInnerInfo {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footerLogo img {
    max-width: 140px;
}

.footerLogo {
    padding: 5px;
}

.footerContacts {
    padding: 10px;
    align-self: center;
}

.footerContacts a {
    color: #000;
}

.footerCopyright {
    align-self: flex-end;
    padding-bottom: 15px;
    text-align: center;
    font-size: 12px;
}

.leftMenu {
    max-width: 200px;
    width: 100%;
    background: #fff;
}

.leftMenu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    box-shadow: -5px 5px 5px 0px rgba(0,0,0,0.25);
}

.leftMenu li {
    border-bottom: 1px solid #7d7878;
    background-color: #efefef;
}

.leftMenu li a:hover {
    text-decoration: underline;
}

.leftMenu li:last-child {
    border-bottom: none;
}

.leftMenu li li {
    background-color: white;
}

.leftMenu li li a {
    box-sizing: border-box;
    padding-left: 24px;
}

.leftMenu a,
.leftMenu span {
    color: #000;
    display: block;
    width: 100%;
    padding: 8px;
    text-decoration: none;
}

.leftMenu li.active > a {
    text-decoration: underline;
    background: #2376dc;
    color: #fff;
}
.leftMenu li li.active > a {
    text-decoration: underline;
    background: #71c2ff;
    color: #fff;
}
.leftMenu .active span {
    color: #fff;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background-color: #000000;
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0);
}

.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: none;
    overflow: auto;
    overflow-y: hidden;
    width: 350px;
    margin: auto;
}

.modal-dialog {
    z-index: 1050;
    width: auto;
    padding: 10px;
    min-width: 320px;
    margin-right: auto;
    margin-left: auto;
    top: 35%;
    position: absolute;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
}

.modal-header {
    min-height: 16.428571429px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    -webkit-appearance: none;
}

.modal-header .close {
    margin-top: -2px;
}

.modal-heading {
    font-weight: 600;
    font-size: 18px;
}

.modal-body {
    position: relative;
    padding: 20px;
    text-align: left;
}

form {
    margin: 0;
    padding: 0;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.flex-grid-row.item {
    padding: 0;
}

#modal_feedback input {
    width: 95%;
    margin: 5px 0 10px 0;
    border-radius: 3px;
    border: 1px solid #646363;
    padding: 5px;
}

input#input_name, input#input_phone {
    box-shadow: 0 0 5px #646363;
}

select, input[type="password"], input[type="text"] {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #fff;
}

.dif {
    display: flex;
    line-height: 22px;
}

.flex-grid-row.item {
    padding: 0;
}

.flex-grid-item.form-label-wrapper.form-checkbox-wrapper {
    width: 7%;
}

.tac {
    text-align: center;
}

#modal_feedback button.btn-primary {
    background: #2376dc;
    border: 1px solid #7d7878;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 0.6px 0px #656565;
}

#modal_feedback button.btn-primary:hover,
.headerButton button:hover {
    opacity: 0.7;
    transition: .5s;
}

.mobile-header {
    display: none;
}

.error-text {
    color: #ff0000;
}

.payment__list {
    display: flex;
    justify-content: space-around;
    margin: 48px 0;
}