@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,700");

/***********************
RESET AND NORMALIZE
*************************/

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
input,
select,
button,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  /* for iOS */
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

sup,
sub {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*-- Normalize --*/

*,
*:before,
*:after {
  box-sizing: border-box;
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

q:lang(en) {
  quotes: "&#8220;" "&#8221;" "&#8216;" "&#8217;";
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 15px;
}

ul {
  list-style: outside disc;
  padding-left: 24px;
}

ol {
  list-style: outside decimal;
  padding-left: 24px;
}

a,
label,
input[type="button"],
input[type="submit"],
button {
  cursor: pointer;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

pre,
code {
  background: #eee;
  border: 1px solid #ccc;
  font-family: Consolas, "Lucida Console", "Courier New", serif;
  padding: 2%;
}

select,
textarea {
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: inherit;
  padding: 3px 6px;
}

input,
select {
  vertical-align: middle;
}

textarea {
  overflow: auto;
}

img {
  max-width: 100%;
}

.touch p a {
  margin: 0 -0.5em;
  padding: 0 0.5em;
}

/***********************
Import  Project Corporate Fonts and Icons
*************************/

/* @import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700');     */

/***********************
GENERIC LAYOUT STYLES
*************************/

html {
  font-size: 18px;
}

body {
  background: rgb(220, 225, 230);
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(220, 225, 230, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#dce1e6', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
  color: #000;
  font-family: "Open Sans", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
}

a {
  color: #f78f3a;
  text-decoration: none;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

a:hover {
  text-decoration: none;
}

#main {
  max-width: none;
  width: 100%;
  min-height: 100vh;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  border-top: 10px solid rgb(16, 33, 139);
  background: linear-gradient(90deg, rgb(221, 222, 224), rgba(250, 250, 250));
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#promo_content,
#extend_content {
  margin: 0 auto;
  max-width: 1180px;
  background: transparent;
}

#form_holder,
#info_text_holder,
#content {
  padding: 30px 0;
}

#info_text_holder {
  display: none;
}

#promo_content.info_text_right #form_holder {
  float: none;
  width: auto;
  margin-right: 70px;
}

@media (min-width: 767px) {
  #promo_content.info_text_right #form_holder {
    width: 55%;
    margin: 2% 0;
  }
}

/***********************
Section HEADER TEXT
*************************/

#header_text .container {
  max-width: 1160px;
  margin: 0px auto;
  position: relative;
  min-height: 50px;
  border-bottom: 0px solid rgba(255, 255, 255, 0.3);
}

#header_text .container::after {
  content: "";
  clear: both;
  display: table;
}

#header_text .brand {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transform: translateX(0%) scale(0.8);
  transform: translateX(0%) scale(0.8);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  padding: 10px 0 0 0;
}

@media (min-width: 767px) {
  #header_text .brand {
    left: 16px;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#header_text .brand img {
  max-width: 243px;
}

/***********************
GENERIC LAYOUT STYLES
*************************/

#header_text {
  float: none;
  margin-top: 30px;
  width: auto;
  transition: right 0.3s ease-out;
}

#header_text .container {
  background: #fff;
  position: relative;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.3);
}

#header_text .gallery .banner {
  text-align: center;
}

#header_text .gallery .gallery-static {
  width: 100%;
  padding: 1rem 1.2rem;
  color: #aaa;
}

@media (min-width: 480px) {
  #header_text .gallery .gallery-static {
    padding: 30px;
  }
}

#header_text .gallery .navbar-nav {
  padding-left: 0;
}

#header_text .gallery .navbar-nav li {
  display: inline;
}

#header_text .gallery .navbar-nav li a {
  padding: 0.6rem 1rem;
  border: 1px solid #d9d9d9;
  text-transform: uppercase;
  color: #585858;
  display: block;
  text-align: center;
  margin-top: 0.25rem;
  text-transform: capitalize;
  font-weight: bold;
}

@media (min-width: 1195px) {
  #header_text .gallery .navbar-nav li a {
    display: inline-block;
  }
}

#header_text .gallery .navbar-nav li a:hover {
  background: #d9d9d9;
}

