@font-face {
  font-family: 'Noto IKEA Latin Bold';
  src: url('../fonts/NotoIKEALatin-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Noto IKEA Latin Bold Italic';
  src: url('../fonts/NotoIKEALatin-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Noto IKEA Latin Italic';
  src: url('../fonts/NotoIKEALatin-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Noto IKEA Latin Regular';
  src: url('../fonts/NotoIKEALatin-Regular.ttf') format('truetype');
}

body {
  font-family: 'Noto IKEA Latin Regular', sans-serif;
  color: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.title_bloc {
  width: 100%;
  max-width: 840px;
  margin: 0 auto 0px auto;
  padding: 30px 20px 20px 20px;
}

.title_tag {
  background-color: #0077c8;
  color: #fff;
  padding: 5px;
  width: 200px;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'Noto IKEA Latin Bold', sans-serif;
  font-weight: 600;
}

.title {
  font-size: 30px;
  font-family: 'Noto IKEA Latin Bold', sans-serif;
  line-height: 1.3;
  font-weight: 600;
}

.header {
  width: 100%;
  height: auto; 
}

.header img {
  width: 100%;
}

.header video {
  width: 100%;
  height: auto;
}

.header .mobile-video {
  display: none;
}

.content {
  padding: 20px;
}

.content p {
  font-size: 22px;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 20px;
}

.bold_type {
  font-family: 'Noto IKEA Latin Bold', sans-serif;
  ;
}


.content-title {

  font-family: 'Noto IKEA Latin Bold', sans-serif;
  font-size: 35px;
  text-align: center;
}

.win {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price {
  background-color: #d4031a;
  color: #fff;
  font-family: 'Noto IKEA Latin Bold', sans-serif;
  padding: 10px 20px;
  font-size: 45px;
}

.img_desktop {
  display: block;
}

.img_mobile {
  display: none;
}

.footer_links {
  text-align: right;
  margin: 0 20px 0 0;
}

.footer_links a {
  font-size: 12px;
  color: #000000;
  text-decoration: none;
}

.img_flower {
  width: 200px;
  margin: 0 20px;
}

.text-sm p {
  font-size: 9px;
}

.logo_ikea {
  width: 121px;
  display: block;
  margin: 0 auto;
}

form {
  max-width: 500px;
  margin: 0 auto 30px auto;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/*
.label_text {
  position: relative;
  top: 35px;
  left: 10px;

  transition: 0.3s;
  z-index: 100;
}*/

.input_text {
  height: 50px;
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto 10px auto;
  outline: none;
}

.input_text:focus {
  border: 2px solid #0058a3
}

.input_text .label_text {
  top: 0;
  left: 0;
  font-size: 12px;
  color: #333;
}

.inscription {
  font-size: 15px;
}

.g-recaptcha {
  margin: 15px 0;
  width: 100%;
}

button {
  background-color: #0077c8;
  border-radius: 50px;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  width: 150px;
  height: 44px;
  font-size: 18px;
  font-weight: 600;
}

.checkbox-container {
  position: relative;
  margin: 20px 0;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

.checkbox-container label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
  font-size: 11px;
}

.checkbox-container label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 2px solid #999;
  background-color: #fff;
  border-radius: 5px;
  transition: background-color 0.1s;
}

.checkbox-container input[type="checkbox"]:checked+label:before {
  background-color: #0058a3;
  border-color: #0058a3;
}

.checkbox-container label:after {
  content: "\2713";
  position: absolute;
  left: 4px;
  top: -1px;
  font-size: 15px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.checkbox-container input[type="checkbox"]:checked+label:after {
  opacity: 1;
}

.link {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  width: 100%;
  height: auto;
}

.footer img {
  width: 100%;
  height: auto;
  display: block;
}

.footer .gray {
  width: 100%;
  padding: 20px;
  background-color: #f4f4f4;
}

.footer .gray .text {
  max-width: 800px;
  height: 100%;
  margin: 0 auto;
  text-align: right;
}

.footer .gray .text p {
  font-size: 14px;
  color: #000000;
  margin: 15px 0;
}

.identification-section {}

.identification-title {
  font-family: 'Noto IKEA Latin Bold', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.form-group-new {
  margin-bottom: 15px;
  position: relative;
}

.static-label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-family: 'Noto IKEA Latin Regular', sans-serif;
  font-weight: bold;
}

.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input_text_static {
  height: 50px;
  width: 100%;
  padding: 8px 40px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  outline: none;
  font-family: 'Noto IKEA Latin Regular', sans-serif;
}

.input_text_static:focus {
  border: 2px solid #0058a3;
}

.icon-input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.icon-input {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
}

.icon-barcode-img {
  background-image: url('../images/codebar.jpg');
}

.icon-qrcode-img {
  background-image: url('../images/QRcode.jpg');
}

.help-link-new {
  display: block;
  font-size: 12px;
  color: #0058a3;
  text-decoration: none;
  margin-top: 8px;
  font-family: 'Noto IKEA Latin Regular', sans-serif;
}

.help-link-new+.help-link-new {
  margin-top: 4px;
}

.error-message-mobile {
  display: none;
  color: red;
  font-size: 11px;
  margin-bottom: 10px;
}

.locale .language-switch select {
  border-radius: 16.5px;
  border: 1px solid #d7d7d7;
  padding: 5.5px;
  line-height: 11px;
  font-size: .9em;
  color: #515151;
  margin-right: 10px;
    margin-top: 7px;
}
  
@media (max-width: 767.98px) {
  .header-hero { display: none !important; }
}