* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*==== VARIABLES ====*/
:root {
  --brand-color: #509bbb;
  --main-bg-color: #fff;
  --header-bg-color: #f2f5f7;
  --btn-bg-color: #00bc00;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Tahoma", sans-serif;
  --border-radius: 8px;
}
/*==== PRE-STYLES ====*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--main-bg-color);
  font-family: var(--font-primary);
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
.flex {
  display: flex;
}
.center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #3c3c3c;
  display: block;
  margin: 0 auto;
}
.btn {
  background-color: var(--btn-bg-color);
  height: 3.5rem;
  padding: 0 4rem;
  max-width: 25rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  opacity: 0.9;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35);
}
.btn:active {
  opacity: 0.5;
}
.text-colored {
  color: var(--brand-color);
}

/*ANIMATIONS*/
.animated {
  opacity: 0;
  transition: 0.6s;
}
.fade-in {
  opacity: 1;
}
@keyframes floatingUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatingDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}

/*==== HEADER =====================*/
.header {
  background-color: var(--header-bg-color);
  padding: 7px 0;
  text-align: center;
}
.header .logo {
  width: 11rem;
  height: auto;
  cursor: pointer;
}

/*==== HERO ======================*/
.hero-section {
  padding: 3.5rem 0 4rem 0;
  background: url("../assets/bg.jpg") no-repeat center / cover;
  background-attachment: fixed;
}
.video-wrapper {
  width: 58%;
  max-width: 717px;
}
.main-heading {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.44;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #3c3c3c;
  margin-bottom: 3.75rem;
}
.text-colored {
  color: var(--brand-color);
}
.main-heading .flag {
  margin-bottom: -8px;
  margin-left: 10px;
}
.video,
.video video {
  border-radius: var(--border-radius);
}
.video .play-btn::before {
  width: 8rem;
  height: 8rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  background-position: center;
  background-size: 4rem;
}
.form-wrapper {
  width: 36%;
  max-width: 456px;
  background-color: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
  border-radius: var(--border-radius);
  padding: 2rem;
}
.form-heading {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 700;
  font-size: 1.38rem;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  color: #3c3c3c;
  text-align: center;
  text-transform: uppercase;
}
.form-wrapper .input-wrap input {
  height: 56px;
  background-color: #fdfdfd;
  border: 1px solid rgba(11, 22, 51, 0.2);
  border-radius: var(--border-radius);
  padding-left: 20px;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1rem;
}
.form-wrapper .input-wrap input:focus {
  border: 2px solid var(--brand-color);
}
.form-wrapper .input-wrap .vue-tel-input {
  border: none;
  border-radius: var(--border-radius);
}
.form-wrapper .input-wrap .vue-tel-input .vti__dropdown {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  border: 1px solid rgba(11, 22, 51, 0.2);
}
.form-wrapper .input-wrap .vue-tel-input input {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.form-wrapper .checkbox-wrap {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
.form-wrapper .checkbox-wrap label {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 14px;
  color: #68645f;
}
.form-wrapper .input-wrap button {
  height: 56px;
  background: var(--btn-bg-color);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  transition: 0.2s;
}
.form-wrapper .input-wrap button:hover {
  opacity: 0.8;
}
.form-wrapper .input-wrap button:active {
  opacity: 0.5;
}

/*==== STEPS ===========================*/
.steps-section {
  padding: 1rem 0;
  background-color: var(--header-bg-color);
}
.steps-item.first {
  width: 25%;
  max-width: 480px;
  cursor: pointer;
}
.steps-item.second {
  width: 32%;
  max-width: 612px;
  margin-left: 2.75rem;
  cursor: pointer;
}
.step-number-img {
  width: 3rem;
  height: 3rem;
  margin-right: 1.5rem;
}
.steps-item-text {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #7d7d7d;
}

/*==== BENEFITS ====================*/
.benefits-section {
  padding: 5rem 0;
  background-color: var(--main-bg-color);
}
.cards-wrapper {
  margin-top: 2rem;
}
.benefits-card {
  width: 32%;
  max-width: 403px;
  background-color: #f8f8f8;
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: 0.2s;
}
.benefits-card:hover {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
}
.card-heading {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #3c3c3c;
  margin: 1.5rem 0 1rem 0;
}
.card-text {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #68645f;
}

/*==== ACTION ====================*/
.action-section {
  padding: 5rem 0;
  background-color: var(--brand-color);
  position: relative;
  overflow: hidden;
}
.action-section .container {
  position: relative;
  z-index: 3;
}
.action-section .section-heading {
  color: #fff;
  max-width: 1030px;
  margin-bottom: 3.5rem;
}
.action-img-wrapper {
  position: relative;
}
.device-img {
  width: 100%;
  height: auto;
}
.action-img-wrapper .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24.5%;
}
.action-decor {
  position: absolute;
  max-width: 517px;
}
.action-decor.left {
  bottom: -30%;
  left: 0;
  animation: floatingUp 30s;
  animation-iteration-count: infinite;
}
.action-decor.right {
  top: -30%;
  right: 0;
  animation: floatingDown 30s;
  animation-iteration-count: infinite;
}

/*==== REVIEWS =====================*/
.reviews-section {
  padding: 5rem 0;
  background-color: var(--main-bg-color);
}
.reviews-section .section-heading {
  max-width: 822px;
  margin-bottom: 2.5rem;
}
.reviews-card {
  width: 32%;
  max-width: 403px;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: 0.2s;
}
.reviews-card:hover {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.24);
}
.card-header {
  background-color: #f8f8f8;
  padding: 2rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.reviewer-img-wrapper {
  position: relative;
  margin-right: 1.5rem;
  width: 4rem;
  height: 4rem;
}
.reviewer-img {
  width: 4rem;
  height: 4rem;
}
.shield-img {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.card-header .card-heading {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #3c3c3c;
  margin: 0 0 0 0;
}
.reviews-card .card-text {
  height: 80%;
  background-color: #edf2f4;
  padding: 2rem;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  min-height: 160px;
}

/*==== BOTTOM FORM SECTION ===============*/
.form-section {
  padding: 5rem 0;
  background: url("../assets/bottom-bg.jpg") no-repeat center / cover;
  position: relative;
}
.form-section::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(248, 248, 248, 0.7);
  position: absolute;
  z-index: 2;
}
.form-section .form-wrapper {
  position: relative;
  z-index: 3;
  margin: 0 auto;
}

/*==== FOOTER =================*/
.footer {
  padding: 1.8rem 0;
  background-color: var(--main-bg-color);
}
.footer-copyright {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #222222;
}
.footer-policies a {
  margin-left: 1.5rem;
}

@media (max-width: 1600px) {
  .container {
    max-width: 1100px;
  }
  .header .logo {
    width: 9rem;
  }
  .main-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .form-heading {
    font-size: 1.15rem;
    margin: 0 0 1.5rem 0;
  }
  .form-wrapper .input-wrap {
    margin: 15px 0;
  }
  .form-wrapper .input-wrap input {
    height: 45px;
    padding-left: 20px;
  }
  .section-heading {
    font-size: 1.6rem;
  }
  .card-heading {
    font-size: 1.1rem;
  }
  .card-header .card-heading {
    font-size: 1rem;
  }
  .footer-copyright,
  .footer-policies a {
    font-size: 0.8rem;
  }
}

@media (max-width: 1000px) {
  .form-wrapper {
    width: 40%;
    padding: 2rem 1.5rem;
  }
  .steps-item.first {
    width: 30%;
  }
  .steps-item.second {
    width: 40%;
    margin-left: 2rem;
  }
  .benefits-section,
  .action-section,
  .reviews-section,
  .form-section {
    padding: 3rem 0;
  }
  .action-img-wrapper .btn {
    bottom: 23%;
  }
  .action-decor {
    max-width: 320px;
  }
}

@media (max-width: 780px) {
  .header {
    font-size: 0.9rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 33;
    border-bottom: 1px solid #dde2e4;
  }
  .main {
    padding-top: 30px;
  }
  .hero-section .container {
    flex-direction: column;
  }
  .video-wrapper {
    width: 100%;
    max-width: unset;
    margin-bottom: 2rem;
  }
  .main-heading {
    text-align: center;
  }
  .form-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .steps-section {
    flex-direction: column;
  }
  .steps-item.first,
  .steps-item.second {
    width: 80%;
    margin: 0 auto;
    max-width: unset;
  }
  .steps-item.first {
    margin-bottom: 1rem;
  }
  .cards-wrapper {
    flex-direction: column;
  }
  .benefits-card {
    width: 100%;
    padding: 2rem 1.5rem;
    margin: 0 auto 1rem auto;
  }
  .action-section .section-heading {
    margin-bottom: 2rem;
  }
  .action-decor {
    max-width: 280px;
  }
  .reviews-card {
    width: 100%;
    margin: 0 auto 1rem auto;
  }
  .card-header {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .reviews-card .card-text {
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    min-height: unset;
  }
  .form-section .form-wrapper {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .header .logo {
    width: 7rem;
  }
  .main {
    padding-top: 40px;
  }
  .hero-section,
  .benefits-section {
    padding: 2rem 0;
  }
  .main-heading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .form-wrapper .input-wrap button,
  .btn {
    font-size: 1rem;
  }
  .step-number-img {
    margin-right: 1rem;
  }
  .steps-item-text {
    font-size: 0.9rem;
  }
  .section-heading {
    font-size: 1.3rem;
  }
  .benefits-card {
    text-align: center;
  }
  .action-decor {
    max-width: 160px;
  }
  .btn {
    height: 3rem;
    padding: 0.5rem 2rem;
    height: auto;
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 768px) {
  .footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
  }
  .footer-copyright {
    margin-top: 10px;
    font-size: 12px;
  }
  .footer-policies a {
    display: block;
    margin: 8px 0;
    font-size: 13px;
  }
}

@media only screen and (max-width: 480px) {
  .header {
    font-size: 0.8rem;
  }
  .footer {
    padding: 10px;
    font-size: 12px;
  }
  .footer-copyright {
    font-size: 11px;
    margin-top: 5px;
  }
  .footer-policies a {
    font-size: 12px;
    margin: 5px 0;
  }
}
.animated.active {
  opacity: 1;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("") format("woff2");
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("") format("woff2");
  unicode-range:
    U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}
@font-face {
  font-family: "Tahoma";
  src: url("");
  src:
    local("Tahoma Bold"),
    local("Tahoma-Bold"),
    url("") format("embedded-opentype"),
    url("") format("woff2"),
    url("") format("woff"),
    url("") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Tahoma";
  src: url("");
  src:
    local("Tahoma"),
    url("") format("embedded-opentype"),
    url("") format("woff2"),
    url("") format("woff"),
    url("") format("truetype");
  font-weight: normal;
  font-style: normal;
}
h3 {
  margin: 40px 0 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
a {
  color: #42b983;
}
.close-poping {
  position: absolute;
  right: 20px;
  top: 20px;
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  cursor: pointer;
}
.vue-tel-input {
  direction: ltr !important;
}
input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
input:not([type="checkbox"]):not([type="tel"]) {
  width: 100%;
  min-height: 30px;
  outline: none;
  position: relative;
  z-index: 3;
  background-position: 50% 50%;
  background-repeat: no-repeat !important;
  border: 1px solid #bbb;
}
.vti__dropdown {
  background: #fff;
}
button[type="submit"] {
  width: 100%;
  padding: 15px;
  height: auto;
  cursor: pointer;
}
#phone.false,
input.false {
  background-image: url("") !important;
  background-position: 99% 50% !important;
  background-repeat: no-repeat;
  border: 1px solid #cf0000;
  -webkit-transition: unset;
  transition: unset;
  background-color: #ffe3e3 !important;
}
.checkbox-wrap.false {
  color: red !important;
}
input.valid {
  background-image: url("") !important;
  background-position: 99% 50% !important;
  background-repeat: no-repeat;
  border: 1px solid #23b100;
  background-color: #eaffe5 !important;
}
form input.false,
form input.false:focus,
form input.valid,
form input.valid:focus {
  color: #444;
}
form .input-wrap {
  width: 100%;
  position: relative;
  margin: 20px 0;
}
.input-wrap label {
  position: absolute;
  display: none;
}
.checkbox-wrap {
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
}
.checkbox-wrap input,
.checkbox-wrap label {
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-wrap label {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 95%;
  margin: 0;
  padding-left: 5px;
}
.input-wrap input.false:focus + label,
label.false {
  display: block;
  text-align: center;
  color: #c40000;
  font-size: 14px;
  position: absolute;
  width: 54%;
  max-width: 200px;
  z-index: 999;
  background: #fff;
  bottom: 99%;
  right: 0;
  padding: 2px;
  border-radius: 8px;
  border: 1px solid #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  font-style: normal;
  font-weight: 400;
}
input.false:focus + label:after,
label.false:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 10px solid;
  border-color: #fff transparent transparent transparent;
  top: 100%;
  right: 7.1%;
  margin-left: -10px;
}
.focus-border.false,
.focus-border.valid {
  display: block;
  position: absolute;
  width: 80%;
  top: -2px;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.pop-text-wrap {
  padding: 50px 70px;
}
.focus-border {
  z-index: -1 !important;
}
.vti__dropdown.open {
  z-index: 99;
}
.arForm input {
  direction: rtl;
  text-align: center;
}
.arForm .checkbox-wrap {
  text-align: right;
  direction: rtl;
}
.arForm .vti__dropdown {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  direction: ltr;
}
.arForm input[name="phone"] {
  text-align: left;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  direction: ltr !important;
  background-position: 99% 50% !important;
}
.arForm input[name="email"] {
  direction: ltr !important;
}
.loaders {
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  background-color: #06c;
}
.loaders-bg-2 {
  background-color: #fc4532;
}
.loaders-bg-3 {
  background-color: #ff29c8;
}
.loaders-bg-4 {
  background-color: #000;
}
.preloader {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-animation: rotatePreloader 2s ease-in infinite;
  animation: rotatePreloader 2s ease-in infinite;
}
button .preloader {
  width: 20px;
  height: 20px;
}
.inform {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 65%;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@-webkit-keyframes rotatePreloader {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(0);
    transform: translateX(-50%) translateY(-50%) rotate(0);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-1turn);
    transform: translateX(-50%) translateY(-50%) rotate(-1turn);
  }
}
@keyframes rotatePreloader {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(0);
    transform: translateX(-50%) translateY(-50%) rotate(0);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-1turn);
    transform: translateX(-50%) translateY(-50%) rotate(-1turn);
  }
}
.preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 10%;
  height: 10%;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}
.preloader div:first-child {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-animation: rotateCircle1 2s linear infinite;
  animation: rotateCircle1 2s linear infinite;
  z-index: 9;
}
@-webkit-keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
  7% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  57% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
  7% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  57% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(2) {
  -webkit-transform: rotate(36deg);
  transform: rotate(36deg);
  -webkit-animation: rotateCircle2 2s linear infinite;
  animation: rotateCircle2 2s linear infinite;
  z-index: 8;
}
@-webkit-keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  12% {
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  62% {
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  12% {
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  62% {
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(3) {
  -webkit-transform: rotate(72deg);
  transform: rotate(72deg);
  -webkit-animation: rotateCircle3 2s linear infinite;
  animation: rotateCircle3 2s linear infinite;
  z-index: 7;
}
@-webkit-keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  17% {
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }
  67% {
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
  }
  17% {
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }
  67% {
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(4) {
  -webkit-transform: rotate(108deg);
  transform: rotate(108deg);
  -webkit-animation: rotateCircle4 2s linear infinite;
  animation: rotateCircle4 2s linear infinite;
  z-index: 6;
}
@-webkit-keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }
  22% {
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
  }
  72% {
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    -webkit-transform: rotate(-72deg);
    transform: rotate(-72deg);
  }
  22% {
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
  }
  72% {
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(5) {
  -webkit-transform: rotate(144deg);
  transform: rotate(144deg);
  -webkit-animation: rotateCircle5 2s linear infinite;
  animation: rotateCircle5 2s linear infinite;
  z-index: 5;
}
@-webkit-keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
  }
  27% {
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
  }
  77% {
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    -webkit-transform: rotate(-108deg);
    transform: rotate(-108deg);
  }
  27% {
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
  }
  77% {
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(6) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation: rotateCircle6 2s linear infinite;
  animation: rotateCircle6 2s linear infinite;
  z-index: 4;
}
@-webkit-keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
  }
  32% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  82% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    -webkit-transform: rotate(-144deg);
    transform: rotate(-144deg);
  }
  32% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  82% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(7) {
  -webkit-transform: rotate(216deg);
  transform: rotate(216deg);
  -webkit-animation: rotateCircle7 2s linear infinite;
  animation: rotateCircle7 2s linear infinite;
  z-index: 3;
}
@-webkit-keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  37% {
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
  }
  87% {
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  37% {
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
  }
  87% {
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(8) {
  -webkit-transform: rotate(252deg);
  transform: rotate(252deg);
  -webkit-animation: rotateCircle8 2s linear infinite;
  animation: rotateCircle8 2s linear infinite;
  z-index: 2;
}
@-webkit-keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
  }
  42% {
    -webkit-transform: rotate(-252deg);
    transform: rotate(-252deg);
  }
  92% {
    -webkit-transform: rotate(-252deg);
    transform: rotate(-252deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    -webkit-transform: rotate(-216deg);
    transform: rotate(-216deg);
  }
  42% {
    -webkit-transform: rotate(-252deg);
    transform: rotate(-252deg);
  }
  92% {
    -webkit-transform: rotate(-252deg);
    transform: rotate(-252deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(9) {
  -webkit-transform: rotate(288deg);
  transform: rotate(288deg);
  -webkit-animation: rotateCircle9 2s linear infinite;
  animation: rotateCircle9 2s linear infinite;
  z-index: 1;
}
@-webkit-keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    -webkit-transform: rotate(-252deg);
    transform: rotate(-252deg);
  }
  47% {
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
  }
  97% {
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    -webkit-transform: rotate(-252deg);
    transform: rotate(-252deg);
  }
  47% {
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
  }
  97% {
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(10) {
  -webkit-transform: rotate(324deg);
  transform: rotate(324deg);
  -webkit-animation: rotateCircle10 2s linear infinite;
  animation: rotateCircle10 2s linear infinite;
  z-index: 0;
}
@-webkit-keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
  }
  52% {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
  }
  102% {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
@keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    -webkit-transform: rotate(-288deg);
    transform: rotate(-288deg);
  }
  52% {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
  }
  102% {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
  }
  to {
    -webkit-transform: rotate(-324deg);
    transform: rotate(-324deg);
    opacity: 1;
  }
}
#app {
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
.addition a {
  color: #42b983;
}
.addition .cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 20px;
  background: #333;
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 16px;
  color: #fff;
  display: none;
  z-index: 9999;
}
.addition .cookie-bar.active {
  display: inherit;
}
.addition .cookie-bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}
.addition #cookie-bar-link {
  font-size: 12px;
}
.addition .cookie-bar-buttons {
  text-align: center;
}
.addition #cookie-bar-btn {
  padding: 10px 20px;
  background: #49c63b;
  border: unset;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}
.addition .arCookies {
  direction: rtl;
}
.addition #modal-error .modal-dialog.modal-sm {
  width: 100%;
}
.addition #modal-error button.close {
  position: relative;
  z-index: 99999;
  font-size: 44px;
  right: 15px;
}
.addition .modal-open {
  overflow: scroll;
  display: block;
}
.addition .cookie-policy,
.addition .exit_popup {
  display: none;
}
.addition .cookie-policy.active {
  display: block;
}
.addition button,
.addition input {
  outline: none;
}
.addition .pops {
  cursor: pointer;
}
.addition .exit_popup {
  background: hsla(0, 0%, 100%, 0.6);
}
.addition .help-block-error {
  line-height: 1;
  margin: 0 0 11px;
  text-align: left;
  background-color: red;
  color: #fff;
}
.addition .form-container-unique .form-group .help-block.block,
.addition form .help-block {
  display: block;
}
.addition .pop-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  display: none;
}
.addition .pop-outer.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.addition .pop-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.addition .pop-inner {
  height: 80%;
  position: relative;
  z-index: 101;
  background: #fff;
  max-width: 80%;
}
.addition .pop-inner__in {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100%;
  max-height: 100%;
  padding: 20px 40px;
  line-height: 150%;
}
.addition .pop-inner__in h1 {
  margin: 20px 0;
  font-size: 32px;
}
.addition .pop-inner__in .terms__subtitle,
.addition .pop-inner__in h2 {
  margin: 0 0 20px;
  font-size: 24px;
  display: block;
}
.addition .pop-inner__in p {
  margin: 0 0 20px;
  font-size: 16px;
}
.addition .pop-close,
.addition .pop-inner__in,
.addition .pop-inner__in h1 {
  color: #000;
}
.addition .pop-close {
  position: absolute;
  right: 40px;
  top: 20px;
  cursor: pointer;
  z-index: 5;
}
.addition .alterlink {
  font-family:
    Open Sans,
    Helvetica,
    Arial,
    sans-serif;
  cursor: pointer;
  font-size: 14px;
}
.addition .alterlink:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1100px) {
  .addition .cookie-bar {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .addition .cookie-bar {
    font-size: 12px;
  }
  .addition .pop-inner {
    max-width: 100%;
  }
  .addition .pop-inner__in {
    padding: 20px;
  }
  .addition .pop-inner__in h1 {
    font-size: 28px;
  }
  .addition .pop-inner__in .terms__subtitle,
  .addition .pop-inner__in h2 {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .addition .pop-inner__in svg {
    width: auto;
    height: auto;
  }
  .addition .pop-close {
    right: 20px;
  }
}
@media screen and (max-width: 425px) {
  .addition #cookie-bar-btn {
    padding: 7px 9px;
  }
  .addition .fullscreen-cookie-text {
    display: none;
  }
}
.video {
  position: relative;
}
.video-block-inner {
  width: 100%;
  position: relative;
  text-align: center;
  line-height: 0;
}
iframe {
  width: 100%;
  margin: auto;
}
.over {
  z-index: 91;
  height: 100%;
  cursor: pointer;
}
.over,
.play-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.play-btn {
  height: 87%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .play-btn {
    opacity: 0;
    display: none;
  }
}
.play-btn:before {
  content: "";
  display: block;
  width: 26%;
  background: url("") no-repeat;
  height: 48%;
  background-size: contain;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.play .play-btn:before {
  opacity: 0;
}
@media screen and (max-width: 992px) {
  .video-block-inner,
  iframe {
    max-height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .video-block-inner,
  iframe {
    max-height: 250px;
  }
}
@media screen and (max-width: 562px) {
  .video-block-inner,
  iframe {
    max-height: 180px;
  }
}
:root {
  --scroll-margin-top: 65px;
}

@media (max-width: 780px) {
  :root {
    --scroll-margin-top: 85px;
  }
}
.iti {
  width: 100%;
}
.form-signup-wrapper .intgrtn-form-signup .intgrtn-input-holder .intgrtn-input {
  min-height: 30px;
  outline: none;
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat !important;
  border: 1px solid #bbb;
  background-color: #fdfdfd;
  border-radius: var(--border-radius);
  padding: 15px 10px 15px 20px;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1rem;
}
.form-signup-wrapper .intgrtn-form-signup .has-btn-generate-password {
  display: none;
}
.form-signup-wrapper
  .intgrtn-form-signup
  .intgrtn-btn-submit-holder
  .intgrtn-btn-submit {
  height: 56px;
  background: var(--btn-bg-color);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  transition: 0.2s;
}

.addition .cookie-bar {
  display: none !important;
}

.intgrtn-cookie-popup {
  display: none !important;
}

/* mixin vendorPrefixed */
/* mixin demodeBorder */
.intgrtn-form-signup,
.intgrtn-form-signup-2-steps,
.intgrtn-form-signup-3-steps,
.intgrtn-form-optin,
.intgrtn-form-contact-us,
.intgrtn-form-contact-request-message {
  position: relative;
}
.intgrtn-form-signup,
.intgrtn-form-signup *,
.intgrtn-form-signup-2-steps,
.intgrtn-form-signup-2-steps *,
.intgrtn-form-signup-3-steps,
.intgrtn-form-signup-3-steps *,
.intgrtn-form-optin,
.intgrtn-form-optin *,
.intgrtn-form-contact-us,
.intgrtn-form-contact-us *,
.intgrtn-form-contact-request-message,
.intgrtn-form-contact-request-message * {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  text-indent: 0;
  text-align: left;
  font-weight: normal;
}
.intgrtn-form-signup .intgrtn-input-holder,
.intgrtn-form-signup-2-steps .intgrtn-input-holder,
.intgrtn-form-signup-3-steps .intgrtn-input-holder,
.intgrtn-form-optin .intgrtn-input-holder,
.intgrtn-form-contact-us .intgrtn-input-holder,
.intgrtn-form-contact-request-message .intgrtn-input-holder {
  margin-bottom: 10px;
}
.intgrtn-form-signup .intgrtn-input-group,
.intgrtn-form-signup-2-steps .intgrtn-input-group,
.intgrtn-form-signup-3-steps .intgrtn-input-group,
.intgrtn-form-optin .intgrtn-input-group,
.intgrtn-form-contact-us .intgrtn-input-group,
.intgrtn-form-contact-request-message .intgrtn-input-group {
  display: flex;
  flex-direction: row;
}
.intgrtn-form-signup .intgrtn-input-group .intgrtn-input-area-code,
.intgrtn-form-signup-2-steps .intgrtn-input-group .intgrtn-input-area-code,
.intgrtn-form-signup-3-steps .intgrtn-input-group .intgrtn-input-area-code,
.intgrtn-form-optin .intgrtn-input-group .intgrtn-input-area-code,
.intgrtn-form-contact-us .intgrtn-input-group .intgrtn-input-area-code,
.intgrtn-form-contact-request-message
  .intgrtn-input-group
  .intgrtn-input-area-code {
  width: 50px;
  margin-right: 10px;
}
.intgrtn-form-signup .intgrtn-input-group .intgrtn-image-captcha,
.intgrtn-form-signup .intgrtn-input-group .intgrtn-icon-loader,
.intgrtn-form-signup-2-steps .intgrtn-input-group .intgrtn-image-captcha,
.intgrtn-form-signup-2-steps .intgrtn-input-group .intgrtn-icon-loader,
.intgrtn-form-signup-3-steps .intgrtn-input-group .intgrtn-image-captcha,
.intgrtn-form-signup-3-steps .intgrtn-input-group .intgrtn-icon-loader,
.intgrtn-form-optin .intgrtn-input-group .intgrtn-image-captcha,
.intgrtn-form-optin .intgrtn-input-group .intgrtn-icon-loader,
.intgrtn-form-contact-us .intgrtn-input-group .intgrtn-image-captcha,
.intgrtn-form-contact-us .intgrtn-input-group .intgrtn-icon-loader,
.intgrtn-form-contact-request-message
  .intgrtn-input-group
  .intgrtn-image-captcha,
.intgrtn-form-contact-request-message
  .intgrtn-input-group
  .intgrtn-icon-loader {
  margin-right: 10px;
}
.intgrtn-form-signup .intgrtn-label,
.intgrtn-form-signup-2-steps .intgrtn-label,
.intgrtn-form-signup-3-steps .intgrtn-label,
.intgrtn-form-optin .intgrtn-label,
.intgrtn-form-contact-us .intgrtn-label,
.intgrtn-form-contact-request-message .intgrtn-label {
  font-size: 14px;
  font-weight: bold;
}
.intgrtn-form-signup .intgrtn-sms-verification-text,
.intgrtn-form-signup-2-steps .intgrtn-sms-verification-text,
.intgrtn-form-signup-3-steps .intgrtn-sms-verification-text,
.intgrtn-form-optin .intgrtn-sms-verification-text,
.intgrtn-form-contact-us .intgrtn-sms-verification-text,
.intgrtn-form-contact-request-message .intgrtn-sms-verification-text {
  text-align: right;
  margin-bottom: 10px;
}
.intgrtn-form-signup .intgrtn-sms-verification-resend-button,
.intgrtn-form-signup-2-steps .intgrtn-sms-verification-resend-button,
.intgrtn-form-signup-3-steps .intgrtn-sms-verification-resend-button,
.intgrtn-form-optin .intgrtn-sms-verification-resend-button,
.intgrtn-form-contact-us .intgrtn-sms-verification-resend-button,
.intgrtn-form-contact-request-message .intgrtn-sms-verification-resend-button {
  font-size: 14px;
  text-decoration: none;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  background: none;
  text-decoration: underline;
  padding: 0 5px;
  transition: all 0.2s linear;
  color: #31b0d5;
}
.intgrtn-form-signup .intgrtn-sms-verification-resend-button:hover,
.intgrtn-form-signup-2-steps .intgrtn-sms-verification-resend-button:hover,
.intgrtn-form-signup-3-steps .intgrtn-sms-verification-resend-button:hover,
.intgrtn-form-optin .intgrtn-sms-verification-resend-button:hover,
.intgrtn-form-contact-us .intgrtn-sms-verification-resend-button:hover,
.intgrtn-form-contact-request-message
  .intgrtn-sms-verification-resend-button:hover {
  color: #2289a7;
}
.intgrtn-form-signup .intgrtn-sms-verification-resend-button[disabled],
.intgrtn-form-signup-2-steps .intgrtn-sms-verification-resend-button[disabled],
.intgrtn-form-signup-3-steps .intgrtn-sms-verification-resend-button[disabled],
.intgrtn-form-optin .intgrtn-sms-verification-resend-button[disabled],
.intgrtn-form-contact-us .intgrtn-sms-verification-resend-button[disabled],
.intgrtn-form-contact-request-message
  .intgrtn-sms-verification-resend-button[disabled] {
  opacity: 0.8;
  cursor: not-allowed;
}
.intgrtn-form-signup .intgrtn-sms-verification-title,
.intgrtn-form-signup-2-steps .intgrtn-sms-verification-title,
.intgrtn-form-signup-3-steps .intgrtn-sms-verification-title,
.intgrtn-form-optin .intgrtn-sms-verification-title,
.intgrtn-form-contact-us .intgrtn-sms-verification-title,
.intgrtn-form-contact-request-message .intgrtn-sms-verification-title {
  text-align: center;
}
.intgrtn-form-signup .intgrtn-input,
.intgrtn-form-signup-2-steps .intgrtn-input,
.intgrtn-form-signup-3-steps .intgrtn-input,
.intgrtn-form-optin .intgrtn-input,
.intgrtn-form-contact-us .intgrtn-input,
.intgrtn-form-contact-request-message .intgrtn-input {
  -webkit-appearance: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 5px;
  margin: 0;
  background-color: #fff;
  display: block;
  width: 100%;
}
.intgrtn-form-signup .intgrtn-input[disabled],
.intgrtn-form-signup-2-steps .intgrtn-input[disabled],
.intgrtn-form-signup-3-steps .intgrtn-input[disabled],
.intgrtn-form-optin .intgrtn-input[disabled],
.intgrtn-form-contact-us .intgrtn-input[disabled],
.intgrtn-form-contact-request-message .intgrtn-input[disabled] {
  cursor: not-allowed;
}
.intgrtn-form-signup .intgrtn-input.intgrtn-invalid,
.intgrtn-form-signup-2-steps .intgrtn-input.intgrtn-invalid,
.intgrtn-form-signup-3-steps .intgrtn-input.intgrtn-invalid,
.intgrtn-form-optin .intgrtn-input.intgrtn-invalid,
.intgrtn-form-contact-us .intgrtn-input.intgrtn-invalid,
.intgrtn-form-contact-request-message .intgrtn-input.intgrtn-invalid {
  border-color: #f44336;
}
.intgrtn-form-signup .intgrtn-input-sms-code,
.intgrtn-form-signup-2-steps .intgrtn-input-sms-code,
.intgrtn-form-signup-3-steps .intgrtn-input-sms-code,
.intgrtn-form-optin .intgrtn-input-sms-code,
.intgrtn-form-contact-us .intgrtn-input-sms-code,
.intgrtn-form-contact-request-message .intgrtn-input-sms-code {
  margin: 5px 0;
}
.intgrtn-form-signup .intgrtn-input-area-code-flags,
.intgrtn-form-signup-2-steps .intgrtn-input-area-code-flags,
.intgrtn-form-signup-3-steps .intgrtn-input-area-code-flags,
.intgrtn-form-optin .intgrtn-input-area-code-flags,
.intgrtn-form-contact-us .intgrtn-input-area-code-flags,
.intgrtn-form-contact-request-message .intgrtn-input-area-code-flags {
  display: none !important;
}
.intgrtn-form-signup .intgrtn-input-phone,
.intgrtn-form-signup-2-steps .intgrtn-input-phone,
.intgrtn-form-signup-3-steps .intgrtn-input-phone,
.intgrtn-form-optin .intgrtn-input-phone,
.intgrtn-form-contact-us .intgrtn-input-phone,
.intgrtn-form-contact-request-message .intgrtn-input-phone {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.intgrtn-form-signup .intgrtn-checkbox,
.intgrtn-form-signup-2-steps .intgrtn-checkbox,
.intgrtn-form-signup-3-steps .intgrtn-checkbox,
.intgrtn-form-optin .intgrtn-checkbox,
.intgrtn-form-contact-us .intgrtn-checkbox,
.intgrtn-form-contact-request-message .intgrtn-checkbox {
  margin: 0;
  margin-right: 10px;
  vertical-align: middle;
}
.intgrtn-form-signup .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-signup-2-steps .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-signup-3-steps .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-optin .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-contact-us .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-contact-request-message .intgrtn-checkbox-label-agree-terms {
  display: inline-flex;
  font-weight: normal;
}
.intgrtn-form-signup .intgrtn-checkbox-outer-holder,
.intgrtn-form-signup-2-steps .intgrtn-checkbox-outer-holder,
.intgrtn-form-signup-3-steps .intgrtn-checkbox-outer-holder,
.intgrtn-form-optin .intgrtn-checkbox-outer-holder,
.intgrtn-form-contact-us .intgrtn-checkbox-outer-holder,
.intgrtn-form-contact-request-message .intgrtn-checkbox-outer-holder {
  margin-bottom: 10px;
}
.intgrtn-form-signup .intgrtn-input-holder-checkbox-agree-terms,
.intgrtn-form-signup-2-steps .intgrtn-input-holder-checkbox-agree-terms,
.intgrtn-form-signup-3-steps .intgrtn-input-holder-checkbox-agree-terms,
.intgrtn-form-optin .intgrtn-input-holder-checkbox-agree-terms,
.intgrtn-form-contact-us .intgrtn-input-holder-checkbox-agree-terms,
.intgrtn-form-contact-request-message
  .intgrtn-input-holder-checkbox-agree-terms {
  margin-bottom: 0;
}
.intgrtn-form-signup
  .intgrtn-input-holder-checkbox-agree-terms.intgrtn-invalid
  .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-signup-2-steps
  .intgrtn-input-holder-checkbox-agree-terms.intgrtn-invalid
  .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-signup-3-steps
  .intgrtn-input-holder-checkbox-agree-terms.intgrtn-invalid
  .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-optin
  .intgrtn-input-holder-checkbox-agree-terms.intgrtn-invalid
  .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-contact-us
  .intgrtn-input-holder-checkbox-agree-terms.intgrtn-invalid
  .intgrtn-checkbox-label-agree-terms,
.intgrtn-form-contact-request-message
  .intgrtn-input-holder-checkbox-agree-terms.intgrtn-invalid
  .intgrtn-checkbox-label-agree-terms {
  color: #f44336;
}
.intgrtn-form-signup .intgrtn-select,
.intgrtn-form-signup-2-steps .intgrtn-select,
.intgrtn-form-signup-3-steps .intgrtn-select,
.intgrtn-form-optin .intgrtn-select,
.intgrtn-form-contact-us .intgrtn-select,
.intgrtn-form-contact-request-message .intgrtn-select {
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 5px;
  margin: 0;
  display: block;
  width: 100%;
  background: #fff;
}
.intgrtn-form-signup .intgrtn-select[disabled],
.intgrtn-form-signup-2-steps .intgrtn-select[disabled],
.intgrtn-form-signup-3-steps .intgrtn-select[disabled],
.intgrtn-form-optin .intgrtn-select[disabled],
.intgrtn-form-contact-us .intgrtn-select[disabled],
.intgrtn-form-contact-request-message .intgrtn-select[disabled] {
  cursor: not-allowed;
}
.intgrtn-form-signup .intgrtn-select.intgrtn-invalid,
.intgrtn-form-signup-2-steps .intgrtn-select.intgrtn-invalid,
.intgrtn-form-signup-3-steps .intgrtn-select.intgrtn-invalid,
.intgrtn-form-optin .intgrtn-select.intgrtn-invalid,
.intgrtn-form-contact-us .intgrtn-select.intgrtn-invalid,
.intgrtn-form-contact-request-message .intgrtn-select.intgrtn-invalid {
  border-color: #f44336;
}
.intgrtn-form-signup .intgrtn-textarea,
.intgrtn-form-signup-2-steps .intgrtn-textarea,
.intgrtn-form-signup-3-steps .intgrtn-textarea,
.intgrtn-form-optin .intgrtn-textarea,
.intgrtn-form-contact-us .intgrtn-textarea,
.intgrtn-form-contact-request-message .intgrtn-textarea {
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 5px;
  margin: 0;
  resize: vertical;
  display: block;
  width: 100%;
  height: 160px;
}
.intgrtn-form-signup .intgrtn-textarea[disabled],
.intgrtn-form-signup-2-steps .intgrtn-textarea[disabled],
.intgrtn-form-signup-3-steps .intgrtn-textarea[disabled],
.intgrtn-form-optin .intgrtn-textarea[disabled],
.intgrtn-form-contact-us .intgrtn-textarea[disabled],
.intgrtn-form-contact-request-message .intgrtn-textarea[disabled] {
  cursor: not-allowed;
}
.intgrtn-form-signup .intgrtn-textarea.intgrtn-invalid,
.intgrtn-form-signup-2-steps .intgrtn-textarea.intgrtn-invalid,
.intgrtn-form-signup-3-steps .intgrtn-textarea.intgrtn-invalid,
.intgrtn-form-optin .intgrtn-textarea.intgrtn-invalid,
.intgrtn-form-contact-us .intgrtn-textarea.intgrtn-invalid,
.intgrtn-form-contact-request-message .intgrtn-textarea.intgrtn-invalid {
  border-color: #f44336;
}
.intgrtn-form-signup .intgrtn-input-message-error,
.intgrtn-form-signup-2-steps .intgrtn-input-message-error,
.intgrtn-form-signup-3-steps .intgrtn-input-message-error,
.intgrtn-form-optin .intgrtn-input-message-error,
.intgrtn-form-contact-us .intgrtn-input-message-error,
.intgrtn-form-contact-request-message .intgrtn-input-message-error {
  color: #f44336;
  text-align: right;
}
.intgrtn-form-signup
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.intgrtn-form-signup-2-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.intgrtn-form-signup-3-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.intgrtn-form-optin
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.intgrtn-form-contact-us
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message,
.intgrtn-form-contact-request-message
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message {
  text-align: right;
}
.intgrtn-form-signup
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.intgrtn-form-signup-2-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.intgrtn-form-signup-3-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.intgrtn-form-optin
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.intgrtn-form-contact-us
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched,
.intgrtn-form-contact-request-message
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-untouched {
  color: black;
}
.intgrtn-form-signup
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-valid,
.intgrtn-form-signup-2-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-valid,
.intgrtn-form-signup-3-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-valid,
.intgrtn-form-optin
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-valid,
.intgrtn-form-contact-us
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-valid,
.intgrtn-form-contact-request-message
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-valid {
  color: #66bb6a;
}
.intgrtn-form-signup
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-invalid,
.intgrtn-form-signup-2-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-invalid,
.intgrtn-form-signup-3-steps
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-invalid,
.intgrtn-form-optin
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-invalid,
.intgrtn-form-contact-us
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-invalid,
.intgrtn-form-contact-request-message
  .intgrtn-input-message-error-verbose
  .intgrtn-single-message.intgrtn-invalid {
  color: #f44336;
}
.intgrtn-form-signup .intgrtn-btn-go-to-step-holder,
.intgrtn-form-signup .intgrtn-btn-submit-holder,
.intgrtn-form-signup-2-steps .intgrtn-btn-go-to-step-holder,
.intgrtn-form-signup-2-steps .intgrtn-btn-submit-holder,
.intgrtn-form-signup-3-steps .intgrtn-btn-go-to-step-holder,
.intgrtn-form-signup-3-steps .intgrtn-btn-submit-holder,
.intgrtn-form-optin .intgrtn-btn-go-to-step-holder,
.intgrtn-form-optin .intgrtn-btn-submit-holder,
.intgrtn-form-contact-us .intgrtn-btn-go-to-step-holder,
.intgrtn-form-contact-us .intgrtn-btn-submit-holder,
.intgrtn-form-contact-request-message .intgrtn-btn-go-to-step-holder,
.intgrtn-form-contact-request-message .intgrtn-btn-submit-holder {
  margin-bottom: 10px;
  text-align: center;
}
.intgrtn-form-signup .intgrtn-btn-go-to-step,
.intgrtn-form-signup .intgrtn-btn-generate-password,
.intgrtn-form-signup .intgrtn-btn-submit,
.intgrtn-form-signup-2-steps .intgrtn-btn-go-to-step,
.intgrtn-form-signup-2-steps .intgrtn-btn-generate-password,
.intgrtn-form-signup-2-steps .intgrtn-btn-submit,
.intgrtn-form-signup-3-steps .intgrtn-btn-go-to-step,
.intgrtn-form-signup-3-steps .intgrtn-btn-generate-password,
.intgrtn-form-signup-3-steps .intgrtn-btn-submit,
.intgrtn-form-optin .intgrtn-btn-go-to-step,
.intgrtn-form-optin .intgrtn-btn-generate-password,
.intgrtn-form-optin .intgrtn-btn-submit,
.intgrtn-form-contact-us .intgrtn-btn-go-to-step,
.intgrtn-form-contact-us .intgrtn-btn-generate-password,
.intgrtn-form-contact-us .intgrtn-btn-submit,
.intgrtn-form-contact-request-message .intgrtn-btn-go-to-step,
.intgrtn-form-contact-request-message .intgrtn-btn-generate-password,
.intgrtn-form-contact-request-message .intgrtn-btn-submit {
  font-size: 14px;
  display: inline-block;
  min-width: 88px;
  padding: 8px 16px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 2px;
  background: #337ab7;
  color: #fff;
  transition: all 0.2s linear;
}
.intgrtn-form-signup .intgrtn-btn-go-to-step:hover,
.intgrtn-form-signup .intgrtn-btn-generate-password:hover,
.intgrtn-form-signup .intgrtn-btn-submit:hover,
.intgrtn-form-signup-2-steps .intgrtn-btn-go-to-step:hover,
.intgrtn-form-signup-2-steps .intgrtn-btn-generate-password:hover,
.intgrtn-form-signup-2-steps .intgrtn-btn-submit:hover,
.intgrtn-form-signup-3-steps .intgrtn-btn-go-to-step:hover,
.intgrtn-form-signup-3-steps .intgrtn-btn-generate-password:hover,
.intgrtn-form-signup-3-steps .intgrtn-btn-submit:hover,
.intgrtn-form-optin .intgrtn-btn-go-to-step:hover,
.intgrtn-form-optin .intgrtn-btn-generate-password:hover,
.intgrtn-form-optin .intgrtn-btn-submit:hover,
.intgrtn-form-contact-us .intgrtn-btn-go-to-step:hover,
.intgrtn-form-contact-us .intgrtn-btn-generate-password:hover,
.intgrtn-form-contact-us .intgrtn-btn-submit:hover,
.intgrtn-form-contact-request-message .intgrtn-btn-go-to-step:hover,
.intgrtn-form-contact-request-message .intgrtn-btn-generate-password:hover,
.intgrtn-form-contact-request-message .intgrtn-btn-submit:hover {
  background: #265a87;
}
.intgrtn-form-signup .intgrtn-btn-go-to-step[disabled],
.intgrtn-form-signup .intgrtn-btn-generate-password[disabled],
.intgrtn-form-signup .intgrtn-btn-submit[disabled],
.intgrtn-form-signup-2-steps .intgrtn-btn-go-to-step[disabled],
.intgrtn-form-signup-2-steps .intgrtn-btn-generate-password[disabled],
.intgrtn-form-signup-2-steps .intgrtn-btn-submit[disabled],
.intgrtn-form-signup-3-steps .intgrtn-btn-go-to-step[disabled],
.intgrtn-form-signup-3-steps .intgrtn-btn-generate-password[disabled],
.intgrtn-form-signup-3-steps .intgrtn-btn-submit[disabled],
.intgrtn-form-optin .intgrtn-btn-go-to-step[disabled],
.intgrtn-form-optin .intgrtn-btn-generate-password[disabled],
.intgrtn-form-optin .intgrtn-btn-submit[disabled],
.intgrtn-form-contact-us .intgrtn-btn-go-to-step[disabled],
.intgrtn-form-contact-us .intgrtn-btn-generate-password[disabled],
.intgrtn-form-contact-us .intgrtn-btn-submit[disabled],
.intgrtn-form-contact-request-message .intgrtn-btn-go-to-step[disabled],
.intgrtn-form-contact-request-message .intgrtn-btn-generate-password[disabled],
.intgrtn-form-contact-request-message .intgrtn-btn-submit[disabled] {
  opacity: 0.8;
  background: #ccc;
  cursor: not-allowed;
}
.intgrtn-form-signup .intgrtn-btn-back,
.intgrtn-form-signup-2-steps .intgrtn-btn-back,
.intgrtn-form-signup-3-steps .intgrtn-btn-back,
.intgrtn-form-optin .intgrtn-btn-back,
.intgrtn-form-contact-us .intgrtn-btn-back,
.intgrtn-form-contact-request-message .intgrtn-btn-back {
  margin: 0 5px;
  background-color: #bfbfbf;
  color: #000000;
}
.intgrtn-form-signup .intgrtn-btn-back:hover,
.intgrtn-form-signup-2-steps .intgrtn-btn-back:hover,
.intgrtn-form-signup-3-steps .intgrtn-btn-back:hover,
.intgrtn-form-optin .intgrtn-btn-back:hover,
.intgrtn-form-contact-us .intgrtn-btn-back:hover,
.intgrtn-form-contact-request-message .intgrtn-btn-back:hover {
  background-color: #b3b3b3;
}
.intgrtn-form-signup .intgrtn-btn-verify-code,
.intgrtn-form-signup-2-steps .intgrtn-btn-verify-code,
.intgrtn-form-signup-3-steps .intgrtn-btn-verify-code,
.intgrtn-form-optin .intgrtn-btn-verify-code,
.intgrtn-form-contact-us .intgrtn-btn-verify-code,
.intgrtn-form-contact-request-message .intgrtn-btn-verify-code {
  margin: 0 5px;
}
.intgrtn-form-signup .intgrtn-btn-generate-password,
.intgrtn-form-signup-2-steps .intgrtn-btn-generate-password,
.intgrtn-form-signup-3-steps .intgrtn-btn-generate-password,
.intgrtn-form-optin .intgrtn-btn-generate-password,
.intgrtn-form-contact-us .intgrtn-btn-generate-password,
.intgrtn-form-contact-request-message .intgrtn-btn-generate-password {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.intgrtn-form-signup .intgrtn-form-message-error,
.intgrtn-form-signup-2-steps .intgrtn-form-message-error,
.intgrtn-form-signup-3-steps .intgrtn-form-message-error,
.intgrtn-form-optin .intgrtn-form-message-error,
.intgrtn-form-contact-us .intgrtn-form-message-error,
.intgrtn-form-contact-request-message .intgrtn-form-message-error {
  text-align: center;
  font-weight: bold;
  color: #f44336;
}
.intgrtn-form-signup .intgrtn-form-message-success,
.intgrtn-form-signup-2-steps .intgrtn-form-message-success,
.intgrtn-form-signup-3-steps .intgrtn-form-message-success,
.intgrtn-form-optin .intgrtn-form-message-success,
.intgrtn-form-contact-us .intgrtn-form-message-success,
.intgrtn-form-contact-request-message .intgrtn-form-message-success {
  text-align: center;
  font-weight: bold;
  color: #66bb6a;
}
.intgrtn-form-signup .intgrtn-form-loader,
.intgrtn-form-signup-2-steps .intgrtn-form-loader,
.intgrtn-form-signup-3-steps .intgrtn-form-loader,
.intgrtn-form-optin .intgrtn-form-loader,
.intgrtn-form-contact-us .intgrtn-form-loader,
.intgrtn-form-contact-request-message .intgrtn-form-loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.intgrtn-form-signup .intgrtn-steps-holder .intgrtn-step,
.intgrtn-form-signup-2-steps .intgrtn-steps-holder .intgrtn-step,
.intgrtn-form-signup-3-steps .intgrtn-steps-holder .intgrtn-step,
.intgrtn-form-optin .intgrtn-steps-holder .intgrtn-step,
.intgrtn-form-contact-us .intgrtn-steps-holder .intgrtn-step,
.intgrtn-form-contact-request-message .intgrtn-steps-holder .intgrtn-step {
  display: none;
}
.intgrtn-form-signup .intgrtn-steps-holder .intgrtn-step.intgrtn-active,
.intgrtn-form-signup-2-steps .intgrtn-steps-holder .intgrtn-step.intgrtn-active,
.intgrtn-form-signup-3-steps .intgrtn-steps-holder .intgrtn-step.intgrtn-active,
.intgrtn-form-optin .intgrtn-steps-holder .intgrtn-step.intgrtn-active,
.intgrtn-form-contact-us .intgrtn-steps-holder .intgrtn-step.intgrtn-active,
.intgrtn-form-contact-request-message
  .intgrtn-steps-holder
  .intgrtn-step.intgrtn-active {
  display: block;
}
.intgrtn-form-signup .intgrtn-steps-navigation,
.intgrtn-form-signup-2-steps .intgrtn-steps-navigation,
.intgrtn-form-signup-3-steps .intgrtn-steps-navigation,
.intgrtn-form-optin .intgrtn-steps-navigation,
.intgrtn-form-contact-us .intgrtn-steps-navigation,
.intgrtn-form-contact-request-message .intgrtn-steps-navigation {
  text-align: center;
  margin-bottom: 20px;
}
.intgrtn-form-signup .intgrtn-steps-navigation .intgrtn-steps-navigation-item,
.intgrtn-form-signup-2-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item,
.intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item,
.intgrtn-form-optin .intgrtn-steps-navigation .intgrtn-steps-navigation-item,
.intgrtn-form-contact-us
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item,
.intgrtn-form-contact-request-message
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item {
  display: inline-block;
  margin: 0 5px;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #c7ddef;
}
.intgrtn-form-signup
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.intgrtn-form-signup-2-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.intgrtn-form-signup-3-steps
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.intgrtn-form-optin
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.intgrtn-form-contact-us
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active,
.intgrtn-form-contact-request-message
  .intgrtn-steps-navigation
  .intgrtn-steps-navigation-item.intgrtn-active {
  background-color: #337ab7;
}
.intgrtn-form-signup .intgrtn-input-holder-password .intgrtn-input-group,
.intgrtn-form-signup
  .intgrtn-input-holder-password-confirm
  .intgrtn-input-group,
.intgrtn-form-signup-2-steps
  .intgrtn-input-holder-password
  .intgrtn-input-group,
.intgrtn-form-signup-2-steps
  .intgrtn-input-holder-password-confirm
  .intgrtn-input-group,
.intgrtn-form-signup-3-steps
  .intgrtn-input-holder-password
  .intgrtn-input-group,
.intgrtn-form-signup-3-steps
  .intgrtn-input-holder-password-confirm
  .intgrtn-input-group,
.intgrtn-form-optin .intgrtn-input-holder-password .intgrtn-input-group,
.intgrtn-form-optin .intgrtn-input-holder-password-confirm .intgrtn-input-group,
.intgrtn-form-contact-us .intgrtn-input-holder-password .intgrtn-input-group,
.intgrtn-form-contact-us
  .intgrtn-input-holder-password-confirm
  .intgrtn-input-group,
.intgrtn-form-contact-request-message
  .intgrtn-input-holder-password
  .intgrtn-input-group,
.intgrtn-form-contact-request-message
  .intgrtn-input-holder-password-confirm
  .intgrtn-input-group {
  position: relative;
}
.intgrtn-form-signup .intgrtn-btn-generate-password-holder,
.intgrtn-form-signup-2-steps .intgrtn-btn-generate-password-holder,
.intgrtn-form-signup-3-steps .intgrtn-btn-generate-password-holder,
.intgrtn-form-optin .intgrtn-btn-generate-password-holder,
.intgrtn-form-contact-us .intgrtn-btn-generate-password-holder,
.intgrtn-form-contact-request-message .intgrtn-btn-generate-password-holder {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.intgrtn-form-signup .intgrtn-btn-generate-password-holder .intgrtn-input-group,
.intgrtn-form-signup-2-steps
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group,
.intgrtn-form-signup-3-steps
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group,
.intgrtn-form-optin .intgrtn-btn-generate-password-holder .intgrtn-input-group,
.intgrtn-form-contact-us
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group,
.intgrtn-form-contact-request-message
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group {
  flex-grow: 1;
}
.intgrtn-form-signup
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group
  .intgrtn-input,
.intgrtn-form-signup-2-steps
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group
  .intgrtn-input,
.intgrtn-form-signup-3-steps
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group
  .intgrtn-input,
.intgrtn-form-optin
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group
  .intgrtn-input,
.intgrtn-form-contact-us
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group
  .intgrtn-input,
.intgrtn-form-contact-request-message
  .intgrtn-btn-generate-password-holder
  .intgrtn-input-group
  .intgrtn-input {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.intgrtn-password-eye-icon {
  display: block;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 18px auto;
  background-image: url("");
}
.intgrtn-password-eye-icon.intgrtn-visible {
  background-image: url("");
}

.intgrtn-table-brokers-holder {
  min-height: 100px;
  position: relative;
}
.intgrtn-table-brokers-holder .intgrtn-table-brokers {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.intgrtn-table-brokers-holder .intgrtn-table-brokers td,
.intgrtn-table-brokers-holder .intgrtn-table-brokers th {
  border-bottom: 1px solid #ccc;
  padding: 6px 12px;
  height: 68px;
}
.intgrtn-table-brokers-holder .intgrtn-table-brokers tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
.intgrtn-table-brokers-holder .intgrtn-table-broker-logo {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 60px;
}
.intgrtn-table-brokers-holder .intgrtn-table-broker-btn-open-account {
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  min-width: 88px;
  padding: 8px 16px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 2px;
  background: #337ab7;
  color: #fff;
  transition: all 0.2s linear;
}
.intgrtn-table-brokers-holder .intgrtn-table-broker-btn-open-account:hover {
  background: #265a87;
}
.intgrtn-table-brokers-holder .intgrtn-table-broker-btn-open-account[disabled] {
  opacity: 0.8;
  background: #ccc;
  cursor: not-allowed;
}

.intgrtn-tooltip {
  z-index: 100;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  color: #fff;
  padding: 5px;
  font-size: 12px;
  margin-top: -12px;
}
.intgrtn-tooltip:after,
.intgrtn-tooltip:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.intgrtn-tooltip:after {
  border-color: rgba(65, 213, 28, 0);
  border-top-color: rgba(0, 0, 0, 0.8);
  border-width: 10px;
  margin-left: -10px;
}
.intgrtn-tooltip:before {
  border-color: rgba(194, 225, 245, 0);
  border-top-color: transparent;
  border-width: 16px;
  margin-left: -16px;
}

.intgrtn-cookie-popup {
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 100vw;
  padding: 10px;
  display: flex;
  flex-direction: row;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.intgrtn-cookie-popup.intgrtn-cookie-popup-light {
  color: #000;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0px 5px 10px #000;
}
.intgrtn-cookie-popup .intgrtn-cookie-popup-link-privacy-policy {
  color: #337ab7;
  cursor: pointer;
}
.intgrtn-cookie-popup .intgrtn-cookie-popup-link-privacy-policy:active,
.intgrtn-cookie-popup .intgrtn-cookie-popup-link-privacy-policy:visited,
.intgrtn-cookie-popup .intgrtn-cookie-popup-link-privacy-policy:focus {
  color: #337ab7;
}
.intgrtn-cookie-popup .intgrtn-cookie-popup-text-holder {
  margin-right: 15px;
}
.intgrtn-cookie-popup .intgrtn-cookie-popup-btn-accept {
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  min-width: 88px;
  padding: 8px 16px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 2px;
  background: #337ab7;
  color: #fff;
  transition: all 0.2s linear;
}
.intgrtn-cookie-popup .intgrtn-cookie-popup-btn-accept:hover {
  background: #265a87;
}

.intgrtn-modal-holder {
  z-index: 200;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
}
.intgrtn-modal-holder.intgrtn-hidden {
  display: none;
}
.intgrtn-modal-holder .intgrtn-modal {
  position: absolute;
  left: 50%;
  top: 50px;
  width: 650px;
  margin-bottom: 15px;
  max-width: calc(100% - 30px);
  transform: translateX(-50%);
  border-radius: 5px;
  background-color: #fff;
  color: #000;
}
.intgrtn-modal-holder .intgrtn-modal-title {
  padding: 15px;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
}
.intgrtn-modal-holder .intgrtn-modal-btn-close {
  background: none;
  border: none;
  font-size: 26px;
  position: absolute;
  line-height: 1;
  right: 10px;
  width: 26px;
  height: 26px;
  top: 15px;
}
.intgrtn-modal-holder .intgrtn-modal-btn-close:hover {
  color: #337ab7;
}
.intgrtn-modal-holder .intgrtn-modal-body {
  padding: 15px;
  word-wrap: break-word;
}
.intgrtn-modal-holder .intgrtn-modal-agreement {
  width: 1000px;
}

.intgrtn-modal-body-overflow {
  overflow: hidden;
}

.intgrtn-loader-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  display: none;
}
.intgrtn-loader-holder.show {
  display: block;
}
.intgrtn-loader-holder.static {
  position: static;
  left: auto;
  text-align: center;
  padding: 15px;
  right: auto;
}
.intgrtn-loader-holder.static .intgrtn-lds-dual-ring {
  position: static;
  left: auto;
  right: auto;
  transform: translate(0%, 0%);
}
.intgrtn-loader-holder .intgrtn-loader-text-holder {
  text-align: center;
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
}
.intgrtn-loader-holder .intgrtn-loader-text-holder .intgrtn-lds-dual-ring {
  position: static;
  left: auto;
  right: auto;
  transform: translate(0%, 0%);
}
.intgrtn-loader-holder .intgrtn-lds-dual-ring {
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.intgrtn-loader-holder .intgrtn-lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: intgrtn-lds-dual-ring 1.2s linear infinite;
}
@keyframes intgrtn-lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.intgrtn-modal-block-website {
  z-index: 2000;
  background: black;
}
.intgrtn-modal-block-website .intgrtn-text-block-website {
  text-align: center;
  font-size: 18px;
  color: #f44336;
}

.intgrtn-modal-contact-us .intgrtn-text-top {
  margin-bottom: 40px;
}

.intgrtn-modal-basic-message {
  text-align: center;
}
.intgrtn-modal-basic-message .intgrtn-confirm-button-holder {
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.intgrtn-modal-basic-message .intgrtn-confirm-button {
  font-size: 14px;
  display: inline-block;
  min-width: 88px;
  padding: 8px 16px;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 2px;
  background: #337ab7;
  color: #fff;
  transition: all 0.2s linear;
}
.intgrtn-modal-basic-message .intgrtn-confirm-button:hover {
  background: #265a87;
}
.intgrtn-modal-basic-message .intgrtn-confirm-button[disabled] {
  opacity: 0.8;
  background: #ccc;
  cursor: not-allowed;
}

.intgrtn-hidden-1 {
  padding: 0px !important;
  width: 0px !important;
  height: 0px !important;
  opacity: 0 !important;
}

.intgrtn-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.intgrtn-icon-loader {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.intgrtn-icon-loader:after {
  content: " ";
  display: block;
  width: 28px;
  height: 28px;
  margin: 1px;
  border-radius: 50%;
  border: 3px solid #337ab7;
  border-color: #337ab7 transparent #337ab7 transparent;
  animation: intgrtn-lds-dual-ring 1.2s linear infinite;
}

[data-intgrtn-offer-name],
[data-intgrtn-offer-logo] {
  opacity: 0;
}

.intgrtn-contact-request-messages-holder {
  display: block;
  margin: 0px;
  padding: 0px;
  padding-bottom: 150px;
  background-color: #f5f5f5;
  /*border: $borderValue;*/
  /* .intgrtn-inner-panel */
}
.intgrtn-contact-request-messages-holder .intgrtn-logo-panel {
  display: block;
  margin: 0px;
  margin-bottom: 120px;
  padding: 0px;
  text-align: center;
  background-color: white;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.intgrtn-contact-request-messages-holder .intgrtn-logo-panel .intgrtn-logo-img {
  display: inline-block;
  max-height: 90px;
  max-width: 300px;
  width: auto;
  height: auto;
}
.intgrtn-contact-request-messages-holder .intgrtn-inner-panel {
  display: block;
  margin: 0px auto;
  padding: 0px;
  max-width: 840px;
  background-color: white;
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  /* .intgrtn-subject */
  /* .intgrtn-desc */
  /* .intgrtn-holder-prev-messages */
  /* .intgrtn-holder-new-message */
}
.intgrtn-contact-request-messages-holder .intgrtn-inner-panel .intgrtn-subject {
  display: block;
  margin: 0px;
  padding: 10px 40px 25px 40px;
  font-size: 18px;
  font-weight: bold;
  /*border: $borderValue;*/
}
.intgrtn-contact-request-messages-holder .intgrtn-inner-panel .intgrtn-desc {
  display: block;
  margin: 0px;
  margin-bottom: 40px;
  padding: 25px 40px;
  font-size: 16px;
  background-color: #ebeff5;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages {
  display: block;
  margin: 0px;
  padding: 0px;
  /*border: $borderValue;*/
  /* .intgrtn-message-box */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box {
  display: block;
  position: relative;
  margin: 0px;
  margin-bottom: 30px;
  padding: 15px 20px;
  max-width: 440px;
  word-wrap: break-word;
  border-radius: 5px;
  /* .intgrtn-user-panel */
  /* .intgrtn-message-box.style1 */
  /* .intgrtn-message-box.style2 */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box
  .intgrtn-user-panel {
  display: block;
  position: absolute;
  margin: 0px;
  padding: 0px;
  padding-top: 5px;
  min-width: 200px;
  background-repeat: no-repeat;
  /*border: $borderValue;*/
  /* .intgrtn-user-panel:after */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box
  .intgrtn-user-panel
  .intgrtn-user-name {
  font-size: 16px;
  font-weight: bold;
  color: black;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box
  .intgrtn-user-panel
  .intgrtn-date {
  font-size: 12px;
  color: #bcc1d3;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box
  .intgrtn-user-panel:after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  margin: 0px;
  padding: 0px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  /*border: $borderValue;*/
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box.style1 {
  margin-right: 40px;
  color: white;
  float: right;
  background-color: #3476d1;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box.style1
  .intgrtn-user-panel {
  top: 0px;
  right: 100%;
  padding-right: 65px;
  text-align: right;
  background-image: url("");
  background-position: calc(100% - 10px) 0px;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box.style1
  .intgrtn-user-panel:after {
  right: -9px;
  background-image: url("");
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box.style2 {
  margin-left: 40px;
  float: left;
  background-color: #ebeff5;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box.style2
  .intgrtn-user-panel {
  top: 0px;
  left: 100%;
  padding-left: 65px;
  text-align: left;
  background-image: url("");
  background-position: 10px 0px;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-prev-messages
  .intgrtn-message-box.style2
  .intgrtn-user-panel:after {
  left: -9px;
  background-image: url("");
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message {
  display: block;
  margin: 0px;
  padding: 0px;
  /*border: $borderValue;*/
  /* form.intgrtn-form-contact-request-message */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  form.intgrtn-form-contact-request-message {
  display: block;
  margin: 0px;
  padding: 0px;
  /*border: $borderValue;*/
  /* .intgrtn-message-input-holders */
  /* .intgrtn-btn-submit-holder */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  form.intgrtn-form-contact-request-message
  .intgrtn-message-input-holder {
  margin: 0px;
  margin-bottom: 0px;
  width: 65%;
  height: 130px;
  float: left;
  border-style: solid;
  border-color: #ccc;
  border-width: 1px 1px 0px 0px;
  /* textarea[name="message"] */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  form.intgrtn-form-contact-request-message
  .intgrtn-message-input-holder
  textarea[name="message"] {
  padding: 25px;
  height: 100%;
  max-height: 100%;
  font-size: 16px;
  resize: none;
  background-color: transparent;
  border-style: none;
  /*border: $borderValue;*/
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  form.intgrtn-form-contact-request-message
  .intgrtn-btn-submit-holder {
  display: block;
  position: relative;
  margin-bottom: 0px;
  width: 35%;
  height: 130px;
  float: right;
  border-style: solid;
  border-color: #ccc;
  border-width: 1px 0px 0px 0px;
  /* .intgrtn-btn-submit */
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  form.intgrtn-form-contact-request-message
  .intgrtn-btn-submit-holder
  .intgrtn-btn-submit {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 15px;
  min-width: 140px;
  max-width: 100%;
  height: 45px;
  font-size: 16px;
  text-align: center;
  line-height: 45px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #3476d1;
  border-radius: 5px;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  form.intgrtn-form-contact-request-message
  .intgrtn-btn-submit-holder
  .intgrtn-btn-submit:after {
  content: "";
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 90%;
  padding: 0 10px;
}
.intgrtn-contact-request-messages-holder
  .intgrtn-inner-panel
  .intgrtn-holder-new-message
  .intgrtn-input-message-error {
  margin-top: -25px;
  margin-right: 20px;
}

/* .intgrtn-contact-request-messages-holder */
@media (max-width: 991px) {
  .intgrtn-contact-request-messages-holder {
    padding-bottom: 100px;
    /* .intgrtn-logo-panel */
    /* .intgrtn-inner-panel */
  }
  .intgrtn-contact-request-messages-holder .intgrtn-logo-panel {
    margin-bottom: 108px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-logo-panel
    .intgrtn-logo-img {
    max-height: 80px;
  }
  .intgrtn-contact-request-messages-holder .intgrtn-inner-panel {
    /*margin-top: 108px;*/
    max-width: 756px;
    /* .intgrtn-holder-prev-messages */
    /* .intgrtn-holder-new-message */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-subject {
    padding: 9px 36px 22px 36px;
    font-size: 16px;
  }
  .intgrtn-contact-request-messages-holder .intgrtn-inner-panel .intgrtn-desc {
    margin-bottom: 36px;
    padding: 22px 36px;
    font-size: 14px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages {
    /* .intgrtn-message-box */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box {
    margin-bottom: 27px;
    padding: 13px 18px;
    /* .intgrtn-user-panel */
    /* .intgrtn-message-box.style1 */
    /* .intgrtn-message-box.style2 */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel {
    min-width: 180px;
    /* .intgrtn-user-panel:after */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel
    .intgrtn-user-name {
    font-size: 14px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel
    .intgrtn-date {
    font-size: 11px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel:after {
    top: 13px;
    margin: 0px;
    padding: 0px;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /*border: $borderValue;*/
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style1 {
    margin-right: 36px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style1
    .intgrtn-user-panel {
    padding-right: 60px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style1
    .intgrtn-user-panel:after {
    right: -8px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style2 {
    margin-left: 36px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style2
    .intgrtn-user-panel {
    padding-left: 60px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style2
    .intgrtn-user-panel:after {
    left: -8px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message {
    /* form.intgrtn-form-contact-request-message */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message {
    /* .intgrtn-message-input-holder */
    /* .intgrtn-btn-submit-holder */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-message-input-holder {
    height: 115px;
    /* textarea[name="message"] */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-message-input-holder
    textarea[name="message"] {
    padding: 22px;
    font-size: 14px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-btn-submit-holder {
    height: 115px;
    /* .intgrtn-btn-submit */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-btn-submit-holder
    .intgrtn-btn-submit {
    max-width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-btn-submit-holder
    .intgrtn-btn-submit:after {
    background-position: 90%;
  }
  /* .intgrtn-contact-request-messages-holder */
}
/* media 991 - 767px */
@media (max-width: 767px) {
  .intgrtn-contact-request-messages-holder {
    padding-bottom: 30px;
    /* .intgrtn-logo-panel */
    /* .intgrtn-inner-panel */
  }
  .intgrtn-contact-request-messages-holder .intgrtn-logo-panel {
    margin-bottom: 50px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-logo-panel
    .intgrtn-logo-img {
    max-height: 64px;
  }
  .intgrtn-contact-request-messages-holder .intgrtn-inner-panel {
    border-radius: 0px;
    /* .intgrtn-holder-prev-messages */
    /* .intgrtn-holder-new-message */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-subject {
    padding: 8px 10px 18px 10px;
    font-size: 13px;
  }
  .intgrtn-contact-request-messages-holder .intgrtn-inner-panel .intgrtn-desc {
    margin-bottom: 30px;
    padding: 18px 10px;
    font-size: 12px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages {
    /* .intgrtn-message-box */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box {
    margin-bottom: 25px;
    padding: 10px 14px;
    max-width: 230px;
    font-size: 12px;
    /* .intgrtn-user-panel */
    /* .intgrtn-message-box.style1 */
    /* .intgrtn-message-box.style2 */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel {
    min-width: 120px;
    background-size: 36px auto;
    /* .intgrtn-user-panel:after */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel
    .intgrtn-user-name {
    font-size: 12px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel
    .intgrtn-date {
    font-size: 10px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box
    .intgrtn-user-panel:after {
    top: 10px;
    width: 12px;
    height: 12px;
    /*border: $borderValue;*/
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style1 {
    margin-right: 10px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style1
    .intgrtn-user-panel {
    padding-top: 30px;
    padding-right: 15px;
    background-position: calc(100% - 5px) 0px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style1
    .intgrtn-user-panel:after {
    right: -7px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style2 {
    margin-left: 10px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style2
    .intgrtn-user-panel {
    padding-top: 30px;
    padding-left: 15px;
    background-position: 5px 0px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-prev-messages
    .intgrtn-message-box.style2
    .intgrtn-user-panel:after {
    left: -7px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message {
    margin-top: 30px;
    /* form.intgrtn-form-contact-request-message */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message {
    /* .intgrtn-message-input-holder */
    /* .intgrtn-btn-submit-holder */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-message-input-holder {
    height: 92px;
    /* textarea[name="message"] */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-message-input-holder
    textarea[name="message"] {
    padding: 12px;
    font-size: 12px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-btn-submit-holder {
    height: 92px;
    /* .intgrtn-btn-submit */
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-btn-submit-holder
    .intgrtn-btn-submit {
    padding: 0 15px;
    min-width: unset;
    width: 100px;
    max-width: 100%;
    height: unset;
    white-space: normal;
    word-break: break-all;
    font-size: 12px;
    line-height: 32px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    form.intgrtn-form-contact-request-message
    .intgrtn-btn-submit-holder
    .intgrtn-btn-submit:after {
    background-position: 90%;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    .intgrtn-input-message-error {
    margin-top: -20px;
    margin-right: 10px;
    font-size: 12px;
  }
  .intgrtn-contact-request-messages-holder
    .intgrtn-inner-panel
    .intgrtn-holder-new-message
    .intgrtn-form-message-success {
    font-size: 12px;
  }
  /* .intgrtn-contact-request-messages-holder */
}
/* media 767px - 0px */
.intgrtn-modal-exit-popup .intgrtn-modal {
  /*border: $borderValue;*/
  width: 800px;
  background-color: transparent;
}
.intgrtn-modal-exit-popup .intgrtn-modal .intgrtn-modal-btn-close {
  top: -20px;
  color: white;
}
.intgrtn-modal-exit-popup
  .intgrtn-modal
  .intgrtn-modal-header
  .intgrtn-modal-title {
  border: none;
}
.intgrtn-modal-exit-popup .intgrtn-modal .intgrtn-exit-popup-iframe-holder {
  /*border: $borderValue;*/
}
.intgrtn-modal-exit-popup
  .intgrtn-modal
  .intgrtn-exit-popup-iframe-holder
  .intgrtn-exit-popup-iframe {
  display: block;
  width: 100%;
  min-height: 90vh;
  border: none;
}

.intgrtn-modal-after-signup-popup .intgrtn-modal {
  /*border: $borderValue;*/
  width: 800px;
  background-color: transparent;
}
.intgrtn-modal-after-signup-popup .intgrtn-modal .intgrtn-modal-btn-close {
  top: -20px;
  color: white;
}
.intgrtn-modal-after-signup-popup
  .intgrtn-modal
  .intgrtn-after-signup-popup-iframe-holder {
  /*border: $borderValue;*/
}
.intgrtn-modal-after-signup-popup
  .intgrtn-modal
  .intgrtn-after-signup-popup-iframe-holder
  .intgrtn-after-signup-popup-iframe {
  display: block;
  width: 100%;
  min-height: 90vh;
  border: none;
}

.intgrtn-input.intgrtn-area-flags-holder {
  position: relative;
  white-space: nowrap;
  width: auto;
  border-right: none !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  /*border: $borderValue;*/
  /* .intgrtn-selected-area */
  /* .intgrtn-areas-dropdown */
}
.intgrtn-invalid .intgrtn-input.intgrtn-area-flags-holder {
  border-color: #f44336;
}
.intgrtn-input.intgrtn-area-flags-holder .intgrtn-selected-area {
  display: block;
  position: relative;
  padding-left: 3px;
  padding-right: 18px;
  cursor: pointer;
  /*border: $borderValue;*/
  /* .intgrtn-flag-image */
  /* .intgrtn-phone-code */
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-selected-area
  .intgrtn-flag-image {
  display: inline-block;
  margin-right: 5px;
  width: 32px;
  height: 24px;
  vertical-align: middle;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background-image: url("");
  background-repeat: no-repeat;
  /*border: $borderValue;*/
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-selected-area
  .intgrtn-phone-code {
  display: inline-block;
  vertical-align: middle;
  /*border: $borderValue;*/
}
.intgrtn-input.intgrtn-area-flags-holder .intgrtn-selected-area::after {
  display: block;
  position: absolute;
  content: "▼";
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  width: 10px;
  height: 10px;
  line-height: 1;
  font-size: 10px;
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-selected-area.intgrtn-opened::after {
  content: "▲";
}
.intgrtn-input.intgrtn-area-flags-holder .intgrtn-areas-dropdown {
  display: block;
  position: absolute;
  top: 100%;
  left: -1px;
  width: 260px;
  height: 200px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity linear 0.3s;
  background-color: white;
  border: solid 1px grey;
  /* .intgrtn-flag-single-item */
  /* .intgrtn-areas-dropdown.opened */
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown
  .intgrtn-flag-single-item {
  display: block;
  cursor: pointer;
  padding: 3px 0px;
  padding-left: 3px;
  /*border: $borderValue;*/
  /* .intgrtn-flag-image */
  /* .intgrtn-area-name */
  /* .intgrtn-area-code */
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown
  .intgrtn-flag-single-item
  .intgrtn-flag-image {
  display: inline-block;
  margin-right: 5px;
  width: 32px;
  height: 24px;
  vertical-align: middle;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  background-image: url("");
  background-repeat: no-repeat;
  /*border: $borderValue;*/
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown
  .intgrtn-flag-single-item
  .intgrtn-area-name {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  /*border: $borderValue;*/
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown
  .intgrtn-flag-single-item
  .intgrtn-area-code {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  /*border: $borderValue;*/
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown
  .intgrtn-flag-single-item:hover,
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown
  .intgrtn-flag-single-item.intgrtn-selected {
  background-color: rgba(0, 0, 0, 0.15);
}
.intgrtn-input.intgrtn-area-flags-holder
  .intgrtn-areas-dropdown.intgrtn-opened {
  z-index: 50;
  opacity: 1;
  visibility: visible;
}

/* .intgrtn-area-flags-holder */
/* ============ flags sprite ================ */
.intgrtn-flag-image.intgrtn-flag-_African_Union {
  background-position: 0 -36px;
}

.intgrtn-flag-image.intgrtn-flag-_Arab_League {
  background-position: 0 -68px;
}

.intgrtn-flag-image.intgrtn-flag-_ASEAN {
  background-position: 0 -100px;
}

.intgrtn-flag-image.intgrtn-flag-_CARICOM {
  background-position: 0 -132px;
}

.intgrtn-flag-image.intgrtn-flag-_CIS {
  background-position: 0 -164px;
}

.intgrtn-flag-image.intgrtn-flag-_Commonwealth {
  background-position: 0 -196px;
}

.intgrtn-flag-image.intgrtn-flag-_England {
  background-position: 0 -228px;
}

.intgrtn-flag-image.intgrtn-flag-_European_Union,
.intgrtn-flag-image.intgrtn-flag-eu {
  background-position: 0 -260px;
}

.intgrtn-flag-image.intgrtn-flag-_Islamic_Conference {
  background-position: 0 -292px;
}

.intgrtn-flag-image.intgrtn-flag-_Kosovo {
  background-position: 0 -324px;
}

.intgrtn-flag-image.intgrtn-flag-_NATO {
  background-position: 0 -356px;
}

.intgrtn-flag-image.intgrtn-flag-_Northern_Cyprus {
  background-position: 0 -388px;
}

.intgrtn-flag-image.intgrtn-flag-_Northern_Ireland {
  background-position: 0 -420px;
}

.intgrtn-flag-image.intgrtn-flag-_Olimpic_Movement {
  background-position: 0 -452px;
}

.intgrtn-flag-image.intgrtn-flag-_OPEC {
  background-position: 0 -484px;
}

.intgrtn-flag-image.intgrtn-flag-_Red_Cross {
  background-position: 0 -516px;
}

.intgrtn-flag-image.intgrtn-flag-_Scotland {
  background-position: 0 -548px;
}

.intgrtn-flag-image.intgrtn-flag-_Somaliland {
  background-position: 0 -580px;
}

.intgrtn-flag-image.intgrtn-flag-_Tibet {
  background-position: 0 -612px;
}

.intgrtn-flag-image.intgrtn-flag-_United_Nations {
  background-position: 0 -644px;
}

.intgrtn-flag-image.intgrtn-flag-_Wales {
  background-position: 0 -676px;
}

.intgrtn-flag-image.intgrtn-flag-ad,
.intgrtn-flag-image.intgrtn-flag-and {
  background-position: 0 -708px;
}

.intgrtn-flag-image.intgrtn-flag-ae,
.intgrtn-flag-image.intgrtn-flag-are {
  background-position: 0 -740px;
}

.intgrtn-flag-image.intgrtn-flag-af,
.intgrtn-flag-image.intgrtn-flag-afg {
  background-position: 0 -772px;
}

.intgrtn-flag-image.intgrtn-flag-ag,
.intgrtn-flag-image.intgrtn-flag-atg {
  background-position: 0 -804px;
}

.intgrtn-flag-image.intgrtn-flag-ai,
.intgrtn-flag-image.intgrtn-flag-aia {
  background-position: 0 -836px;
}

.intgrtn-flag-image.intgrtn-flag-al,
.intgrtn-flag-image.intgrtn-flag-alb {
  background-position: 0 -868px;
}

.intgrtn-flag-image.intgrtn-flag-am,
.intgrtn-flag-image.intgrtn-flag-arm {
  background-position: 0 -900px;
}

.intgrtn-flag-image.intgrtn-flag-ao,
.intgrtn-flag-image.intgrtn-flag-ago {
  background-position: 0 -932px;
}

.intgrtn-flag-image.intgrtn-flag-aq,
.intgrtn-flag-image.intgrtn-flag-ata {
  background-position: 0 -964px;
}

.intgrtn-flag-image.intgrtn-flag-ar,
.intgrtn-flag-image.intgrtn-flag-arg {
  background-position: 0 -996px;
}

.intgrtn-flag-image.intgrtn-flag-as,
.intgrtn-flag-image.intgrtn-flag-asm {
  background-position: 0 -1028px;
}

.intgrtn-flag-image.intgrtn-flag-at,
.intgrtn-flag-image.intgrtn-flag-aut {
  background-position: 0 -1060px;
}

.intgrtn-flag-image.intgrtn-flag-au,
.intgrtn-flag-image.intgrtn-flag-aus {
  background-position: 0 -1092px;
}

.intgrtn-flag-image.intgrtn-flag-aw,
.intgrtn-flag-image.intgrtn-flag-abw {
  background-position: 0 -1124px;
}

.intgrtn-flag-image.intgrtn-flag-ax,
.intgrtn-flag-image.intgrtn-flag-ala {
  background-position: 0 -1156px;
}

.intgrtn-flag-image.intgrtn-flag-az,
.intgrtn-flag-image.intgrtn-flag-aze {
  background-position: 0 -1188px;
}

.intgrtn-flag-image.intgrtn-flag-ba,
.intgrtn-flag-image.intgrtn-flag-bih {
  background-position: 0 -1220px;
}

.intgrtn-flag-image.intgrtn-flag-bb,
.intgrtn-flag-image.intgrtn-flag-brb {
  background-position: 0 -1252px;
}

.intgrtn-flag-image.intgrtn-flag-bd,
.intgrtn-flag-image.intgrtn-flag-bgd {
  background-position: 0 -1284px;
}

.intgrtn-flag-image.intgrtn-flag-be,
.intgrtn-flag-image.intgrtn-flag-bel {
  background-position: 0 -1316px;
}

.intgrtn-flag-image.intgrtn-flag-bf,
.intgrtn-flag-image.intgrtn-flag-bfa {
  background-position: 0 -1348px;
}

.intgrtn-flag-image.intgrtn-flag-bg,
.intgrtn-flag-image.intgrtn-flag-bgr {
  background-position: 0 -1380px;
}

.intgrtn-flag-image.intgrtn-flag-bh,
.intgrtn-flag-image.intgrtn-flag-bhr {
  background-position: 0 -1412px;
}

.intgrtn-flag-image.intgrtn-flag-bi,
.intgrtn-flag-image.intgrtn-flag-bdi {
  background-position: 0 -1444px;
}

.intgrtn-flag-image.intgrtn-flag-bj,
.intgrtn-flag-image.intgrtn-flag-ben {
  background-position: 0 -1476px;
}

.intgrtn-flag-image.intgrtn-flag-bm,
.intgrtn-flag-image.intgrtn-flag-bmu {
  background-position: 0 -1508px;
}

.intgrtn-flag-image.intgrtn-flag-bn,
.intgrtn-flag-image.intgrtn-flag-brn {
  background-position: 0 -1540px;
}

.intgrtn-flag-image.intgrtn-flag-bo,
.intgrtn-flag-image.intgrtn-flag-bol {
  background-position: 0 -1572px;
}

.intgrtn-flag-image.intgrtn-flag-br,
.intgrtn-flag-image.intgrtn-flag-bra {
  background-position: 0 -1604px;
}

.intgrtn-flag-image.intgrtn-flag-bs,
.intgrtn-flag-image.intgrtn-flag-bhs {
  background-position: 0 -1636px;
}

.intgrtn-flag-image.intgrtn-flag-bt,
.intgrtn-flag-image.intgrtn-flag-btn {
  background-position: 0 -1668px;
}

.intgrtn-flag-image.intgrtn-flag-bw,
.intgrtn-flag-image.intgrtn-flag-bwa {
  background-position: 0 -1700px;
}

.intgrtn-flag-image.intgrtn-flag-by,
.intgrtn-flag-image.intgrtn-flag-blr {
  background-position: 0 -1732px;
}

.intgrtn-flag-image.intgrtn-flag-bz,
.intgrtn-flag-image.intgrtn-flag-blz {
  background-position: 0 -1764px;
}

.intgrtn-flag-image.intgrtn-flag-ca,
.intgrtn-flag-image.intgrtn-flag-can {
  background-position: 0 -1796px;
}

.intgrtn-flag-image.intgrtn-flag-cd,
.intgrtn-flag-image.intgrtn-flag-cod {
  background-position: 0 -1828px;
}

.intgrtn-flag-image.intgrtn-flag-cf,
.intgrtn-flag-image.intgrtn-flag-rca {
  background-position: 0 -1860px;
}

.intgrtn-flag-image.intgrtn-flag-cg,
.intgrtn-flag-image.intgrtn-flag-cog {
  background-position: 0 -1892px;
}

.intgrtn-flag-image.intgrtn-flag-ch,
.intgrtn-flag-image.intgrtn-flag-che {
  background-position: 0 -1924px;
}

.intgrtn-flag-image.intgrtn-flag-ci,
.intgrtn-flag-image.intgrtn-flag-civ {
  background-position: 0 -1956px;
}

.intgrtn-flag-image.intgrtn-flag-ck,
.intgrtn-flag-image.intgrtn-flag-cok {
  background-position: 0 -1988px;
}

.intgrtn-flag-image.intgrtn-flag-cl,
.intgrtn-flag-image.intgrtn-flag-chl {
  background-position: 0 -2020px;
}

.intgrtn-flag-image.intgrtn-flag-cm,
.intgrtn-flag-image.intgrtn-flag-cmr {
  background-position: 0 -2052px;
}

.intgrtn-flag-image.intgrtn-flag-cn,
.intgrtn-flag-image.intgrtn-flag-chn {
  background-position: 0 -2084px;
}

.intgrtn-flag-image.intgrtn-flag-co,
.intgrtn-flag-image.intgrtn-flag-col {
  background-position: 0 -2116px;
}

.intgrtn-flag-image.intgrtn-flag-cr,
.intgrtn-flag-image.intgrtn-flag-cri {
  background-position: 0 -2148px;
}

.intgrtn-flag-image.intgrtn-flag-cu,
.intgrtn-flag-image.intgrtn-flag-cub {
  background-position: 0 -2180px;
}

.intgrtn-flag-image.intgrtn-flag-cv,
.intgrtn-flag-image.intgrtn-flag-cpv {
  background-position: 0 -2212px;
}

.intgrtn-flag-image.intgrtn-flag-cy,
.intgrtn-flag-image.intgrtn-flag-cyp {
  background-position: 0 -2244px;
}

.intgrtn-flag-image.intgrtn-flag-cz,
.intgrtn-flag-image.intgrtn-flag-cze {
  background-position: 0 -2276px;
}

.intgrtn-flag-image.intgrtn-flag-de,
.intgrtn-flag-image.intgrtn-flag-deu {
  background-position: 0 -2308px;
}

.intgrtn-flag-image.intgrtn-flag-dj,
.intgrtn-flag-image.intgrtn-flag-dji {
  background-position: 0 -2340px;
}

.intgrtn-flag-image.intgrtn-flag-dk,
.intgrtn-flag-image.intgrtn-flag-dnk {
  background-position: 0 -2372px;
}

.intgrtn-flag-image.intgrtn-flag-dm,
.intgrtn-flag-image.intgrtn-flag-dma {
  background-position: 0 -2404px;
}

.intgrtn-flag-image.intgrtn-flag-do,
.intgrtn-flag-image.intgrtn-flag-dom {
  background-position: 0 -2436px;
}

.intgrtn-flag-image.intgrtn-flag-dz,
.intgrtn-flag-image.intgrtn-flag-dza {
  background-position: 0 -2468px;
}

.intgrtn-flag-image.intgrtn-flag-ec,
.intgrtn-flag-image.intgrtn-flag-ecu {
  background-position: 0 -2500px;
}

.intgrtn-flag-image.intgrtn-flag-ee,
.intgrtn-flag-image.intgrtn-flag-est {
  background-position: 0 -2532px;
}

.intgrtn-flag-image.intgrtn-flag-eg,
.intgrtn-flag-image.intgrtn-flag-egy {
  background-position: 0 -2564px;
}

.intgrtn-flag-image.intgrtn-flag-eh,
.intgrtn-flag-image.intgrtn-flag-esh {
  background-position: 0 -2596px;
}

.intgrtn-flag-image.intgrtn-flag-er,
.intgrtn-flag-image.intgrtn-flag-eri {
  background-position: 0 -2628px;
}

.intgrtn-flag-image.intgrtn-flag-es,
.intgrtn-flag-image.intgrtn-flag-esp {
  background-position: 0 -2660px;
}

.intgrtn-flag-image.intgrtn-flag-et,
.intgrtn-flag-image.intgrtn-flag-eth {
  background-position: 0 -2692px;
}

.intgrtn-flag-image.intgrtn-flag-fi,
.intgrtn-flag-image.intgrtn-flag-fin {
  background-position: 0 -2724px;
}

.intgrtn-flag-image.intgrtn-flag-fj,
.intgrtn-flag-image.intgrtn-flag-fji {
  background-position: 0 -2756px;
}

.intgrtn-flag-image.intgrtn-flag-fm,
.intgrtn-flag-image.intgrtn-flag-fsm {
  background-position: 0 -2788px;
}

.intgrtn-flag-image.intgrtn-flag-fo,
.intgrtn-flag-image.intgrtn-flag-fro {
  background-position: 0 -2820px;
}

.intgrtn-flag-image.intgrtn-flag-fr,
.intgrtn-flag-image.intgrtn-flag-fra {
  background-position: 0 -2852px;
}

.intgrtn-flag-image.intgrtn-flag-bl,
.intgrtn-flag-image.intgrtn-flag-blm {
  background-position: 0 -2852px;
}

.intgrtn-flag-image.intgrtn-flag-cp,
.intgrtn-flag-image.intgrtn-flag-cpt {
  background-position: 0 -2852px;
}

.intgrtn-flag-image.intgrtn-flag-mf,
.intgrtn-flag-image.intgrtn-flag-maf {
  background-position: 0 -2852px;
}

.intgrtn-flag-image.intgrtn-flag-yt,
.intgrtn-flag-image.intgrtn-flag-myt {
  background-position: 0 -2852px;
}

.intgrtn-flag-image.intgrtn-flag-ga,
.intgrtn-flag-image.intgrtn-flag-gab {
  background-position: 0 -2884px;
}

.intgrtn-flag-image.intgrtn-flag-gb,
.intgrtn-flag-image.intgrtn-flag-gbr {
  background-position: 0 -2916px;
}

.intgrtn-flag-image.intgrtn-flag-sh,
.intgrtn-flag-image.intgrtn-flag-shn {
  background-position: 0 -2916px;
}

.intgrtn-flag-image.intgrtn-flag-gd,
.intgrtn-flag-image.intgrtn-flag-grd {
  background-position: 0 -2948px;
}

.intgrtn-flag-image.intgrtn-flag-ge,
.intgrtn-flag-image.intgrtn-flag-geo {
  background-position: 0 -2980px;
}

.intgrtn-flag-image.intgrtn-flag-gg,
.intgrtn-flag-image.intgrtn-flag-ggy {
  background-position: 0 -3012px;
}

.intgrtn-flag-image.intgrtn-flag-gh,
.intgrtn-flag-image.intgrtn-flag-gha {
  background-position: 0 -3044px;
}

.intgrtn-flag-image.intgrtn-flag-gi,
.intgrtn-flag-image.intgrtn-flag-gib {
  background-position: 0 -3076px;
}

.intgrtn-flag-image.intgrtn-flag-gl,
.intgrtn-flag-image.intgrtn-flag-grl {
  background-position: 0 -3108px;
}

.intgrtn-flag-image.intgrtn-flag-gm,
.intgrtn-flag-image.intgrtn-flag-gmb {
  background-position: 0 -3140px;
}

.intgrtn-flag-image.intgrtn-flag-gn,
.intgrtn-flag-image.intgrtn-flag-gin {
  background-position: 0 -3172px;
}

.intgrtn-flag-image.intgrtn-flag-gp,
.intgrtn-flag-image.intgrtn-flag-glp {
  background-position: 0 -3204px;
}

.intgrtn-flag-image.intgrtn-flag-gq,
.intgrtn-flag-image.intgrtn-flag-gnq {
  background-position: 0 -3236px;
}

.intgrtn-flag-image.intgrtn-flag-gr,
.intgrtn-flag-image.intgrtn-flag-grc {
  background-position: 0 -3268px;
}

.intgrtn-flag-image.intgrtn-flag-gt,
.intgrtn-flag-image.intgrtn-flag-gtm {
  background-position: 0 -3300px;
}

.intgrtn-flag-image.intgrtn-flag-gu,
.intgrtn-flag-image.intgrtn-flag-gum {
  background-position: 0 -3332px;
}

.intgrtn-flag-image.intgrtn-flag-gw,
.intgrtn-flag-image.intgrtn-flag-gnb {
  background-position: 0 -3364px;
}

.intgrtn-flag-image.intgrtn-flag-gy,
.intgrtn-flag-image.intgrtn-flag-guy {
  background-position: 0 -3396px;
}

.intgrtn-flag-image.intgrtn-flag-hk,
.intgrtn-flag-image.intgrtn-flag-hkg {
  background-position: 0 -3428px;
}

.intgrtn-flag-image.intgrtn-flag-hn,
.intgrtn-flag-image.intgrtn-flag-hnd {
  background-position: 0 -3460px;
}

.intgrtn-flag-image.intgrtn-flag-hr,
.intgrtn-flag-image.intgrtn-flag-hrv {
  background-position: 0 -3492px;
}

.intgrtn-flag-image.intgrtn-flag-ht,
.intgrtn-flag-image.intgrtn-flag-hti {
  background-position: 0 -3524px;
}

.intgrtn-flag-image.intgrtn-flag-hu,
.intgrtn-flag-image.intgrtn-flag-hun {
  background-position: 0 -3556px;
}

.intgrtn-flag-image.intgrtn-flag-id,
.intgrtn-flag-image.intgrtn-flag-idn {
  background-position: 0 -3588px;
}

.intgrtn-flag-image.intgrtn-flag-mc,
.intgrtn-flag-image.intgrtn-flag-mco {
  background-position: 0 -3588px;
}

.intgrtn-flag-image.intgrtn-flag-ie {
  background-position: 0 -3620px;
}

.intgrtn-flag-image.intgrtn-flag-il,
.intgrtn-flag-image.intgrtn-flag-isr {
  background-position: 0 -3652px;
}

.intgrtn-flag-image.intgrtn-flag-im,
.intgrtn-flag-image.intgrtn-flag-imn {
  background-position: 0 -3684px;
}

.intgrtn-flag-image.intgrtn-flag-in,
.intgrtn-flag-image.intgrtn-flag-ind {
  background-position: 0 -3716px;
}

.intgrtn-flag-image.intgrtn-flag-iq,
.intgrtn-flag-image.intgrtn-flag-irq {
  background-position: 0 -3748px;
}

.intgrtn-flag-image.intgrtn-flag-ir,
.intgrtn-flag-image.intgrtn-flag-irn {
  background-position: 0 -3780px;
}

.intgrtn-flag-image.intgrtn-flag-is,
.intgrtn-flag-image.intgrtn-flag-isl {
  background-position: 0 -3812px;
}

.intgrtn-flag-image.intgrtn-flag-it,
.intgrtn-flag-image.intgrtn-flag-ita {
  background-position: 0 -3844px;
}

.intgrtn-flag-image.intgrtn-flag-je,
.intgrtn-flag-image.intgrtn-flag-jey {
  background-position: 0 -3876px;
}

.intgrtn-flag-image.intgrtn-flag-jm,
.intgrtn-flag-image.intgrtn-flag-jam {
  background-position: 0 -3908px;
}

.intgrtn-flag-image.intgrtn-flag-jo,
.intgrtn-flag-image.intgrtn-flag-jor {
  background-position: 0 -3940px;
}

.intgrtn-flag-image.intgrtn-flag-jp,
.intgrtn-flag-image.intgrtn-flag-jpn {
  background-position: 0 -3972px;
}

.intgrtn-flag-image.intgrtn-flag-ke,
.intgrtn-flag-image.intgrtn-flag-ken {
  background-position: 0 -4004px;
}

.intgrtn-flag-image.intgrtn-flag-kg,
.intgrtn-flag-image.intgrtn-flag-kgz {
  background-position: 0 -4036px;
}

.intgrtn-flag-image.intgrtn-flag-kh,
.intgrtn-flag-image.intgrtn-flag-khm {
  background-position: 0 -4068px;
}

.intgrtn-flag-image.intgrtn-flag-ki,
.intgrtn-flag-image.intgrtn-flag-kir {
  background-position: 0 -4100px;
}

.intgrtn-flag-image.intgrtn-flag-km,
.intgrtn-flag-image.intgrtn-flag-com {
  background-position: 0 -4132px;
}

.intgrtn-flag-image.intgrtn-flag-kn,
.intgrtn-flag-image.intgrtn-flag-kna {
  background-position: 0 -4164px;
}

.intgrtn-flag-image.intgrtn-flag-kp,
.intgrtn-flag-image.intgrtn-flag-prk {
  background-position: 0 -4196px;
}

.intgrtn-flag-image.intgrtn-flag-kr,
.intgrtn-flag-image.intgrtn-flag-kor {
  background-position: 0 -4228px;
}

.intgrtn-flag-image.intgrtn-flag-kw,
.intgrtn-flag-image.intgrtn-flag-kwt {
  background-position: 0 -4260px;
}

.intgrtn-flag-image.intgrtn-flag-ky,
.intgrtn-flag-image.intgrtn-flag-cym {
  background-position: 0 -4292px;
}

.intgrtn-flag-image.intgrtn-flag-kz,
.intgrtn-flag-image.intgrtn-flag-kaz {
  background-position: 0 -4324px;
}

.intgrtn-flag-image.intgrtn-flag-la,
.intgrtn-flag-image.intgrtn-flag-lao {
  background-position: 0 -4356px;
}

.intgrtn-flag-image.intgrtn-flag-lb,
.intgrtn-flag-image.intgrtn-flag-lbn {
  background-position: 0 -4388px;
}

.intgrtn-flag-image.intgrtn-flag-lc,
.intgrtn-flag-image.intgrtn-flag-lca {
  background-position: 0 -4420px;
}

.intgrtn-flag-image.intgrtn-flag-li,
.intgrtn-flag-image.intgrtn-flag-lie {
  background-position: 0 -4452px;
}

.intgrtn-flag-image.intgrtn-flag-lk,
.intgrtn-flag-image.intgrtn-flag-lka {
  background-position: 0 -4484px;
}

.intgrtn-flag-image.intgrtn-flag-lr,
.intgrtn-flag-image.intgrtn-flag-lbr {
  background-position: 0 -4516px;
}

.intgrtn-flag-image.intgrtn-flag-ls,
.intgrtn-flag-image.intgrtn-flag-lso {
  background-position: 0 -4548px;
}

.intgrtn-flag-image.intgrtn-flag-lt,
.intgrtn-flag-image.intgrtn-flag-ltu {
  background-position: 0 -4580px;
}

.intgrtn-flag-image.intgrtn-flag-lu,
.intgrtn-flag-image.intgrtn-flag-lux {
  background-position: 0 -4612px;
}

.intgrtn-flag-image.intgrtn-flag-lv,
.intgrtn-flag-image.intgrtn-flag-lva {
  background-position: 0 -4644px;
}

.intgrtn-flag-image.intgrtn-flag-ly,
.intgrtn-flag-image.intgrtn-flag-lby {
  background-position: 0 -4676px;
}

.intgrtn-flag-image.intgrtn-flag-ma,
.intgrtn-flag-image.intgrtn-flag-mar {
  background-position: 0 -4708px;
}

.intgrtn-flag-image.intgrtn-flag-md,
.intgrtn-flag-image.intgrtn-flag-mda {
  background-position: 0 -4740px;
}

.intgrtn-flag-image.intgrtn-flag-me,
.intgrtn-flag-image.intgrtn-flag-mne {
  background-position: 0 -4772px;
}

.intgrtn-flag-image.intgrtn-flag-mg,
.intgrtn-flag-image.intgrtn-flag-mdg {
  background-position: 0 -4804px;
}

.intgrtn-flag-image.intgrtn-flag-mh,
.intgrtn-flag-image.intgrtn-flag-mhl {
  background-position: 0 -4836px;
}

.intgrtn-flag-image.intgrtn-flag-mk,
.intgrtn-flag-image.intgrtn-flag-mkd {
  background-position: 0 -4868px;
}

.intgrtn-flag-image.intgrtn-flag-ml,
.intgrtn-flag-image.intgrtn-flag-mli {
  background-position: 0 -4900px;
}

.intgrtn-flag-image.intgrtn-flag-mm,
.intgrtn-flag-image.intgrtn-flag-mmr {
  background-position: 0 -4932px;
}

.intgrtn-flag-image.intgrtn-flag-mn,
.intgrtn-flag-image.intgrtn-flag-mng {
  background-position: 0 -4964px;
}

.intgrtn-flag-image.intgrtn-flag-mo,
.intgrtn-flag-image.intgrtn-flag-mac {
  background-position: 0 -4996px;
}

.intgrtn-flag-image.intgrtn-flag-mq,
.intgrtn-flag-image.intgrtn-flag-mtq {
  background-position: 0 -5028px;
}

.intgrtn-flag-image.intgrtn-flag-mr,
.intgrtn-flag-image.intgrtn-flag-mrt {
  background-position: 0 -5060px;
}

.intgrtn-flag-image.intgrtn-flag-ms,
.intgrtn-flag-image.intgrtn-flag-msr {
  background-position: 0 -5092px;
}

.intgrtn-flag-image.intgrtn-flag-mt,
.intgrtn-flag-image.intgrtn-flag-mlt {
  background-position: 0 -5124px;
}

.intgrtn-flag-image.intgrtn-flag-mu,
.intgrtn-flag-image.intgrtn-flag-mus {
  background-position: 0 -5156px;
}

.intgrtn-flag-image.intgrtn-flag-mv,
.intgrtn-flag-image.intgrtn-flag-mdv {
  background-position: 0 -5188px;
}

.intgrtn-flag-image.intgrtn-flag-mw,
.intgrtn-flag-image.intgrtn-flag-mwi {
  background-position: 0 -5220px;
}

.intgrtn-flag-image.intgrtn-flag-mx,
.intgrtn-flag-image.intgrtn-flag-mex {
  background-position: 0 -5252px;
}

.intgrtn-flag-image.intgrtn-flag-my,
.intgrtn-flag-image.intgrtn-flag-mys {
  background-position: 0 -5284px;
}

.intgrtn-flag-image.intgrtn-flag-mz,
.intgrtn-flag-image.intgrtn-flag-moz {
  background-position: 0 -5316px;
}

.intgrtn-flag-image.intgrtn-flag-na,
.intgrtn-flag-image.intgrtn-flag-nam {
  background-position: 0 -5348px;
}

.intgrtn-flag-image.intgrtn-flag-nc,
.intgrtn-flag-image.intgrtn-flag-ncl {
  background-position: 0 -5380px;
}

.intgrtn-flag-image.intgrtn-flag-ne,
.intgrtn-flag-image.intgrtn-flag-ner {
  background-position: 0 -5412px;
}

.intgrtn-flag-image.intgrtn-flag-ng,
.intgrtn-flag-image.intgrtn-flag-nga {
  background-position: 0 -5444px;
}

.intgrtn-flag-image.intgrtn-flag-ni,
.intgrtn-flag-image.intgrtn-flag-nic {
  background-position: 0 -5476px;
}

.intgrtn-flag-image.intgrtn-flag-nl,
.intgrtn-flag-image.intgrtn-flag-nld {
  background-position: 0 -5508px;
}

.intgrtn-flag-image.intgrtn-flag-nl {
  background-position: 0 -5508px;
}

.intgrtn-flag-image.intgrtn-flag-bq {
  background-position: 0 -5508px;
}

.intgrtn-flag-image.intgrtn-flag-no {
  background-position: 0 -5540px;
}

.intgrtn-flag-image.intgrtn-flag-bv,
.intgrtn-flag-image.intgrtn-flag-nq,
.intgrtn-flag-image.intgrtn-flag-sj {
  background-position: 0 -5540px;
}

.intgrtn-flag-image.intgrtn-flag-bq,
.intgrtn-flag-image.intgrtn-flag-bes {
  background-position: 0 -5508px;
}

.intgrtn-flag-image.intgrtn-flag-no,
.intgrtn-flag-image.intgrtn-flag-nor {
  background-position: 0 -5540px;
}

.intgrtn-flag-image.intgrtn-flag-bv,
.intgrtn-flag-image.intgrtn-flag-bvt {
  background-position: 0 -5540px;
}

.intgrtn-flag-image.intgrtn-flag-nq,
.intgrtn-flag-image.intgrtn-flag-atn {
  background-position: 0 -5540px;
}

.intgrtn-flag-image.intgrtn-flag-sj,
.intgrtn-flag-image.intgrtn-flag-sjm {
  background-position: 0 -5540px;
}

.intgrtn-flag-image.intgrtn-flag-np,
.intgrtn-flag-image.intgrtn-flag-npl {
  background-position: 0 -5572px;
}

.intgrtn-flag-image.intgrtn-flag-nr,
.intgrtn-flag-image.intgrtn-flag-nru {
  background-position: 0 -5604px;
}

.intgrtn-flag-image.intgrtn-flag-nz,
.intgrtn-flag-image.intgrtn-flag-nzl {
  background-position: 0 -5636px;
}

.intgrtn-flag-image.intgrtn-flag-om,
.intgrtn-flag-image.intgrtn-flag-omn {
  background-position: 0 -5668px;
}

.intgrtn-flag-image.intgrtn-flag-pa,
.intgrtn-flag-image.intgrtn-flag-pan {
  background-position: 0 -5700px;
}

.intgrtn-flag-image.intgrtn-flag-pe,
.intgrtn-flag-image.intgrtn-flag-per {
  background-position: 0 -5732px;
}

.intgrtn-flag-image.intgrtn-flag-pf,
.intgrtn-flag-image.intgrtn-flag-pyf {
  background-position: 0 -5764px;
}

.intgrtn-flag-image.intgrtn-flag-pg,
.intgrtn-flag-image.intgrtn-flag-png {
  background-position: 0 -5796px;
}

.intgrtn-flag-image.intgrtn-flag-ph,
.intgrtn-flag-image.intgrtn-flag-phl {
  background-position: 0 -5828px;
}

.intgrtn-flag-image.intgrtn-flag-pk,
.intgrtn-flag-image.intgrtn-flag-pak {
  background-position: 0 -5860px;
}

.intgrtn-flag-image.intgrtn-flag-pl,
.intgrtn-flag-image.intgrtn-flag-pol {
  background-position: 0 -5892px;
}

.intgrtn-flag-image.intgrtn-flag-pr,
.intgrtn-flag-image.intgrtn-flag-pri {
  background-position: 0 -5924px;
}

.intgrtn-flag-image.intgrtn-flag-ps,
.intgrtn-flag-image.intgrtn-flag-pse {
  background-position: 0 -5956px;
}

.intgrtn-flag-image.intgrtn-flag-pt,
.intgrtn-flag-image.intgrtn-flag-prt {
  background-position: 0 -5988px;
}

.intgrtn-flag-image.intgrtn-flag-pw,
.intgrtn-flag-image.intgrtn-flag-plw {
  background-position: 0 -6020px;
}

.intgrtn-flag-image.intgrtn-flag-py,
.intgrtn-flag-image.intgrtn-flag-pry {
  background-position: 0 -6052px;
}

.intgrtn-flag-image.intgrtn-flag-qa,
.intgrtn-flag-image.intgrtn-flag-qat {
  background-position: 0 -6084px;
}

.intgrtn-flag-image.intgrtn-flag-re,
.intgrtn-flag-image.intgrtn-flag-reu {
  background-position: 0 -6116px;
}

.intgrtn-flag-image.intgrtn-flag-ro,
.intgrtn-flag-image.intgrtn-flag-rou {
  background-position: 0 -6148px;
}

.intgrtn-flag-image.intgrtn-flag-rs,
.intgrtn-flag-image.intgrtn-flag-srb {
  background-position: 0 -6180px;
}

.intgrtn-flag-image.intgrtn-flag-ru,
.intgrtn-flag-image.intgrtn-flag-rus {
  background-position: 0 -6212px;
}

.intgrtn-flag-image.intgrtn-flag-rw,
.intgrtn-flag-image.intgrtn-flag-rwa {
  background-position: 0 -6244px;
}

.intgrtn-flag-image.intgrtn-flag-sa,
.intgrtn-flag-image.intgrtn-flag-sau {
  background-position: 0 -6276px;
}

.intgrtn-flag-image.intgrtn-flag-sb,
.intgrtn-flag-image.intgrtn-flag-slb {
  background-position: 0 -6308px;
}

.intgrtn-flag-image.intgrtn-flag-sc,
.intgrtn-flag-image.intgrtn-flag-syc {
  background-position: 0 -6340px;
}

.intgrtn-flag-image.intgrtn-flag-sd,
.intgrtn-flag-image.intgrtn-flag-sdn {
  background-position: 0 -6372px;
}

.intgrtn-flag-image.intgrtn-flag-se,
.intgrtn-flag-image.intgrtn-flag-swe {
  background-position: 0 -6404px;
}

.intgrtn-flag-image.intgrtn-flag-sg,
.intgrtn-flag-image.intgrtn-flag-sgp {
  background-position: 0 -6436px;
}

.intgrtn-flag-image.intgrtn-flag-si,
.intgrtn-flag-image.intgrtn-flag-svn {
  background-position: 0 -6468px;
}

.intgrtn-flag-image.intgrtn-flag-sk,
.intgrtn-flag-image.intgrtn-flag-svk {
  background-position: 0 -6500px;
}

.intgrtn-flag-image.intgrtn-flag-sl,
.intgrtn-flag-image.intgrtn-flag-sle {
  background-position: 0 -6532px;
}

.intgrtn-flag-image.intgrtn-flag-sm,
.intgrtn-flag-image.intgrtn-flag-smr {
  background-position: 0 -6564px;
}

.intgrtn-flag-image.intgrtn-flag-sn,
.intgrtn-flag-image.intgrtn-flag-sen {
  background-position: 0 -6596px;
}

.intgrtn-flag-image.intgrtn-flag-so,
.intgrtn-flag-image.intgrtn-flag-som {
  background-position: 0 -6628px;
}

.intgrtn-flag-image.intgrtn-flag-sr,
.intgrtn-flag-image.intgrtn-flag-sur {
  background-position: 0 -6660px;
}

.intgrtn-flag-image.intgrtn-flag-st,
.intgrtn-flag-image.intgrtn-flag-stp {
  background-position: 0 -6692px;
}

.intgrtn-flag-image.intgrtn-flag-sv,
.intgrtn-flag-image.intgrtn-flag-slv {
  background-position: 0 -6724px;
}

.intgrtn-flag-image.intgrtn-flag-sy,
.intgrtn-flag-image.intgrtn-flag-syr {
  background-position: 0 -6756px;
}

.intgrtn-flag-image.intgrtn-flag-sz,
.intgrtn-flag-image.intgrtn-flag-swz {
  background-position: 0 -6788px;
}

.intgrtn-flag-image.intgrtn-flag-tc,
.intgrtn-flag-image.intgrtn-flag-tca {
  background-position: 0 -6820px;
}

.intgrtn-flag-image.intgrtn-flag-td,
.intgrtn-flag-image.intgrtn-flag-tcd {
  background-position: 0 -6852px;
}

.intgrtn-flag-image.intgrtn-flag-tg,
.intgrtn-flag-image.intgrtn-flag-tgo {
  background-position: 0 -6884px;
}

.intgrtn-flag-image.intgrtn-flag-th,
.intgrtn-flag-image.intgrtn-flag-tha {
  background-position: 0 -6916px;
}

.intgrtn-flag-image.intgrtn-flag-tj,
.intgrtn-flag-image.intgrtn-flag-tjk {
  background-position: 0 -6948px;
}

.intgrtn-flag-image.intgrtn-flag-tl,
.intgrtn-flag-image.intgrtn-flag-tls {
  background-position: 0 -6980px;
}

.intgrtn-flag-image.intgrtn-flag-tm,
.intgrtn-flag-image.intgrtn-flag-tkm {
  background-position: 0 -7012px;
}

.intgrtn-flag-image.intgrtn-flag-tn,
.intgrtn-flag-image.intgrtn-flag-tun {
  background-position: 0 -7044px;
}

.intgrtn-flag-image.intgrtn-flag-to,
.intgrtn-flag-image.intgrtn-flag-ton {
  background-position: 0 -7076px;
}

.intgrtn-flag-image.intgrtn-flag-tr,
.intgrtn-flag-image.intgrtn-flag-tur {
  background-position: 0 -7108px;
}

.intgrtn-flag-image.intgrtn-flag-tt,
.intgrtn-flag-image.intgrtn-flag-tto {
  background-position: 0 -7140px;
}

.intgrtn-flag-image.intgrtn-flag-tv,
.intgrtn-flag-image.intgrtn-flag-tuv {
  background-position: 0 -7172px;
}

.intgrtn-flag-image.intgrtn-flag-tw,
.intgrtn-flag-image.intgrtn-flag-twn {
  background-position: 0 -7204px;
}

.intgrtn-flag-image.intgrtn-flag-tz,
.intgrtn-flag-image.intgrtn-flag-tza {
  background-position: 0 -7236px;
}

.intgrtn-flag-image.intgrtn-flag-ua,
.intgrtn-flag-image.intgrtn-flag-ukr {
  background-position: 0 -7268px;
}

.intgrtn-flag-image.intgrtn-flag-ug,
.intgrtn-flag-image.intgrtn-flag-uga {
  background-position: 0 -7300px;
}

.intgrtn-flag-image.intgrtn-flag-us,
.intgrtn-flag-image.intgrtn-flag-usa {
  background-position: 0 -7332px;
}

.intgrtn-flag-image.intgrtn-flag-uy,
.intgrtn-flag-image.intgrtn-flag-ury {
  background-position: 0 -7364px;
}

.intgrtn-flag-image.intgrtn-flag-uz,
.intgrtn-flag-image.intgrtn-flag-uzb {
  background-position: 0 -7396px;
}

.intgrtn-flag-image.intgrtn-flag-va,
.intgrtn-flag-image.intgrtn-flag-vat {
  background-position: 0 -7428px;
}

.intgrtn-flag-image.intgrtn-flag-vc,
.intgrtn-flag-image.intgrtn-flag-vct {
  background-position: 0 -7460px;
}

.intgrtn-flag-image.intgrtn-flag-ve,
.intgrtn-flag-image.intgrtn-flag-ven {
  background-position: 0 -7492px;
}

.intgrtn-flag-image.intgrtn-flag-vg,
.intgrtn-flag-image.intgrtn-flag-vgb {
  background-position: 0 -7524px;
}

.intgrtn-flag-image.intgrtn-flag-vi,
.intgrtn-flag-image.intgrtn-flag-vir {
  background-position: 0 -7556px;
}

.intgrtn-flag-image.intgrtn-flag-vn,
.intgrtn-flag-image.intgrtn-flag-vnm {
  background-position: 0 -7588px;
}

.intgrtn-flag-image.intgrtn-flag-vu,
.intgrtn-flag-image.intgrtn-flag-vut {
  background-position: 0 -7620px;
}

.intgrtn-flag-image.intgrtn-flag-ws,
.intgrtn-flag-image.intgrtn-flag-wsm {
  background-position: 0 -7652px;
}

.intgrtn-flag-image.intgrtn-flag-ye,
.intgrtn-flag-image.intgrtn-flag-yem {
  background-position: 0 -7684px;
}

.intgrtn-flag-image.intgrtn-flag-za,
.intgrtn-flag-image.intgrtn-flag-zaf {
  background-position: 0 -7716px;
}

.intgrtn-flag-image.intgrtn-flag-zm,
.intgrtn-flag-image.intgrtn-flag-zmb {
  background-position: 0 -7748px;
}

.intgrtn-flag-image.intgrtn-flag-zw,
.intgrtn-flag-image.intgrtn-flag-zwe {
  background-position: 0 -7780px;
}

.intgrtn-flag-image.intgrtn-flag-sx,
.intgrtn-flag-image.intgrtn-flag-sxm {
  background-position: 0 -7812px;
}

.intgrtn-flag-image.intgrtn-flag-cw,
.intgrtn-flag-image.intgrtn-flag-cuw {
  background-position: 0 -7844px;
}

.intgrtn-flag-image.intgrtn-flag-ss,
.intgrtn-flag-image.intgrtn-flag-ssd {
  background-position: 0 -7876px;
}

.intgrtn-flag-image.intgrtn-flag-nu,
.intgrtn-flag-image.intgrtn-flag-niu {
  background-position: 0 -7908px;
}

.intgrtn-flag-image.intgrtn-flag-gf {
  background-position: 0 -7940px;
}

.intgrtn-flag-image.intgrtn-flag-pm {
  background-position: 0 -7972px;
}

.intgrtn-flag-image.intgrtn-flag-tf {
  background-position: 0 -8004px;
}

.intgrtn-flag-image.intgrtn-flag-an {
  background-position: 0 -8036px;
}

.intgrtn-flag-image.intgrtn-flag-nf {
  background-position: 0 -8068px;
}

.intgrtn-flag-image.intgrtn-flag-gs {
  background-position: 0 -8100px;
}

.intgrtn-flag-image.intgrtn-flag-fk {
  background-position: 0 -8132px;
}

.intgrtn-flag-image.intgrtn-flag-cx {
  background-position: 0 -8164px;
}

.intgrtn-flag-image.intgrtn-flag-cc {
  background-position: 0 -8196px;
}

.intgrtn-flag-image.intgrtn-flag-mp {
  background-position: 0 -8228px;
}

.intgrtn-flag-image.intgrtn-flag-tk {
  background-position: 0 -8260px;
}

.intgrtn-flag-image.intgrtn-flag-wf {
  background-position: 0 -8292px;
}

.intgrtn-flag-image.intgrtn-flag-pn {
  background-position: 0 -8324px;
}

.iti {
  color: #000;
}

input.form-control.phonelist {
  padding-left: 92px !important;
}
.signup-form-wrapper {
  position: relative;
}
.myspinner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: #1c1c1ce6;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -36ms;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -72ms;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -108ms;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -144ms;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -216ms;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -252ms;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -288ms;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.text-white12 {
  color: #a79d9d;
  z-index: 0;
}

.footer-risk-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #777;
  padding: 10px;
  background: #f8f8f8;
}
.footer-risk-disclaimer a {
  color: #555;
  text-decoration: underline;
}