@media (min-width: 1195px) {
  /* #header_text .sa{
        background: url(../images/sa-bg.jpg) bottom right no-repeat;
    }
    #header_text .pl{
        background: url(../images/pl-bg.jpg) bottom right no-repeat;
    } */
  #header_text .gallery {
    overflow: hidden;
  }
  #header_text .gallery .banner {
    /* display: none; */
    float: right;
    width: 50%;
  }
  #header_text .gallery .banner img {
    display: block;
  }
  #header_text .gallery .gallery-static {
    width: 46%;
  }
}

#header_text .gallery .gallery-static h2 {
  font-size: 1.75rem;
  font-weight: 100;
  padding: 0.25rem;
  margin: 0;
  color: rgb(16, 33, 139);
  line-height: 1.2;
}

#header_text .gallery .gallery-static h2 strong {
  display: block;
  text-transform: uppercase;
}

@media (min-width: 500px) {
  #header_text .gallery .gallery-static h2 {
    font-size: 3rem;
  }
}

@media (min-width: 767px) {
  #header_text .gallery .gallery-static h2 {
    font-size: 2.6rem;
  }
}

@media (min-width: 1100px) {
  #header_text .gallery .gallery-static h2 {
    font-size: 3rem;
  }
}

.p111 .type2 {
  margin-top: 30px;
}

#header_text .gallery .gallery-static h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

@media (min-width: 767px) {
  #header_text .gallery .gallery-static h3 {
    font-size: 1.6rem;
  }
}

@media (min-width: 1100px) {
  #header_text .gallery .gallery-static h3 {
    font-size: 1rem;
  }
}

#header_text .infotext {
  padding: 1rem 0;
}

#header_text .infotext li {
  list-style: decimal;
}

#header_text .gallery li,
#header_text .gallery p {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (min-width: 767px) {
  #header_text .gallery .gallery-static p {
    font-size: 0.75rem;
  }
}

#header_text .navigation {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  z-index: 200;
}

#header_text .navigation.in {
  bottom: 0;
}

#header_text .navbar-toggle {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  height: 16px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 17px;
  top: 16px;
  z-index: 202;
}

/* @mixin atMedium {display: none;} */

#header_text .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
}

#header_text .navbar-toggle .icon-bar__top {
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

#header_text .navbar-toggle .icon-bar__middle {
  top: 6px;
  left: 0;
  transition: all 0.3s ease-out;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

#header_text .navbar-toggle .icon-bar__bottom {
  bottom: 0;
  left: 0;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

#header_text .navbar-toggle.in .icon-bar__top {
  -webkit-transform: rotate(45deg) scaleX(1);
  transform: rotate(45deg) scaleX(1);
}

#header_text .navbar-toggle.in .icon-bar__middle {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

#header_text .navbar-toggle.in .icon-bar__bottom {
  -webkit-transform: rotate(-45deg) scaleX(1) translateY(2px) translateX(-2px);
  transform: rotate(-45deg) scaleX(1) translateY(2px) translateX(-2px);
}

#header_text .navbar {
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  position: absolute;
  z-index: -10;
  top: 0px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.95);
}

#header_text .navbar.in {
  opacity: 1;
  z-index: 201;
  bottom: 0px;
  width: 100%;
}

#header_text .navbar ul {
  margin: 40px 0 0 0;
  padding: 0 1rem;
  text-align: center;
}

#header_text .navbar ul::after {
  content: "";
  clear: both;
  display: table;
}

#header_text .navbar li {
  text-align: center;
  list-style: none;
  display: block;
  padding: 2rem 0px;
  text-align: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

#header_text .navbar li:last-child {
  padding-right: 0;
}

#header_text .navbar li:last-child a {
  border-right: none;
}

#header_text .navbar li a {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 0px 12px 0px 0px;
}

#header_text .navbar li a:hover {
  color: #fd3c3c;
}

.infotext-container p,
.infotext-container ul {
  margin-left: 40px;
}

div[id^="purchase_upload_file"] {
  font-size: 14px;
  width: calc(100% - 30px);
}

div[id^="r_upload_barcode"] .table-cell,
div[id^="r_purchase_upload_file"] .table-cell {
  padding: 5px 0 !important;
}

/***********************
Section HEADER TEXT
*************************/

#form_titles {
  margin: 0 0 15px 0;
  background: transparent;
  padding: 24px 12px;
}

@media (min-width: 1100px) {
  #form_titles {
    padding: 0px 12px 0px 12px;
  }
}

#form_titles .container {
  padding-left: 15px;
  padding-right: 15px;
}

