body, html {
	width: 100%;
	margin: 0;
    background-color: #FFCF48;
}

/* background color for body - #ffcf4845 */

h1 {
    font-family: "Comic Sans MS", cursive;
}

@media (min-width: 700px) {
	h1 {
		margin: 40px 0 30px 225px;
		font-size: 60px;
		-webkit-text-stroke: 2.5px brown;
		color: yellow;
		text-shadow: 3px 3px 10px black;
	}
}

@media (max-width: 700px) {
	h1 {
		margin: 30px 0 30px 150px;
		font-size: 50px;
		-webkit-text-stroke: 2.5px brown;
		color: yellow;
		text-shadow: 3px 3px 10px black;
	}
}

@media (max-width: 550px) {
	h1 {
		margin: 80px 0 30px 150px;
		font-size: 50px;
		-webkit-text-stroke: 2.5px brown;
		color: yellow;
		text-shadow: 3px 3px 10px black;
	}
}

@media (max-width: 420px) {
	h1 {
		margin: 90px 0 30px 30px;
		font-size: 50px;
		-webkit-text-stroke: 2.5px brown;
		color: yellow;
		text-shadow: 3px 3px 10px black;
	}
}

h2 {
	margin-top: 10px;
	font-size: 40px;
	-webkit-text-stroke: 1.2px brown;
    color: yellow;
	text-shadow: 2px 2px 7px brown;
}

h3 {
	font-size: 35px;
	-webkit-text-stroke: 1px brown;
    color: yellow;
	text-shadow: 1px 1px 5px brown;
	margin-bottom: 5px;
}

/* ------------------=Header */

.header {
	background: url(../images/header_background.jpg);
    background-size:  100% 500px;
    overflow: hidden;
	z-index: 100;
}

@media (min-width: 700px) {
	.logo_image {
		width: 150px;
		margin: 10px 10px 10px 35px;
		display: inline-block;
		float: left;
	}
}

@media (max-width: 700px) {
	.logo_image {
		width: 100px;
		margin: 10px 10px 10px 35px;
		display: inline-block;
		float: left;
	}
}

/* Head menu */

.head_menu {
    display: inline-block;
}

.head_menu_element {
	display: inline-block;
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.head_menu_link {
	margin: 10px auto;
    padding: 5px;
    background-color: yellow;
    border: 3px solid #ff8d00;
    border-radius: 10px;
    font-family: Comic Sans MS;
	font-size: 20px;
	font-weight: bold;
    text-decoration: none;
	color: chocolate;
	box-shadow: 5px 5px 10px brown;
	transition: 0.3s ease-out;
}

.head_menu_link:hover {
    border: 3px solid orange;
	background-color: chocolate;
	color: yellow;
}

.select_head_menu_link {
    border: 3px solid orange;
	background-color: chocolate;
	color: yellow;
}

/* Styles for select account actions */

.account  {
	position: absolute;
	top: 20px;
	right: 20px;
}

.accountImage {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}

/* Styles for sign in and register pages */

.signInBlock,
.registerBlock,
.signOutBlock {
	margin-top: 50px;
	padding: 20px 30px;
	padding-top: 20px;
	border: 3px solid chocolate;
	border-radius: 20px;
	background-color: #ffdc7a;
	color: chocolate;
	display: inline-block;
}

.signInBlock a,
.registerBlock a,
.signOutBlock a {
	color: chocolate;
	text-decoration: underline;
	font-style: italic;
}

.signInBlock a:hover,
.registerBlock a:hover
.signOutBlock a:hover {
	color: red;
	text-decoration: underline;
	text-decoration-style: double;
}

.signInBlock h3,
.registerBlock h3
.signOutBlock h3 {
	margin: 0;
	margin-bottom: 20px;
}

.signInFormBlock,
.signInElement {
	display: inline-block;
	margin: auto 0;
}

.registerFormBlock,
.registerElement {
	display: inline-block;
	margin: auto 0;
}

.registerElement {
	margin: 40px 0;
}

.signInFormBlock h4,
.registerFormBlock h4 {
	margin: 7px;
}

.aboutInputTexts_block,
.signInInputs_block,
.registerInputs_block {
	display: inline-block;
}

.aboutInputText_block {
	height: 48px;
	padding: 13px;
}

.aboutInputText {
	font-style: italic;
	color: chocolate;
	font-size: 20px;
}

.signInInputs,
.signInInputs:active,
.signInInputs:focus,
.registerInputs,
.registerInputs:active,
.registerInputs:focus {
	z-index: 99;
	width: 250px;
	height: 30px;
	outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: orange;
	border-radius: 10px;
	padding: 5px;
	font-family: comic Sans MS;
	font-size: 17px;
}

.blockForRasswordElement input[type=password],
.blockForRasswordElement input[type=text] {
	width: 220px;
}

.labelForPasswordCheckbox {
	width: 40px;
	height: 40px;
	position: relative;
}

.blockForRasswordElement input[type="checkbox"] {
	opacity: 0;
}

.blockForRasswordElement input[type="checkbox"] + span {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	background: url(../images/account/hidePassword.png) no-repeat;
	cursor: pointer;
	margin-top: -10px;
}

.blockForRasswordElement input[type="checkbox"]:checked + span  	{
	background: url(../images/account/showPassword.png) no-repeat;
	margin-top: -8.1px;
}

.sendButton,
.sendButton:active,
.sendButton:focus {
	border-radius: 10px;	 
    outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: orange;
	border-radius: 10px;
	padding: 5px 10px;
	font-family: comic Sans MS;
	font-size: 15px;
}

#signInInformation,
#registerInformation {
	color: red;
	font-style: italic;
	font-size: 20px;
}

