.cw-header {
	background-color: #0077a8;
	filter: none;
}

.cw-header__inner-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	text-align: center;
}

@media screen and (min-width: 400px) {
	.cw-header__inner-container {
		justify-content: space-between;
	}
}

.cw-header__brand {
	position: relative;
    box-sizing: border-box;
    display: inline-block;
    min-height: 65px;
    vertical-align: middle;
    padding: 10px 0;
    margin-right: 20px;
}

.cw-header__logo {
	display: block;
	width: 250px;
	height: 50px;
	background: url(/static/images/logo-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
	text-decoration: none;
	border: 0;
	transition: none;
}

.cw-header__logo:hover {
	opacity: 0.85;
}

.cw-header__phone-block {
	color: #555;
	font-size: 13px;
	text-transform: uppercase;
	font-family: "Roboto", Arial, sans-serif;
	white-space: nowrap;
	letter-spacing: 2.5px;
}

.cw-header__phone-number, .cw-header__phone-number:hover, .cw-header__phone-number:focus {
	color: #00416d;
	text-decoration: none;
	border: 0;
}

.cw-header__phone {
	font-family: "Roboto", Arial, sans-serif;
	color: #546373;
}

.cw-header__user-info {
	padding: 10px 0;
}


/* Footer */
.cw-footer {
	clear: both;
	overflow: hidden;
	padding: 0 20px;
	background-color: #063263;
	border-top: 5px solid #0a58af;
	color: #8e8e8e;
	font-size: 12px;
}

.cw-footer__link {
	color: #8e8e8e;
	margin-right: 10px;
	display: inline-block;
}

.cw-footer__link:hover {
	border-color: #5f6367;
	color: #aeaeae;
}

.cw-footer__menu {
	float: right;
	margin: 10px 0;
	padding: 0;
}

.cw-footer__menu__item {
	display: inline;
	margin: 0;
	padding: 0;
}

.cw-footer__menu__item:not(:last-child) {
	margin-right: 20px;
}

.cw-footer__copyright {
	float: left;
	margin: 10px 0;
}

.rc-root-layout .Page {
	background-color: #e7f1fd;
}


/* UserBlock */

.UserBlockButton {
	background-color: #063263;
	width: auto;
	padding: 0 15px;
	vertical-align: top;
	display: inline-block;
	height: 25px;
	color: #fff;
	text-align: center;
	font: 14px/27px Arial, sans-serif;
	letter-spacing: 0;
	font-weight: 100;
	text-shadow: 0 1px 0 #666;
	border-radius: 6px 6px 0 0;
	margin-right: 5px;
}

.UserBlockButton:hover {
	color: #fff;
}

.UserBlockWhois {
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 25px;
	position: relative;
	opacity: 0.7;
}

.UserBlockWhois__avatar-container {
	box-sizing: border-box;
	display: block;
	border-radius: 50px;
	width: 35px;
	height: 35px;
	background: #fff url("/static/images/user-block-user.svg") left center/contain no-repeat;
	overflow: hidden;
	border: 1px solid #fff;
}

.main-header .UserBlockWhois__avatar-container {
	border: none;
	border-radius: 6px 6px 0 0;
}

.UserBlockWhois__avatar {
	display: block;
	width: 100%;
	height: 100%;
}

.UserBlockWhois--open {
	opacity: 1;
}

/* .UserBlockWhois::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 0;
	height: 0;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	border-top: 5px solid #fff;
	margin-top: -1px;
} */

@media (max-width: 960px) {
	.UserBlockButton {
		height: 35px;
		border-radius: 0;
		line-height: 35px;
		font-size: 14px;
	}
	body:not(.cabinet) .UserBlockWhois__avatar-container, .UserBlockWhois {
		height: 35px;
		width: 45px;
	}
	body:not(.cabinet) .UserBlockWhois__avatar-container {
		width: 35px;
		border: none;
	}
}

@media (min-width: 480px) and (max-width: 960px) {
	#menu li:last-child {
		width: 66%;
	}
}

@media (max-width: 480px) {
	.UserBlockButton {
		width: calc(100% - 55px);
		font-size: 12px;
		padding: 0;
	}
}