#form_titles h1 {
  color: rgb(16, 33, 139);
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Tungsten A", "Tungsten B", Roboto, sans-serif;
  text-transform: uppercase;
}

#form_titles h1 strong {
  color: #fd3c3c;
  display: block;
}

@media (min-width: 767px) {
  #form_titles h1 {
    font-size: 4.25rem;
  }
  #form_titles h1 strong {
  }
}

#form_titles h2 {
  color: rgb(16, 33, 139);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (min-width: 767px) {
  #form_titles h2 {
    font-size: 1.25rem;
  }
}

#form_titles p {
  margin-bottom: 0rem;
  color: #a39696;
  font-size: 1rem;
}

@media (min-width: 767px) {
  #form_titles p {
    font-size: 1.1rem;
  }
}

#form_titles .moreinfo-toggler {
  display: none;
}

#form_titles .moreinfo-toggler p {
  font-size: 1rem;
  font-weight: 400;
}

#form_titles .moreinfo-toggler p a {
  background: url(../images/icon-info.png) left center no-repeat;
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 0 8px 40px;
}

#form_titles .moreinfo-toggler p a:hover {
  text-decoration: underline;
}

/***********************
PAGE Thank You
*************************/

.p18 #main.ty {
  position: relative;
  /* #footer{position: relative; bottom: 0px; } */
}

.p18 #main.ty #form_titles,
.p18 #main.ty #printArea,
.p18 #main.ty #printLink {
  display: none;
}

.p18 #main.ty #promo_content.info_text_right #form_holder {
  float: none;
  margin: 0;
  width: 100%;
}

.p18 #main.ty #form_wrapper {
  font-size: 30px;
  line-height: 2;
  padding: 100px 15px;
  text-align: center;
}

.p18 #main.ty #form_wrapper h2 {
  font-size: 32px;
  margin: 0 0 30px 0;
}

.p18 #main.ty .check-status h2 {
  font-size: 20px;
}

#main.ty #footer {
  margin-top: 0;
}

/***********************
PAGE Thank You
*************************/

.p19 #extend_content #content {
  padding: 30px 30px 0px 30px;
  font-weight: 300;
}

.p19 #extend_content #content #version_content {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  opacity: 0.6;
}

.p19 #extend_content #content h1 {
  font-size: 1.4rem;
  font-weight: 100;
  margin: 0 0 1rem 0;
}

@media (min-width: 767px) {
  .p19 #extend_content #content h1 {
    font-size: 2rem;
  }
}

.p19 #extend_content #content p {
}

/***********************
Section FORM
*************************/
#input_block_payment_method > div > div:nth-child(1) {
  margin: 10px 0;
}
#a_l_bank_revolut {
  margin: 10px 0;
}
#input_block_payment_method > div > div:nth-child(1) {
  display: inline-block;
  margin-right: 15px;
}
#input_block_payment_method > div > div:nth-child(2) {
  display: inline-block;
}
#input_block_payment_method > div > div:nth-child(1) > div > label:nth-child(3),
#input_block_payment_method > div > div:nth-child(2) > div > label:nth-child(3),
#input_block_payment_method > div > div:nth-child(2) > div > label:nth-child(2),
#input_block_payment_method
  > div
  > div:nth-child(1)
  > div
  > label:nth-child(2) {
  margin-right: 5px;
}

.title_sub {
  /* display: none; */
  color: rgba(0, 0, 0, 0.66);
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
}

.progress-steps ul {
  list-style: none;
  padding: 0 0 1rem 0;
  margin: 0;
}

.progress-steps ul li {
  color: rgba(0, 0, 0, 0.54);
  font-size: 1rem;
  padding: 0.3rem 0;
}

@media (min-width: 767px) {
  .progress-steps ul li {
    display: inline-block;
    padding: 0;
  }
}

@media (min-width: 767px) {
  .progress-steps ul li:nth-child(-n + 2)::after {
    padding: 0 1rem;
    display: inline-block;
    content: "/";
    font-size: 1rem;
    color: #000;
    font-weight: 100;
  }
}

.stage1 .progress-step1,
.stage2 .progress-step2,
.stage3 .progress-step3 {
  color: rgba(16, 33, 139, 1);
  font-size: 2rem;
  font-weight: 700;
}

/* .stage2 #step1,
.stage3 #step1,
.stage2 #step2,
.stage3 #step2 {
    display: none;
} */