.timeToGoHeadText {
	font-size: 20px;
}

.timeToGo {
	font-size: 20px;
	color: green;
}

/* ------------------=Main */

.main {
	text-align: center;
	overflow: hidden;
	margin-bottom: 50px;
}

/* --==First page==-- */

.aboutUsText {
	margin-bottom: 10px;
}

.sunHoneyText {
	margin: 10px 0;
}

.miniShowcaseItemBlock {
	display: inline-block;
}

.miniShowcase_block {
	display: inline-block;
	padding: 10px;
	margin: 20px;
	border: 2px solid brown;
	background-color: lightyellow;
	width: 320px;
	height: 345px;
}

.miniShowcaseImg {
	height: 200px;
	max-width: 300px;
}

.aboutText {
	font-family: Comic Sans MS;
	color: DarkOrange;
	font-size: 25px;
	-webkit-text-stroke: 0.6px brown;
	margin-right: 10px;
}

.video, .video:active, .video:focus {
	width: 600px;
	border: 4px solid Chocolate;
	overflow: hidden;
	padding: 0px;
	outline: none;
}

.video_1 {
	margin: 0px 40px 40px 0px;
}

.video_2 {
	margin: 0px 40px 0px 0px;
}

/* --==Second page==-- */

#tabs {
	background-color: #ffba00;
	border: 2px solid chocolate;
	width: 75%;
	min-height: 500px;
	margin: 10px auto;
}

.magaz_block {
	display: inline-block;
	padding: 10px;
	margin: 20px;
	border: 2px solid brown;
	background-color: lightyellow;
	width: 406px;
}

.magazImg {
	height: 300px;
	max-width: 380px;
}

.addToCart-btn_container {
	position: absolute;
	width: 60px;
	height: 60px;
	background-color: rgba(128, 128, 128, 0.6);
	z-index: 102;
	opacity: 0;
}

.magaz_block .addToCart-btn {
	position: absolute;
	width: 60px;
	height: 60px;
	z-index: 101;
	opacity: 0;
}

.productName, .price {
	color: DarkOrange;
	font-family: Comic Sans MS;
}

.orderCompleted {
	cursor: pointer;
	border: 2px solid green;
	border-radius: 7px;
	padding: 5px 7px;
	color: green;
	background-color: #FFCF48;
}

/* --==Third page==-- */

.video_3 {
	background-color: #d17c40;
	height: 600px;
}

.historyText {
	color: #ba6c23;
	font-size: 21px;
	width: 65%;
	margin-left: 17.5%;
	text-align: justify;
	text-indent: 50px;
}

/* --==Thorth page==-- */

.contacts {
	font-family: Comic Sans MS;
	font-size: 30px;
	-webkit-text-stroke: 0.6px brown;
    color: DarkOrange;
	text-decoration: none;
	/*text-shadow: 3px 3px 10px grey;*/
}

.contactsHref {
	font-style: italic;
}

