body {
	margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}	

p#shop_url {
    font-size: 20px;
    padding: 15px 10px 10px 10px;
    margin: 0;
    text-align: center;
} 

h3#discount_iframe_title {
    margin: 0;
    text-transform: uppercase;
    padding-bottom: 10px;
    text-align: center;
    color: black;
    width: 100%;
    float: none;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: bold;
}

h3#discount_iframe_code {
    margin:0;
    padding-bottom: 10px;
    text-align: center;
    font-size: 16px;
    text-transform: none;
}

form#discount_form {
    PADDING: 0 10PX;
    text-align: center;
}

form#discount_form input {
    padding: 10px 10px;
    margin-bottom: 0px;
    width: 100%;
}

form#discount_form input[type="submit"] {
    border: none;
    background-color: #00A8FF;
    color: white;
    padding:0;
    line-height: 35px;
    height:35px;
}

p#uvjeti, #mailchimp_checkbox {
    text-align: center;
    color: silver;
    font-size: 11px;
    margin: 0;
    padding: 10px;
}

#mailchimp_checkbox a {
    color: black;
    text-decoration: none;
}

.discount_part {
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.error {
    background: rgb(255, 238, 238);
}

div.code {
    text-align: center;
    font-size: 26px;
    color: white;
    padding: 20px;
    margin: 0 15px;
    background-color: #00a8ff;
}

#mailchimp_checkbox input {
    vertical-align: bottom;
    width:auto !important;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 768px)and (-webkit-min-device-pixel-ratio: 2)and (orientation: landscape) {
 
 img {
  display: none !important;
 }

 img.mob_img {
      max-width: 350px;
      display: block !important;
      margin: 0 auto;
  }
}

/*
CUSTOM CHECKBOX
*/

/* The container */
#mailchimp_checkbox {
  color: #000;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  padding: 10px 10px 10px 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 75%;
}

/* Hide the browser's default checkbox */
#mailchimp_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 26.5%;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border: 1px solid black;
}

/* On mouse-over, add a grey background color */
#mailchimp_checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
#mailchimp_checkbox input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
#mailchimp_checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
#mailchimp_checkbox .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid black;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*
END CUSTOM CHECKBOX
*/