.step .first_row,
.step .second_row {
  width: auto;
  float: none;
  padding: 0 2% 0 0;
}

@media (min-width: 1195px) {
  .step .first_row,
  .step .second_row {
    float: left;
    width: 48%;
    padding: 0 2% 0 0;
  }
}

span.required {
  color: #fd3c3c;
}

div.required {
  color: #fd3c3c;
  margin: 0 0 15px 0;
  display: none;
  font-size: 0.9;
  font-weight: 300;
}

div.required span {
  color: #fd3c3c;
}

#apply_form_box {
  padding: 0px 0 0 10px;
}

#form_holder {
  background: none;
}

/* #form_holder .field-row.focus:not(#r_bank_details_international):not([id^="r_new_productgroup_"]):not(#r_prommq_answers):not(#r_button_subscribe) {
    background-color: rgba(255, 255, 255, 1)!important;
    color:#000;
} */

#r_terms_conditions,
#r_subscribe {
  margin-bottom: 10px;
  position: relative;
}

#r_terms_conditions .table-cell,
#r_promo_agreement .table-cell {
  padding: 0 0 0 24px;
  position: relative;
}

#l_right_txt_terms_conditions label,
#r_promo_agreement label,
#r_terms_conditions label,
#r_subscribe label {
  position: absolute;
  top: 0;
  left: -20px;
  border-color: #57616d;
  background-color: transparent;
}

#r_subscribe input,
#r_sms_subscribe input,
#r_terms_conditions input {
  position: absolute;
  top: 0;
  left: 0;
}

#l_right_txt_subscribe {
  font-size: 1rem;
  line-height: 1.2;
}

#r_promo_agreement {
  margin-bottom: 5px;
}

#r_promo_agreement input {
  position: absolute;
  top: 0;
  left: 0;
}

.tc-box .tc-box-checkbox {
  overflow: hidden;
  padding: 10px 0 10px 24px;
  position: relative;
}

.tc-box .tc-box-checkbox input {
  position: absolute;
  top: 10px;
  left: 0;
}

.tc-box .tc-box-textarea {
  margin-bottom: 10px;
}

.tc-box .tc-box-textarea ol li {
  font-size: 14px;
  margin: 0;
}

.field-row {
  position: relative;
}

.field-row .table-cell {
  float: left;
  clear: none;
  width: calc(100% - 30px);
  z-index: 2;
}

.field-row .table-cell.coll1_field_sub_group_btm,
.field-row .table-cell.coll1 {
  float: right;
  font-size: 14px;
  padding: 0 0 0 5px;
  width: 30px;
}

.plc_holder_parent label {
  color: rgb(16, 33, 139);
  padding: 7px 10px 7px 0;
  transition: 0.3s;
}

.field-row.has-content.focus .plc_holder_parent label {
  font-size: 12px;
  font-weight: 700;
  color: rgb(16, 33, 139);
  display: block;
  opacity: 1;
}

.focus-border-bottom {
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 0;
  height: 2px;
  background-color: rgb(16, 33, 139);
  border-color: rgb(16, 33, 139);
  transition: 0.4s;
  border-radius: 0 0 2px 2px;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.field-row.focus .focus-border-bottom,
.field-row.has-content.focus .focus-border-bottom {
  /* width: 100%; */
  transition: 0.4s;
  left: 0;
}

.focus-border-left {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0%;
  height: 0px;
  width: 2px;
  background-color: rgb(16, 33, 139);
  border-color: rgb(16, 33, 139);
  transition: 0.4s;
  border-radius: 0 0 2px 2px;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
}

.field-row.focus .focus-border-left,
.field-row.has-content.focus .focus-border-left {
  transition: 0.4s;
  left: 0;
  /* height: 100%; */
}

.focus-border-top {
  position: absolute;
  top: 0px;
  right: 0%;
  width: 0;
  height: 2px;
  background-color: rgb(16, 33, 139);
  border-color: rgb(16, 33, 139);
  transition: 0.4s;
  border-radius: 0 0 2px 2px;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.field-row.focus .focus-border-top,
.field-row.has-content.focus .focus-border-top {
  /* width: 100%; */
  transition: 0.4s;
}

.focus-border-right {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0%;
  height: 0px;
  width: 2px;
  background-color: rgb(16, 33, 139);
  border-color: rgb(16, 33, 139);
  transition: 0.4s;
  border-radius: 0 0 2px 2px;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.field-row.focus .focus-border-right,
.field-row.has-content.focus .focus-border-right {
  transition: 0.4s;
  /* height: 100%; */
}

/* .focus .table-cell input[type="text"]{
    opacity: 0;
} */

.table-cell input[type="text"],
.table-cell select {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(87, 97, 109, 0.3);
  border-radius: 2px;
  color: #3d3838;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px;
  width: 100%;
  position: relative;
}

.table-cell select option {
  color: rgba(0, 0, 0, 1);
}

.table-cell input:focus,
.table-cell select:focus {
  outline: none;
}

.table-cell input[type="file"] {
  width: 100%;
  font-size: 0.8rem;
  padding: 12px 2px 0px 2px;
}

#country_address,
#country_promotion {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  padding: 13px 2px;
}

#country_promotion_u_info {
  display: none;
}

#r_remove_last_product .focus-border,
#r_add_another_product .focus-border {
  display: none;
}