.contactsHref:hover {
	text-decoration: underline;
	text-decoration-color: Chocolate;
	color: orangered;
}

/* .socialNetContainer {
	display: inline-block;
	margin: 0 15px 0 0;
	width: 75px;
}

.socialNet:hover {
	width: 55px;
} */

/* --==Fifth page==-- */

.newRewievBlock {
	opacity: 0;
}

.needToSignInTextBlock {
	opacity: 1;
}

.rewievTable {
	background-color: #ffe559;
	text-align: center;
	border: 2px solid Chocolate;
	width: 50%;
	font-size: 20px;
}

td, th {
	border: 1px solid Chocolate;
	padding: 8px;
	color: #cf7903;
}

.writeRewievText,
.profileBlock,
.profileTexts {
	color: #cf7903;
	font-size: 20px;
}

.writeRewievInput,
.writeRewievInput:active,
.writeRewievInput:focus {
	width: 500px;
	outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: orange;
	border-radius: 10px;
	padding: 5px;
	font-family: comic Sans MS;
	font-size: 20px;
}

.writeRewievButton,
.writeRewievButton:active,
.writeRewievButton:focus {	 
    outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: orange;
	border-radius: 10px;
	padding: 5px;
	font-family: comic Sans MS;
	font-size: 20px;
}

textarea {
	color: Chocolate;
	border: 2px solid orange;
	min-width: 500px;
	max-width: 800px;
	min-height: 100px;
	max-height: 200px;
}

.rewievSendAnswerBlock {
	margin-top: 20px;
}

.rewievSendAnswerElement {
	display: inline-block;
}

.beeImg {
	width: 100px;
}

.goBack, .goBack:active, .goBack:focus  {
	padding: 5px;
	background-color: gold;
	border: 3px solid darkorange;
	border-radius: 10px;
	color: chocolate;
	text-decoration: none;
}

.goBack:hover {
	border-color: red;
}

.rewievSendAnswerText {
	font-style: italic;
	color: chocolate;
	font-size: 30px;
}

/* --==Sixth page==-- */

.colInput::-webkit-outer-spin-button,
.colInput::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* ------------------=Footer */

.footer {
	padding: 5px;
	width: 100%;
	position: fixed;
	bottom: 0px;
}

.creatorName {
	margin: 0;
	font-size: 15px;
}

.creatorName a {
	text-decoration: none;
}

.creatorName a:hover {
	text-decoration: underline;
}


#goTopButton {
	display: inline-block;
	background-color: #FF9800;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s, 
    opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}
#goTopButton::after {
	content: "\f077";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	font-size: 2em;
	line-height: 50px;
	color: #fff;
}
#goTopButton:hover {
	cursor: pointer;
	background-color: #b0500c;
}
#goTopButton:active {
	background-color: #555;
}
#goTopButton.show {
	opacity: 1;
	visibility: visible;
}

/* Cart */

.loadingText {
	margin: 20px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid chocolate;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
	margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.emptyCartText,
.needTosignInCartText {
	margin: 10px;
	color: chocolate;
	font-size: 20px;
}

.emptyCartText a,
.needTosignInCartText a {
	color: #ff6a00;
	font-style: italic;
}

.emptyCartText a:hover,
.needTosignInCartText a:hover {
	color: red;
}

#header .smalcart {
float: right;
height: 55px;
padding: 10px;
padding-left: 15px;
margin: 10px;
border: 1px solid gray;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
background: #E6DEEA;
}

* {
	box-sizing: border-box;
}
 
.image img {
	height: 80px;
}

.shopping-cart,
.ordersTable,
.cart-archive-completing,
.cart-archive-completed {
	display: inline-block;
	margin: 10px auto;
	background: #ffe559;
	box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
	border: 2px solid chocolate;
	border-radius: 6px;
}

.cart-archive-headtexts {
	font-size: 20px;
	-webkit-text-stroke: 0px;
    color: yellow;
	text-shadow: none;
}

.cart-archive-headtexts:hover {
	font-size: 20px;
	-webkit-text-stroke: 0px;
    color: yellow;
	text-shadow: none;
}

.cart-archive-headtexts:active {
	font-size: 20px;
	-webkit-text-stroke: 0px;
    color: yellow;
	text-shadow: none;
}

.cart-archive-blocks {
	height: 100%;
	width: 100%;
}

.ordersBlock {
	display: block;
}

