@charset "utf-8";
html {
  padding: 0;
  margin: 0;
  color: #615435;
  font-size: 13px;
  font-family: "Muli", sans-serif;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}
input {
  -webkit-appearance: none; /*this code to remove change css on ios for input and buttons*/
}
textarea {
  -webkit-appearance: none; /*this code to remove change css on ios for input and buttons*/
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  width: 100%;
  overflow-x: hidden;
}
li {
  list-style-type: none;
}
a {
  color: #575757;
}
.cur {
  cursor: pointer;
}
img {
  border: 0;
}
.after {
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}
.full-width {
  width: 100%;
  float: left;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
a {
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
#maincontainer {
  width: 100%;
  overflow: hidden;
}
.centered {
  width: 1200px;
  margin: 0 auto;
}
.hidden {
  display: none;
}
.loading_container {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 900000000;
  position: fixed;
  display: none;
}
.loader {
  width: 300px;
  height: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../../images/Eclipse.svg);
  background-size: 100% 100%;
}

.product_added_message_container {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0.5);
  left: 0px;
  top: 0px;
  z-index: 1000;
}
.product_added_message {
  width: 796px;
  z-index: 999;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #ccc;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 25px;
}
.product_added_message_icon {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 23px;
  top: 27px;
  background: url(../../images/product_added.png);
}
.product_added_message_close_icon {
  background: url(../../images/product_added_close.png) no-repeat 0 -2px;
  position: absolute;
  padding-top: 17px;
  height: 0;
  width: 17px;
  overflow: hidden;
  cursor: pointer;
  top: 6px;
  right: 6px;
}
.product_added_message_close_icon:hover {
  background-position: 0 -51px;
}
.product_added_message_text {
  padding-left: 71px;
  padding-top: 30px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #000;
}
.product_added_message_buttons {
  margin-top: 20px;
  margin-left: 71px;
}
.product_added_message_button {
  margin-right: 10px;
  color: #333;
  border: 1px solid #bcbcbc;
  background-color: #eee;
  background-image: -moz-linear-gradient(top, #fafafa, #e8e8e8);
  background-image: -ms-linear-gradient(top, #fafafa, #e8e8e8);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#fafafa),
    to(#e8e8e8)
  );
  background-image: -webkit-linear-gradient(top, #fafafa, #e8e8e8);
  background-image: -o-linear-gradient(top, #fafafa, #e8e8e8);
  background-image: linear-gradient(top, #fafafa, #e8e8e8);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#e8e8e8', GradientType=0);
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 18px;
  padding: 3px 15px;
  display: inline-block;
  position: relative;
  overflow: visible;
}

/*header*/
.header_container {
  width: 100%;
  height: 120px; /*90px*/
  position: relative;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.middle_header {
  width: 1200px;
  height: 100%;
  margin: auto;
  position: relative;
}
.logo_container {
  float: left;
}
.logo {
  max-height: 170px;
  max-width: 270px;
}
.menu_header_container {
  float: right;
  display: inline-block;
  height: 100%;
  position: relative;
}
#menu_button {
  display: none;
}
.menu_icons_header {
  width: 158px;
  float: right;
  margin-right: 12px;
  height: 48px;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.one_menu_icon_container {
  width: 48px;
  height: 48px;
  float: right;
  margin-left: 7px;
  border-radius: 48px;
  cursor: pointer;
  position: relative;
}

.menu_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.greeting_message {
  width: 100%;
  text-align: center;
  color: white;
  cursor: pointer;
}
/*.one_menu_icon_container:last-child{
	margin-left: 0px;
}*/
#search_button {
  margin-left: 0px;
}
.basket_number {
  width: 27px;
  padding-top: 5px;
  padding-bottom: 6px;
  border-radius: 27px;
  border: 2px solid #363636;
  font-size: 18px;
  background: white;
  font-weight: 800;
  color: #363636;
  text-align: center;
  line-height: 0.9;
  position: absolute;
  top: -9px;
  right: -10px;
}
.menu_header {
  float: right;
  margin-right: 38px;
  width: 600px;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.one_menu_header {
  font-size: 15px;
  font-weight: bold;
  color: white;
  line-height: 1;
  float: left;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
.one_menu_header:hover {
  color: #ffb823;
}
a:last-child .one_menu_header {
  margin-right: 0px;
}
.inner_products_menu {
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 29px;
  background: white;
  border-radius: 7px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  padding-top: 10px;
  padding-bottom: 7px;
  padding-left: 10px;
  padding-right: 5px;
  min-width: 75px;
  display: none;
  z-index: 10;
}
.one_inner_menu_header {
  width: 100%;
  padding-bottom: 4px;
  cursor: pointer;
}
.one_menu_header:hover .inner_products_menu {
  display: inline-block;
}
.one_inner_menu_header:hover {
  color: #ffb823;
}
.search_panel_header {
  width: 679px;
  height: 78px;
  background: white;
  float: right;
  margin-right: 33px;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.9);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.9);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.9);
  border-radius: 20px;
}
.search_input_header {
  width: 510px;
  float: left;
  margin-left: 24px;
  height: 31px;
  border: 0px;
  border-bottom: 1px solid #363636;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  color: #363636;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.search_button_header {
  width: 75px;
  /*height: 50px;*/
  float: right;
  margin-right: 17px;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 20px;
  font-weight: 900;
  color: white;
  line-height: 0.9;
  padding-top: 16px;
  padding-bottom: 16px;
  background: #363636;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}
.search_button_header:hover {
  background: #ffb621;
}
/*header*/

/*Age panel*/
.age_confirmation_popup_container {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 100;
}
.age_confirmation_popup {
  width: 600px;
  overflow: hidden;
  background: white;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding-top: 20px;
  padding-bottom: 15px;
}
.age_confirmation_text {
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
  color: black;
  font-size: 20px;
  font-weight: bold;
}
.age_confirmation_line {
  width: 50px;
  height: 3px;
  background: #ffb621;
  margin: auto;
  margin-bottom: 15px;
}
.age_confirmation_button {
  width: 90%;
  height: 40px;
  display: block;
  margin: auto;
  margin-bottom: 10px;
  border: 0px;
  font-family: "Muli", sans-serif !important;
  outline: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
}
.age_confirmation_button_first {
  background: #ffb621;
}
/*Age panel*/

/*login and register*/
.login_register_container {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 200;
}
.login_register_panel {
  width: 600px;
  height: 600px;
  background: white;
  border-radius: 25px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.login_register_panel_mobile_container {
  position: relative;
  width: 100%;
  height: 100%;
}
.close_login_register {
  width: 50px;
  height: 50px;
  background: url(../../images/close_login.png);
  background-position: left;
  position: absolute;
  z-index: 3;
  right: 30px;
  top: 20px;
  cursor: pointer;
}
.close_login_register:hover {
  background-position: right;
}
.bottom_login_register_shape {
  width: 600px;
  height: 246px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  background: url(../../images/login_bottom_shape.png);
}
.login_container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.login_header {
  width: calc(100% - 20px);
  margin-left: 20px;
  height: 67px;
  padding-top: 20px;
  position: relative;
  margin-bottom: 23px;
}
.login_icon {
  width: 67px;
  height: 67px;
  float: left;
  background: url(../../images/login_icon_header.png);
}
.login_text {
  float: left;
  position: relative;
  margin-left: 18px;
  font-size: 25px;
  font-weight: 900;
  color: #feb822;
  line-height: 0.9;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.full_login_input_container {
  width: 540px;
  height: 90px;
  margin: auto;
  margin-bottom: 28px;
}
.login_input_title {
  margin-left: 23px;
  margin-bottom: 11px;
  line-height: 0.9;
  font-size: 20px;
  font-weight: 900;
  color: #363636;
}
.login_input_container {
  width: 100%;
  height: 60px;
  background: #ebebeb;
  border-radius: 15px;
  position: relative;
}
.login_input {
  width: calc(100% - 60px);
  height: 20px;
  border: 0px;
  border-bottom: 1px solid #999999;
  display: block;
  background: transparent;
  margin: auto;
  position: relative;
  font-size: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  outline: none;
}
.login_forgot_container {
  width: 540px;
  height: 50px;
  position: relative;
  margin: auto;
}
.forgot_password {
  float: left;
  margin-left: 34px;
  font-size: 20px;
  color: #363636;
  line-height: 0.9;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
}
.forgot_password:hover {
  color: #feb822;
}
.login_button {
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: white;
  line-height: 0.9;
  padding-top: 16px;
  padding-bottom: 16px;
  background: #363636;
  cursor: pointer;
  text-align: center;
  width: 140px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.28);
}
.login_button:hover {
  background: #feb822;
}
.bottom_login_button_container {
  width: 163px;
  height: 48px;
  position: absolute;
  left: 33px;
  bottom: 44px;
}
.bottom_register_button_container {
  width: 199px;
  height: 51px;
  position: absolute;
  left: 33px;
  bottom: 44px;
}
.bottom_login_register_title {
  line-height: 0.8;
  font-size: 20px;
  color: #363636;
  position: absolute;
  right: 0px;
  top: 0px;
}
.bottom_login_register_button {
  position: absolute;
  bottom: 9px;
  left: 22px;
  z-index: 2;
  line-height: 0.9;
  font-size: 25px;
  font-weight: 900;
  color: #363636;
  cursor: pointer;
}
.bottom_login_register_button:hover {
  color: white;
}
.bottom_login_register_line {
  width: 142px;
  height: 18px;
  background: #ff9001;
  border-radius: 15px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
}
.register_container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.two_input_register_container {
  width: 542px;
  height: 90px;
  margin: auto;
  margin-bottom: 28px;
}
.half_login_input_container {
  width: 262px;
  height: 90px;
  float: left;
}
.half_login_input_container:first-child {
  margin-right: 9px;
}
.half_login_input_container:last-child {
  margin-left: 9px;
}
.last_full_login_input_container {
  margin-bottom: 20px;
}
/*login and register*/

/*footer*/
.footer_container {
  width: 100%;
  height: 217px;
  position: relative;
}
.middle_footer {
  width: 1200px;
  height: 100%;
  margin: auto;
  position: relative;
}
.subscribe_container {
  width: 400px;
  float: left;
  height: 100%;
  position: relative;
}
.subscribe_title {
  width: 336px;
  height: auto;
  font-size: 19px;
  color: white;
  line-height: 1;
  margin: auto;
  padding-top: 62px;
}
.subscribe_title b {
  font-size: 19px;
  font-weight: 900;
}
.subscribe_input_container {
  width: 336px;
  margin: auto;
  margin-top: 19px;
  height: 35px;
  border-radius: 10px;
  background: white;
  overflow: hidden;
}
.subscribe_input {
  width: 199px;
  padding-left: 11px;
  height: 100%;
  float: left;
  border: 0px;
  outline: none;
  font-size: 13px;
}
.subscribe_input::-webkit-input-placeholder {
  opacity: 1;
}
.subscribe_input:-moz-placeholder {
  opacity: 1;
}
.subscribe_input::-moz-placeholder {
  opacity: 1;
}
.subscribe_input:-ms-input-placeholder {
  opacity: 1;
}
.subscribe_input:focus::-webkit-input-placeholder {
  opacity: 0.3;
}
.subscribe_input:focus::-moz-placeholder {
  opacity: 0.3;
}
.subscribe_input:focus:-moz-placeholder {
  opacity: 0.3;
}
.subscribe_input:focus:-ms-input-placeholder {
  opacity: 0.3;
}
.subscribe_button {
  float: right;
  width: 120px;
  font-size: 15px;
  font-weight: 900;
  color: white;
  text-align: center;
  line-height: 0.9;
  padding-top: 11px;
  padding-bottom: 11px;
  background: #ffb823;
  border-radius: 8px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
.subscribe_button:hover {
  color: #363636;
}
.menu_footer_container {
  width: 400px;
  float: left;
  height: 100%;
  position: relative;
}
.footer_menu_seperator {
  width: 1px;
  height: 120px;
  background: #555555;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.all_menu_items_footer {
  width: 100%;
  overflow: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.one_menu_footer {
  width: 100%;
  line-height: 0.9;
  padding-bottom: 4px;
  padding-top: 4px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
.empty_menu_footer {
  opacity: 0;
  cursor: default;
}
.social_footer_container {
  width: 400px;
  height: 100%;
  position: relative;
  float: left;
}
.inner_social_footer {
  overflow: hidden;
  display: inline-block;
  position: relative;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.social_footer {
  width: 210px;
  height: 45px;
  margin: auto;
  margin-bottom: 28px;
  /*margin-top: 49px;*/
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
}
.fb_footer {
  float: left;
  margin-right: 10px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url(../../images/fb_footer.png);
  background-position: left;
}
.fb_footer:hover {
  background-position: right;
}
.yt_footer {
  float: left;
  margin-right: 10px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url(../../images/yt_footer.png);
  background-position: left;
}
.yt_footer:hover {
  background-position: right;
}
.in_footer {
  float: left;
  margin-right: 10px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url(../../images/in_footer.png);
  background-position: left;
}
.in_footer:hover {
  background-position: right;
}
.tw_footer {
  float: left;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url(../../images/tw_footer.png);
  background-position: left;
}
.tw_footer:hover {
  background-position: right;
}
.footer_text {
  width: 330px;
  text-align: center;
  margin: auto;
  /*margin-top: 28px;*/
  overflow: hidden;
  line-height: 1.1;
  font-size: 14px;
}
.footer_text b {
  font-weight: 900;
}
/*footer*/