/* Auth page */

.mini-auth-page {
	background: linear-gradient(to bottom, #f7fafb 0%, #dff7ff 100%);
	min-height: 100vh;
	font-weight: normal;
	font-size: 14px;
	line-height: 170%;
	background-color: #e8ece7;
	color: #464646;
	display: flex;
	flex-wrap: wrap;
	align-content: baseline;
}

.mini-auth-page__header {
	flex: 1 1 100%;
	overflow: hidden;
}

.mini-auth-page__logo {
	margin: 6vh auto 3vh;
	display: block;
	margin-bottom: 20px;
}

.mini-auth-page__body {
	flex: 1 1 100%;
}

.auth-block {
	position: relative;
	background-color: white;
	width: 92%;
	max-width: 780px;
	margin: 0 auto 5vw;
	line-height: 1.4;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 1px 5px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 641px) {
	.auth-block {
			display: table;
			table-layout: fixed;
	}
	.auth-block__inner-wrapper {
			display: table-row;
	}
	.auth-block__info-pane {
			width: 280px;
			display: table-cell;
			vertical-align: top;
	}
	.auth-block__auth-pane {
			display: table-cell;
	}
	.auth-block__info-pane {
			width: 280px;
			display: table-cell;
			vertical-align: top;
	}
}

.auth-block__info-pane {
	background: #f6f8f9;
}

@media only screen and (max-width: 640px) {
	.auth-block__info-pane {
			display: none;
	}
	.Inquiry {
			margin: 0 0 20px;
	}
}

.auth-block__info-pane__title {
	font-size: 15px;
	line-height: 1.45;
	padding: 20px 20px 0;
	border-top: 10px solid #7bb52f;
}

.auth-block__info-pane__body {
	padding: 20px;
}

.auth-block__auth-pane {
	background: white;
	padding: 8px 15px;
}

@media only screen and (min-width: 641px) {
	.auth-block__auth-pane {
			padding: 25px 35px;
	}
}

.auth-block__title {
	text-transform: uppercase;
	font-size: 20px;
	margin-bottom: 20px;
}

.auth-block__info-pane__item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.auth-block__info-pane__item::before {
	content: "";
	display: block;
	width: 68px;
	height: 68px;
	flex: 0 0 auto;
	margin-right: 10px;
	background: transparent none center/contain no-repeat;
}

.auth-block__info-pane__item--confidential::before {
	background-image: url("/static/images/s-confident.svg");
}

.auth-block__info-pane__item--quality::before {
	background-image: url("/static/images/s-quality.svg");
}

.auth-block__info-pane__item--fromscratch::before {
	background-image: url("/static/images/s-scratch.svg");
}

.auth-block__info-pane__item--plagfree::before {
	background-image: url("/static/images/s-plagfree.svg");
}

.mini-auth-page__footer {
	flex: 1 1 100%;
	position: relative;
	z-index: 0;
	padding: 20px 5px;
	text-align: center;
	font-size: 13px;
	color: rgba(0, 0, 0, 0.45);
}

.mini-auth-page__footer::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	-webkit-mask-image: linear-gradient(to right, transparent, black, transparent);
	mask-image: linear-gradient(to right, transparent, black, transparent);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, .06) 3px, transparent);
}

.mini-auth-page__footer__links {
	margin: 12px;
}

.mini-auth-page__footer__link {
	display: inline-block;
	text-decoration: none;
	margin-right: 15px;
	color: rgba(0, 0, 0, 0.6);
}

.mini-auth-page__footer__link:hover {
	color: rgba(0, 0, 0, 0.8);
}

.mini-auth-page__footer__copyrights {
	margin: 5px;
}

.CheckoutInfoAddOn__payment_methods {
  margin-top: 18px;
  height: 27px;
  background-image: url("/static/images/accept-min.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.CheckoutInfoAddOn__mcafee {
  margin-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.McAfee__image {
  margin: 10px auto;
  height: 38px;
  display: block;
  width: 92px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  background: url(/static/images/mcAfee.png) center center / 92px 38px no-repeat rgb(255, 255, 255);
  overflow: hidden;
  cursor: pointer;
}

.McAfee__image:hover {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .2);
}