.ordersTable {
	margin-bottom: 20px;
}

.saveToExcell,
.saveToExcell:active,
.saveToExcell:focus {
	/* position: absolute;
	right: 0; */
	outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: Chocolate;
	border-radius: 10px;
	padding: 5px;
	font-family: comic Sans MS;
	font-size: 17px;
}

.saveToExcell img {
	height: 40px;
}

/* .shopping-cart {
	display: inline-block;
	width: 100%;
	background: #ffe559;
	box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
	border: 2px solid chocolate;
	border-radius: 6px;
} */
 
/* Cart item */
.item {
	padding: 20px 30px;
	padding-right: 0px;
	min-height: 120px;
	display: flex;
	border-bottom: 1px solid chocolate;
}

.item:last-child {
	border-bottom: none;
}

.item:first-child {
	min-height: 80px;
	padding: 7px;
}

.cartActionImages {
	height: 70px;
	cursor: poiner;
}

.cartActionImages:hover {
	cursor: pointer;
}

#buyAll {
	margin-left: auto;
	margin-right: 0;
}

.delete-btn-container {
  position: relative;
  padding-top: 30px;
  margin-right: 20px;
}

.delete-btn,
.addToCart-btn {
	display: inline-block;
	Cursor: pointer;
}

.delete-btn {
	width: 18px;
	height: 17px;
	background: url("../images/cart/delete-icn.svg") no-repeat center;
}
 
@keyframes animate {
	0%   { background-position: left;  }
	50%  { background-position: right; }
	100% { background-position: right; }
}
 
.description {
	padding: 10px 10px 0 10px;
	min-width: 350px;
	width: 350px;
}
 
.description span {
	display: block;
	color: chocolate;
}
 
.name-span,
.quantity-span {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 5px;
}

hr {
	border: none;
    color: chocolate;
    background-color: chocolate;
    height: 0.5px;
}

.description-span {
	font-size: 14px;
}

.quantity {
	padding-top: 20px;
}

.quantity input {
	background-color: yellow;
	-webkit-appearance: none;
	border: 0.5px solid chocolate;
	border-radius: 5px;
	text-align: center;
	width: 50px;
	font-size: 16px;
	color: #8f4007;
	font-weight: 300;
}
 
button[class*=btn],
.delete-btn {
	width: 30px;
	height: 30px;
	background-color: yellow;
	border-radius: 6px;
	border: 0.5px solid chocolate;
	cursor: pointer;
}

.minus-btn img {
	margin-bottom: 3px;
}
.plus-btn img {
	margin-top: 2px;
}
 
button:focus,
input:focus {
	outline:0;
}

.image {
	padding: 0 30px;
	width: 170px;
}

/* .image:hover {
	padding: 0 5px;
} 

.smallImage:hover {
	position: absolute;
	width: 200px;
	height: auto;
}*/

.quantity {
	padding-left: 30px;
	padding-right: 30px;
}

.image,
.quantity {
	border-right: 1px solid chocolate;
	border-left: 1px solid chocolate;
}

.total-price {
	width: 85px;
	padding-top: 27px;
	text-align: center;
	font-size: 16px;
	color: chocolate;
	font-weight: 700;
}

@media (max-width: 800px) {
	.shopping-cart {
		width: 100%;
		height: auto;
		overflow: hidden;
	}
	
	.item {
		height: auto;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.image,
	.quantity,
	.description {
		text-align: center;
		margin: 6px 0;
	}
	
	.quantity,
	.description {
		width: 100%;
	}

}

/* Profile styles */
.profileBlock {
	display: inline-block;
	background-color: #ffe559;
	border: 3px solid chocolate;
	border-radius: 10px;
	padding: 10px;
}

.profileTexts,
.profileInputs {
	display: inline-block;
}

.profileTexts p {
	margin: 0 10px 20px 0;
	text-align: left;
}

.profileInput,
.profileInput:active,
.profileInput:focus {
	min-width: 300px;
	width: auto;
	outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: orange;
	border-radius: 10px;
	padding: 5px;
	font-family: comic Sans MS;
	font-size: 17px;
	font-weight: bold;
	margin-bottom: 5px;
}

.profileButtons,
.profileButtons:active,
.profileButtons:focus {
	border-radius: 10px;	 
    outline: none;
	color: Chocolate;
	background-color: #ffdd28;
	border-color: orange;
	padding: 5px;
	font-family: comic Sans MS;
	font-size: 17px;
	margin: 5px 0;
}

.profileBlock .profileButtons {
	margin: 0;
}

#passwordButton {
	width: 300px;
}