#add_another_product,
#remove_last_product {
  cursor: pointer;
  background-color: #f78f3a;
  background-position: 90% 50%;
  background-repeat: no-repeat;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  display: block;
  width: 100%;
  margin: 6px 0 10px 0;
}

#add_another_product.disabled,
#remove_last_product.disabled {
  display: none;
}

#add_another_product:hover,
#remove_last_product:hover {
  background-color: rgb(16, 33, 139);
}

@media (min-width: 767px) {
  #add_another_product,
  #remove_last_product {
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
  }
}

#form_wrapper a.popup {
  background-color: #f58220;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  width: 20px;
}

#form_wrapper a.popup:hover {
  color: #000 !important;
}

#submit-div {
  padding: 20px 2%;
  text-align: center;
}

#submit-div::after {
  content: "";
  clear: both;
  display: table;
}

@media (min-width: 767px) {
  #submit-div {
    text-align: left;
  }
}

#submit-div .SubmitButt {
  background-color: #57616d;
  background-image: url("../images/arrow-next.png");
  background-position: 90% 50%;
  background-repeat: no-repeat;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 48px 16px 16px;
  text-transform: uppercase;
  float: right;
}

#submit-div .SubmitButt:hover {
  opacity: 0.75;
}

#submit-div .next_step {
  background-color: #f78f3a;
  background-image: url("../images/arrow-next.png");
  background-position: 90% 50%;
  background-repeat: no-repeat;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 48px 16px 16px;
  float: right;
  text-transform: capitalize;
}

#submit-div .next_step:hover {
  opacity: 0.75;
}

#submit-div .prev_step {
  background-color: rgba(253, 60, 60, 0.54);
  background-image: url("../images/slick-arrow-prev.png");
  background-position: 10% 50%;
  background-repeat: no-repeat;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 16px 16px 48px;
  text-transform: uppercase;
  float: left;
}

#submit-div .prev_step:hover {
  opacity: 0.75;
}

.stage2 #submit-div .prev_step {
}

#captcha_img {
  padding: 15px 0 0 0;
  clear: both;
  float: none;
  padding: 15px 0 0 0;
  width: 100%;
}

.calendarButton {
  background: url(../images/calendar.png) center center no-repeat !important;
  height: 24px !important;
  vertical-align: middle;
  width: 24px !important;
  position: absolute;
  top: 0px;
  right: 4px;
  opacity: 0.54;
  transition: opacity 0.3s ease-out;
}

.calendarButton:hover {
  opacity: 1;
}

.label-under {
  text-align: right;
}

[id^="r_purchase_upload_file"] .table-cell,
[id^="r_upload_barcode"] .table-cell {
  float: none !important;
  text-align: left !important;
  width: 100% !important;
}

[id^="r_purchase_upload_file"] {
  margin-bottom: 10px;
}

[id^="r_upload_barcode"] {
  margin-bottom: 30px;
  width: calc(100% - 30px);
}
[id^="r_purchase_upload_file"] {
  width: calc(100% - 30px);
}

.calendarButton {
  border-style: none;
  border-width: 0px;
  height: 16px;
  width: 16px;
  background-image: url(../images/calendar.gif);
  margin: 2px;
  background-repeat: no-repeat;
  background-color: transparent;
}

#r_preview_form {
  background-color: rgba(253, 60, 60, 0.33);
  padding: 0px 16px 0px 16px;
  border-radius: 8px;
}

