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

html {
	font-family: "Lato", Arial, sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
	width: device-width;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

body {
	margin: 0;
	font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI",
		"Helvetica Neue", Arial, sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	text-align: left;
	background-color: #ffffff;
}


.container {
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media (min-width: 1024px) {
    .container {
        padding-left:1rem;
        padding-right: 1rem;
        max-width: 1252px;
        margin-left: auto;
        margin-right: auto
    }
}

a {
    color: #05ada3;
    text-decoration: none
}

a:focus,a:hover {
    color: #05ada3;
    text-decoration: underline
}

a:active {
    color: #05ada3
}
.header-simplified {
    position: relative;
    top: 0;
    background-color: #fff;
    z-index: 2;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: height .1s;
    transition: height .1s;
}

.header-simplified .container,.header-simplified .UserBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header-simplified .container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header-simplified .logo {
    display: inline-block;
    z-index: 1;
    margin-right: auto
}

.header-simplified .logo img {
    height: 50px;
    max-width: 190px
}

@media (min-width: 480px) {
    .header-simplified .logo img {
        max-width:226px
    }
}

@media (min-width: 1280px) {
    .header-simplified .logo img {
        max-width: 250px
    }
}

.header-simplified__manage-orders {
    margin: 0 12px 0 0;
    text-indent: -150px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 2px rgba(183,198,205,.3) inset;
    box-shadow: inset 0 0 0 2px rgba(183,198,205,.3);
    background: url(/static/images/ico_manage-orders.svg) 50% no-repeat
}

@media (min-width: 1140px) {
    .header-simplified__manage-orders {
        -webkit-box-shadow:none;
        box-shadow: none;
        border-radius: 0;
        color: #05ada3;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-weight: 700;
        font-size: .875rem;
        margin: 0;
        overflow: visible;
        width: auto;
        height: auto;
        text-indent: unset;
        padding-left: 1.5rem;
        background-position: 0
    }
}

.header-simplified__manage-orders:hover {
    color: #02c4ac
}

.flat-spinner {
	margin: 90px auto;
	position: relative;
	border-top: 5px solid rgba(0, 147, 221, 0.2);
	border-right: 5px solid rgba(0, 147, 221, 0.2);
	border-bottom: 5px solid rgba(0, 147, 221, 0.2);
	border-left: 5px solid rgba(0, 147, 221, 1);
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: flat-spinner 1s infinite linear;
	animation: flat-spinner 1s infinite linear;
}

.flat-spinner,
.flat-spinner:after {
	border-radius: 50%;
	width: 64px;
	height: 64px;
}

@-webkit-keyframes flat-spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes flat-spinner {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.bundle-loading-error {
	padding: 20px;
	color: tomato;
	border: 2px solid tomato;
	display: table;
	font: bold 16px Arial, sans-serif;
	margin: 100px auto;
}