#nameInput {
	border: none;
}

#saveChangesButton  {
	float: right;
}

/* slider */

.slider__item {
	position: static;
	margin: 10px 0;
	height: 480px;
	overflow: hidden;
}

.sliderImg {
	height: 100%;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 50%;
  height: 500px;
  margin: 70px 24%;
  background-color: #B57900;
}

.slider__wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.slider__item {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Для изменения количества слайдов изменить проценты */
@media (min-width: 980px) {
  .slider__item {
	flex: 0 0 100%;
	max-width: 100%;
  }
}

.slider__control {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  height: 50px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
}

.slider__control:hover,
.slider__control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
  	cursor: pointer;
}

.slider__control_left {
  left: 0;
}

.slider__control_right {
  right: 0;
}

.slider__control::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.slider__control_left::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.slider__control_right::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.slider__item>div {
  line-height: 500px;
  font-size: 100px;
  text-align: center;
}

/* Select */
.container {
    max-width: 250px;
	min-width: 102px;
    margin-left: auto;
    margin-right: auto;
	color: chocolate;
}

.select {
  position: relative;
  width: 100%;
  z-index: 1000;
}

.select__trigger {
  display: flex;
  background-color: yellow;
  border: 3px solid chocolate;
  border-radius: 0.3125rem;
  cursor: pointer;
  align-items: center;
  width: 100%;
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.4;
  user-select: none;
  font-size: 1rem;
  justify-content: space-between;
  font-style: italic;
  box-shadow: 3px 3px 4px brown;
}

.select__trigger::after {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  background-size: cover;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100"%3E%3Cpath d="M97.625 25.3l-4.813-4.89c-1.668-1.606-3.616-2.41-5.84-2.41-2.27 0-4.194.804-5.777 2.41L50 52.087 18.806 20.412C17.223 18.805 15.298 18 13.03 18c-2.225 0-4.172.804-5.84 2.41l-4.75 4.89C.813 26.95 0 28.927 0 31.23c0 2.346.814 4.301 2.439 5.865l41.784 42.428C45.764 81.174 47.689 82 50 82c2.268 0 4.215-.826 5.84-2.476l41.784-42.428c1.584-1.608 2.376-3.563 2.376-5.865 0-2.26-.792-4.236-2.375-5.932z"/%3E%3C/svg%3E');
}

.select__trigger:focus {
  outline: none;
}

.select_show .select__trigger::after {
  transform: rotate(180deg);
}

.select__dropdown {
  display: none;
  top: 2.5rem;
  left: 0;
  right: 0;
  border: 2px solid chocolate;
  max-height: 10rem;
  overflow-y: auto;
  border-radius: 0.3125rem;
  background-color: yellow;
  box-shadow: 3px 3px 4px brown;
  font-family: Comic Sans MS;
  font-size: 17px;
  font-weight: bold;
}

.select_show .select__dropdown {
  display: block;
}

.select_show .select__backdrop {
  display: block;
}

.select__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.select__item {
  padding: 0.375rem 0.75rem;
  color: chocolate;
}


.select__items a {
	/* pointer-events: none; */
	color: chocolate;
	text-decoration: none;
}

.select__item_selected {
  background-color: yellow;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select__item_selected::after {
  content: '';
  width: 0.75rem;
  height: 0.75rem;
  color: #0277bd;
  background-size: cover;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" height="100" width="100" class="svg-inline--fa fa-check fa-w-16" data-icon="check" data-prefix="fas" aria-hidden="true"%3E%3Cpath d="M33.964 85.547l-32.5-32.251a4.935 4.935 0 010-7.017l7.071-7.017a5.027 5.027 0 017.071 0L37.5 60.987l46.894-46.534a5.028 5.028 0 017.07 0l7.072 7.017a4.935 4.935 0 010 7.017l-57.5 57.06a5.027 5.027 0 01-7.072 0z" fill="%230277bd"/%3E%3C/svg%3E');
}

.select__item:hover {
  background-color: orange;
  cursor: pointer;
  transition: 0.2s background-color ease-in-out;
}

.select__backdrop {
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  background-color: transparent;
}