#r_preview_form .field-row {
  background: transparent !important;
  border-bottom: none !important;
}

#r_preview_form .field-row.focus .focus-border,
#r_preview_form .field-row.has-content .focus-border {
  display: none;
}

#r_preview_form #l_preview_form {
  position: static;
  font-size: 1.75rem;
  font-weight: 100;
  padding: 0.75rem 0;
}

#r_preview_form .field-row label,
#r_preview_form .field-row.has-content label {
  top: -16px;
  font-size: 12px;
  font-weight: 500;
  color: #fd3c3c;
}

#r_preview_form .input-block-text,
#r_preview_form .input-block-select {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 2px 0px 2px;
}

#r_preview_form #input_block_preview_form {
}

.stage3 #step3 #r_preview_form .title_sub {
  position: static;
  color: rgba(0, 0, 0, 0.66);
  background: rgba(253, 60, 60, 0.3);
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  display: block;
  border-radius: 3px;
  padding-left: 6px;
}

.stage3 #step3 #r_preview_form .table-cell ~ .table-cell.input-block-custom {
  display: none;
}

.stage3 #step3 #r_preview_form .table-cell.in ~ .table-cell.input-block-custom {
  display: block;
}

.ui-datepicker-trigger {
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  right: 5px;
}
div[id^="r_date_purchase"] .table-cell {
  position: relative;
}

div[id^="date_purchase"],
#revolut_tag_u_info,
#bank_benficiary_u_info,
#bank_benficiary_individual_u_info,
#bank_beneficiary_rev_u_info,
#bank_benficiary_rev_individual_u_info,
div[id^="purchase_upload_file"] {
  color: #666;
  display: block;
  font-size: 12px;
  padding: 5px 0;
}

.dynamic_info_logo {
  right: 0;
}

/***********************
Section FOOTER
*************************/

#footer {
  background-color: rgb(239, 239, 247);
  color: rgba(0, 0, 0, 0.6);
  margin-top: 90px;
}

#footer .blue-ary {
  background-color: rgb(16, 33, 139);
  color: #fff;
  padding: 30px 0;
  font-size: 0.8rem;
}

#footer .blue-ary ul {
  display: inline-block;
  padding-left: 0;
}

#footer .blue-ary ul li {
  display: inline;
}

#footer .blue-ary ul li a {
  color: #fff;
  margin-right: 12px;
}

#footer .container {
  margin: 0 auto;
  max-width: 1100px;
  padding: 16px;
}

#footer .navbar {
  text-align: center;
}

@media (min-width: 767px) {
  #footer .navbar {
    float: left;
    text-align: left;
  }
}

#footer .navbar ul {
  margin: 0;
  padding: 0.25rem 0;
}

#footer .navbar ul::after {
  content: "";
  clear: both;
  display: table;
}

@media (min-width: 767px) {
  #footer .navbar ul {
    text-align: left;
  }
}

#footer .navbar li {
  text-align: center;
  list-style: none;
  display: inline-block;
  padding-left: 0px;
  padding-right: 12px;
}

@media (min-width: 767px) {
  #footer .navbar li {
    display: inline-block;
  }
}

#footer .navbar li:last-child {
  padding-right: 0;
}

#footer .navbar li:last-child a {
  border-right: none;
}

#footer .navbar li a {
  color: #000;
  font-weight: 100;
  text-decoration: none;
  display: block;
  padding: 0px 12px 0px 0px;
  font-size: 0.9rem;
  border-right: 1px solid #57616d;
}

#footer .navbar li a:hover {
  color: rgb(16, 33, 139);
}

@media (min-width: 767px) {
  #footer .navbar li a {
    font-size: 0.9rem;
    background-color: transparent;
  }
}

#footer > .footer-content {
  display: none;
}

#footer .blue-ary .footer-content {
  text-align: center;
}

@media (min-width: 1180px) {
  #footer .footer-content {
    padding: 0 1rem;
    margin: 0 auto;
  }
  #footer .blue-ary .footer-content {
    text-align: left;
  }
  #footer .footer-content p {
    float: right;
  }
  .footer-content,
  #footer .blue-ary .footer-content {
    width: 960px;
  }
}

#footer .footer-content .table {
  padding-bottom: 20px;
}

.table-head .table-cell {
  font-size: 0.8rem;
  font-weight: bold;
}

/* Check status */

.check-status {
  border: 0;
}

.check-status h2 {
  border-bottom: 0;
  text-transform: uppercase;
  color: rgb(16, 33, 139);
  padding: 1rem 0;
}

@media (min-width: 1180px) {
  .check-status h2 {
    font-size: 2rem;
  }
  .check-status .foot {
    text-align: right;
  }
  #check-status-details-desc {
    padding: 8px;
  }
  .table-cell.id {
    width: 15%;
  }
}

.table-head .table-cell,
.table-body .table-cell {
  width: 100%;
}

.check-status .input-field,
.check-status .label-field {
  float: none;
  width: 100%;
}

.check-status .label-field {
  margin-bottom: 8px;
}

input[type="text"] {
  width: 100%;
  padding: 1rem;
}

.form-field.submit {
  padding-top: 0;
  margin-top: -45px;
}

.form-field.submit input[type="text"] {
  border-radius: 0;
}

.foot input[type="button"] {
  color: rgb(16, 33, 139);
  font-size: 1.2rem;
  padding: 0.4rem 1rem 0.4rem 1rem;
  margin-right: 2px;
  border-left: 1px solid #a4a4a4;
  font-weight: 600;
  background: none;
}

.form-field.submit input[type="button"] {
  background: #fff url(../images/search-ico.jpg) left 8px center no-repeat;
  text-transform: uppercase;
  color: rgb(16, 33, 139);
  font-size: 1.2rem;
  padding: 0.4rem 1rem 0.4rem 3rem;
  margin-right: 2px;
  border-left: 1px solid #a4a4a4;
  font-weight: 600;
}

/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  /* border: 0px solid #fff;
  -webkit-text-fill-color: green;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset; */
  transition: background-color 5000s ease-in-out 0s;
}

@media (max-width: 480px) {
  .form-field.submit {
    margin-top: 1rem;
    text-align: center;
  }
  .form-field.submit input[type="button"] {
    border: 1px solid #a4a4a4;
    /* padding: 0.75rem 1rem 0.75rem 3rem; */
    font-size: 1.2rem;
    padding: 0.95rem 1rem 0.95rem 3rem;
    width: 100%;
  }
}

#enable-cookies {
  display: block;
}
#ui-datepicker-div {
  z-index: 9 !important;
}

.p413 #header_text {
  display: block;
  float: none;
  margin: 30px auto;
  max-width: 1180px;
  width: auto;
  transition: right 0.3s ease-out;
}

.p413 #header_text .container {
  background: #fff;
  position: relative;
  box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  padding: 0;
}

.p413 #header_text .gallery .banner {
  text-align: center;
}

.p413 #header_text .gallery .gallery-static {
  width: 100%;
  padding: 1rem 1.2rem;
  color: #aaa;
}

@media (min-width: 480px) {
  .p413 #header_text .gallery .gallery-static {
    padding: 30px;
  }
}

.p413 #header_text .gallery .navbar-nav {
  padding-left: 0;
}

.p413 #header_text .gallery .navbar-nav li {
  display: inline;
}

.p413 #header_text .gallery .navbar-nav li a {
  padding: 0.6rem 1rem;
  border: 1px solid #d9d9d9;
  text-transform: uppercase;
  color: #585858;
  display: block;
  text-align: center;
  margin-top: 0.25rem;
  text-transform: capitalize;
  font-weight: bold;
}

@media (min-width: 1195px) {
  .p413 #header_text .gallery .navbar-nav li a {
    display: inline-block;
  }
}

.p413 #header_text .gallery .navbar-nav li a:hover {
  background: #d9d9d9;
}

@media (min-width: 1195px) {
  /* .p413 #header_text .sa{
        background: url(../images/sa-bg.jpg) bottom right no-repeat;
    }
    .p413 #header_text .pl{
        background: url(../images/pl-bg.jpg) bottom right no-repeat;
    } */
  .p413 #header_text .gallery {
    overflow: hidden;
  }
  .p413 #header_text .gallery .banner {
    /* display: none; */
    float: right;
    width: 50%;
  }
  .p413 #header_text .gallery .banner img {
    display: block;
  }
  .p413 #header_text .gallery .gallery-static {
    width: 46%;
  }
}

.p413 #header_text .gallery .gallery-static h2 {
  font-size: 1.75rem;
  font-weight: 100;
  padding: 0.25rem;
  margin: 0;
  color: rgb(16, 33, 139);
  line-height: 1.2;
}

.p413 #header_text .gallery .gallery-static h2 strong {
  display: block;
  text-transform: uppercase;
}

@media (min-width: 500px) {
  .p413 #header_text .gallery .gallery-static h2 {
    font-size: 3rem;
  }
}

@media (min-width: 767px) {
  .p413 #header_text .gallery .gallery-static h2 {
    font-size: 2.6rem;
  }
}

@media (min-width: 1100px) {
  .p413 #header_text .gallery .gallery-static h2 {
    font-size: 3rem;
  }
}

.p111 .type2 {
  margin-top: 30px;
}

.p413 #header_text .gallery .gallery-static h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

@media (min-width: 767px) {
  .p413 #header_text .gallery .gallery-static h3 {
    font-size: 1.6rem;
  }
}

@media (min-width: 1100px) {
  .p413 #header_text .gallery .gallery-static h3 {
    font-size: 1rem;
  }
}

.p413 #header_text .infotext {
  padding: 1rem 0;
}

.p413 #header_text .infotext li {
  list-style: decimal;
}

.p413 #header_text .gallery li,
.p413 #header_text .gallery p {
  font-size: 0.75rem;
  line-height: 1rem;
}

@media (min-width: 767px) {
  .p413 #header_text .gallery .gallery-static p {
    font-size: 0.75rem;
  }
}

.p413 #header_text .navigation {
  position: absolute;
  top: 0px;
  right: 0;
  left: 0;
  z-index: 200;
}

.p413 #header_text .navigation.in {
  bottom: 0;
}

.p413 #header_text .navbar-toggle {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  height: 16px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 17px;
  top: 16px;
  z-index: 202;
}

/* @mixin atMedium {display: none;} */

.p413 #header_text .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
}

.p413 #header_text .navbar-toggle .icon-bar__top {
  top: 0;
  left: 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p413 #header_text .navbar-toggle .icon-bar__middle {
  top: 6px;
  left: 0;
  transition: all 0.3s ease-out;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.p413 #header_text .navbar-toggle .icon-bar__bottom {
  bottom: 0;
  left: 0;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p413 #header_text .navbar-toggle.in .icon-bar__top {
  -webkit-transform: rotate(45deg) scaleX(1);
  transform: rotate(45deg) scaleX(1);
}

.p413 #header_text .navbar-toggle.in .icon-bar__middle {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.p413 #header_text .navbar-toggle.in .icon-bar__bottom {
  -webkit-transform: rotate(-45deg) scaleX(1) translateY(2px) translateX(-2px);
  transform: rotate(-45deg) scaleX(1) translateY(2px) translateX(-2px);
}

.p413 #header_text .navbar {
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  position: absolute;
  z-index: -10;
  top: 0px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.95);
}

.p413 #header_text .navbar.in {
  opacity: 1;
  z-index: 201;
  bottom: 0px;
  width: 100%;
}

.p413 #header_text .navbar ul {
  margin: 40px 0 0 0;
  padding: 0 1rem;
  text-align: center;
}

.p413 #header_text .navbar ul::after {
  content: "";
  clear: both;
  display: table;
}

.p413 #header_text .navbar li {
  text-align: center;
  list-style: none;
  display: block;
  padding: 2rem 0px;
  text-align: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.p413 #header_text .navbar li:last-child {
  padding-right: 0;
}

.p413 #header_text .navbar li:last-child a {
  border-right: none;
}

.p413 #header_text .navbar li a {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  padding: 0px 12px 0px 0px;
}

.p413 #header_text .navbar li a:hover {
  color: #fd3c3c;
}

.field-row .inputfile.inputfile__btn + label,
.field-block .inputfile.inputfile__btn + label {
  width: 100%;
}

.list-answers {
  padding-left: 0;
  display: grid;
  gap: 0.5rem;
}
.list-answers select {
  max-width: 51%;
}
@media screen and (max-width: 1196px) {
  .list-answers select {
    max-width: unset;
    min-width: 97%;
  }
}
@media screen and (max-width: 1030px) {
  .list-answers li {
    max-width: 95.25%;
  }
}
@media screen and (max-width: 990px) {
  .list-answers li {
    max-width: 92.2%;
  }
  .list-answers li {
    display: grid;
  }
}
