*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/ 



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

body {
  margin: 0;
  padding: 0;
  font-family: Poppins !important;
  text-decoration: none;
  list-style: none;
  transition: 0.3s all;
  font-weight: medium;
  box-sizing: border-box;
}

.def_cursor {
  cursor: default;
}

#err {
  font-size: 12px;
  color: #ef2424 !important;
  margin-top: 10px !important;
  font-family: "Poppins";
}

.model {
  overflow-y: auto !important;
}

.update_dropdown_box li,
.update_dropdown_box a,
.update_dropdown_box span,
.update_dropdown_box h4 {
  font-family: "Poppins", sans-serif;
}

.update_dropdown_box_child_bottom_box {
  padding: 10px 10px;
  background-color: #26a9e0;
}

.bg_transparent {
  background-color: transparent;
}

.bg_white {
  background-color: #313131 !important;
}

.bg_default {
  background-color: #313131 !important;
}

.mb_66px {
  margin-bottom: 66px !important;
}

#success_out .good_choice_box {
  padding: 10px 10px 30px 10px !important;
}

#success_out .good_choice_box {
  width: 100% !important;
}

#success_out .good_choice_box .content_box {
  width: 100% !important;
}

#success_out .input-group {
}

#success_out .demo_book_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#success_out .demo_book_box input {
  color: darkblue;
  font-size: 12px;
  font-family: "Poppins";
  border-radius: 12px 0px 0px 12px;
}

#success_out .demo_book_box button {
  font-size: 12px;
  border-radius: 0px 12px 12px 0px;
  background: darkblue;
  color: white;
  font-family: "Poppins";
}

#success_out .modal-content {
  background: #26a9e0 !important;
}

#success_out .close {
  text-align: right !important;
  color: white !important;
  opacity: 1 !important;
  padding-right: 10px;
  padding-top: 5px;
}

#success_out .demo_book_box a {
  color: white;
  background: darkblue;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Poppins";
  font-size: 12px;
  margin-left: 20px;
  min-width: 120px;
}

#success_out h3 {
  color: white !important;
  font-size: 24px !important;
  margin-bottom: 10px !important;
}

#success_out p {
  color: white !important;
}

/*  */

.update_login .modal-header {
  border-bottom: none;
}

.update_login .close {
  padding: 0 !important;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
}

.update_login .close span {
  font-family: "Poppins";
  font-weight: 400;
  width: 25px;
  height: 25px;
  border: 1px solid;
  border-radius: 50px;
}

.update_login_logo {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.update_login_logo img {
  width: 60%;
  display: flex;
}

.update_info_box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  padding: 0px 20px;
}

.update_info_box img {
  width: 100px;
}

.update_info_box span {
  font-size: 18px;
  padding-left: 20px;
  font-weight: 500;
  color: #000000bd;
  font-family: "Poppins", sans-serif;
}

.mt_50px {
  margin-top: 50px;
}

.mt_20px {
  margin-top: 20px;
}

.mt_10px {
  margin-top: 10px;
  margin-left: 55px;
}

.mt_15px {
  margin-top: 15px;
  margin-left: 55px;
}

.update_select_box {
  width: 100%;
  padding: 0px 20px;
}

.input_box {
  width: 100%;
  position: relative;
}

.flag_drop_down {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flag_drop_down li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
  border: 2px solid #00000038;
  border-radius: 4px;
}

.login_flag {
  width: 25px;
  height: 17px;
}

.login_down_arrow {
  width: 11px;
  display: inline;
  margin-left: 7px;
}

.flag_drop_down span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins";
}

.flags_img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 25%;
}

.login_input_box {
  width: 75%;
}

.login_input_box input {
  width: 100%;
  font-size: 14px;
  font-family: "Poppins";
  padding-left: 20px;
  border: none;
  padding-top: 13px;
  padding-bottom: 13px;
}

.login_input_box input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.flag_drop_down_box_child ul {
  margin: 0;
  list-style: none;
  padding: 5px 5px;
  max-width: 25%;
  border: 1px solid #9dbaba;
  background: lightcyan;
  box-sizing: border-box;
  max-height: 200px;
  overflow-y: auto;
  position: absolute;
}

.d_none {
  display: none;
}

.d_block {
  display: block;
}

.flag_drop_down_box_child ul li:hover {
  cursor: pointer;
}

.flag_drop_down_box_child ul .flags_img {
  width: 100%;
  margin-top: 5px;
  padding: 3px 5px;
  border: 1px solid #8080803d;
}

.flag_drop_down .flags_img:hover {
  cursor: pointer;
}

.flag_drop_down_box_child ul li:first-child .flags_img {
  margin-top: 0px;
  transition: 0.3s all;
}

.flag_drop_down_box_child ul li .flags_img:hover {
  background-color: white;
  border-color: white;
}

/* width */
.flag_drop_down_box_child ul::-webkit-scrollbar {
  width: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.flag_drop_down_box_child ul::-webkit-scrollbar-thumb {
  background: #9ceaff;
}

/* Handle on hover */
.flag_drop_down_box_child ul::-webkit-scrollbar-thumb:hover {
  background: #9ceaff;
}

.bg_blue {
  background-color: blue;
  cursor: grab;
}

.update_button_box {
  width: 100%;
  padding: 0px 20px;
  margin-top: 50px;
}

.update_button_box button {
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Poppins";
  padding: 13px 10px;
  border-color: blue;
  color: white;
}

.update_querstio {
  padding: 10px 20px;
  text-align: center;
  font-family: "Poppins";
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 40px;
}

.verify_number .login_input_box {
  width: 100%;
  padding: 0px 20px;
}

.verify_number input {
  border: 2px solid #00000038;
  border-radius: 5px;
}

.verify_number input:focus {
  border: 2px solid #00000038;
}

.update_info_box span a {
  font-size: 13px;
  font-weight: 400;
  color: #3cbfeb;
}

.py_50px {
  padding: 0px 20px;
}

.not_receivet_otp {
  font-size: 13px;
  font-family: "Poppins";
  margin-top: 15px;
  display: block;
  color: #000000bf;
  margin-left: 22px;
}

.not_receivet_otp a {
  font-size: 13px;
  font-weight: 400;
  color: #3cbfeb;
}

.update_button_box .outline_button {
  color: darkblue;
  background: white;
  cursor: grab;
}

.password_box_update {
  position: relative;
}

.password_box_update img {
  width: 20px;
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}

.password_box_update img:hover {
  cursor: pointer;
}

.update_hide_password {
}

.update_hide_password {
  display: none;
}

.update_sent_otp img {
  width: 20px;
  margin-right: 5px;
}

.update_sent_otp {
  color: green;
}

.exposure {
  padding: 15px 20px 10px 20px;
}

.exposure p {
  margin-bottom: 10px;
}

.checkbox_box_grid {
  display: grid;
  grid-gap: 20px;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr;
}

.checkbox_box_grid input[type="radio"] {
  width: 100%;
  height: 40px;
  /* -webkit-appearance: none; */
  opacity: 0;
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 30px;
}

.checkbox_box_grid input[type="radio"]:hover {
  cursor: pointer;
}

.checkbox_box_grid label {
  left: 50%;
  top: 50%;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border: 2px solid #00000038;
  padding: 11px 24px;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  color: #000000b0;
  text-align: center;
  font-family: "Poppins";
}

.checkbox_box_grid input[type="radio"]:checked + label {
  background-color: #9ee3fd;
  border: 2px solid #9ee3fd;
  color: blue;
}

.checkbox_box {
  position: relative;
}

.terms_conditions {
  padding: 15px 20px 10px 20px;
}

.terms_conditions {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.terms_conditions span {
  font-size: 14px;
  color: #000000b0;
  font-family: "Poppins";
}

.terms_conditions input {
  margin-right: 10px;
  overflow: inherit !important;
}

.continue_button {
  text-align: center;
  padding: 15px 20px 10px 20px;
}

.continue_button button {
  font-size: 14px;
  color: white;
  border: none;
  border-radius: 4px;
  background-color: #3c5ceb;
  font-family: "Poppins";
  padding: 10px 30px;
}

.grid_radio {
  width: 100%;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 1fr 1fr;
  padding: 15px 20px 10px 20px;
}

.grid_radio_box {
  width: 70%;
  position: relative;
}

.err {
  font-family: "Poppins" !important;
  font-size: 13px;
  color: #ff1f1f;
  margin-top: 10px;
  display: block;
}

.px_20px {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.mt_0px {
  margin-top: 0px !important;
}

.grid_radio_box input[type="radio"] {
  width: 100%;
  height: 40px;
  opacity: 0;
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 30px;
}

.grid_radio_box input[type="radio"]:hover {
  cursor: pointer;
}

.grid_radio_box label {
  left: 50%;
  top: 50%;
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border: 2px solid #00000038;
  padding: 11px 24px;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
  color: #000000b0;
  text-align: center;
  font-family: "Poppins";
}

.grid_radio_box input[type="radio"]:checked + label {
  background-color: #9ee3fd;
  border: 2px solid #9ee3fd;
  color: blue;
}

.grid_radio > div:first-child {
  text-align: -webkit-right;
}

::ng-deep :root {
  --bg: #e5f5fb;
  --border: #097ff5;
  --btn: #2da1f7;
}

.makelink:hover {
  cursor: grab;
}

.opacity-0 {
  opacity: 0;
}

/* for-login-flag-start */
.radio_box {
  width: 93px;
  position: relative;
}

.radio_box_child {
  height: 230px;
  overflow-y: auto;
  position: absolute;
  width: 100%;
  display: block;
  background: white;
  z-index: 9999;
  margin-top: 45px;
}

.main_parent_top {
  width: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-bottom: 5px;
  background-color: rgb(229 245 251);
  padding: 8px 6px 8px 0px;
}

.text-danger {
  top: -5px !important;
}

.radio_search {
  margin-bottom: 5px;
}

.radio_search input:focus {
  outline: none;
  box-shadow: none;
}

.main_parent_top:hover {
  cursor: pointer;
}

.main_parent_top img {
  max-width: 30px;
  margin-right: 7px;
}

.radio_box_parent {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 5px;
}

.main_parent_top:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 100%;
  background-color: white;
  right: -2px;
  border-right: 3px solid #097ff5;
}

.radio_box_parent input[type="radio"] {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  border: 2px solid #938c8c1f;
  margin: 0;
  background-color: white;
  border-radius: 4px;
  transition: 0.3s all;
}

.radio_box_parent label {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio_box_parent label h6 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: rgba(0, 0, 255, 0.534);
  font-family: "Poppins";
}

.radio_box_parent_label {
  display: flex;
  align-items: center;
}

.radio_box_parent_label img {
  max-width: 30px;
  margin-right: 10px;
}

.radio_input {
  width: 100% !important;
  height: 40px !important;
  border-radius: 4px !important;
  position: sticky !important;
  top: 5px !important;
  border: 2px solid #938c8c1f !important;
  margin-bottom: 5px !important;
}

/* for-login-flag-end */

/* update_new_code(02/04/2022) */

.none {
  display: none;
}

.block {
  display: block;
}

/* update_new_code End */

.mypointer {
  cursor: pointer;
}

/*for login popup*/
.hidden-element {
  visibility: hidden;
}

.top-section {
  position: fixed;
  top: 0%;
  width: 100%;
  z-index: 999;
}

.top-section-change {
  /* background: #333333 !important; */
  position: relative !important;
}

.df-inli i {
  padding-left: 7px;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: Poppins !important;
}

.p32 {
  padding: 10px 32px;
}

a:hover {
  text-decoration: none;
}

.heading {
  font-size: 38px;
  color: #212529;
  line-height: 44px;
  font-weight: 400;
  font-family: "Poppins";
}

.headingh2,
.headingh2-social {
  font-size: 30px;
  color: #1c5ba0;
  line-height: 44px;
  font-weight: 400;
  font-family: "Poppins";
  text-align: center;
}

.sub-heading {
  font-size: 22px;
  font-weight: 400;
  border-bottom: 2px solid #1c5ba0;
  display: inline-block;
  padding: 10px 0px 25px 0px;
}

.subheading {
  font-size: 22px;
  font-weight: 400;
}

.headingh2:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 37%;
  height: 1px;
  /* background: #1c5ba047; */
}

.headingh2:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 37%;
  height: 1px;
  /* background: #1c5ba047; */
}

.headingh2-social:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 32%;
  height: 1px;
  background: #1c5ba047;
}

.headingh2-social:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 32%;
  height: 1px;
  background: #1c5ba047;
}

.header-content h5 {
  font-size: 21px;
  font-weight: 300;
  font-family: "Poppins";
}

.text-blue {
  color: #46c3f0 !important;
}

.text-d-blue {
  color: #1c5ba0;
}

.text-cyan {
  color: #00ffff;
}

.fw3 {
  font-weight: 300;
}

.text-dgreen {
  color: #2fd254 !important;
}

.blue-heading {
  font-size: 33px;
  font-weight: 400;
  border-bottom: 1px solid;
  padding-bottom: 28px;
}

.pb30 {
  padding-bottom: 30px;
}

.header-nav a img {
  width: 100%;
}

.nav-ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: end;
  margin-top: 50px;
}

.header-top-img {
  border-top: 2px solid #299cd2;
  width: 100%;
}

.header-top-img img {
  position: absolute;
  right: 5.2%;
  width: 100%;
  max-width: 9%;
  top: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  padding: 10px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}

.web_logo_a {
  display: contents;
}

.web_logo_a img {
  width: 13% !important;
}

.header-nav a img {
  width: 8%;
}

.nav-ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: end;
  align-items: center;
  margin-top: 0;
  /* margin-top: 50px; */
}

.nav-ul > li {
  padding: 10px 5px;
  /* background: rgba(63, 63, 63, 0.76) */
}

.nav-ul > li:first-child {
  border-radius: 30px 0px 0px 30px;
}

.nav-ul > li:last-child {
  border-radius: 0px 30px 30px 0px;
  padding: 0px 0px 0px 0px !important;
}

/* .desktop_login a {
  padding: 4px 25px;
  background: black;
  border-radius: 20px;
  border: 1px solid #ffffff70;
} */

.nav-ul > li:hover {
  cursor: pointer;
}

.nav-ul > li > a {
  font-size: 14px;
}

.nav-ul li a {
  display: inline-block;
  color: white;
  font-weight: 500;
  font-family: Poppins !important;
  margin: 0px 7px;
  text-decoration: none;
}

.nav-ul li:hover a {
  color: #41c4f1;
}

.nav-ul-last-li {
  display: grid;
  list-style: none;
}

.nav-ul-last-li a {
  display: flex !important;
  align-items: center;
  margin-bottom: 8px;
  border-radius: 30px;
  background: rgb(255 255 255 / 6%);
  padding: 2px 2px;
  width: 140px;
  font-weight: 400 !important;
}

.nav-ul-last-li a span {
  font-size: 27px;
  margin-right: 20px;
  display: inline-flex;
}

.nav-ul-last-li a span img {
  border-radius: 50px;
  padding: 2px;
}

.df-inli {
  display: initial !important;
}

.df-inli img {
  width: 100%;
  margin-left: 15px;
  max-width: 12% !important;
}

.nav-ul li:hover .update_dropdown_box {
  visibility: visible;
}

.nav-img {
  position: absolute;
  margin-left: -1px;
}

.mpl-0 a {
  margin-left: 0px !important;
  padding-left: 0px !important;
}

.nav-maga-li h5 {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #1c5ba0 !important;
}

.nav-ul-last-li:hover a {
  color: white !important;
}

.nav-ul-last-li a:hover {
  color: #41c1f4 !important;
}

.classadd {
  display: block !important;
  top: 15px !important;
}

.header-cont-img {
  width: 100%;
  /*  max-width: 60%;*/
}

.header-content {
  display: flex;
  align-items: center;
  height: 72vh;
}

.header-content h5 {
  color: white;
  font-weight: 200;
  line-height: 45px;
  padding: 30px 90px 30px 90px;
}

.header-content a img {
  max-width: 13%;
}

.center-div {
  text-align: -webkit-center;
}

.header-content a {
  display: flex;
  max-width: 30%;
  align-items: center;
  border: 1px solid #46c3f0;
  border-radius: 30px;
  padding: 10px 10px;
  color: white;
  font-weight: 300;
  font-family: "Poppins";
  margin: 0 auto;
  box-shadow: 0px 0px 14px #469fff6e;
}

.header-content a span {
  padding-left: 20px;
}

.header-ion {
  width: 32px;
  height: 32px;
}

.header-ion img {
  width: 100%;
  opacity: 80%;
  max-width: 100% !important;
}

/* mobile-view */

.mvtextblue {
  color: #007ad9 !important;
}

.mmmhide {
  width: 0%;
}

.mmmshow {
  width: 100%;
}

.icon {
  font-family: consults;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mobile-main {
  background: white;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  height: 100vh;
  transition: 0.3s;
  /* width: 100%; */
}

.mobile-main ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

.mobile-main ul li {
  border-bottom: 1px solid #f1eded;
}

.mobile-main-ls-li {
  border: none !important;
}

.mobile-main ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-weight: 400;
}

.mobile-main-fs-li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Forex-parent {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.fpshow {
  width: 100%;
}

.fphide {
  width: 0%;
}

.corporatePshow {
  width: 100%;
}

.corporatePhide {
  width: 0%;
}

.corporateparent {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.retailPshow {
  width: 100%;
}

.retailPhide {
  width: 0%;
}

.retailparent {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.dpshow {
  width: 100%;
}

.dpshide {
  width: 0%;
}

.dtradeparentC {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.prten {
  padding: 10px 60px !important;
}

.coloorang {
  color: tomato !important;
}

.coloblack {
  color: black !important;
}

.dcpshow {
  width: 100%;
}

.dcphide {
  width: 0%;
}

.dtradechileC {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.btpshow {
  width: 100%;
}

.btphide {
  width: 0%;
}

.btradeparent {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.EPshow {
  width: 100%;
}

.EPhide {
  width: 0%;
}

.exportfinance {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

/* publicatonparent */
.PBPshow {
  width: 100%;
}

.PBhide {
  width: 0%;
}

.publicatonparent {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.PBChildshow {
  width: 100%;
}

.PBChildide {
  width: 0%;
}

.publicationchild {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: 0.3s;
  overflow: hidden;
}

.Forex-parent li a {
  padding: 10px 60px !important;
}

.forex-parent-fs-li {
  padding: 10px 15px;
  color: #2f7ad9;
}

.pr10px {
  padding-right: 10px;
}

.Forex-parent-child {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.Forex-parent-child li a {
  color: #a19898;
  padding: 10px 60px !important;
}

.people-img img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 500px;
  position: relative;
  z-index: 2;
}

.people-img {
  background: url(https://objectstore.e2enetworks.net/mfe-bucket-prod/forex-uploads/myforexeye_front/assets/chassets/Blog-Resources/Peopleiconbig.svg);
  background-repeat: no-repeat;
  background-position: 1% 50%;
  background-size: 4%;
  padding: 0.3rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.email-img img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 500px;
  position: relative;
  z-index: 2;
}

.email-img {
  background: url(https://objectstore.e2enetworks.net/mfe-bucket-prod/forex-uploads/myforexeye_front/assets/chassets/footer/Mail.svg);
  background-repeat: no-repeat;
  background-position: 1% 50%;
  background-size: 5%;
  padding: 0.3rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-horizontal .form-group .txt-size {
  left: 6rem !important;
}

/* login_form_change_css */

.dhi-main {
  width: 100%;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.dhi-main-login {
  width: 95%;
  height: 80vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border: 2px solid #44c2f1;
  justify-content: space-between;
  border-radius: 30px;
  overflow: hidden;
}

.dhi-main-login > div {
  width: 100%;
  height: 100%;
}

.dhi-main-login-left {
  width: 100%;
  height: 100%;
  display: flex;
  background: #e5f5fb;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px 0px 0px 25px;
}

.dhi-main-login-left img {
  width: 100%;
  max-width: 80%;
}

.dhi-main-login-right {
  width: 100%;
  height: 100%;

  display: flex;
  padding: 0px 50px;
  flex-direction: column;
  justify-content: center;
}

.info_graphic {
  max-width: 16%;
  width: 100%;
  height: auto;
  padding: 20px 0px 0px 0px;
  margin: 0 auto;
}

.dhi-main-login-right h4 {
  color: #1b5da1;
  font-weight: 400;
  padding: 15px 0px;
  text-align: center;
  font-size: 25px;
}

.login-input {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.login-popup .login-row {
  border: none !important;
  border-left: none !important;
}

.login-input input {
  background: var(--bg);
  width: 100%;
  border-radius: 0px 8px 8px 0px;
  border: none;
  border-left: 3px solid var(--border);
  height: 40px;
  font-size: 15px;
  padding: 0px 10px;
  color: #3d3d3d;
  font-family: "Poppins";
  font-weight: normal;
}

.login-input input:focus {
  outline: none;
}

.text-leable {
  position: absolute;
  left: 0;
  padding-left: 12px;
  font-size: 15px;
  margin-top: 9px;
  transition: 0.3s All;
  pointer-events: none;
  color: var(--border);
}

.login-input input:focus ~ .text-leable,
.text:valid ~ .text-leable {
  margin-top: -14px;
  font-size: 12px;
  color: #117ff56b;
}

.checkbox-input input {
  border-color: var(--btn);
}

.checkbox-input label {
  font-size: 12px;
  margin-bottom: 0px !important;
  margin-left: 0px;
  color: var(--btn);
}

/* custome-checkbox-css */

.container-lable {
  display: block;
  position: relative;
  padding-left: 23px;
  padding-bottom: 10px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container-lable input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 13px;
  width: 13px;
  border-radius: 4px;
  background-color: var(--bg);
  border: 1px solid var(--btn);
}

.container-lable:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-lable input:checked ~ .checkmark {
  background-color: #2196f3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-lable input:checked ~ .checkmark:after {
  display: block;
}

.container-lable .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.border-radius {
  border-radius: 4px;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.login {
  background: #44c2f1 !important;
  margin-right: 10px;
}

.login:hover {
  background: white !important;
  color: #44c2f1 !important;
  border-color: #44c2f1 !important;
}

.login-btn-dhi {
  background-color: var(--btn);
  color: var(--white);
  padding: 7px 0px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Poppins";
  letter-spacing: 1px;
  border: 2px solid;
  transition: 0.3s All;
  max-width: 85%;
  width: 100%;
}

.login-btn-dhi:hover {
  background-color: var(--white);
  color: var(--btn);
  text-decoration: none;
}

.forgate-btn-dhi {
  font-size: 13px;
  text-decoration: underline;
}

.crat-acc::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #057afc;
  left: 0;
  bottom: 1px;
}

#togglePassword {
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
  color: #2da1f7;
}

#togglePassword:hover {
  cursor: pointer;
}

/* select_country_code_box_start */
.select_box {
  width: 93px;
  position: relative;
}

.select_header {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgb(229 245 251);
  padding: 8px 7px;
  box-sizing: border-box;
  position: absolute;
  margin-left: 0px;
  border-radius: 12px;
  /* border-right: 3px solid #097ff5; */
}

.select_header:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 100%;
  background-color: white;
  right: -2px;
  border-right: 3px solid #097ff5;
}

.header_text {
  color: #3e5da1;
}

.select_header img {
  width: 100%;
  max-width: 30px;
  margin-right: 5px;
  border-radius: 2px;
}

.select_body {
  display: none;
  position: absolute;
  left: 0;
  background: white;
  z-index: 1;
  margin-top: 40px;
}

.select_body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 240px;
  box-sizing: border-box;
}

.select_body ul li {
  width: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin-top: 4px;
  box-sizing: border-box;
  border: 1px solid #80808057;
}

.select_body ul li img {
  width: 100%;
  max-width: 30px;
  margin-right: 5px;
  border-radius: 2px;
}

.select_body input {
  width: 100%;
  border: 1px solid #80808057;
  position: sticky;
  top: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 7px;
  font-size: 15px;
  margin-top: 5px;
  height: 35px;
}

.select_body input:focus {
  outline: none;
  border: 1px solid #80808057;
}

.select_body ul li:hover {
  cursor: pointer;
}

.select_text {
  color: #737473;
}

.display_none {
  display: block;
  height: 230px;
  overflow: auto;
}

.number_leable {
  padding-left: 100px !important;
  border-radius: 8px !important;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #097ff5;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* sign_up_css */
.dhi-signup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-popup .modal-dialog {
  max-width: 1024px !important;
}

.dhi-main-signup {
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #44c2f1;
  border-radius: 30px;
  overflow: hidden;
}

.dhi-main-signup > div {
  width: 100%;
  height: 100%;
}

.dhi-main-signup-left {
  width: 100%;
  height: 100%;
  display: flex;
  background: #e5f5fb;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 25px 0px 0px 25px;
  position: relative;
}

.dhi-main-signup-left img {
  width: 100%;
  max-width: 80%;
}

.dhi-main-signup-right {
  width: 100%;
  height: 100%;

  display: flex;
  padding: 0px 50px;
  flex-direction: column;
  justify-content: center;
}

.info_graphic {
  max-width: 16%;
  width: 100%;
  height: auto;
  padding: 20px 0px 0px 0px;
  margin: 0 auto;
}

.dhi-main-signup-right h4 {
  color: #1b5da1;
  font-weight: 400;
  padding: 15px 0px;
  font-size: 25px;
  text-align: center;
}

.corporate_box {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 20px;
  /* border: 2px solid #66666c; */
  border-radius: 30px;
  position: relative;
  margin-bottom: 20px;
  padding: 2px;
}

.first-carpo-input {
  float: right;
}

.first-carpo-label {
  justify-content: end !important;
}

.corporate_box_child {
  position: relative;
  margin: 0;
}

.corporate_box_child input[type="radio"] {
  -webkit-appearance: none;
  width: 80%;
  height: 100%;
  cursor: pointer;
  border-radius: 30px;
  position: relative;
  padding: 17px;
  margin: 0;
  transition: 0.3s all;
  border: 2px solid #b3eaff;
}

.corporate_box_child input[type="radio"]:checked {
  background-color: #b3eaff;
}

.corporate_box_child input[type="radio"]:checked + label {
  color: #097ff5;
}

.corporate_box_child label {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  width: 80%;
  text-align: center;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66666c;
  height: 100%;
}

.login-input {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.login-input input {
  background: var(--bg);
  width: 100%;
  border-radius: 0px 8px 8px 0px;
  border: none;
  border-left: 3px solid var(--border);
  height: 40px;
  font-size: 15px;
  padding: 0px 10px;
  color: #3d3d3d;
  font-family: "Poppins";
  font-weight: normal;
}

.login-input input:focus {
  outline: none;
}

.text-leable {
  position: absolute;
  left: 0;
  padding-left: 12px;
  font-size: 15px;
  margin-top: 9px;
  transition: 0.3s All;
  pointer-events: none;
  color: var(--border);
}

.login-input input:focus ~ .text-leable,
.text:valid ~ .text-leable {
  margin-top: -13px;
  font-size: 12px;
  color: #117ff56b;
}

/* custome-checkbox-css */
.checkbox_text span {
  font-size: 15px;
  color: #097ff5;
  margin-bottom: 10px;
  display: block;
}

.checkbox_parent {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  grid-template-rows: 1fr;
}

.checkbox_div {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0;
}

.checkbox_div input[type="checkbox"] {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  border: 2px solid #9ee3fd;
  margin: 0;
  background-color: white;
  border-radius: 30px;
  transition: 0.3s all;
  padding: 18px;
  transition: 0.3s All;
}

.checkbox_div input[type="checkbox"]:checked {
  background-color: #9ee3fd;
}

.checkbox_div label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  margin: 0;
  pointer-events: none;
  font-size: 15px;
  color: #107ff6;
}

.checkbox_terms {
  margin-top: 20px;
}

.checkbox_terms input {
  margin: 4px;
  width: 40px;
}

.checkbox_terms label {
  font-size: 14px;
  color: grey;
  margin-left: 15px;
}

.border-radius {
  border-radius: 4px;
}

.login-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.login {
  background: #44c2f1 !important;
  margin-right: 10px;
}

.login:hover {
  background: white !important;
  color: #44c2f1 !important;
  border-color: #44c2f1 !important;
}

.login-btn-dhi {
  background-color: var(--btn);
  color: var(--white);
  padding: 7px 0px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Poppins";
  letter-spacing: 1px;
  border: 2px solid;
  transition: 0.3s All;
  max-width: 85%;
  width: 100%;
}

.login-btn-dhi:hover {
  background-color: var(--white);
  color: var(--btn);
  text-decoration: none;
}

.forgate-btn-dhi {
  font-size: 13px;
  text-decoration: underline;
}

.crat-acc::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #057afc;
  left: 0;
  bottom: 1px;
}

#togglePassword {
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
  color: #2da1f7;
}

#togglePassword:hover {
  cursor: pointer;
}

#togglePassword1 {
  position: absolute;
  right: 10px;
  transform: translateY(-50%);
  top: 50%;
  color: #2da1f7;
}

#togglePassword1:hover {
  cursor: pointer;
}

/* select_country_code_box_start */
.select_box {
  width: 93px;
  position: relative;
}

.select_header {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: rgb(229 245 251);
  padding: 8px 7px;
  box-sizing: border-box;
  position: absolute;
  margin-left: 0px;
  /* border-right: 3px solid #097ff5; */
}

.header_text {
  color: #3e5da1;
}

.select_header img {
  width: 100%;
  max-width: 30px;
  margin-right: 5px;
  border-radius: 2px;
}

.select_body {
  display: none;
  position: absolute;
  left: 0;
  background: white;
  z-index: 1;
  margin-top: 40px;
}

.select_body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 240px;
  box-sizing: border-box;
}

.select_body ul li {
  width: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin-top: 4px;
  box-sizing: border-box;
  border: 1px solid #80808057;
}

.select_body ul li img {
  width: 100%;
  max-width: 30px;
  margin-right: 5px;
  border-radius: 2px;
}

.select_body input {
  width: 100%;
  border: 1px solid #80808057;
  position: sticky;
  top: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 7px;
  font-size: 15px;
  margin-top: 5px;
  height: 35px;
}

.select_body input:focus {
  outline: none;
  border: 1px solid #80808057;
}

.select_body ul li:hover {
  cursor: pointer;
}

.select_text {
  color: #737473;
}

.display_none {
  display: block;
  height: 230px;
  overflow: auto;
}

.number_leable {
  padding-left: 100px !important;
  border-left: 0px solid white !important;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #097ff5;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* update_css_(22/11/2022) */

/* .heading-3 {hidden_box so not define font size color etc} */

.login_heading_4,
.singup_heading_4,
.reset_password_heading_4 {
  color: #1b5da1;
  font-weight: 400;
  padding: 15px 0px;
  font-size: 25px;
  text-align: center;
}

.login-popup button[type="submit"] {
  font-size: 1rem;
  padding: 6px 10px !important;
  font-family: "Poppins" !important;
}

.desk_link_item_heading_5 {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 400;
  display: block;
  padding: 0 !important;
  color: #1c5ba0 !important;
  font-family: Poppins !important;
}

.desk_link_item_sub_heading_5 {
  font-size: 12px;
  font-weight: 500;
  padding-left: 0 !important;
  color: #1c5ba0 !important;
  font-family: Poppins !important;
}

.desk_link_item_heading_6 {
  font-size: 12px;
  color: #424141 !important;
  font-weight: 400;
  margin-top: 5px;
  line-height: 16px;
  padding-left: 0 !important;
  font-family: Poppins !important;
}

/* update_header_box_css(07-08-2023)by Dhiraj */

.width_1000px {
  left: 50%;
  width: 100%;
  max-width: 1030px;
  transform: translate(-50%);
}

.width_666px {
  width: 666px !important;
}

header {
  margin: 0;
  width: 100%;
  padding: 0px 50px;
  background: #200061;
  box-sizing: border-box;
}

header > ul {
  padding: 0px;
  display: flex;
  margin: 0px;
  list-style: none;
  align-items: center;
  justify-content: end;
}

header > ul li {
  margin: 0px 15px;
}

header > ul li a {
  color: rgba(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 25px 0px;
  display: inline-block;
}

.update_dropdown_box {
  z-index: 1;
  padding: 10px 0px 0px 0px;
  position: absolute;
  visibility: hidden;
  margin-top: 10px;
  border-radius: 6px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 0px 45px rgb(0 0 0 / 12%);
}

header > ul li:hover div {
  z-index: 9;
  visibility: visible !important;
}

.update_dropdown_box_child {
  width: 100%;
  display: flex;
  padding-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
}

.update_dropdown_box_child > div {
  width: 100%;
  min-height: 440px;
  max-height: 440px;
  max-width: 333.3333333333333px;
}

.mobile_app_icon {
  max-height: 30px !important;
}

/* .update_dropdown_box_child>div:first-child{
  max-width: 100%;
} */

.update_dropdown_box_child ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.update_dropdown_box_child ul li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.update_dropdown_box_child_first_li {
  width: 100%;
  padding: 10px;
  min-height: 43px;
  margin-top: 0px !important;
}

.update_dropdown_box_child li .nav_list_img {
  width: 10%;
  height: 100%;
}

.nav_item_text {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 0;
  color: #1c5ba0;
}

.update_dropdown_box_child li a {
  width: 100%;
  display: flex;
  padding: 10px 10px;
  align-items: flex-start;
  position: relative;
  /* transition: 0.3s all; */
  margin: 0;
  justify-content: flex-start;
}

.update_dropdown_box_child li a:hover {
  border-radius: 4px;
  /* transition: 0.3s all; */
  background: #dbedfd;
}

.update_dropdown_box_child li a .nav_item_img {
  max-width: 11%;
  width: 100%;
}

.update_dropdown_box_child li a .nav_text {
  margin-left: 10px;
}

.update_dropdown_box_child li a .nav_text span:first-child {
  font-size: 14px;
  font-weight: 400;
  padding-left: 0;
  color: #1c5ba0;
  display: block;
}

.update_dropdown_box_child li a .nav_text span:last-child {
  font-size: 12px;
  color: #424141eb;
  font-weight: 400;
  line-height: 16px;
  padding-left: 0;
  display: block;
  margin-top: 5px;
}

.absolute_to_right {
  right: 100px;
}

.contact_details .flex_box {
  display: flex;
  align-items: center;
}

.contact_details .flex_box img {
  width: 20px;
}

.contact_details .flex_box span {
  margin-left: 5px;
  font-size: 14px;
  font-weight: 500;
  display: block;
  padding: 0;
  color: white;
}

.update_dropdown_box_child_bottom {
  display: flex;
  padding-left: 15px;
}

.menu_h4 {
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 0;
  color: white;
  margin: 0;
  padding-bottom: 10px;
  font-family: "Poppins";
}

.h4_span {
  font-size: 12px;
  color: white;
  font-weight: 400;
  line-height: 16px;
  padding-left: 0;
  display: block;
  margin-top: -6px;
}

.contact_details {
  width: 66.3333%;
}

.contact_details span:first-child {
  font-size: 12px;
  color: white;
  font-weight: 400;
  line-height: 16px;
  padding-left: 0;
  display: block;
  margin-top: -6px;
}

.contact_details:last-child {
  width: calc(100% - 33.3333%);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 35px;
}

.contact_email {
  padding-left: 15px;
}

.contact_email a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.width_666px .contact_details:first-child {
  width: 40%;
}

.width_666px .contact_details:last-child {
  width: calc(100% - 40%);
}

.weekly-forex-reports_icon {
  height: 28px !important;
}

.forex_news_icon {
  height: 30px !important;
}

.Immigration_icon {
  height: 35px;
}

.mnc_icon {
  height: 28px;
}

.forex_trader_solution_icon {
  height: 30px;
}

.nri_icon {
  height: 37px;
}

.treasury-optimization_icon {
  height: 30px;
}

.book_a_demo a {
  margin-right: 14px !important;
}

.book_a_demo a {
  color: white;
  font-size: 15px;
  font-weight: 400;
  margin-top: 15px;
  padding: 5px 15px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  background-color: #26a9e0;
}

.book_a_demo:hover a {
  cursor: pointer;
  color: #26a9e0;
  background-color: white;
}

.menu_img_box {
  display: flex;
  padding-left: 15px;
  flex-direction: column;
}

.menu_img_box a {
  color: #303c79 !important;
  position: relative;
  max-width: fit-content;
  margin-top: 10px !important;
  margin-left: 0px !important;
  display: flex !important;
  align-items: center;
}

.menu_img_box a:hover {
  color: #303c79 !important;
  position: relative;
}

.menu_box_a_after::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 1.5px;
  background-color: #1c5ba0c2;
}

.menu_img_box img {
  width: fit-content;
  border-radius: 6px;
}

.menu_img_box p {
  margin-bottom: 25px;
  margin-top: 10px;
}

.menu_box_a_after img {
  width: 10px;
  margin-left: 10px;
}

.menu_box_a_after:hover img {
  margin-left: 15px;
  transition: 0.3s all;
}

/* .comming_soon {
  position: absolute;
  top: 0;
  right: 0;
  background: #dbedfd;
  height: 100%;
  width: calc(100% - 16.5%);
  padding: 15px 0px;
  font-size: 14px;
  font-weight: 400;
  padding-left: 0;
  color: #1c5ba0;
  display: block;
  font-family: "Poppins";
  visibility: hidden;
  border-radius: 4px;
} */

/* .update_dropdown_box_child li a:hover .comming_soon {
  visibility: visible;
} */

.mega_img_box {
  padding: 10px;
}

.mega_img_box img {
  width: 100%;
  border-radius: 6px;
}

/*login*/

.login_box {
  width: 100%;
  min-height: 85vh;
  max-width: 500px;
  border-radius: 4px;
  position: relative;
  box-sizing: border-box;
  background-color: white;
}

.login_head {
  width: 100%;
  padding: 12px 15px;
  text-align: right;
  box-sizing: border-box;
  border-bottom: 2px solid #0000000a;
}

.login_head span {
  font-size: 21px;
  font-weight: 400;
}

.login_head span:hover {
  cursor: pointer;
}

.login_logo_center {
  width: 100%;
  text-align: center;
}

.login_logo_center img {
  width: 100%;
  padding: 15px 0px;
  max-width: 250px;
}

.login_infographic {
  width: 100%;
  display: flex;
  padding: 10px 50px;
  align-items: center;
  box-sizing: border-box;
  justify-content: flex-start;
}

.login_infographic img {
  width: 100%;
  max-width: 100px;
  padding-right: 25px;
}

.infogText {
  font-size: 18px;
}

.login_country_box {
  width: 100%;
  margin-top: 40px;
  padding: 0px 40px;
  box-sizing: border-box;
}

.login_country_flex {
  width: 100%;
  display: flex;
  border: 2px solid #d3d3d380;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
}

.login_flex_flag {
  max-width: 30px;
  border-radius: 0px;
}

.login_flex_flag:hover {
  cursor: pointer;
}

.login_flex_Darrow {
  width: 45px;
  padding: 5px 15px 5px 20px;
}

.login_flex_Darrow:hover {
  cursor: pointer;
}

.login_flex_code {
  font-weight: 500;
  margin-right: 15px;
  font-size: 15px;
}

.login_flex_input {
  width: 100%;
  border: none;
  font-size: 15px;
}

.login_flex_input:focus {
  outline: none;
  box-shadow: none;
}

.login_country_dropdown {
  max-width: 100px;
  max-height: 180px;
  overflow-y: scroll;
  padding: 0px 8px 8px 8px;
  background: lightcyan;
  position: absolute;
}

.login_country_dropdown li {
  list-style: none;
  width: 100%;
  margin-top: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 2px;
  display: flex;
  padding: 3px 7px;
  align-items: center;
  box-sizing: border-box;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
}

.login_country_dropdown li:hover {
  cursor: pointer;
}

.login_country_dropdown li:first-child {
  position: sticky;
  margin-top: 8px;
  top: 0px;
  padding: 5px;
}

.login_country_dropdown li input {
  width: 100%;
  border: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.login_country_dropdown li input:focus {
  border: none;
  outline: none;
}

.login_country_dropdown li img {
  width: 25px;
  pointer-events: none;
}

.login_country_dropdown li span {
  font-size: 15px;
  pointer-events: none;
}

.login_country_dropdown::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.login_country_dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.login_country_dropdown::-webkit-scrollbar-thumb {
  background: #75d8ff;
}

.loginButton {
  width: 100%;
  padding: 0px 40px;
  box-sizing: border-box;
}

.loginButton button[type="submit"] {
  background: blue;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  color: white;
  border: navajowhite;
  padding: 12px 5px;
  margin-top: 40px;
}

.loginButton button[type="submit"]:hover {
  cursor: pointer;
  background-color: tomato;
}

.another_method {
  width: 100%;
  text-align: center;
  padding: 0px 40px;
  margin-top: 40px;
  box-sizing: border-box;
}

.another_method a {
  color: #0000d2;
  font-size: 16px;
  text-decoration: none;
}

.another_method a:hover {
  color: tomato;
}

.loginbox_last_child {
  width: 100%;
  color: grey;
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
  padding: 0px 40px;
  margin-bottom: 40px;
  box-sizing: border-box;
}

.loginbox_last_child a {
  color: #0b78ff;
  text-decoration: none;
}

.top_update_popup {
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: #ff612f;
  justify-content: flex-start;
  padding: 15px 10px;
  z-index: 99999;
  transition: 0.3s all;
}

.top_update_popup .fab_icon_box {
  width: 20%;
  text-align: center;
}

.top_update_popup .star_box {
  width: 50%;
}

.top_update_popup .download_box {
  width: 30%;
  text-align: center;
}

.download_box a {
  border-radius: 6px;
  color: white;
  background-color: #41bdea;
  padding: 5px 10px;
  font-family: "Poppins";
}

.top_update_popup h4 {
  font-size: 16px;
  font-family: "Poppins" !important;
  color: white;
  line-height: normal;
}

.top_update_popup p {
  font-size: 13px;
  font-family: "Poppins" !important;
  color: #363636;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 5px;
}

.top_update_popup .fab_icon_box img {
  width: 50px;
}

.starts_box {
  width: 100%;
  display: flex;
  align-items: center;
}

.starts_box i {
  color: yellow;
  font-size: 14px;
  margin: 5px;
}

.download_box i {
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 16px;
  color: white;
}

.top_145 {
  margin-top: 145px;
}

.complete_registration .modal-dialog {
  max-width: 355px;
}

.complete_registration .img_box {
  width: 100%;
  text-align: center;
}

.complete_registration .img_box img {
  margin: 0 auto;
  width: 70px;
  padding: 10px 0px 13px 0px;
}

.complete_registration .content_box h4 {
  color: lime;
  font-size: 24px;
  font-family: "Poppins";
  text-align: center;
  font-weight: 500;
}

.complete_registration .content_box p {
  font-size: 16px;
  font-family: "Poppins";
  text-align: center;
  margin-top: 10px;
}

.complete_registration .content_box button {
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  border: 1px solid transparent;
  background-color: #26a9e0;
  cursor: pointer;
}

.complete_registration .close {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 1;
}

@media (min-width: 767px) and (max-width: 1000px) {
  .dhi-main-signup-right {
    padding: 0px 15px !important;
  }
}

@media (min-width: 768px) {
  .mobile-creat {
    display: none;
  }
}

@media (max-width: 768px) {
  .dhi-main-signup-left {
    display: none;
  }

  .dhi-main-signup {
    grid-template-columns: 1fr;
  }

  .dhi-main-signup-right {
    padding: 0px 10px;
  }

  .dhi-main:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(45px);
    background-image: url(../../../../../assets/chassets/login_img/MFE-login-infographics.svg);
    background-repeat: no-repeat;
    background-size: 76% 57%;
    background-position: 72% top;
  }

  .info_graphic {
    max-width: 32%;
    margin: 0 auto;
    padding: 30px 0px 0px 0px;
  }

  .dhi-main-signup {
    width: 90%;
    border-radius: 14px;
  }

  .login-btn-dhi {
    border-radius: 7px;
  }

  .dhi-main-signup-right h4 {
    color: #1b5da1;
    font-weight: 400;
  }

  .mobile-creat {
    display: block;
    text-align: center;
    margin: 20px 0px;
    font-size: 12px;
    font-family: "Poppins";
  }

  .forgate-btn-dhi {
    font-family: "Poppins";
    font-size: 12px;
  }

  .crat-acc {
    font-size: 13px;
  }

  .crat-acc::after {
    width: 125px;
    left: 50%;
    bottom: 1px;
    transform: translateX(-50%);
    height: 1px;
  }

  .dhi-main-signup {
    height: auto;
  }

  .dhi-main-signup {
    border: 1px solid #44c2f18c;
  }

  .text-leable {
    font-size: 13px;
    margin-top: 12px;
  }

  .header-nav a img {
    width: 45% !important;
  }
}

/* select_country_code_box_end */
@media (max-width: 1000px) {
  .header-nav {
    padding: 10px 20px;
  }
}

@media (min-width: 767px) and (max-width: 1000px) {
  .dhi-main-login-right {
    padding: 0px 15px !important;
  }
}

@media (min-width: 768px) {
  .mobile-creat {
    display: none;
  }
}

@media (max-width: 768px) {
  .dhi-main-login-left {
    display: none;
  }

  .dhi-main-login-right {
    padding: 0px 10px;
  }

  .dhi-main:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(45px);
    /* background-image: url(../img/MFE-login-infographics.svg); */
    background-repeat: no-repeat;
    background-size: 76% 57%;
    background-position: 72% top;
  }

  .login-btn-dhi {
    border-radius: 7px;
  }

  .dhi-main-login-right h4 {
    color: #1b5da1;
    font-weight: 400;
  }

  .mobile-creat {
    display: block;
    text-align: center;
    margin: 20px 0px;
    font-size: 12px;
    font-family: "Poppins";
  }

  .info_graphic {
    max-width: 32%;
    margin: 0 auto;
    padding: 30px 0px 0px 0px;
  }

  .dhi-main-login {
    width: 90%;
    border-radius: 14px;
  }

  .login-btn-dhi {
    border-radius: 7px;
  }

  .dhi-main-login-right h4 {
    color: #1b5da1;
    font-weight: 400;
  }

  .mobile-creat {
    display: block;
    text-align: center;
    margin: 20px 0px;
    font-size: 12px;
    font-family: "Poppins";
  }

  .forgate-btn-dhi {
    font-family: "Poppins";
    font-size: 12px;
  }

  .crat-acc {
    font-size: 13px;
  }

  .crat-acc::after {
    width: 125px;
    left: 50%;
    bottom: 1px;
    transform: translateX(-50%);
    height: 1px;
  }

  .dhi-main-login {
    height: auto;
  }

  .forgate-btn-dhi {
    font-size: 13px;
  }

  .checkbox-input label {
    font-size: 12px;
  }

  .checkmark {
    width: 13px;
    height: 13px;
  }

  .container-lable .checkmark:after {
    left: 3px;
  }

  .dhi-main-login {
    border: 1px solid #44c2f18c;
  }

  .text-leable {
    font-size: 13px;
    margin-top: 12px;
  }
}

@media (max-width: 1150px) {
  .nav-ul li a {
    margin: 0px 3px;
    font-size: 13px;
  }

  .df-inli i {
    padding-left: 5px;
    font-size: 17px;
  }
}

@media (min-width: 1080px) {
  .blue-sub-heading {
    font-size: 23px;
  }
}

@media (max-width: 1080px) {
  .heading {
    font-size: 30px;
  }

  .subheading {
    font-size: 16px;
  }

  .blue-heading {
    font-size: 30px;
    padding-bottom: 17px;
  }

  .blue-sub-heading {
    font-size: 20px;
  }

  .header-content {
    height: 69vh;
  }

  .header-content h5 {
    padding: 30px 30px 30px 30px;
  }

  .intelligrnt-system {
    background-size: 58% 89%;
  }

  .Testimonials {
    padding: 60px 0px 80px 0px;
  }

  .Social-Media-Feed {
    padding: 20px 0px 40px 0px;
    background-position: 73% 21%;
  }

  .sameheifght {
    padding: 0px 0px;
  }

  .nav-ul-last-li a {
    width: 130px;
  }

  /* .latest-news-ul li a{width:310px} */
}

@media (min-width: 1011px) {
  .mobile-iconbar {
    display: none;
  }

  .mobile-main {
    display: none;
    width: 0%;
  }
}

@media (max-width: 1010px) {
  .header-nav {
    justify-content: space-between;
    align-items: center;
  }

  .mobile-iconbar {
    font-size: 40px;
    color: white;
    padding-right: 33px;
  }

  .mobile-iconbar img {
    max-width: 8% !important;
  }

  .web_logo_a img {
    max-width: 25% !important;
  }

  .header-top-img {
    height: 10px;
  }

  .sameheifght {
    padding: 30px 10px;
  }

  .nav-ul-last-li a {
    width: 125px;
  }

  .nav-ul-last-li a span {
    margin-right: 10px;
  }

  .nav-ul {
    position: absolute;
    right: 0;
    top: 0px;
    display: inline-block;
    background: #000000;
    width: 300px;
    z-index: 99999;
    padding: 15px 15px;
    display: none;
    border-left: 4px solid #ffffff61;
  }

  .nav-ul {
    margin-top: 90px;
  }

  .nav-ul li a {
    display: block;
    padding: 10px;
  }

  .nav-ul-last-li {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
  }

  .nav-ul-last-li a {
    padding: 2px !important;
    width: 130px;
  }

  .mobile-iconbar {
    display: contents;
  }

  .mobile-iconbar img {
    max-width: 12%;
    width: 100%;
  }

  .pbsm-20 {
    padding-bottom: 50px;
  }

  .headingh2 {
    font-size: 30px;
  }

  .header-nav {
    height: 75px;
  }
}

@media (max-width: 930px) {
  .blue-heading {
    padding-bottom: 25px;
    font-size: 30px;
  }

  .header-content h5 {
    padding: 30px 0px 30px 0px !important;
  }

  .header-content a {
    max-width: 45%;
  }

  .update_corporate_li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .update_corporate_a {
    padding: 10px 10px !important;
  }
}

@media (min-width: 768px) {
  .top_update_popup {
    display: none;
  }

  .header-nav {
    margin-top: 0px !important;
  }
}

/* @media(min-width: 931px){}        */

@media (max-width: 767px) {
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
  }

  .header-nav {
    height: 75px;
  }

  .flexten div {
    display: flex !important;
  }

  .flexten img {
    max-width: 50%;
    padding: 0px;
    border-radius: 7px;
  }

  .creat-acco-home img {
    max-width: 38%;
  }

  .header-content {
    height: 87vh;
  }

  .pb30 {
    padding-bottom: 10px;
  }

  .icons-div-right h5 {
    font-size: 13px;
  }

  .icons-div-right h6 {
    font-size: 10px;
  }

  .intelligrnt-system p {
    font-size: 13px;
    line-height: 22px;
  }

  .app-features .heading:before,
  .app-features .heading:after {
    width: 30%;
  }

  .icons-div {
    padding: 25px 0px;
    border-radius: 20px;
  }

  .br-1px {
    border: none;
  }

  .pt-50px {
    padding-top: 10px;
  }

  .header-top-img {
    border-top: 2px solid #299cd2;
  }

  .header-content a img {
    max-width: 14%;
  }

  .mobile-iconbar img {
    max-width: 12% !important;
    width: 100%;
  }

  .header-content a {
    max-width: 35%;
  }

  .header-nav {
    padding: 10px 10px;
    margin-top: 0px;
  }

  .sub-heading {
    padding: 0px 0px 15px 0px;
  }

  .header-ion {
    width: 40px;
  }

  .justify-content-around {
    justify-content: center !important;
  }

  .header-nav a:nth-child(1) {
    display: flex;
  }

  .web_logo_a img {
    max-width: 50% !important;
  }
}

@media (max-width: 550px) {
  .web_logo_a img {
    max-width: 50% !important;
  }

  .viemore img {
    max-width: 22% !important;
  }

  .headingten {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding-top: 20px;
  }

  .heading {
    font-size: 21px;
    line-height: 15px;
  }

  .blue-heading {
    font-size: 21px;
    padding-bottom: 15px;
  }

  .blue-sub-heading {
    font-style: 16px;
    font-weight: 200;
  }

  .creat-acco-home h4 {
    font-size: 18px;
    padding: 6px 0px;
  }

  .header-nav {
    padding: 10px 5px;
  }

  .header-nav a img {
    max-width: 55%;
  }

  .header-top-img img {
    max-width: 18%;
  }

  .mobile-iconbar {
    padding-right: 15px;
  }

  .mobile-iconbar ion-icon {
    display: block;
  }

  .header-content h5 {
    font-size: 14px;
    line-height: 26px;
  }

  .header-content a span {
    font-size: 12px;
    padding-left: 9px;
  }

  .mobile-iconbar img {
    max-width: 12% !important;
    width: 100%;
  }

  .flexten img {
    max-width: 60%;
  }

  .nav-ul {
    margin-top: 65px;
  }

  .sub-heading {
    font-size: 15px;
    padding: 10px 0px 15px 0px;
  }
}

@media (max-width: 450px) {
  .header-content a {
    max-width: 42%;
  }
}

@media (max-width: 400px) {
  .headingh2,
  .headingh2-social {
    font-size: 18px;
  }

  .heading {
    font-size: 18px;
  }

  .creat-acco-home h4 {
    font-style: 13px;
  }

  .mobile-iconbar img {
    max-width: 12% !important;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .header-content a {
    max-width: 53%;
  }

  .mobile-iconbar img {
    max-width: 12% !important;
    width: 100%;
  }
}

.close-nav {
  cursor: pointer;
}
/* common */
.mt-25 {
  margin-top: 25px !important;
}

#err {
  font-size: 12px;
  color: #ef2424 !important;
  margin-top: 10px !important;
  font-family: "Poppins";
}

a {
  text-decoration: none !important;
}

.customSwalBtn {
  color: #42424291;
}

.makelink:hover {
  cursor: grab;
}

.regulated {
  width: 100%;
  padding: 35px 80px;
  position: relative;
  box-sizing: border-box;
  background-color: #42424291;
}

.regulated_head {
  font-size: 32px;
  font-family: "Poppins";
  padding: 25px 0px;
  margin-top: 25px;
  text-align: center;
}

.regulated_grid {
  width: 100%;
  display: grid;
  align-items: end;
  grid-gap: 10px 40px;
  grid-template-columns: 1fr 1fr 1fr;
}

.regulated_grid_box {
  text-align: center;
}

.regulated_grid_box img {
  max-width: 70%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

.regulated_grid p {
  font-size: 12px;
  color: white;
  font-family: "Poppins";
  margin-bottom: 5px;
}

.regulated_grid h4 {
  font-size: 17px;
  font-weight: 400;
  font-family: "Poppins";
  color: white;
  margin-bottom: 5px;
}

.regulated_grid_box h5 {
  color: white;
  font-family: "Poppins";
  font-size: 13px;
  font-weight: 400;
}

.good_choice {
  width: 100%;
  padding: 0px 80px;
  position: relative;
  box-sizing: border-box;
}

.good_choice_box {
  width: 100%;
  display: flex;
  padding: 0px 100px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
  background-color: #00a6ff;
  justify-content: space-between;
}

.good_choice_box .content_box {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.good_choice {
  padding-top: 200px;
}

.good_choice_box .img_box {
  width: 40%;
  height: 300px;
  max-height: 300px;
  position: relative;
}

.good_choice_box .img_box img {
  bottom: 0;
  right: 0;
  display: block;
  max-height: 450px;
  position: absolute;
}

.good_choice h3 {
  color: white;
  font-family: "Poppins";
}

.good_choice p {
  color: white;
  font-family: "Poppins";
  margin-top: 10px;
}

.demo_book_box > div {
  max-width: 45%;
}

.demo_book_box {
  display: flex;
  align-items: center;
}

.demo_book_box input {
  color: darkblue;
  font-size: 12px;
  font-family: "Poppins";
  border-radius: 6px 0px 0px 6px;
}

.demo_book_box button {
  font-size: 12px;
  border-radius: 0px 6px 6px 0px;
  background: #014da0;
  color: white;
  font-family: "Poppins";
}

.demo_book_box button:hover {
  border-color: darkblue;
}

.demo_book_box > a {
  color: white;
  background: #014da0;
  box-sizing: border-box;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: "Poppins";
  font-size: 12px;
  margin-left: 20px;
}

.footer {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.footer_nav {
  width: 100%;
  margin: 40px 0px;
  padding: 0px 80px;
  position: relative;
  box-sizing: border-box;
}

.footer_grid {
  width: 100%;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.footer_grid_box h4 {
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Poppins";
}

.footer_grid_box ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.footer_grid_box ul li {
  margin-top: 2px;
  font-family: "Poppins";
}

.inner_li {
  font-weight: 500;
  color: black;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: "Poppins";
}

.footer_grid_box ul li a {
  font-size: 13px;
  font-weight: 500;
  color: #0000009c;
  text-decoration: none;
  font-family: "Poppins";
  transition: 0.3s all;
}

.footer_grid_box ul li a:hover {
  color: darkblue;
  padding-left: 10px;
}

.footer_grid_box h5 {
  font-weight: 500;
  color: black;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: "Poppins";
}

.footer_grid_box p {
  font-size: 13px;
  font-weight: 500;
  color: #0000009c;
}

.contact_li a {
  width: 100%;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  color: #0000009c;
  align-items: center;
  transition: 0.3s all;
  text-decoration: none;
  font-family: "Poppins";
}

.contact_li a:hover {
  color: darkblue;
}

.contact_li img {
  width: 25px;
  margin-top: 5px;
  padding-right: 10px;
  margin-bottom: 5px;
}

.download_app {
  width: 100%;
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: space-between;
}

.download_app a {
  width: 49%;
  display: block;
}

.download_app a img {
  width: 100%;
  display: block;
}

.follow_us {
  width: 100%;
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: space-between;
}

.follow_us a {
  width: 42px;
  padding: 10px;
  height: 42px;
  border-radius: 8px;
  background-color: #312626cc;
}

.follow_us a:hover {
  background-color: #00a6ff;
}

.follow_us a img {
  width: 100%;
  display: block;
}

.copyright_nav {
  padding: 15px 80px;
  background-color: #313131;
}

.copyright_nav_box {
  width: 85%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.copyright_nav a {
  display: inline;
  color: white;
  font-size: 12px;
  font-weight: 300;
  transition: 0.3s all;
  font-family: "Poppins";
  text-decoration: underline;
}

.copyright_nav p {
  color: white;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 8px;
  font-family: "Poppins";
}

.comming_soon {
  position: relative;
}

.comming_soon span {
  left: 0;
  top: 0;
  width: 100%;
  background-color: white;
  position: absolute;
  font-size: 13px;
  font-weight: 500;
  color: #0000009c;
  text-decoration: none;
  font-family: "Poppins";
  transition: 0.3s all;
  visibility: hidden;
  margin-top: 2px;
}

.comming_soon:hover span {
  visibility: visible;
}

#mobileapp_tic .img_box img {
  max-width: 45px;
}

#mobileapp_tic .head h3 {
  font-size: 18px;
  font-weight: 500;
}

#mobileapp_tic .head h4 {
  font-size: 12px;
  font-weight: 400;
}

#mobileapp_tic .download_app a img {
  width: 80% !important;
}

#mobileapp_tic .download_app a:first-child {
  text-align: -webkit-right !important;
}

.cursor_pointer {
  transition: 0.3s all;
}

.cursor_pointer:hover {
  cursor: pointer;
  color: darkblue;
  padding-left: 10px;
}

@media (min-width: 576px) {
  #mobileapp_tic .modal-dialog {
    /*
        max-width: 430px !important;*/
    margin: 1.75rem auto;
  }
}

@media (max-width: 1323px) {
  .good_choice_box {
    padding: 0px 35px;
  }
}

@media (max-width: 1300px) {
  .follow_us a {
    width: 40px;
    padding: 10px;
    height: 40px;
  }
}

@media (max-width: 1200px) {
  .regulated_grid {
    grid-gap: 10px 10px;
  }

  .regulated {
    padding: 35px 25px;
  }

  .footer_nav {
    padding: 0px 25px;
  }

  .good_choice {
    padding: 140px 25px 0px 25px;
  }

  .good_choice_box .img_box {
    height: 235px;
    max-height: 235px;
  }

  .good_choice_box .img_box img {
    max-height: 350px;
  }

  .good_choice p {
    margin-top: 35px;
  }

  .follow_us a {
    width: 35px;
    padding: 10px;
    height: 35px;
  }
}

@media (max-width: 1000px) {
  .footer_grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px 15px;
  }

  .regulated_grid_box img {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .good_choice h3 {
    font-size: 20px;
  }

  .good_choice p {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .hide_on_desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .hide_on_mobile {
    display: none;
  }

  .regulated {
    padding: 30px 15px;
  }

  .regulated_grid {
    grid-gap: 35px 10px;
    grid-template-columns: 1fr 1fr;
  }

  .footer_nav {
    padding: 0px 15px;
  }

  .copyright_nav {
    padding: 0px 15px;
  }

  .footer_grid {
    grid-template-columns: 1fr 1fr;
  }

  .copyright_nav {
    padding: 5px 10px;
  }

  .copyright_nav_box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .copyright_nav a {
    font-size: 10px;
    margin: 1px 7px;
  }

  .copyright_nav p {
    font-size: 10px;
  }

  .good_choice {
    padding: 30px 15px 0px 15px;
  }

  .good_choice_box {
    padding: 0px 15px;
    border-radius: 25px;
  }

  .good_choice_box .img_box img {
    height: 250px;
  }

  .good_choice_box .content_box {
    width: 70%;
  }

  .good_choice_box .img_box {
    height: 165px;
    width: 30%;
  }

  .good_choice p {
    margin-top: 15px;
  }

  .demo_book_box > div {
    max-width: 60%;
  }

  .demo_book_box > a {
    margin-left: 10px;
    min-width: 100px;
    padding: 10px 10px;
  }

  .download_app {
    justify-content: flex-start;
  }

  .download_app a {
    width: fit-content;
    padding: 0px 5px;
  }

  .download_app a img {
    width: 150px;
  }
}

@media (max-width: 600px) {
  .footer_grid_box h4 {
    font-size: 14px;
  }

  .footer_grid_box ul li a {
    font-size: 13px;
  }

  .inner_li {
    font-size: 13px;
  }

  .good_choice_box {
    padding: 0px 10px;
  }

  .good_choice_box .content_box {
    width: 100%;
    padding: 25px 0px;
  }

  .img_box {
    display: none;
  }
}

/* 
.dh-footer{
 
    background: #041d28;
    width: 100%;
    height: 100%;
    padding: 30px 30px 5px 30px;;
}

#err{
  color: tomato !important;
}

.dh-footer h6{color: #2ea9e5;font-weight: 400;}
.text-trans{
    text-transform: uppercase;
    font-size: 17px;
}

.dhi-bodr-left{
    position: relative;
    height: 80%;
}

.dhi-bodr-left::after{
    position: absolute;
    content: '';
    width: 2px;
    height: 100%;
    background-image:linear-gradient(181deg,transparent,#055d9b);
    right: 0;
    top: 0;
    margin-right: -16px;
}

.dhi-bodr-left::before{
    position: absolute;
    content: '';
    padding: 3px;
    border-radius: 50px;
    background: #2680ac;
    right: 0;
    bottom: 0;
    margin-right: -18px;
    z-index: 1;
}


 
.bb1px{border-top: 1px solid #2680ac;}
.pl7px{padding-left: 7px;}
.pt5px{padding-top: 5px;}
.mt30px{margin-top: 30px;}
.pading15px{padding:0px 15px}
.text-green{color: #53ae46!important;}

 

.dh-footer ul{
    margin: 0;
    height: 100%;
    list-style: none;
    padding-top: 15px;
}

.dh-footer ul li a{
    color: #ffffff99;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 0px;
}

.dh-footer ul li a:hover{
    text-decoration: none;
}


.leftafter{position: relative;}

.dot-left-after::after{
    position: absolute;
    content: '';
    background: #2680ac;
    left: 0;
    top: 0;
    padding: 3px;
    margin-top: 24px;
    border-radius: 50px;
    margin-left: 0px;
}

.bortop1px::before{
    position: absolute;
    content: '';
    background: #2680ac;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    border-radius: 50px;
    margin-top: 27px;
}


.dot-right-after::after{
    position: absolute;
    content: '';
    background: #2680ac;
    right: 0;
    top: 0;
    padding: 3px;
    margin-top: 24px;
    border-radius: 50px;
    margin-left: -3px;
}

.brr1px{
    border-right: 2px solid;
    border-image: linear-gradient(to top,#2680ac,rgba(0, 0, 0, 0)) 1 100%;
}

.dh-footer-list{
    color: #3696c5;
    font-size: 14px;
    font-weight: 400;
}
 

    .footer-last-li a{
        display: flex!important;
        margin: 5px 0px;}
    

.footer-last-li a span{
    display: flex;
    color: #dbd8d8e8;
    font-size: 13px;
   font-family: 'Poppins';
   font-weight: 400;}

.footer-last-li a img{
    max-width: 20px;
    width: 100%;
    margin-right: 15px;
}

.dhfooter-dif-li{margin-bottom: 10px;}

.dhfooter-dif-li a img{
   max-width: 30px;
    width: 100%;
    margin-right: 10px;
    border-radius: 50px;
    padding: 4px;
}

.dhfooter-last-deif h6{
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
    font-weight: 400;
    padding: 0px 29px 1px 1px;
}

.dhfooter-last-deif li:nth-child(6) a{
    background-image: linear-gradient(45deg,#011D28,#0065AA);
}

.dhfooter-last-deif li:nth-child(6){
    margin-top:20px;
}

.dhfooter-last-deif li:nth-child(7) a{
    background-image: linear-gradient(45deg,#0065AA,#011D28);
}


.dhfooter-last-deif li:nth-child(6) a img{
    background: #064978;
}

.dhfooter-last-deif li:nth-child(7) a img{
    background: #064978;
}

.dhfooter-dif-li:first-child a img{display: none}

.dhfooter-dif-li a{
    display: inline-block!important;
    padding: 4px 5px!important;
    border-radius: 50px;
    
}

.dhfooter-dif-li a span{
        color: white;
    padding: 10px 40px 0px 6px;
    font-size: 14px;
    font-weight: 400;
}

 
.followus-footer {
    align-items: center;
    display: flex;
    justify-content: center;
}

.followus-footer span{color: #8b8b8b}
.followus-footer a img{
    max-width: 30px;
    margin: 0px 8px;
    width: 100%;
}

.followus-footer a{
    display: contents;
}


.dhi-footer-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dhi-footer-icon a{
    display: inline-block;
    padding: 10px;
}


.dhi-footer-icon a img{
   background: white;
   border-radius: 5px;
   width: 150px;
 
}

 
.dhi-authorized span{
    color: #17a2b8;
    border-radius: 8px;
    border: 1px solid #0fd2f175;
    padding: 4px 20px;
    font-weight: 400;
    font-size: 15px;
    display:-webkit-inline-box;
    display:inline-box;
}

.dhi-authorized{
    margin-top: 25px;
    margin-bottom: 10px;
}

 

.dhi-footer-copyright{
    background: #041d28;
    background-image: url(../../../../../assets/chassets/footer/Bottam-Shape.png);
    background-size: cover;
    text-align: center;
    padding: 15px 0px;
}

.dhi-footer-copyright a{
    display: inline-block;
    font-size: 13px;
    color: white;
    margin: 0px 10px;
    border-bottom: 1.5px solid #00afff;
    font-weight: 400;
}

.dhi-footer-copyright a:hover{
    text-decoration: none;
}

.dhi-footer-copyright span{
    color: #aaaab3;
    font-size: 12px;
    font-weight: 400;
    padding-top: 15px;
    display: block;
}

 

.dhi-mobile-section{
    background: #041d28
}

.dhi-mobile-section ul{
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
}


.dhi-mobile-section-parent{
    text-decoration: none;
    display: block;
    border: 1px solid #ffffff3b;
    margin-top: 10px;
    border-radius: 8px;
}

.dhi-mobile-section-parent > a{
    text-decoration: none;
    padding: 10px 20px;
    color: #1ca1ff;
    margin: 2px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.dhi-mobile-section-parent:hover{
    text-decoration: none;
}




.dhi-usiful-links{
    width: 100%;
    display: block;
    padding: 0px 20px;
    height:0%;
    overflow: hidden;
    background: #0057ff08;
}

.dhi-usiful-links li a{
    color: #bbbbbb;
    padding: 7px 2px;
    display: block;
}


.dhi-services{
    width: 100%;
    display: block;
    padding: 0px 20px;
    height:0%;
    overflow: hidden;
    background: #0057ff08;
}

.dhi-services li a{
    color: #bbbbbb;
    padding: 7px 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.dhi-corporate{
    width: 100%;
    display: block;
    padding: 0px 20px;
    height:0%;
    overflow: hidden;
    background: #0057ff08;
}

.dhi-corporate li a{
    color: #bbbbbb;
    padding: 7px 2px;
    display: block;
}

.dhi-retail{
    width: 100%;
    display: block;
    padding: 0px 20px;
    height:0%;
    overflow: hidden;
    background: #0057ff08;
}

.dhi-retail li a{
    color: #bbbbbb;;
    padding: 7px 2px;
}

.dhi-trade{
    width: 100%;
    display: block;
    padding: 0px 20px;
    height:0%;
    overflow: hidden;
    background: #0057ff08;
}

.dhi-trade li a{
    color: #bbbbbb;;
    padding: 7px 2px;
}


.subscribe_newsletter_h4{
    color: #ffffff;
    margin-top: 20px;
    font-size: 22px;
    font-family: Poppins;
    font-weight: 500;
}


.subscribe_newsletter_p{
    font-weight: 300;
    color: white;
    font-size: 12px;
    font-family: Poppins;
    margin-top: 10px;
}

.subscribe_newsletter{
    margin-top: 15px;
    width: 85%;
    margin: inherit;
}

.subscribe_newsletter input[type="text"]{
    font-size: 14px;
    font-family: Poppins;
    border-radius: 50px 0px 0px 50px;
}

.subscribe_newsletter button{
    border-radius: 0px 50px 50px 0px;
    border: 1px solid #00b9f5;
}



@media(max-width:1200px){
    .dhi-authorized span{font-size:11px;}
    .followus-footer span{font-size: 11px;}
}

@media(max-width: 1080px){
    .dhfooter-dif-li a span{padding: 10px 10px 0px 0px;}
}

@media(min-width:1000px){
    .dhi-mobile-section{display: none;}

}

@media(max-width: 1000px){
    .dhfooter-dif-li a span{padding: 10px 10px 0px 0px;}
    .dhi-desktop-footer{display:  none;}
    .text-trans{color:#2ea9e5}
    .dhi-mobile-section{padding:10px 20px}
    .dhi-footer-copyright{    
        background-repeat: no-repeat;
        background-size: 100% 100%}
}


@media(max-width:767px){
    .dhi-footer-copyright{padding: 10px 0px}
    .dhi-footer-copyright a{
        font-size:9px;
        margin:0px 6px;
        border-bottom: 1px solid;
    }

    .sign_up_letter{
        padding-right: 10px;
    }

    .dhi-footer-copyright span{font-size: 10px;padding-top: 10px;}
    .dhi-authorized span{ font-size: 9px;padding: 3px 5px}
    .dhi-footer-icon{ justify-content: center;}
    .dhi-footer-icon a{padding: 0px 10px;margin-top: 10px;text-align: center;}
    .dhi-authorized{margin-top: 13px;}
    .followus-footer a img{max-width:23px}
    .dhi-footer-icon a img{border-radius: 5px;width:150px}
    .followus-footer span{font-size: 10px;}
}

.followus-footer a{
    display: contents
}

.footer_logo{
    display: block;
}

.footer_book_demo{
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    color: white;
}

.footer_book_demo img{
    width: 30px!important;
}

.footer_book_demo div{
    display: block;
    white-space: nowrap;
    max-width: fit-content;
    padding-right: 10px;
    color: white;
}


 

.dh-footer h6{color: #2ea9e5;font-weight: 400;}

.footer_heading{
    color: #2ea9e5;
    font-weight: 400;
    display: block;
    font-size: 16px;
    font-family: Roboto, Arial, Helvetica, sans-serif;
}

.sign_up_letter{
    width: 100%;
    display: flex;
    align-items: center;
    color: white;
    font-weight: 400;
}
 */

#success_tic .page-body {
  max-width: 100%;
  background-color: #ffffff;
  margin: 10% 0;
}

#success_tic .page-body .head {
  text-align: center;
}

/* #success_tic .tic{
  font-size:186px;
} */
#success_tic .close {
  opacity: 1;
  position: absolute;
  right: 0px;
  font-size: 30px;
  padding: 3px 15px;
  margin-bottom: 10px;
}

#success_tic .checkmark-circle {
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.checkmark-circle .background {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #1ab394;
  position: absolute;
}

#success_tic .checkmark-circle .checkmark {
  border-radius: 5px;
}

#success_tic .checkmark-circle .checkmark:after {
  opacity: 1;
  height: 50px !important;
  width: 28.5px !important;
  transform-origin: left top;
  border-right: 6px solid #fff !important;
  border-top: 6px solid #fff !important;
  border-radius: 2px !important;
  content: "";
  left: 25px !important;
  top: 55px !important;
  position: absolute;
}

#success_tic .checkmark-circle .checkmark.draw:after {
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  animation-delay: 300ms;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: checkmark;
  -moz-animation-name: checkmark;
  animation-name: checkmark;
  -webkit-transform: scaleX(-1) rotate(135deg);
  -moz-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  -o-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#success_tic .checkmark-circle .checkmark:after {
  opacity: 1;
  height: 75px;
  width: 37.5px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  border-right: 15px solid #fff;
  border-top: 15px solid #fff;
  border-radius: 2.5px !important;
  content: "";
  left: 35px;
  top: 80px;
  position: absolute;
}

#mobileapp_tic .page-body {
  max-width: 100%;
  background-color: #ffffff;
  margin: 0 0 0 0;
}

#mobileapp_tic .page-body .head {
  text-align: center;
}

.modal-content {
  overflow: hidden;
}

.page-body a {
  display: block;
}

.page-body a img {
  display: block;
}

/* #mobileapp_tic .tic{
  font-size:186px;
} */
#mobileapp_tic .close {
  opacity: 1;
  position: absolute;
  right: 0px;
  font-size: 30px;
  padding: 3px 15px;
  margin-bottom: 10px;
}

#mobileapp_tic .checkmark-circle {
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.checkmark-circle .background {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #1ab394;
  position: absolute;
}

#mobileapp_tic .checkmark-circle .checkmark {
  border-radius: 5px;
}

#mobileapp_tic .checkmark-circle .checkmark:after {
  opacity: 1;
  height: 50px !important;
  width: 28.5px !important;
  transform-origin: left top;
  border-right: 6px solid #fff !important;
  border-top: 6px solid #fff !important;
  border-radius: 2px !important;
  content: "";
  left: 25px !important;
  top: 55px !important;
  position: absolute;
}

#mobileapp_tic .checkmark-circle .checkmark.draw:after {
  -webkit-animation-delay: 300ms;
  -moz-animation-delay: 300ms;
  animation-delay: 300ms;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-name: checkmark;
  -moz-animation-name: checkmark;
  animation-name: checkmark;
  -webkit-transform: scaleX(-1) rotate(135deg);
  -moz-transform: scaleX(-1) rotate(135deg);
  -ms-transform: scaleX(-1) rotate(135deg);
  -o-transform: scaleX(-1) rotate(135deg);
  transform: scaleX(-1) rotate(135deg);
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

#mobileapp_tic .checkmark-circle .checkmark:after {
  opacity: 1;
  height: 75px;
  width: 37.5px;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  border-right: 15px solid #fff;
  border-top: 15px solid #fff;
  border-radius: 2.5px !important;
  content: "";
  left: 35px;
  top: 80px;
  position: absolute;
}

@-webkit-keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }

  20% {
    height: 0;
    width: 37.5px;
    opacity: 1;
  }

  40% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }

  100% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
}

@-moz-keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }

  20% {
    height: 0;
    width: 37.5px;
    opacity: 1;
  }

  40% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }

  100% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
}

@keyframes checkmark {
  0% {
    height: 0;
    width: 0;
    opacity: 1;
  }

  20% {
    height: 0;
    width: 37.5px;
    opacity: 1;
  }

  40% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }

  100% {
    height: 75px;
    width: 37.5px;
    opacity: 1;
  }
}

.page-body .head h3 {
  font-size: 26px;
  font-family: "Poppins";
  margin-top: 16px !important;
  font-weight: 400;
  color: #1ab394;
}

.page-body .head h4 {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
  font-family: "Poppins";
  color: #000000a6;
  line-height: normal;
  padding: 0px 10px;
}

.popup {
  justify-content: center !important;
}

.popup a {
  max-width: max-content;
}

.popup a:last-child {
  margin-left: 10px;
}

.popup img {
  max-width: 150px !important;
}

.cooies_box {
  position: fixed;
  width: 100%;
  z-index: 9;
  padding: 15px;
  background-color: white;
  border: 1px solid #1c5ba0;
  border-bottom: none;
  border-bottom: none;
  border-radius: 5px 5px 0px 0px;
  transition: 0.3s all;
}

.cooies_box .close {
  width: 25px;
  height: 25px;
  border: 1px solid #1c5ba0;
  color: #1c5ba0;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  opacity: 1;
  display: initial;
  border-radius: 50px;
}

.reject_all_cookies {
  width: 100%;
  text-align: center;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid #1c5ba0;
  font-size: 14px;
  font-family: "Poppins";
  padding: 10px 10px;
  margin-top: 10px;
  color: #1c5ba0;
}

.cooies_box p {
  font-size: 14px;
  line-height: normal;
  color: #454545;
  font-family: "Poppins";
}

.cooies_box p a {
  color: #1c5ba0;
  font-weight: 500;
  text-decoration: underline;
  font-family: "Poppins";
}

.cooke_250 {
  bottom: -350px;
}

.cooke_0 {
  bottom: 0px;
}

#broch_popup h4 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  font-family: "Poppins";
  margin-bottom: 25px;
}

#broch_popup .input_box {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

#broch_popup .input_box:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 30px;
  background: #26a9e0;
}

#broch_popup input {
  width: 100%;
  font-size: 16px;
  font-family: "Poppins";
  border-radius: 5px;
  border: 2px solid #c6c5c7b0;
  padding: 12px 10px 10px 20px;
}

#broch_popup .button_box button {
  border: none;
  outline: none;
  color: white;
  font-size: 17px;
  font-weight: 400;
  margin-top: 15px;
  padding: 10px 40px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  background-color: #26a9e0;
}

#broch_popup .button_box button:hover {
  cursor: pointer;
  color: #3ac5ff;
  background: #26a9e024;
}

.errors {
  width: 100%;
  display: block;
  color: red;
  font-family: "Poppins";
  font-size: 12px;
  margin-top: 5px;
}

@media (min-width: 500px) {
  #brochure_popup .modal-dialog {
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .cookoie_child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .cookei_button_box {
    display: flex;
  }

  .cooies_box p {
    max-width: 60%;
  }

  .reject_all_cookies {
    width: max-content;
    margin: 10px 10px;
  }
}

@media (max-width: 768px) {
  .follow_us a {
    margin-right: 5px;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  text-decoration: none;
  list-style: none;
  transition: 0.5s all;
  font-weight: medium;
}

.text_white {
  color: white;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  text-decoration: none;
}

.frequently_ask_section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #083567;
}

.frequently_ask_section .h2_heading {
  color: #41c4f1;
}

.flex_box_main {
  gap: 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex_box_content h4 {
  text-align: left;
  color: #41c4f1 !important;
  padding-bottom: 10px !important;
}

.case_studies {
  border-radius: 0px !important;
}

.case_studies h2 {
  line-height: inherit;
  padding-top: 0px;
  color: rgb(0, 0, 0);
  padding-bottom: 30px;
}

.case_studies_box_child {
  border-radius: 0px !important;
}

.h2_heading {
  text-align: center;
  font-family: "Poppins";
}

#case_date,
#case_description {
  text-align: left;
}

.blogs_studies_text #case_date {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #000000a3;
}

.blogs_studies_text {
  padding: 15px;
}

#case_description {
  margin-bottom: 60px;
}

.read_more_bottom {
  position: absolute;
  bottom: 25px;
  background: #41c4f1;
  left: 15px;
  color: white;
  font-size: 14px;
  padding: 8px 12px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
  border-radius: 2px;
}

.read_more_bottom:hover {
  background-color: #0c3681;
}

.read_more_bottom img {
  width: 15px;
  margin-left: 10px;
}

.width_80 {
  width: 80%;
  margin: 0 auto;
}

.ptb5040 {
  padding: 60px 0px 60px 0px;
}

.home_main_section {
  width: 100%;
  box-sizing: border-box;
}

.banner_slider {
  width: 100%;
  height: 100%;
  padding-top: 170px;
  padding-bottom: calc(77px + 82px);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("https://47888484.fs1.hubspotusercontent-na1.net/hub/47888484/hubfs/raw_assets/public/my-website-theme/images/background/home-bg.jpg");
}

.banner_slider_box {
  width: 90%;
  height: 100%;
  display: flex;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.banner_slider_box img {
  width: 85%;
  max-width: 100%;
}

.banner_slider_box h1 {
  margin-top: 10px;
}

.banner_slider_box h1 span {
  text-align: center;
  color: #fff;
}

.banner_slider_box p {
  color: #26a9e0 !important;
  margin-top: 10px;
  text-align: center;
}

.banner_slider_box p a {
  text-decoration: none;
  color: #26a9e0;
}

.first_nth_span {
  font-size: 30px;
  font-weight: 300;
  font-family: "Poppins";
}

.first_nth_span .text_dark_blue {
  color: #26a9e0 !important;
  font-weight: 500;
  font-family: "Poppins";
}

.banner_slider_box h1 img {
  display: block;
  width: 40%;
  margin: 0 auto;
  margin-top: 0px;
  padding-bottom: 5px;
}

.second_nth_span {
  font-size: 23px !important;
  font-family: "Poppins" !important;
  font-weight: 300 !important;
}

.third_nth_span {
  font-size: 20px !important;
  font-family: "Poppins" !important;
  font-weight: 300 !important;
}

.banner_slider_box h1 .blue_text {
  color: #26a9e0 !important;
}

.banner_slider_box a:hover {
  text-decoration: none;
}

.home_btn {
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  border: 1px solid transparent;
  background-color: #41c4f1;
}

.home_btn i {
  transition: 0.3s all;
  margin-left: 5px;
}

.home_btn:hover i {
  margin-left: 15px;
}

.home_btn:hover {
  text-decoration: none;
  background-color: white;
  color: #01bfff;
  border: 1px solid #01bfff;
}

.list_box {
  margin-bottom: 25px;
}

.list_box li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.list_box li span {
  font-size: 15px;
}

.list_box li img {
  width: 17px;
  max-width: 17px;
  min-width: 17px;
  margin-right: 10px;
}

.endless_opportunities {
  width: 100%;
  position: relative;
  background-color: #eee;
  padding: 60px 0px 60px 0px;
}

.endless_opportunities h2 {
  font-size: 32px;
  color: #1c5ba0;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.carousel_box {
  position: relative;
  max-width: 85%;
  margin: 0 auto;
  width: 100%;
}

.carouel_child {
  height: 100%;
  padding: 50px;
  position: relative;
  box-sizing: border-box;
  background-color: white;
  border-radius: 8px;
  /* box-shadow: 0px 5px 43px 0px rgba(27, 26, 26, 0.06); */
}

.carouel_child > .endless_img_box img {
  width: 40px !important;
}

.carouel_child h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.3;
  color: #1c5ba0;
  margin-bottom: 0;
  margin-top: 30px;
}

.carouel_child p {
  min-height: 180px;
  font-size: 15px;
  padding-top: 20px;
  margin-bottom: 60px;
  color: #0000007a;
}

.anchor_tag {
  padding-top: 50px;
  position: absolute;
  bottom: 50px;
  left: 50px;
}

.anchor_tag a {
  color: #1c5ba0;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  max-width: max-content;
  /* text-decoration: none;  */
  /*new*/
}

.anchor_tag a:hover {
  text-decoration: none;
}

.anchor_tag a img {
  width: 10px !important;
  transition: 0.3s all;
  margin-left: 8px;
}

.anchor_tag a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  margin-bottom: -2px;
  background-color: #7ba0c8;
  transition: 0.3s all;
}

.anchor_tag a:hover img {
  width: 9px;
  transform: rotate(38deg);
  margin-left: 15px;
}

.anchor_tag a:hover::after {
  width: 0px;
}

.carousel_endless_inner {
  padding: 10px;
}

.banner_slider_box div {
  width: 100%;
  display: flex;
  justify-content: center;
}

.absolute_grid {
  width: 100%;
  height: auto;
  margin-top: -90px;
}

.absolute_grid_box {
  width: 80%;
  display: grid;
  grid-gap: 19px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.absolute_grid_box > div {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 30px 0px;
  border-radius: 8px;
  align-items: center;
  transition: 0.3s all;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(180deg, #ffffff, #b7ecff);
}

.absolute_grid_box > div:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-image: linear-gradient(180deg, #ffffff, #ffffff);
}

.absolute_grid_box > div img {
  max-width: 40px;
  max-height: 40px;
  width: 100%;
}

.absolute_grid_box h4 {
  text-align: center;
  color: #1c5ba0 !important;
  font-size: 24px;
  margin-bottom: 5px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.absolute_grid_box h4 i {
  margin-right: 2px;
}

.absolute_grid_box p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #01bfff !important;
}

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

.intelligent_system_box_app a {
  max-width: 150px;
}

.intelligent_system_box_app a img {
  max-width: 100% !important;
}

.intelligent_system video {
  width: 100%;
}

.two_grid_box {
  display: grid;
  grid-gap: 25px 100px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.two_grid_box .img_box img {
  display: block;
}

.two_grid_box:div {
  width: 100%;
}

.content_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.corporate_forex_box .img_box img {
  max-width: 100%;
}

.backgroung_same {
  background-repeat: no-repeat;
  background-position: 100% 150%;
  background-size: contain;
  padding-bottom: 0px !important;
  border-radius: 0px 0px 50px 50px;
  /*    background-image:  url(../../../../../assets/chassets/mobile-app/updatedCandle1.svg)*/
}

.corporate-forex {
  background-image: url(../../../../../assets/chassets/mobile-app/updatedCandle1.svg);
}

.trade-finance {
  background-image: url(../../../../../assets/chassets/mobile-app/updatedCandle2.svg);
}

.forex-trading {
  background-image: url(../../../../../assets/chassets/mobile-app/updatedCandle2.svg);
}

.retail-forex {
  background-position: 100% 120% !important;
  background-image: url(../../../../../assets/chassets/home/retail_forex_bg.svg);
}

.content_box h2 {
  font-size: 32px;
  color: #212529;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
}

.content_box h4 {
  font-size: 22px;
  font-weight: 400;
  border-bottom: 3px solid #00bfff;
  display: inline-block;
  padding: 10px 0 20px;
  font-family: "Poppins";
  max-width: fit-content;
}

.content_box p {
  font-size: 16px;
  line-height: inherit;
  padding: 10px 0;
  margin-bottom: 10px;
  color: #212529;
}

.heading_second .blue_text {
  color: #00bfff !important;
}

.full_img_box img {
  width: 75%;
}

.content_box a img {
  width: 100%;
  max-width: 30%;
}

.content_box a:last-child img {
  margin-left: 10px;
}

.bg_l_blue {
  background-color: #e8f9ff;
}

.corporate_forex .text_box h4 {
  font-size: 22px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 0 10px;
  font-family: "Poppins";
  max-width: fit-content;
}

.corporate_forex .text_box h2 {
  font-size: 32px;
  color: #01bfff;
  line-height: normal;
  font-weight: 500;
  font-family: "Poppins";
}

.corporate_forex .text_box p {
  font-size: 16px;
  padding: 10px 0;
  margin-bottom: 10px;
  color: #212529;
}

.one_two_ratio > div {
  grid-template-columns: 1fr 2fr !important;
}

.two_one_ratio > div {
  grid-template-columns: 2fr 1fr !important;
}

.one_one_ratio > div {
  grid-template-columns: 1fr 1fr !important;
}

.download_brouchure {
  background: #083567;
  padding: 60px 0px 60px 0px;
}

.download_brouchure h2 {
  font-size: 32px;
  color: #01bfff;
  line-height: normal;
  font-weight: 500;
  font-family: "Poppins";
}

.download_brouchure h4 {
  font-size: 18px;
  padding: 10px 0;
  font-family: "Poppins";
  color: white;
  line-height: 33px;
  max-width: 100%;
  margin: 0 auto;
  font-weight: normal;
}

.download_brouchure a {
  border: none;
  outline: none;
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
  background-color: #01bfff;
  transform: 0.3s all;
}

.download_brouchure a img {
  margin-left: 15px;
}

.download_brouchure a:hover {
  text-decoration: none;
  color: white;
  background-color: #6ed2ff;
}

.our_clients {
  padding-top: 45px;
  position: relative;
}

.our_clients h2 {
  font-size: 32px;
  color: #212529;
  line-height: 44px;
  font-weight: 500;
  line-height: normal;
  font-family: "Poppins";
}

.our_clients_box {
  margin-top: 35px;
}

.our_clients_box img {
  height: 100%;
  display: block;
  width: 100%;
  box-shadow: 0px 0px 12px rgb(0 0 0 / 1%);
  border-radius: 3px;
  border: 1px solid #26a9e042;
}

.more_than {
  margin-top: 10px;
  margin-bottom: 20px;
  background: #061f4b;
}

.more_than h2 {
  color: white;
  font-weight: 400;
  line-height: normal;
  font-family: "Poppins";
}

.more_than h2 .text_blue {
  color: #01bfff;
  font-weight: 500;
}

.more_than_box_app {
  width: 100%;
  display: flex;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

.more_than_box_app a {
  margin: 0px 10px;
}

.more_than_box_app a img {
  width: 170px;
  display: flex;
}

.people_say {
  width: 100%;
  position: relative;
  background-size: cover;
  padding: 60px 0px 60px 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../../../../assets/chassets/home/people_say_bg.jpg);
}

.people_say .absolute_overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #061f4b94;
  position: absolute;
  z-index: 1;
}

.people_say .width_80 {
  z-index: 2;
  position: relative;
}

.people_say h2 {
  font-size: 32px;
  color: white;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
}

.people_say h3 {
  font-size: 18px;
  padding: 10px 0;
  font-family: "Poppins";
  color: white;
  line-height: normal;
  max-width: 62%;
  margin: 0 auto;
  text-align: center;
  font-weight: normal;
}

.people_say_box {
  width: 100%;
  box-sizing: border-box;
  max-width: fit-content;
  height: 100%;
}

.people_say .people_say_carousel_box {
  margin-top: 30px;
}

.people_say_box .text_box {
  padding: 25px;
  border-radius: 6px;
  position: relative;
  background-color: #01bfff;
  height: calc(100% - 110px);
}

.people_say_box .text_box p {
  color: white;
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  text-align: justify;
}

.people_say .text_box::after {
  position: absolute;
  content: "";
  left: 25px;
  bottom: -27px;
  border-top: 15px solid #01bfff;
  border-bottom: 15px solid rgba(255, 0, 0, 0);
  border-left: 15px solid rgba(255, 0, 0, 0);
  border-right: 15px solid rgba(255, 0, 0, 0);
}

.people_say_box .info_box {
  padding: 25px 10px 0px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.info_box img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50px;
}

.info_box_flex_box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.info_box_flex_box h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 5px;
}

.info_box_flex_box p {
  color: white;
  margin: 0;
  font-size: 14px;
}

.info_box_flex_box p i {
  color: gold;
}

.create_your_myforexeye {
  background-color: white;
}

.create_your_myforexeye h2 {
  font-size: 32px;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
}

.create_your_myforexeye span {
  color: #1c5ba0 !important;
}

.create_your_myforexeye h4 {
  font-size: 19px;
  padding: 10px 0;
  font-family: "Poppins";
  line-height: 35px;
  max-width: 62%;
  margin: 0 auto;
  text-align: center;
  font-weight: normal;
}

.create_your_myforexeye h4 span {
  color: #1c5ba0 !important;
}

.create_your_myforexeye a {
  padding: 10px 25px;
}

.dhi-change-latest-news {
  width: 100%;
  padding: 60px 0px 60px 0px;
  background-image: linear-gradient(242deg, #ffffff, #c2f0ff);
}

.headingh2,
.headingh2-social {
  font-size: 32px;
  color: #212529;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
  text-align: center;
}

.latest-news h2 {
  color: #1c5ba0;
  margin: 0px 0px 40px 0px;
}

.dhi-latest-news {
  overflow: hidden;
  border-radius: 4px;
}

.dhi-latest-news a p {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
  background-color: #1c5ba0;
}

.dhi-latest-news a {
  display: flex;
  flex-direction: column;
}

.dhi-latest-news p {
  color: #fff;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 0;
}

.dhi-latest-nes-changes {
  display: block;
  text-align: right;
  color: #43bfec;
}

.myforexeye_video {
  margin-top: 30px;
  background: #ddf8ff;
}

.video_texttomonial .people_say_carousel_box {
  margin-top: 30px;
}

.video_texttomonial_box {
  background: #1c5ba0;
}

.video_texttomonial {
  background-color: white;
  position: relative;
}

.video_texttomonial h2 {
  font-size: 32px;
  color: #000000;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
  text-align: center;
  margin-bottom: 0 !important;
}

.video_texttomonial_h3 {
  color: #1c5ba0 !important;
  text-align: center !important;
  font-size: 16px !important;
  margin-top: 0;
  padding: 0px;
}

.video_texttomonial h3 {
  font-size: 14px;
  padding: 20px;
  font-family: "Poppins";
  color: #ffffff;
  line-height: 40px;
  margin: 0 auto;
  text-align: center;
  font-weight: normal;
  text-align: center;
}

.video_texttomonial p {
  font-size: 16px;
  line-height: 24px;
  color: #1c5ba0;
  text-align: center;
}

.video_texttomonial_box {
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
  border-radius: 6px;
  height: 97%;
}

.video_texttomonial_box .video_box iframe {
  width: 100%;
  height: 200px;
  border-radius: 6px;
}

.video_texttomonial_box .text_box h3 {
  line-height: normal !important;
}

.blog_seection {
  background-color: #1c5ba0;
}

.corporate_retail h2 {
  font-size: 32px;
  color: #212529;
  line-height: 44px;
  font-weight: 500;
  font-family: "Poppins";
}

.corporate_table tr td {
  font-size: 13px;
  padding: 6px;
}

.corporate_table tr td:first-child {
  color: #0047c4;
}

.corporate_table tr:first-child td {
  border-top: none;
}

.corporate_table tr td:nth-child(2) {
  color: #797979;
}

.text-red {
  color: red;
}

.text-green {
  color: #00d600;
}

.corporate_retail_box {
  width: 100%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate_table table {
  margin-bottom: 0;
}

.corporate_table,
.retail_table {
  background: white;
  max-width: 450px;
  box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 5%);
  border-radius: 6px;
  padding: 1px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.corporate_table .table-responsive,
.retail_table .table-responsive {
  height: 350px;
  overflow: auto;
  padding: 0;
}

/* width */
.corporate_table .table-responsive::-webkit-scrollbar,
.retail_table .table-responsive::-webkit-scrollbar {
  width: 0px;
}

thead tr th {
  background-color: white;
  position: sticky;
  top: 0;
  font-size: 13px;
  font-weight: 400;
  padding: 10px 6px;
}

.corporate_table th,
.retail_table th {
  border-bottom: 1px solid #dee2e6;
  font-family: "Poppins";
  font-weight: 600;
  border-top: none;
}

.under_score {
  color: transparent !important;
}

.z_index {
  z-index: 2;
  margin-top: -25px;
  background-color: #dee2e6;
  border: 1px solid #d3d3d3;
}

.retail_table {
  margin-left: -20px;
}

.corporate_table .table-responsive {
  border: 2px solid #dee2e6;
  border-radius: 6px;
  background: white;
}

.retail_table .table-responsive {
  border: 2px solid #dee2e6;
  border-radius: 6px;
  background: white;
}

.retail_table tr:first-child td {
  border-top: none;
}

.retail_table tr td:first-child span:first-child {
  color: #0047c4 !important;
}

.retail_table tr td:first-child span:last-child {
  font-size: 12px;
}

.retail_table table {
  margin-bottom: 0;
}

.retail_table td {
  padding: 8px;
  font-size: 13px;
}

.corporate_retail .table_tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corporate_retail .table_tab a {
  outline: none;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  padding: 10px 26px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  margin: 16px 5px 5px 5px;
  border: 1px solid transparent;
  background-color: #1c5ba0;
}

.corporate_retail .table_tab a:hover {
  text-decoration: none;
}

.tabs_bg_active {
  background-color: #01bfff !important;
}

.dhi-latest-news a {
  width: 100%;
}

.case_studies_box {
  padding: 0px !important;
}

#broch_popup h4 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  font-family: "Poppins";
  margin-bottom: 25px;
}

#broch_popup .input_box {
  position: relative;
  width: 100%;
  margin-top: 15px;
}

#broch_popup .input_box:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 30px;
  background: #26a9e0;
}

#broch_popup input {
  width: 100%;
  font-size: 16px;
  font-family: "Poppins";
  border-radius: 5px;
  border: 2px solid #c6c5c7b0;
  padding: 12px 10px 10px 20px;
}

#broch_popup .button_box button {
  border: none;
  outline: none;
  color: white;
  font-size: 17px;
  font-weight: 400;
  margin-top: 15px;
  padding: 10px 40px;
  border-radius: 3px;
  transition: 0.3s all;
  text-decoration: none;
  background-color: #26a9e0;
}

#broch_popup .button_box button:hover {
  cursor: pointer;
  color: #3ac5ff;
  background: #26a9e024;
}

.errors {
  width: 100%;
  display: block;
  color: red;
  font-family: "Poppins";
  font-size: 12px;
  margin-top: 5px;
}

@media (min-width: 500px) {
  #broch_popup .modal-dialog {
    max-width: 400px;
  }
}

@media (min-width: 1200px) {
  .width_80 {
    max-width: 1280px;
  }
}

@media (max-width: 1200px) {
  .banner_slider_box {
    width: 90%;
  }
}

@media (max-width: 1100px) {
  .banner_slider_box h1 span {
    font-size: 26px;
  }

  .absolute_grid .absolute_grid_box {
    width: 90%;
  }

  .width_80 {
    width: 90%;
  }

  .two_grid_box {
    grid-gap: 25px 50px;
  }

  .endless_opportunities > .carousel_box {
    max-width: 90%;
  }

  .case_studies_box {
    padding: 0px !important;
  }
}

@media (min-width: 1000px) {
  .intelligent_system {
    padding: 60px 0px 60px 0px !important;
  }

  .intelligent_system > div {
    max-width: 850px !important;
  }

  .intelligent_system_box {
    margin-left: auto;
    margin-right: auto;
  }

  .myforexeye_video > div {
    max-width: 1200px !important;
  }

  .video_box a {
    display: flex;
    height: 200px;
    object-fit: cover;
    overflow: hidden;
  }

  .video_box a img {
    width: 100%;
    display: block;
  }
}

@media (max-width: 1000px) {
  .endless_opportunities h2 {
    font-size: 24px;
  }

  .absolute_grid .absolute_grid_box {
    grid-gap: 5px;
    width: calc(100% - 50px);
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .intelligent_system {
    padding-left: 45px;
    padding-right: 45px;
  }

  .img_box img {
    margin: 0 auto !important;
  }

  .full_img_box > iframe {
    margin: 0 auto !important;
  }

  .dhi-change-latest-news .container {
    max-width: calc(100% - 25px);
  }

  .myforexeye_video .width_80 {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 922px) {
  .two_grid_box {
    grid-gap: 25px 25px;
  }

  .create_your_myforexeye h4 {
    max-width: 90%;
  }

  .intelligent_system {
    padding-left: 25px;
    padding-right: 25px;
  }

  .width_80 {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .backgroung_same {
    border-radius: 0px 0px 30px 30px;
  }

  .dhi-latest-news {
    margin: 0px 5px !important;
  }
}

@media (max-width: 768px) {
  .banner_slider_box {
    width: 95%;
  }

  .flex_box_main {
    flex-direction: column;
  }

  .anchor_tag a {
    display: flex;
    align-items: center;
  }

  .banner_slider_box h1 span {
    font-size: 30px;
    line-height: normal;
  }

  .banner_slider_box h1 br {
    display: none;
  }

  .banner_slider_box h1 > span {
    display: block;
    width: 100%;
  }

  .banner_slider_box h1 img {
    width: 260px;
  }

  .absolute_grid .absolute_grid_box {
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
  }

  .width_80 {
    width: 100%;
    padding: 0px 15px;
    box-sizing: border-box;
  }

  /* .corporate_retail {
    padding: 50px 15px 15px 15px;
  }

  .corporate_table,
  .retail_table {
    max-width: 450px;
    width: 100%;
    display: none;
    position: relative;
  } */

  /* .z_index {
    z-index: 2;
    display: block;
  } */

  /* .retail_table {
    margin-left: 0px;
  } */

  .full_img_box iframe {
    width: 100%;
  }

  .absolute_grid .absolute_grid_box {
    grid-gap: 5px;
  }

  .intelligent_system {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
    padding-top: 25px !important;
  }

  .banner_slider_box {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .banner_slider_box h1 br {
    display: block;
  }

  .download_brouchure h2 {
    font-size: 26px;
  }

  .corporate_forex .text_box h2 {
    font-size: 26px;
  }

  .corporate_forex .text_box h2 {
    font-size: 26px;
  }

  .corporate_forex .text_box h2 {
    text-align: left !important;
  }

  .corporate_forex .text_box p {
    text-align: left !important;
  }

  .intelligent_system_box li span {
    text-align: initial !important;
  }

  .absolute_grid {
    margin-top: -50px;
  }

  .two_grid_box {
    grid-template-columns: 1fr;
  }

  .two_one_ratio > div .text_box {
    order: 2;
  }

  .two_one_ratio > div .img_box {
    order: 1;
    margin: 0 auto;
  }

  .one_two_ratio > div {
    grid-template-columns: 1fr !important;
  }

  .two_one_ratio > div {
    grid-template-columns: 1fr !important;
  }

  .intelligent_system_box .content_box {
    order: 2;
  }

  .intelligent_system_box .full_img_box {
    order: 1;
  }

  .intelligent_system .full_img_box {
    width: 50%;
    margin: 0 auto;
  }

  .corporate_forex_box .img_box img {
    max-width: 50%;
  }

  .corporate-forex {
    padding-bottom: 40px !important;
  }

  .trade-finance {
    padding-bottom: 40px !important;
  }

  .forex-trading {
    padding-bottom: 40px !important;
  }

  .retail-forex {
    /* padding-bottom: 40px!important; */
  }

  .myforexeye_video {
    margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 15px;
  }

  .endless_opportunities h2 {
    margin-bottom: 30px;
  }

  .endless_opportunities {
    padding: 30px 0px 30px 0px;
  }

  .video_box a {
    display: flex;
    height: 190px;
    object-fit: cover;
    overflow: hidden;
  }

  .dhi-change-latest-news {
    padding: 10px 0px 30px 0px;
  }

  .video_texttomonial {
    padding: 30px 0px;
  }
}

@media (max-width: 650px) {
  .absolute_grid .absolute_grid_box {
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .full_img_box img {
    width: 100%;
  }

  .download_brouchure {
    margin-top: 0px;
  }

  .myforexeye_video .full_img_box {
    width: 100%;
  }

  .myforexeye_video .width_80 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .dhi-change-latest-news .container {
    max-width: calc(100% - 0px);
  }

  .good_choice_box {
    border-radius: 8px;
  }
}

@media (min-width: 710px) and (max-width: 1100px) {
  .carouel_child {
    padding: 50px 25px;
  }

  .anchor_tag {
    left: 25px;
  }
}

@media (max-width: 500px) {
  .banner_slider {
    height: 100%;
    padding-top: 120px;
    padding-bottom: calc(77px + 50px);
  }

  .banner_slider .banner_slider_box {
    /* padding-top: 130px;
    padding-bottom: 120px; */
    justify-content: flex-start;
  }

  .absolute_grid {
    margin-top: -77px;
  }

  .absolute_grid_box h4 {
    font-size: 20px;
  }

  .absolute_grid_box p {
    font-size: 12px;
  }

  .absolute_grid_box > div img {
    max-width: 45px;
    max-height: 45px;
    width: 100%;
  }

  .content_box h2 {
    font-size: 26px;
  }

  .content_box h4 {
    font-size: 18px;
  }

  .content_box p {
    font-size: 16px;
    line-height: 25px;
    padding: 0px 0;
    margin-bottom: 10px;
  }

  .content_box > div {
    text-align: center;
    margin-top: 10px;
  }

  .corporate_forex .text_box h4 {
    font-size: 18px;
  }

  .corporate_forex .text_box p {
    font-size: 16px;
    padding: 0px 0px 10px 0px;
    margin-bottom: 10px;
    line-height: 28px;
  }

  .download_brouchure h4 {
    font-size: 16px;
    padding: 10px 0;
    line-height: 30px;
    max-width: 100%;
    margin: 0 auto;
  }

  .corporate_retail h2 {
    font-size: 26px;
    line-height: normal;
  }

  .our_client {
    padding-top: 0px;
  }

  .people_say h3 {
    font-size: 18px;
    max-width: 100%;
    font-weight: normal;
  }

  .create_your_myforexeye h2 {
    font-size: 28px;
    line-height: normal;
  }

  .create_your_myforexeye h4 {
    font-size: 18px;
    max-width: 100%;
    line-height: normal;
  }

  .headingh2,
  .headingh2-social {
    font-size: 28px;
  }

  .latest-news h2 {
    margin: 20px 0;
  }

  .text-col-center {
    text-align: center;
  }

  .ptb5040 {
    padding: 30px 0px 25px 0px !important;
  }

  .intelligent_system_box_app a {
    max-width: 125px;
  }

  .our_clients {
    padding-top: 0px !important;
  }

  .our_clients_box {
    margin-top: 15px !important;
  }

  .more_than_box_app {
    margin-top: 20px;
  }

  .more_than h2 {
    font-size: 26px;
  }

  .more_than_box_app a {
    margin: 0px 5px;
  }

  .more_than_box_app a img {
    width: 140px;
  }

  .people_say h2 {
    font-size: 26px;
    line-height: normal;
  }

  .people_say_box .text_box {
    padding: 15px !important;
  }

  .video_texttomonial h2 {
    font-size: 26px;
    line-height: normal;
  }

  .intelligent_system {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 25px !important;
    padding-top: 25px !important;
  }

  .myforexeye_video {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .our_clients_img {
    padding: 0px 5px !important;
  }

  .backgroung_same {
    border-radius: 0px 0px 15px 15px;
  }

  .corporate_forex_box .img_box img {
    max-width: 75%;
  }

  .backgroung_same {
    background-position: 100% 101%;
  }

  .myforexeye_video {
    margin-top: 25px;
    padding-top: 40px !important;
  }
}

@media (max-width: 370px) {
  .carouel_child {
    padding: 25px;
  }

  .anchor_tag {
    left: 25px;
    bottom: 25px;
  }

  .carouel_child p {
    min-height: max-content;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}


@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i);
input:-internal-autofill-selected {
  background: #fff !important;
}

img {
  max-width: 100%;
  height: auto;
}

::placeholder {
  color: grey !important;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  outline: 0;
}

:after,
:before {
  -moz-box-sizing: border-box;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a:focus {
  outline: 0 !important;
}

h1 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 20px;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 23px;
}

a,
a:hover {
  text-decoration: none;
}

ol,
ul {
  margin: 5px 0 1.625em 2.5em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

ol li {
  list-style: lower-roman;
}

dl {
  margin: 0 1.625em;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 1.625em;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  line-height: 100%;
}

hr {
  width: 100%;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: none;
}

del {
  text-decoration: line-through;
}

hr {
  background: 0 0;
  border: 0;
  clear: both;
  color: transparent;
  height: 1px;
  margin: 0;
  padding: 0;
}

mark {
  background-color: #fff;
  font-style: italic;
}

input,
select {
  vertical-align: middle;
}

ins {
  color: #000;
  background: #fff;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
  outline: 0;
}

a,
img {
  outline: 0;
  border: 0;
  display: inline-block;
}

ul {
  margin: 5px 0 40px 18px;
}

ol {
  margin: 5px 0 40px 22px;
}

li {
  list-style: none;
}

a,
img {
  text-decoration: none;
  max-width: 100%;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

textarea {
  resize: none;
}

p {
  font-size: 16px;
  line-height: 24px;
  color: #454545;
}

.nonpad {
  padding: 0 !important;
}

.nonmar {
  margin: 0;
}

button[type="submit"] {
  background: #00b9f5;
  border-color: #1f539e;
}

button[type="submit"]:hover {
  color: #fff;
  background: #ff7043;
  border-color: #00d8c2;
}

.mfep-10 {
  margin: 1rem -15px;
}

.mfep-11 {
  margin: 0 -15px 1rem;
}

.mfep-12 {
  margin: 1.5rem 0 0;
}

.mfep-13 {
  margin: 0.1rem 0 0;
}

.mfep-1 {
  margin-top: 1rem;
}

.mfep-14 {
  margin-top: 0.18rem;
}

.mfep-3 {
  margin-top: 3rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.form-group:-moz-placeholder,
.form-group:-ms-input-placeholder,
.form-group::-moz-placeholder,
.form-group::-webkit-input-placeholder {
  color: #999;
}

button:focus {
  outline: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.form-group:-moz-placeholder,
.form-group:-ms-input-placeholder,
.form-group::-moz-placeholder,
.form-group::-webkit-input-placeholder {
  color: #999;
}

.form-group::selection {
  color: #000;
  background: #fff;
}

.form-horizontal
  .checked-dark
  .custom-checkbox
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background: #007bff;
}

.liveratepopup .modal-lg {
  width: 600px;
}

.mfep-2 {
  margin-bottom: 1rem;
}

#scrollUp {
  background: #1c5ba8;
  border-radius: 2px;
  bottom: 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  color: #fff;
  font-size: 20px;
  height: 34px;
  line-height: 30px;
  right: 15px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 34px;
}

#scrollUp:hover {
  background: #ffb01b;
  opacity: 1;
}

.header-banner {
  min-height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.header-banner .banner-txt {
  margin: 1.5rem 0 0;
  text-align: center;
}

.header-banner .banner-txt p {
  font: 500 1.5rem/2rem Roboto, Arial, Helvetica, sans-serif;
  color: #06181a;
  margin: 1.5rem 0 0.5rem;
}

.header-banner .banner-txt img {
  max-width: 55%;
}

.home-carousel .owl-carousel .owl-nav button.owl-next {
  right: 5px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.home-carousel .owl-carousel .owl-nav button.owl-prev {
  left: 5px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.home-carousel .owl-carousel .owl-nav button.owl-next {
  color: #022949;
  font-size: 30px;
  position: absolute;
  top: 40%;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.home-carousel .owl-carousel .owl-nav button.owl-prev {
  color: #022949;
  font-size: 30px;
  position: absolute;
  top: 40%;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.home-carousel .owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.home-carousel .owl-carousel .owl-nav button.disabled {
  color: #878787;
}

.navbar .navbar-nav .nav-item a span i {
  color: #145ba3;
}

.navbar .nav-item .fa-home {
  font-size: 25px;
}

.navbar-dark .navbar-nav .nav-link {
  color: #1c5ba8;
}

.navbar .navbar-nav .nav-item a {
  color: #1c5ba8;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.bd-navbar {
  background: #fff;
}

#navbarNav ul ul li {
  list-style: none;
}

.navbar-nav-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav-right {
  -ms-flex-direction: row;
  flex-direction: row;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}

.navbar .nav-item .free-trial {
  background-color: #1859ad;
  padding: 0 1rem;
  color: #fff;
  border-radius: 5px;
}

.navbar .nav-item .free-trial a {
  color: #fff;
}

.navbar .nav-item .free-trial a:hover {
  color: #38bff0;
}

.navbar .nav-item .free-trial a:focus {
  color: #38bff0;
}

.bd-navbar {
  min-height: 4rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.main-menu .dropdown-menu {
  border: 1px solid #fff;
}

.main-menu .dropdown-item.active,
.main-menu .dropdown-item:active {
  background: #1c5ba8;
}

.main-menu .dropdown-item:focus,
.main-menu .dropdown-item:hover {
  background: #eee;
}

.main-menu .dropdown-item {
  padding: 0.6rem 1.5rem;
}

.main-menu .dropdown-menu a {
  color: #0a94f1;
}

.navbar .navbar-nav .nav-item .dropdown-menu a {
  color: #0a94f1;
  padding: 0.8rem 0.5rem;
}

.btn-group:hover .dropdown-menu,
.dropdown:hover .dropdown-menu {
  display: block;
  transition-duration: 0.5s;
}

.dropdown-menu {
  margin-top: 0;
}

.dropdown-toggle {
  margin-bottom: 2px;
}

.nav-tabs .dropdown-toggle,
.navbar .dropdown-toggle {
  margin-bottom: 0;
}

.service-outer {
  width: 100%;
  background-size: 100%;
  margin: -3.6rem 0 0;
  position: relative;
  height: 130px;
}
.home-silder {
  background: url(../images/home-slider-bg.jpg) top left;
  border-radius: 5px;
}
.service-head {
  text-align: center;
  margin-top: -1.6rem;
  position: absolute;
  z-index: 2;
  width: 100%;
}

.service-head span {
  text-align: center;
  background: #fff;
  color: #1c5ba8;
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
}

.service-re-head {
  text-align: center;
  margin-top: -1.6rem;
  position: absolute;
  z-index: 2;
  width: 100%;
}

.service-re-head span {
  text-align: center;
  background: #fff;
  color: #1c5ba8;
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 0.125rem 0.25rem rgba(175, 223, 252);
}

.service-pro {
  position: relative;
  z-index: 1;
  height: 129px;
}

.service-pro ul {
  margin: 0;
  padding: 1rem 0.5rem 0.5rem;
  display: block;
  /* background: url(../images/service-bg.jpg) center center; */
  border-radius: 5px 0 0 5px;
  height: 130px;
}

.service-pro ul li {
  display: inline-block;
  text-align: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-pro ul li:hover::before {
  -webkit-animation: shine 0.99s;
  animation: shine 0.99s;
}

.service-pro ul li a {
  display: inline-block;
  margin: 8px 0;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.service-pro ul li span {
  margin-top: 0.6rem;
  color: #000;
  opacity: 1;
  display: block;
  overflow: hidden;
  font: 400 0.73rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.2rem 0.1rem;
}

.service-pro ul li:hover span {
  color: #293273;
  background: 0 0;
}

.service-pro ul li a img {
  height: 35px;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  transition: 0.5s ease;
  width: auto;
}

.service-pro ul li a img:hover {
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.service-re-pro {
  position: relative;
  z-index: 1;
  height: 130px;
}

.service-re-pro ul {
  margin: 0;
  padding: 1rem 0 1.5rem;
  /* background: url(../images/service-re-bg.jpg) top left; */
  position: relative;
  border-radius: 0 5px 5px 0;
  height: 130px;
}

.service-re-pro ul li {
  display: inline-block;
  text-align: center;
  width: 32%;
  position: relative;
  overflow: hidden;
}

.service-re-pro ul li a {
  display: inline-block;
  margin: 8px 0;
  position: relative;
  text-align: center;
  vertical-align: top;
}

.service-re-pro ul li span {
  margin-top: 0.6rem;
  color: #000;
  opacity: 1;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font: 400 0.73rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.2rem 0.1rem;
}

.service-re-pro ul li:hover span {
  color: #293273;
  background: 0 0;
}

.service-re-pro ul li a img {
  height: 35px;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-re-pro ul li:nth-child(3) a img {
  height: 29px;
}

.service-re-pro ul li a img:hover {
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.corporate-service .owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.corporate-service.owl-carousel .owl-nav button.owl-prev {
  left: -24px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.corporate-service.owl-carousel .owl-nav button.owl-next {
  right: -28px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.corporate-service.owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.corporate-service.owl-carousel .owl-nav button.owl-next,
.corporate-service.owl-carousel .owl-nav button.owl-prev {
  color: #1c5daa;
  font-size: 15px;
  position: absolute;
  top: 46%;
  opacity: 1;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin-top: -20px;
}

.corporate-service.owl-carousel .owl-nav button.owl-next .icon,
.corporate-service.owl-carousel .owl-nav button.owl-prev .icon {
  font-weight: 700;
}

.corporate-service.owl-carousel .owl-nav button.disabled {
  color: #878787;
}

.corporate-service.owl-theme .owl-nav {
  margin-top: 0;
}

.work-row {
  overflow: hidden;
  width: 100%;
}

.work-row-head {
  position: relative;
  padding: 2rem 0 0;
}

.work-row-head h2 {
  font: 500 1.6rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
  color: #383838;
  text-transform: uppercase;
  margin: 0 0 0;
  padding: 0 0 1rem;
  text-align: left;
}

.work-row-head h2::before {
  border: 1px solid #1a58a7;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
  border-radius: 2.5px;
}

.work-row p {
  text-align: center;
  color: #1c5ba8;
  font: 300 4rem/4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 2rem 0 2rem;
}

.work-row p span {
  display: block;
  color: #222;
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 1rem 0 0;
}

.work-row p b {
  font: 500 3rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

.exp-video {
  overflow: hidden;
  margin: 1rem 0 2rem;
  border: 1px solid #1c5ba8;
  border-radius: 10px;
  font-size: 0;
}

.form-section {
  margin: 1.3rem 0;
}

.ex-video p {
  margin: 1.2rem 0 0;
}

.form-section input.name,
textarea.name {
  font: 400 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  border-radius: 2px;
  padding: 0 0 0.8rem;
  border: none;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  transition: padding-top 0.2s ease, margin-top 0.2s ease;
  overflow-x: hidden;
}

.call-button {
  margin: 0.8rem 0 0;
  text-align: right;
}

.exp-sec p {
  margin: 1.2rem 0;
}

.call-button button[type="submit"] {
  font: 400 1.2rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}

.media-outer {
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
  background: url(../images/media-bg.jpg);
}

.client-outer {
  position: relative;
}

.client-head {
  position: relative;
  width: 100%;
  margin: 0 0 2rem;
}

.client-head h3 {
  font: 500 2rem/2rem Roboto, Arial, Helvetica, sans-serif;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0;
  padding: 0 0 1rem;
  text-align: left;
}

.client-head h3::before {
  border: 1px solid #fff;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.client-section {
  background: #fff;
  /* height: 343px; */
  width: 100%;
  border-radius: 10px;
  margin: 0 0 0;
  position: relative;
}

.client-section .top-head-sec {
  width: 100%;
  position: relative;
}

.client-section .top-head {
  height: 230px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.client-section .top-head img {
  height: 100%;
}

.client-content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 0 0;
}

.client-content p {
  font: 400 1rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.8rem;
}

.client-content h5 {
  color: #3ac0f0;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.8rem;
}

.client-content h6 {
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.media-carousel {
  width: 100%;
  margin: 0 auto;
}

.media-carousel .icon {
  font-weight: 700;
}

.media-carousel.item {
  padding: 0 1rem;
}

.media-carousel.owl-carousel .owl-nav button.owl-next,
.media-carousel.owl-carousel .owl-nav button.owl-prev {
  /* background: #1c5ba8; */
  color: white;
  font-size: 30px;
  position: absolute;
  top: 50%;
  opacity: 1 !important;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border:1px solid; */
  /* border-radius: 50px; */
}

.media-carousel.owl-carousel .owl-nav button.owl-prev {
  left: 0%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.media-carousel.owl-carousel .owl-nav button.owl-next {
  right: 0%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.media-carousel.owl-carousel:hover .owl-nav button.owl-next {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.media-carousel.owl-carousel:hover .owl-nav button.owl-prev {
  left: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.media-carousel.owl-carousel:hover .owl-nav button.owl-next:hover,
.media-carousel.owl-carousel:hover .owl-nav button.owl-prev:hover {
  color: #1c5ba8;
  border: 1px solid transparent;
  background: 0 0;
}

.liverate-carousel .owl-carousel .owl-nav button.owl-next,
.liverate-carousel .owl-carousel .owl-nav button.owl-prev {
  color: #fff;
  font-size: 23px;
  position: absolute;
  top: -25%;
  opacity: 1;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin-top: -20px;
}

@-moz-document url-prefix() {
  .liverate-carousel .owl-carousel .owl-nav button.owl-next,
  .liverate-carousel .owl-carousel .owl-nav button.owl-prev {
    top: -16%;
  }
  .live-f-rate .row1 .col1slide .row1 {
    height: 100px;
  }
}

.liverate-carousel .owl-carousel .owl-nav button.owl-prev {
  right: 5%;
}

.liverate-carousel .owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.liverate-carousel .owl-carousel:hover .owl-nav button.owl-next:hover,
.liverate-carousel .owl-carousel:hover .owl-nav button.owl-prev:hover {
  color: #ff8c0f;
  border: 1px solid #003346;
  background: 0 0;
}

.liverate-carousel .owl-carousel .active img {
  height: 300px;
  margin: 2rem 0 0;
  opacity: 0.8;
}

.liverate-carousel .owl-carousel .center {
  z-index: 1;
  transition: transform 1s;
}

.liverate-carousel .owl-carousel .center img {
  height: 350px;
  margin: 0;
  opacity: 1;
  transition: transform 1s;
}

.liverate-carousel .owl-carousel .center img:hover {
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.media-outer .item .media-row {
  background: #fff;
  border-radius: 10px;
  margin: 0;
  bottom: 0;
  position: relative;
}

.media-outer .item .media-row .media-col1 {
  padding: 0.5rem 0;
  border-bottom: 1px solid #adb4c4;
  text-align: center;
}

.media-outer .item .media-row .media-col2 p {
  color: #222;
  text-align: center;
  font: 600 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.5rem;
  margin: 0;
}

.media-outer .item .media-row .media-col4 p {
  color: #454545;
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.5rem;
  margin: 0;
}

.media-outer .item .media-row .media-col4 h6 {
  font: 600 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.5rem;
  margin: 0;
  text-align: right;
}

.media-carousel.owl-carousel .active {
  margin: 5rem 0 0;
  opacity: 0.8;
}

.media-carousel.owl-carousel .center .testi-child-top {
  background-color: #1b5da1 !important;
}
.media-carousel.owl-carousel .center .testi-child-top p {
  color: white;
}
.media-carousel.owl-carousel .center .testi-icon i {
  color: #e1eaf9;
}

.media-carousel.owl-carousel .active .media-row .media-col1 {
  text-align: center;
  width: 100%;
}

.media-carousel.owl-carousel .active .media-row .media-col1 img {
  width: 90%;
  margin: 0 auto;
}

.dhi-testi .owl-theme .owl-dots .owl-dot {
  margin-top: 0px !important;
}
.dhi-testi button.owl-dot.active span {
  width: 30px !important;
  background: #1b5da1 !important;
}

.media-carousel.owl-carousel .center {
  width: 400px;
  margin: 1rem 0;
  opacity: 1;
  transition: transform 1s;
  z-index: 1;
  bottom: 0;
  -ms-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

/* .media-carousel.owl-carousel .center .media-row {
        height: 320px
    } */

.media-carousel.owl-carousel .center .media-row .media-col1 {
  text-align: center;
  width: 100%;
}

.media-carousel.owl-carousel .center .media-row .media-col1 img {
  width: 80%;
  margin: 0 auto;
}

.free-outer {
  overflow: hidden;
  padding: 2rem 0;
}

.free-outer h2 {
  color: #1c5ba8;
  font: 400 1.8rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.6rem;
  text-align: center;
}

.free-outer p {
  text-align: center;
  color: #000;
  font: 500 1.2rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.6rem;
}

.free-outer button[type="submit"] {
  font: 400 1.2rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}

.happy-client {
  padding: 0 0 2rem;
}

.happy-client .owl-carousel.owl-drag .owl-item {
  left: -1px;
}

.happy-client .owl-theme .owl-dots .owl-dot.active span,
.happy-client .owl-theme .owl-dots .owl-dot:hover span {
  background: #1b5da1;
}

.footer-nav h4 {
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 0 0 0.5rem;
  margin: 0;
  text-transform: uppercase;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
}

.footer-nav ul li {
  list-style: none;
  display: block;
  color: #fff;
  font: 400 0.845rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.8rem;
}

.mfe-r-border {
  border-right: 1px solid #4f4e4e;
}

.mfe-l-border {
  border-left: 1px solid #4f4e4e;
}

.footer-nav ul li a {
  color: #fff;
}

.footer-nav ul li a:hover {
  color: #ff7043;
}

.footer-nav ul li address {
  font: 400 0.86rem/2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.footer-nav ul li p {
  margin: 0;
  padding: 0;
  font: 400 0.74rem/1.7rem Roboto, Arial, Helvetica, sans-serif;
}

.schedule-sec button[type="button"] {
  background: #41c5f2;
  color: #fff;
  border: 1px solid #fff;
  margin: 0.5rem 0 0;
}

.schedule-sec button[type="button"]:hover {
  background: #1a5aa8;
  color: #fff;
  border: 1px solid #fff;
}

.schedule-sec .btn-secondary:not(:disabled):not(.disabled):active {
  background: #1a5aa8;
  color: #fff;
  border: 1px solid #fff;
}

.footer-left-icon ul {
  margin: 0;
  padding: 0;
}

.footer-left-icon ul li {
  list-style: none;
  display: inline-block;
  margin: 0 0.2rem 0 0;
  width: 48%;
}

.footer-pad {
  overflow: hidden;
  padding: 2rem 0;
}

.footer-r-nav ul {
  margin: 0.2rem 0;
  padding: 0;
}

.footer-r-nav ul li {
  list-style: none;
  margin: 0 0.35rem;
  display: inline-block;
  color: #222;
  font: 400 0.85rem/2rem Roboto, Arial, Helvetica, sans-serif;
}

.footer-r-nav ul li a {
  color: #222;
}

.footer-r-nav ul li a:hover {
  color: #1c5ba8;
}

.border-f-top {
  border-top: 1px solid #c2c2c2;
}

.border-f-top p {
  margin: 0;
  color: #c2c2c2;
  padding: 2rem 0 0;
}

.foo-right-add li a span i {
  margin: 0 0.2rem;
  font-size: 1.8rem;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.foo-right-add li a span i:hover {
  -webkit-transform: translate(0, -4px);
  -ms-transform: translate(0, -4px);
  transform: translate(0, -4px);
}

.foo-right-add li p {
  color: #fff;
}

.footer-nav p {
  color: #fff;
}

.get-in-touch {
  position: relative;
}

.footer-social li a span i {
  font-size: 1.8rem;
  margin: 0 0.2rem;
}

.footer-social {
  display: none;
}

.f-se-row {
  position: absolute;
  top: 0;
  right: -110px;
}

.container-inner-h {
  margin: 0;
  width: 100%;
}

.container-inner {
  margin: 0 0 0;
  width: 100%;
}

.breadcrumb-row ol {
  margin: 0;
}

.breadcrumb {
  background: rgba(0, 0, 0, 0);
  padding: 1rem 0;
}

.breadcrumb > li {
  display: inline-block;
  text-transform: capitalize;
}

.breadcrumb a {
  color: #2196f3;
}

.breadcrumb > .active {
  color: #777;
}

.breadcrumb > li + li::before {
  content: ">";
  padding: 0 0.7rem;
}

.navbar-nav {
  float: right;
  margin: 1rem 0;
  display: block;
}

.navbar-nav > li {
  float: left;
}

.nav > li {
  position: relative;
  display: inline-block;
}

.active-nav {
  border-bottom: solid 2px #2196f3;
}

.nav-tab .navbar-nav > li > a {
  margin: 0 20px 0 0;
  color: #656d78;
}

.main-content {
  margin: 0 0;
  font: 400 1rem/2rem Roboto, Arial, Helvetica, sans-serif;
}

.main-content p {
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1.5rem;
}

.main-content h1 {
  color: #1c5ba8;
  font: 400 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
  padding: 0 0 0.8rem;
  text-align: left;
  position: relative;
}

.main-content h1::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.main-content h2 {
  color: #1c5ba8;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
  padding: 0 0 0.8rem;
  text-align: left;
  position: relative;
}

.main-content h2::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.inner-ne-secction h1 {
  color: #1c5ba8;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 1rem;
  padding: 0 0 0.8rem;
  text-align: left;
  position: relative;
}

.inner-ne-secction h1::before {
  /*    border: 1px solid #1a58a7;
    bottom: 5px;
    content: "";
    left: 0;
    margin: 0;
    position: absolute;
    width: 3rem;
    right: 0*/
}

.right-row {
  width: 100%;
  overflow: hidden;
}

.inner-io-head h4 {
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  text-align: left;
  position: relative;
}

.inner-io-head h4::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.inner-head h4 {
  font: 400 1.1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  margin: 0 0 0;
  padding: 0 0 1rem;
  text-align: left;
  position: relative;
}

/* .inner-head h4::before {
    border: 1px solid #1a58a7;
    bottom: 5px;
    content: "";
    left: 0;
    margin: 0;
    position: absolute;
    width: 3rem;
    right: 0
} */

.inner-head h3 {
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  margin: 0 0 0;
  padding: 0 0 1rem;
  text-align: left;
  position: relative;
}

.inner-head h3::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.inner-r-video {
  width: 99.8%;
  font-size: 0;
  overflow: hidden;
  margin: 1rem 0 0;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.125);
}

.inner-r-video iframe {
  height: 400px;
}

.inner-rh-video {
  width: 99.8%;
  overflow: hidden;
  margin: 1rem 0 0;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.125);
}

.inner-rh-video iframe {
  height: 203px;
}

.inner-rh-video .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.inner-rh-video .owl-theme .owl-dots .owl-dot.active span,
.inner-rh-video .owl-theme .owl-dots .owl-dot:hover span {
  background: #00dfcc;
}

.r-row {
  width: 100%;
  overflow: hidden;
  margin: 0 0 2rem;
}

.re-service-row {
  border: 1px solid rgba(0, 0, 0, 0.125);
  overflow: hidden;
  margin: 1rem 0 0;
  border-radius: 5px;
}

.re-service-row ul {
  margin: 0;
  padding: 0;
}

.re-service-row ul li {
  display: block;
  list-style: none;
  border-bottom: 1px solid #ecebeb;
  font: 500 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  padding: 0.6rem;
}

.re-service-row ul li:hover {
  background: #ecebeb;
  transition: 0.5s ease;
}

.re-service-row ul li img {
  float: left;
  width: 10%;
  height: 30px;
}

.re-service-row ul li span {
  padding: 0.5rem 0 0 1rem;
  float: left;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.re-service-row ul li:last-child {
  border-bottom: 1px solid transparent;
}

.re-service-row ul li a {
  color: #1c5ba8;
  overflow: hidden;
  display: block;
}

.offer-row {
  width: 100%;
  margin: 1rem 0 0;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.offer-inner-row {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer-cur {
  width: 100%;
  overflow: hidden;
}

.offer-cur ul {
  margin: 0;
  padding: 0;
}

.offer-cur ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-cur ul li a {
  width: 100%;
}

.offer-cur ul li p {
  color: #000;
}

.offer-cur ul li h3 {
  color: #000;
  font: 500 7rem/7rem Roboto, Arial, Helvetica, sans-serif;
  position: relative;
}

.offer-cur .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.inner-rh-video .owl-theme .owl-dots .owl-dot:hover span,
.offer-cur .owl-theme .owl-dots .owl-dot.active span {
  background: #00dfcc;
}

.offer-cur .owl-carousel.owl-drag .owl-item {
  left: -1px;
}

.offer-cur ul li h3::after {
  content: "%";
  font-size: 4rem;
}

.offer-cur ul li h5 {
  color: #283579;
  text-transform: uppercase;
  padding: 1rem 0 1.5rem;
}

.how-work {
  width: 100%;
  overflow: hidden;
  margin: 0 0 2rem;
}

.faq-block {
  width: 100%;
  overflow: hidden;
  margin: 1rem 0 2rem;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.faq-block .btn-link {
  color: #454545;
}

.faq-block .btn-link:hover {
  color: #2196f3;
  text-decoration: none;
}

.faq-block .btn {
  padding: 0 0.75rem;
}

.faq-block-all {
  width: 100%;
  overflow: hidden;
  margin: 0 0 2rem;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.total-amount {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.total-r1-amount {
  float: left;
  width: 80%;
  background: #0097de;
  color: #fff;
  padding: 0.7rem 1rem;
  font: 400 1.2rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.total-r2-amount {
  float: left;
  width: 20%;
  background: #013857;
  color: #fff;
  padding: 0.7rem 1rem;
  font: 400 1.2rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.login-popup button[type="submit"] {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.4rem 1.5rem 0.6rem;
}

.login-popup {
  position: relative;
}

.login-popup .modal-content {
  position: relative;
  border: 1px solid #1858a2;
}

.login-popup .modal-dialog {
  max-width: 800px;
}

.login-popup .login-row {
  border-left: 1px solid #1958a7;
  min-height: 400px;
  padding: 1.2rem 1rem;
}

.login-popup .login-row ul {
  margin: 0 0 1rem;
}

.login-popup .modal-header {
  border-bottom: 1px solid #1958a7;
}

.login-popup .modal-body .close {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
  color: #1c59aa;
  opacity: 1;
}

.login-popup .login-row .nav-tabs .nav-link.active {
  border-color: transparent transparent #3fc7f9;
  color: #222;
}

.login-popup .login-row .nav-tabs .nav-link:focus,
.login-popup .login-row .nav-tabs .nav-link:hover {
  border-color: transparent transparent #3fc7f9;
}

.login-popup .login-row .nav-tabs {
  border-bottom: 1px solid transparent;
}

.login-popup .login-row .nav-link {
  padding: 0.5rem 0;
  margin: 0 3rem 0 0;
  font: 600 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #41c5f5;
}

.login-popup .login-row h3 {
  text-transform: uppercase;
  color: #454545;
  font-size: 1.2rem;
  font: 600 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.login-popup .login-row p {
  font: 400 0.7rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
}

.login-popup .login-row p a {
  color: #44c9f6;
  font-size: 0.8rem;
}

.login-popup .login-row h6 {
  text-transform: uppercase;
  color: #454545;
  font-size: 1rem;
  padding: 0.5rem;
}

.login-popup .login-row h4 {
  font: 600 0.89rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
}

.login-popup .login-row p i {
  margin: 0 0 0 0.5rem;
}

.login-tsp {
  margin-top: 1.5rem;
}

.login-row2 .form-check .form-check-label {
  font-size: 0.8rem;
}

.al-right {
  text-align: right;
}

.t-conditions {
  display: none;
}

.file-upload {
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0.4rem;
  color: #1b59a6;
  width: 100%;
  text-align: right;
}
.file-upload span i {
  margin-right: 10px;
}

.file-upload input.upload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}

.faq-mfe .card-header {
  background: rgba(245, 250, 250);
}

.faq-mfe .card-header h5 a {
  font: 400 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  cursor: pointer;
  display: block;
}

.form-top-breadcrumb .active {
  color: #0097de;
}

.form-top-breadcrumb .active::before {
  border: 1px solid #0097de;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  color: #0097de;
  right: 0;
}

.form-top-breadcrumb span i {
  color: #009ee7;
}

.login-popup-submit {
  position: relative;
  text-align: center;
}

.login-popup-submit .modal-dialog {
  max-width: 400px;
}

.login-popup-submit .modal-content {
  position: relative;
  border: 1px solid #1858a2;
}

.login-popup-submit button[type="submit"] {
  padding: 0.68rem 1.8rem;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.login-popup-submit .modal-header {
  border-bottom: 1px solid #1958a7;
}

.login-popup-submit .modal-body .close {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
  color: #1c59aa;
  opacity: 1;
}

.login-popup-submit .modal-content h3 {
  margin: 2rem 0 1.5rem;
  color: #454545;
  font: 500 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
}

.login-popup-submit .modal-content p {
  margin: 0 0 1.8rem;
  font-size: 1rem;
}

.support-mfe {
  border: 1px solid #003956;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin: 0 0 1.5rem;
  overflow: hidden;
}

.support-o-mfe {
  width: auto;
  margin: 0 2%;
}

.support-o-mfe a {
  display: block;
  border: 1px solid #464646;
  border-radius: 10px;
}

.support-o-mfe a:hover {
  border: 1px solid #009de0;
  border-radius: 10px;
}

.support-o-email {
  border: 1px solid #464646;
  border-radius: 10px;
}

.support-row1-mfe {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #f56e5b;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.yhead {
  background: #f0b503;
}

.bhead {
  background: #009de0;
}

.ghead {
  background: #7abd22;
}

.support-row2-mfe img {
  margin: 2rem 0;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.support-row2-mfe:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.support-row1-mfe h4 {
  color: #fff;
  text-transform: uppercase;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.8rem;
}

.support-row3-mfe h3 {
  text-align: center;
  font: 400 3rem/3rem Roboto, Arial, Helvetica, sans-serif;
  color: #094f71;
  text-transform: uppercase;
}

.support-row3-mfe h6 {
  text-align: center;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  margin: 0 0 1rem;
  padding: 0 0;
  text-transform: uppercase;
}

.support-row2-mfe {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #fafafa;
  text-align: center;
}

.support-row3-mfe {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0.3rem;
  background: #fff;
  border-radius: 0 0 10px 10px;
  min-height: 140px;
}

.support-row3-mfe p {
  color: #454545;
  text-align: center;
  font: 300 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.2rem;
}

.support-row3-mfe p a {
  display: inline-block;
  border: 1px solid transparent;
}

.support-row3-mfe p a:hover {
  border: 1px solid transparent;
}

.support-bg {
  background: #f8f8f8;
  padding: 2rem 0;
  margin: 0 0 3rem;
}

.pop-logo img {
  margin: 6.5rem 0 0;
}

.total-s-price h6 {
  color: #ff8300;
  font: 300 1.6rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0;
}

.total-s-price h6 span i {
  font-size: 1rem;
  font-weight: 200;
}

.add-deal {
  position: relative;
  width: 100%;
}

.add-deal h3 {
  font: 400 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #2165a4;
  margin: 0 0 0;
}

.add-deal h3 a {
  color: #262626;
  background: #fc9f97;
  padding: 0.3rem 0.5rem;
  border-radius: 0.25rem;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #fe796e;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.add-deal h3 a:hover {
  background: #fb6558;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
}

.add-a-deal h3 {
  margin: 0;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #2165a4;
}

.add-f-deal {
  border: 1px solid #003956;
  border-radius: 10px;
  margin: 0 0 2rem;
  padding: 0;
}

.deallist-head {
  background: #003346;
  border-radius: 10px 10px 0 0;
  padding: 1rem;
  overflow: hidden;
}

.deallist-row1 {
  overflow: hidden;
  margin: 1rem;
  border-bottom: 1px solid #003346;
}

.deallist-row2 {
  overflow: hidden;
  margin: 0 0 1rem;
}

.deallist-head .search-bar {
  width: 40%;
  float: right;
}

.deallist-head .search-bar button[type="submit"] {
  position: absolute;
  background: 0 0;
  color: #1c5ba8;
  right: 42px;
  top: 22px;
  cursor: pointer;
}

.deal-b-list {
  overflow: hidden;
  width: 100%;
}

.deal-b-list button[type="submit"] {
  color: #fff;
}

.deal-b-list button[type="submit"] i {
  margin: 0 0.5rem 0 0;
}

.deal-b-list .pro-button {
  float: right;
  margin: 0 0.1rem;
}

.deallist-row1 h6 {
  margin: 1rem 0 0 0;
  padding: 0;
  color: #003346;
}

.data-f-list {
  margin: 0 1rem;
  overflow: hidden;
}

.data-f-list nav {
  float: right;
}

.data-f-list ul {
  margin: 2rem 0;
}

.data-f-list ul li {
  margin: 0 0.1rem;
}

.data-f-list ul li a {
  border-radius: 5px;
  padding: 0.5rem 1rem;
  color: #454545;
}

.data-f-list ul li a .gray-color {
  color: #454545;
}

.data-f-list ul li a.active {
  border: 1px solid #1c59aa;
  color: #1c59aa;
}

.datalist-tran {
  border: 1px solid #e6e6e6;
  overflow: hidden;
  border-radius: 5px;
  margin: 1rem 0 0;
}

.tran-row2 {
  margin: 0;
  font-size: 0.8rem;
  background: #a8ff78;
  background: -webkit-linear-gradient(to right, #06b06d 0, #d2d2d2 40%);
  background: linear-gradient(to right, #06b06d 0, #d2d2d2 40%);
  padding: 0 1% 0.1rem;
  color: #000;
}

.tran-row3 {
  margin: 0;
  font-size: 0.8rem;
  background: #a8ff78;
  background: -webkit-linear-gradient(to right, #06b06d 0, #d2d2d2 40%);
  background: linear-gradient(to right, #06b06d 0, #d2d2d2 90%);
  padding: 0 1% 0.1rem;
  color: #000;
}

.tran-row4 {
  margin: 0;
  font-size: 0.8rem;
  background: #a8ff78;
  background: -webkit-linear-gradient(to right, #06b06d 0, #d2d2d2 40%);
  background: linear-gradient(to right, #06b06d 0, #06b06d 100%);
  padding: 0 1% 0.1rem;
  color: #000;
}

.datalist-gray-bg {
  background: #f5f3f4;
}

.tran-row2 .init-trans {
  color: #795548;
}

.tran-row2 .init-trans span {
  color: #fff;
}

.tran-row2 .closed-tran {
  font-size: 0.8rem;
}

.tran-row2 .closed-tran span {
  color: #fff;
}

.tran-row1 {
  display: flex;
  margin: 0;
}

.tran-row1 .tran-col-row1 {
  width: 10%;
  float: left;
  text-align: center;
}

.tran-row1 .tran-col-row2 {
  border-left: 1px solid #ccc;
  width: 90%;
  float: left;
  padding: 0 1%;
}

.tran-d1-row1 {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding: 0.5rem 0 0.3rem;
}

.tran-d1-row1 h6 {
  color: #454545;
  font: 600 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.3rem 0 0;
}

.tran-d1-row1 .tran-icon i {
  margin: 0 0.3rem;
}

.tran-d1-row1 .tran-icon span {
  position: relative;
}

.tran-d1-row1 .tran-icon span b {
  top: -7px;
  background: #ec3702;
  color: #fff;
  font: 400 0.6rem/0.5rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  padding: 0.2rem;
  right: -2px;
}

.tran-d1-row1 strong {
  display: none;
}

.tran-d1-row1 .tran-icon .fa-bell-o {
  transform: rotate(-35deg);
}

.tran-d1-row1 i {
  color: #1c5ba8;
}

.tran-d1-row2 {
  width: 100%;
  overflow: hidden;
}

.tran-d1-row3 {
  width: 100%;
  overflow: hidden;
  margin: 0 0 0.3rem;
}

.tran-d1-row3 i,
.tran-d1-row3 span {
  color: #1b5ca9;
  font-size: 0.8rem;
}

.datalist {
  margin: 0;
}

.datalist .accordion .card-header:after {
  font-family: FontAwesome;
  content: "\f068";
  float: right;
  color: #fff;
}

.datalist .accordion .card-header.collapsed:after {
  content: "\f067";
  color: #fff;
}

.col-check {
  float: left;
  margin: -0.1rem 0 0 1rem;
}

.col-check .custom-control-label::before {
  border: 1px solid #747577;
  background: #fff;
}

.datalist .card-header {
  background: #009ee7;
  margin: 0 0 0.4rem;
  width: 100%;
  cursor: pointer;
  padding: 0.75rem 0.75rem 0.3rem;
}

.datalist .col-amount {
  color: #fff;
  font: 400 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0 10px;
}

.datalist .col-amount strong {
  font: 300 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #fff;
}

.datalist .col-amount span {
  color: #003346;
  font: 300 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
}

.datalist .col-date {
  color: #fff;
  font: 300 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.datalist .col-date span {
  display: inline-block;
  margin: 0 1rem;
}

.datalist .card-body-row1 {
  background: #009ee7;
}

.datalist .card-body {
  padding: 0;
  margin: 0 0;
}

.datalist .card-body .card-body-row1 {
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

.datalist .card-body .card-body-row1 a {
  color: #fff;
}

.datalist .card-body .card-body-row1 i {
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.datalist .card-body .card-body-row1 form {
  display: inline-block;
}

.datalist .card-body .card-body-row1 form input[type="file"] {
  position: absolute;
  opacity: 0;
  overflow: hidden;
  width: 1.5rem;
  z-index: 1;
}

.datalist .card-body .card-body-row1 form label {
  cursor: pointer;
  display: inline-block;
}

.datalist .card-body .card-action-row {
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background: #009ee7;
}

.datalist .card-body .card-action-row i {
  color: #f72828;
  display: inline-block;
  margin: 0 0 0 0.5rem;
}

.datalist .card-body .card-action-row a {
  color: #fff;
}

.datalist .card-body .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 1);
}

.datalist .card-body .table-striped tbody tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.datalist .card-title {
  margin: 0;
  width: 98%;
}

.datalist .card-header .card-header-tpo-main {
  position: relative;
}

.only-hl-left .col-check1 {
  padding: 0 2rem 0 1rem;
}

.datalist .col-check1 {
  padding: 0 1.25rem 0 0;
}

.datalist .col-check {
  position: absolute;
  margin: 0.7rem 1rem;
}

.drop-show {
  float: left;
  width: 50%;
}

.drop-show .form-control {
  width: 15%;
}

.drop-search {
  float: left;
  width: 50%;
}

.success {
  color: #28a745;
}

.primary {
  color: #1b5fad;
}

.bd-example .table td span {
  display: inline-block;
  padding: 0;
  float: right;
}

.chart-outer {
  text-align: center;
}

.chart-outer .modal-body .alert-icon i {
  margin: 1rem 0 0;
  font-size: 3rem;
  color: #1c5ba8;
}

.chart-outer .modal-body .close {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
  color: #1c59aa;
  opacity: 1;
}

.chart-outer .modal-content {
  position: relative;
  border: 1px solid #1858a2;
}

.chart-outer p {
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.sahre-outer {
  padding: 2rem 0 0;
}

.history-social ul {
  margin: 0;
}

.history-social ul li {
  text-align: left;
  font-size: 1.5rem;
}

.history-social ul li b {
  font-size: 1rem;
}

.history-social ul li a {
  color: #009ee7;
}

.placeorder {
  position: relative;
}

.placeorder h5 {
  color: #033b52;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.7rem;
  padding: 0 0 0.7rem;
  border-bottom: 1px solid #033b52;
}

.placeorder h5 span {
  position: absolute;
  right: 10px;
}

.email-row p {
  margin: 0;
  color: #1c5ba8;
}

.show-record {
  overflow: hidden;
  background: #f6f6f6;
  margin: 0 -15px 1rem -15px;
  padding: 2rem 0;
}

.add-h-border {
  border: 1px solid #003956;
  border-radius: 10px;
  background: #fff;
  padding: 1rem;
}

.border-b-only {
  border-bottom: 1px solid #0a3957;
  padding: 0 0 0.8rem;
  margin: 0 0 1rem;
}

.only-alert-head {
  color: #033b52;
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
}

.only-i-alert i {
  color: #1a59a6;
  margin: 0 0 0 1rem;
  font-size: 1.5rem;
}

.only-alert-head i {
  color: #1a59a6;
  margin: 0 1rem 0 0;
  font-size: 1.1rem;
}

.only-hl-left {
  float: left;
  width: 80%;
}

.only-hl-right {
  float: left;
  width: 20%;
  padding: 0 1% 0 0;
}

.cus-check {
  position: relative;
}

.cus-check [type="checkbox"]:checked,
.cus-check [type="checkbox"]:not(:checked) {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-check-input[type="checkbox"] + label,
label.btn input[type="checkbox"] + label {
  position: relative;
  padding-right: 0.5rem;
  cursor: pointer;
  display: inline-block;
  height: 1rem;
  line-height: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #1c5ba8;
}

.form-check-input[type="checkbox"] + label:before,
.form-check-input[type="checkbox"]:not(.filled-in) + label:after,
label.btn input[type="checkbox"] + label:before,
label.btn input[type="checkbox"]:not(.filled-in) + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  z-index: 0;
  border: 2px solid #8a8a8a;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  margin-top: 3px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.form-check-input[type="checkbox"]:not(.filled-in) + label:after,
label.btn input[type="checkbox"]:not(.filled-in) + label:after {
  border: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.form-check-input[type="checkbox"]:checked + label:before,
label.btn input[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -7px;
  width: 12px;
  height: 1.375rem;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #4285f4;
  border-bottom: 2px solid #4285f4;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.cus-check span {
  display: inline-block;
  color: #1c5ba8;
}

.call-but a {
  color: #1c5ba8;
}

.call-but a i {
  margin: 0 0.5rem 0 0;
}

.col-flex1 .col {
  padding-right: 10px;
  padding-left: 0;
}

.col-flex1 .call-but {
  padding-left: 15px;
}

.col-flex1 .cus-check {
  padding-left: 15px;
}

.sup-sign ul {
  margin: 0;
}

.sup-sign ul li {
  display: inline-block;
}

.sup-sign ul li span {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 1rem 1rem 0 1rem;
}

.sup-sign ul li span.red-box {
  background: #ed0707;
  border-radius: 100%;
}

.sup-sign ul li span.yellow-box {
  background: #fb0;
  border-radius: 100%;
}

.sup-sign ul li span.green-box {
  background: #466b01;
  border-radius: 100%;
}

.sup-sign ul li span.org-box {
  background: #f25022;
  border-radius: 100%;
}

.red-brder {
  border-left: 5px solid #ed0707;
}

.red-txt {
  color: #ed0707;
}

.red-txt1 {
  color: #ff745d;
}

.add-s-border {
  border: 1px solid #003956;
  border-radius: 10px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.sup-price-head {
  background: #009ee7;
  border-radius: 10px 10px 0 0;
}

.sup-price-head h3 {
  color: #fff;
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.75rem;
}

.left-o-sec {
  width: 100%;
  overflow: hidden;
}

.left-o-sec-head {
  background: #4fc2f8;
  overflow: hidden;
}

.left-o-sec-head h4 {
  color: #fff;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.75rem;
}

.left-o-cont {
  background: #fafafa;
}

.left-ol-cont {
  background: #fafafa;
  border-radius: 0 0 10px 10px;
}

.sup-cre-sec {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  margin: 0 0 0.5rem;
}

.sup-cre-sec a {
  width: 100%;
  display: flex;
}

.sup-cre-sec a:hover {
  background: #f8f9f9;
}

.sup-cre-sec .sup-crel-sec {
  float: left;
  width: 20%;
}

.sup-cre-sec .sup-crer-sec {
  float: left;
  border-left: 1px solid #dddd;
  padding: 0.5rem;
  width: 79%;
}

.sup-cre-sec .sup-crer-sec .row1 {
  width: 100%;
  overflow: hidden;
  margin: 0.8rem 0 0 0;
}

.sup-cre-sec .sup-crer-sec .row1 .col1 {
  float: left;
  width: 25%;
}

.sup-cre-sec .sup-crer-sec .row1 .col1 .sec1 {
  overflow: hidden;
  border-bottom: 1px solid #dddd;
}

.sup-cre-sec .sup-crer-sec .row1 .col1 .sec1 p {
  color: #1a5caa;
  margin: 0 0 5px;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 5px;
}

.sup-cre-sec .sup-crer-sec .row1 .col1 .sec2 {
  overflow: hidden;
}

.sup-cre-sec .sup-crer-sec .row1 .col1 .sec2 p {
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0 1rem;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 {
  float: left;
  width: 40%;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec1 {
  overflow: hidden;
  border-bottom: 1px solid #dddd;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec1 p {
  color: #1a5caa;
  margin: 0 0 5px;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 5px;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec1 p span {
  color: #41c5f2;
  font: 500 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec2 {
  overflow: hidden;
}
.sup-cre-sec .sup-crer-sec .row1 .col2 .sec2 span {
  display: inline-block;
  margin: 0.8rem 0 0;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 .sec2 span {
  display: inline-block;
  margin: 0.8rem 0 0;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec2 p {
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0 1rem;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec2 p span {
  display: inline-block;
  margin: 0 0 0 1rem;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crer-sec .row1 .col2 .sec2 p b {
  display: inline-block;
  margin: 0;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crer-sec .row1 .col1 .sec2 p b {
  display: inline-block;
  margin: 0;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 {
  float: left;
  width: 25%;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 .sec1 {
  overflow: hidden;
  border-bottom: 1px solid #dddd;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 .sec1 p {
  color: #1a5caa;
  margin: 0 0 5px;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 5px;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 .sec2 {
  overflow: hidden;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 .sec2 p {
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0 1rem;
}

.sup-cre-sec .sup-crer-sec .row1 .col3 .sec2 p span {
  display: inline-block;
  margin: 0 0 0 1rem;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 {
  float: left;
  width: 10%;
  text-align: right;
  color: #069a06;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 .sec1 {
  overflow: hidden;
  border-bottom: 1px solid #dddd;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 .sec1 p {
  color: #069a06;
  margin: 0 0 4px;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 .sec1 p b {
  color: #eed115;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 .sec2 {
  overflow: hidden;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 .sec2 p b {
  margin: 0.8rem 0 0;
  display: inline-block;
}

.sup-cre-sec .sup-crer-sec .row1 .col4 a {
  display: block;
}

.sup-cre-sec .sup-crer-sec .row2 {
  width: 100%;
  overflow: hidden;
}

.sup-cre-sec .sup-crer-sec .row2 .col1 {
  float: left;
  width: 70%;
}

.sup-cre-sec .sup-crer-sec .row2 .col1 button[type="submit"] {
  padding: 0.1rem 0.75rem 0.2rem;
  margin: 0 0.1rem;
}

.sup-cre-sec .sup-crer-sec .row2 .col1 .btn-secondary {
  border-color: transparent;
}

.sup-cre-sec .sup-crer-sec .row2 .col2 {
  float: left;
  width: 29%;
  text-align: left;
}

.sup-cre-sec .sup-crer-sec .row2 .col2 p {
  font: 600 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.5rem 0 0;
}

.sup-cre-sec .sup-crer-sec .row2 .col2 p span {
  color: #43c5f6;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.yellow-border {
  border-left: 3px solid #eecf14;
  border-radius: 0;
}

.green-border {
  border-left: 3px solid #7fba00;
  border-radius: 0;
}

.red-border {
  border-left: 3px solid #ec0809;
  border-radius: 0;
}

.pink-border {
  border-left: 3px solid #cb4fed;
  border-radius: 0;
}

.sup-cre-sec .sup-crel-sec .sup-crel-r1 {
  background: #ff8a00;
}

.sup-cre-sec .sup-crel-sec .sup-crel-r1 p {
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 0.3rem;
}

.sup-cre-sec .sup-crel-sec .sup-crel-r2 {
  text-align: center;
  padding: 0.75rem 0;
}

.sup-cre-sec .sup-crel-sec .sup-crel-lcbd {
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-cre-sec .sup-crel-sec .sup-crel-lcbd span {
  font: 400 1.2rem/2rem Roboto, Arial, Helvetica, sans-serif;
  display: block;
}

.sup-cre-sec .sup-crel-sec .sup-crel-r2p2 {
  padding: 0;
}

.sup-cre-sec .sup-crer-sec .row2 .col3 {
  width: 100%;
  text-align: right;
}

.sup-cre-sec .sup-crel-sec .sup-crel-r2 span {
  display: block;
  color: #27347a;
}

.chat-sup-sec {
  overflow: hidden;
  padding: 1rem;
}

.chat-user-sup-sec .card {
  border: 1px solid #65d6f8;
  padding: 1rem;
  position: relative;
}

.chat-user-sup-sec .card .card-val1 {
  position: relative;
}

.chat-user-sup-sec .card .card-val1 ul {
  margin: 0;
  padding: 0;
}

.chat-user-sup-sec .card .card-val1 ul li {
  display: inline-block;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 0.4rem 0;
}

.chat-user-sup-sec .card .card-val1 ul li:nth-child(1) {
  background: #1c5aa7;
  color: #fff;
  border: 1px solid #4054b5;
}

.chat-user-sup-sec .card .card-val1 ul li:nth-child(2) {
  background: #397dd0;
  color: #fff;
  border: 1px solid #4054b5;
}

.chat-user-sup-sec .card .card-val1 ul li:nth-child(3) {
  background: #659bd9;
  color: #fff;
  border: 1px solid #4054b5;
}

.chat-sup-rep .card .card-val1 ul {
  margin: 0;
  padding: 0;
}

.chat-sup-rep .card .card-val1 ul li {
  display: inline-block;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 0.4rem 0;
}

.chat-sup-rep .card .card-val1 ul li:nth-child(1) {
  background: #fff;
  color: #454545;
  border: 1px solid #cacaca;
  margin: 0 0.2rem 0 0;
}

.chat-sup-rep .card .card-val1 ul li:nth-child(2) {
  background: #fff;
  color: #454545;
  border: 1px solid #cacaca;
  margin: 0 0.2rem 0 0;
}

.chat-sup-rep .card .card-val1 ul li:nth-child(3) {
  background: #fff;
  color: #454545;
  border: 1px solid #cacaca;
}

.chat-user-sup-sec .card .card-val1 p {
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.chat-user-sup-sec .card .chat-user {
  position: absolute;
  top: -10px;
  left: -10px;
  right: auto;
}

.chat-user-sup-sec .card .chat-user span {
  display: inline-block;
  border: 1px solid #63d4f2;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 0 0;
  overflow: hidden;
}

.chat-sup-rep {
  width: 85%;
  float: right;
}

.chat-sup-rep .card .chat-user {
  position: absolute;
  top: -10px;
  right: -10px;
  left: auto;
}

.chat-user-sup-sec .card-block {
  text-align: right;
  color: #64d4fa;
  margin: 0.3rem 0 0;
}

.chat-user-sup-sec .card-block b {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #ff7043;
}

.chat-user-sup-sec .card-block ul {
  margin: 0;
  padding: 0;
}

.chat-user-sup-sec .card-block ul li {
  display: inline-block;
  line-height: 1rem;
}

.chat-user-sup-sec .card-block ul li:nth-child(1) a {
  color: #1b59a6;
  padding: 0 0.5rem 0 0;
}

.chat-user-sup-sec .card-block ul li:nth-child(2) a {
  color: #09b755;
  border-left: 1px solid #686868;
  padding: 0 0 0 0.5rem;
}

.chat-sup-form {
  overflow: hidden;
}

.sup-o-price {
  overflow: hidden;
  width: 100%;
}

.sup-o-price .row1 {
  overflow: hidden;
  width: 100%;
}

.sup-o-price .row1 .col1 {
  width: 50%;
  float: left;
  color: #1c5ba8;
}

.sup-o-price .row1 .col1 p {
  margin: 0;
  color: #1c5ba8;
  font: 500 1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row1 .col2 {
  width: 50%;
  float: left;
  text-align: right;
}

.sup-o-price .row1 .col2 p {
  margin: 0;
  color: #ff8a00;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.bd-example .table tr td {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row1 .col2 p span {
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row2 {
  overflow: hidden;
  width: 100%;
}

.sup-o-price .row2 .sec1 {
  overflow: hidden;
  width: auto;
  margin: 1rem;
  border-bottom: 1px solid #0097de;
}

.sup-o-price .row2 .sec1 .col1 {
  float: left;
  width: 50%;
}

.sup-o-price .row2 .sec1 .col2 {
  float: left;
  width: 50%;
  text-align: right;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row2 .sec1 .col2 p {
  color: #003854;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row2 .sec1 .col2 p span {
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row2 .sec1 .col2 p i {
  margin-right: 0;
}

.sup-o-price .row2 .sec1 .col3 {
  float: left;
  width: 60%;
  color: #1c5ba8;
  font: 500 0.69rem/0.69rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 1rem;
}

.sup-o-price .row2 .sec1 .col4 {
  float: left;
  width: 40%;
  text-align: right;
}

.sup-o-price .row2 .sec1 .col4 p {
  color: #003854;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-o-price .row3 {
  overflow: hidden;
  width: 100%;
}

.sup-de-price-head {
  overflow: hidden;
  width: 100%;
  background: #003346;
  border-radius: 10px 10px 0 0;
  padding: 0.75rem;
}

.sup-de-price-head .col1 {
  float: left;
  width: 25%;
}

.sup-de-price-head .col1 button[type="submit"] {
  background: #ff8703;
  padding: 0.2rem 0.75rem;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-de-price-head .col1 button[type="submit"] span {
  color: #b4f8d3;
}

.sup-de-price-head .col2 {
  float: left;
  width: 50%;
  text-align: center;
}

.sup-de-price-head .col2 p {
  color: #fff;
  margin: 0;
  font: 400 1.1rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-de-price-head .col3 {
  float: left;
  text-align: right;
  width: 24%;
  color: #fff;
}

.sup-de-price-head .col3 a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 0 0.9rem;
}

.sup-de-content {
  overflow: hidden;
  width: 100%;
  padding: 0.75rem;
}

.sup-de-content .col1 {
  float: left;
  width: 25%;
}

.sup-de-content .col1 h3 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
}

.sup-de-content .col1 h3 span {
  display: block;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #3c3c3c;
  margin: 0.7rem 0.3rem 0 0;
}

.sup-de-content .col2 {
  float: left;
  width: 25%;
}

.sup-de-content .col2 h3 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-de-content .col2 h3 span {
  display: block;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #3c3c3c;
  margin: 0.7rem 0.3rem 0 0;
}

.sup-de-content .col3 {
  float: left;
  width: 25%;
}

.sup-de-content .col3 h3 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-de-content .col3 h3 span {
  display: block;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #3c3c3c;
  margin: 0.7rem 0.3rem 0 0;
}

.sup-de-content .col4 {
  float: left;
  width: 24%;
}

.sup-de-content .col4 h3 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-de-content .col4 h3 span {
  display: block;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #3c3c3c;
  margin: 0.7rem 0.3rem 0 0;
}

.sun-price-tab {
  overflow: hidden;
  width: 100%;
}

.sun-price-tab nav {
  background: #094f71;
  border-radius: 10px 10px 0 0;
}

.sun-price-tab .nav-tabs {
  border-bottom: 1px solid transparent;
}

.sun-price-tab .nav-tabs .nav-link {
  border-radius: 0;
  color: #fff;
  border-right: 1px solid transparent;
  padding: 0.5rem 2rem;
  width: 33.3%;
}

.sun-price-tab .nav-tabs .nav-link:nth-child(1) {
  background: #031f4b;
}

.sun-price-tab .nav-tabs .nav-link:nth-child(2) {
  background: #035b96;
  border-radius: 10px 10px 0 0;
}

.sun-price-tab .nav-tabs .nav-link:nth-child(3) {
  background: #04396c;
  border-radius: 10px 10px 0 0;
}

.sun-price-tab .nav-tabs .nav-link:focus,
.sun-price-tab .nav-tabs .nav-link:hover {
  border: 1px solid transparent;
  color: #ff7043;
}

.sun-price-tab .nav-tabs .nav-link.active {
  background: #0097de;
  color: #fff;
  border-radius: 10px 10px 0 0;
  border: 1px solid transparent;
}

.sun-price-tab .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0);
}

.sun-price-tab .table-striped tbody tr:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.sun-price-tab .sun-term-row h4 {
  text-align: center;
  font-size: 1.1rem;
  padding: 0.6rem;
  border-bottom: 1px solid #ddd;
}

.sun-price-tab .sun-term-row ul li {
  padding: 0 0 0.5rem 1rem;
  margin: 0.2rem 0;
  font: 400 0.9rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-de-rec ul {
  margin: 0;
}

.sup-de-rec ul li {
  background: url(../images/chek-arrow.png) no-repeat left 0.5rem;
  padding: 0 0 0.5rem 1.5rem;
}

.sup-total-price {
  background: #0097de;
  overflow: hidden;
}

.sup-total-price .col1 {
  float: left;
  width: 45%;
  padding: 0.75rem;
}

.sup-total-price .col1 p {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
}

.sup-total-price .col2 {
  float: left;
  width: 30%;
  background: #37a1f9;
  padding: 0.75rem;
}

.sup-total-price .col2 p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
}

.sup-total-price .col2 p span {
  display: inline-block;
  margin: 0 0 0 1rem;
  font: 400 0.9rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-total-price .col3 {
  float: left;
  width: 25%;
  text-align: right;
  border-radius: 0 10px 10px 0;
  background: #013857;
  padding: 0.75rem;
}

.sup-total-price .col3 p {
  margin: 0;
  color: #fff;
  font: 400 1.2rem Roboto, Arial, Helvetica, sans-serif;
}
.sup-total-price .col3 p span {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.map-row {
  text-align: right;
}

.map-row ul {
  margin: 1rem 0 0;
}

.map-row ul li {
  display: inline-block;
  margin: 0 1.5rem 0 0;
  position: relative;
}

.map-row ul li b {
  background: #ff6161;
  color: #fff;
  font: 400 0.6rem/0.5rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0.2rem;
  position: absolute;
  top: -3px;
}

.map-row ul li:last-child {
  margin: 0;
  position: relative;
}

.map-row ul li span {
  color: #1b59a6;
  margin-right: 0.5rem;
}

.map-row ul li i {
  color: #1b59a6;
}

.buy-cart {
  position: relative;
  top: -4px;
}

.refresh-row {
  text-align: left;
  color: #f56e5b;
  margin-top: 1rem;
}

.refresh-row ul {
  margin: 0 0 2.5rem;
}

.refresh-row ul li {
  list-style: none;
}

.refresh-row ul li span {
  color: #1b59a6;
  margin-right: 0.5rem;
}

.refresh-row ul li small {
  color: #666;
  font: 500 0.75rem Roboto, Arial, Helvetica, sans-serif;
}

.refresh-row ul li small span {
  margin-right: 0;
}

.banner-fmc-bg {
  overflow: hidden;
  background: #dbf1fd;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
}

.ffmc-tab ul {
  margin: 0;
  position: relative;
}

.ffmc-tab ul li {
  float: left;
  width: 22.6%;
  margin: 0 3% 0 0;
  position: relative;
  list-style: none;
}

.ffmc-tab ul li:last-child {
  margin: 0;
}

.ffmc-tab ul li a {
  background: #1c5ca6;
  color: #fff;
  border-radius: 10px;
  display: block;
  padding: 0.8rem 0 0.8rem 5rem;
  text-transform: uppercase;
  font: 500 1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.ffmc-tab ul li a:hover {
  background: #25337a;
}

.ffmc-tab ul li a.active {
  background: #ff7043;
}

.ffmc-tab ul li a.activelive {
  background: #003346;
}

.ffmc-tab ul li i {
  background: #00a1f1;
  border-radius: 100%;
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.8rem 0.5rem;
  margin: -0.6rem;
}

.ffmc-tab ul li i img {
  vertical-align: middle;
  text-align: center;
  height: 45px;
  width: auto;
}

.inner-mfe-form {
  margin: 2rem 0;
  position: relative;
  z-index: 1;
  padding: 5px;
}

.inner-mfe-form::before {
  background: url(../images/round-1.png) no-repeat top left;
  position: absolute;
  content: "";
  height: 80px;
  width: 100%;
  background-size: 100% 100%;
  top: 0;
  left: 0;
}

.inner-mfe-form::after {
  background: url(../images/round-2.png) no-repeat top left;
  position: absolute;
  content: "";
  height: 60px;
  width: 100%;
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
}

.ff-amount {
  border-bottom: 1px solid #b2b2b2;
  margin: 1rem 0 1.4rem;
}

.ff-amount .form-group .bar {
  border-bottom: 1px solid transparent;
}

.ff-mt-amount {
  border-bottom: 1px solid #b2b2b2;
  margin: 0.5rem 0 1.4rem;
}

.ff-mt-amount .form-group .bar {
  border-bottom: 1px solid transparent;
}

.add-pro button[type="submit"] {
  border: 1px solid #003346;
  border-radius: 5px;
  color: #fff;
  background: url(../images/icons/add-icon.png) #1d5ca9 no-repeat top left;
  padding: 0.4rem 1rem 0.6rem 2rem;
}

.total-ff-ampunt {
  text-align: right;
  border-top: 1px dashed #214360;
  margin: 0 0 1.5rem;
}

.total-ff-ampunt p {
  margin: 0.6rem 0;
  color: #003346;
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
}

.book-order {
  text-align: right;
}

.total-ff-ampunt i {
  color: #ff8c0f;
  font-size: 1.5rem;
}

.total-ff-ampunt span {
  color: #ff8c0f;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.add-pro {
  margin: 0.45rem 0 0;
  text-align: right;
}

.buy-f-slider {
  margin: 2rem 0 0;
  overflow: hidden;
  background: #fff;
  /* border-radius: 10px 10px 0 0; */
  border-radius: 10px;
}

.buy-f-slider ul {
  margin: 0;
}

.buy-f-slider h5 {
  color: #1c5ca6;
  text-align: center;
  font: 500 1.2rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.add-p-order h3 button[type="submit"] {
  cursor: pointer;
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  padding: 0.375rem 0.75rem;
  border-radius: 5px;
}

.add-p-order h3 button[type="submit"]:hover {
  color: #fff;
  background-color: #6f7172;
  border-color: #545b62;
  padding: 0.375rem 0.75rem;
  transition: color 0.15s ease-in-out;
}
.buy-f-slider p {
  color: #1c5ca6;
  text-align: center;
  padding: 0.75rem 0;
  margin: 0;
  font: 500 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.buy-f-slider .owl-carousel .owl-item img {
  height: 200px;
}

.rate-box {
  text-align: right;
}

.rate-box p {
  margin: 0.39rem auto;
  border-bottom: 1px solid #b7b5b5;
}

.rate-box p span {
  background: #003346;
  color: #fff;
  display: inline-block;
  border-radius: 5px 5px 0 0;
  padding: 0.4rem 1.5rem;
  font: 500 1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-box p span i {
  color: #ff8c0f;
}

.inner-mfe-form .form-ff-outer {
  border-radius: 10px;
  position: relative;
  background: #fff;
  margin: 0 auto;
  padding: 4px 1px;
  z-index: 2;
}

.inner-mfe-form .form-ff-outer .ff-header {
  background: #009ee7;
  border-radius: 10px 10px 0 0;
  padding: 0.5rem 1.5rem;
  margin: 0 0 1.4rem;
}

.inner-mfe-form .form-ff-outer .ff-header ul {
  margin: 0;
  text-align: right;
}

.inner-mfe-form .form-ff-outer .ff-header ul li {
  display: inline-block;
}

.inner-mfe-form .form-ff-outer .ff-header ul li button[type="submit"] {
  background: #f56e5b;
  padding: 0.275rem 0.75rem;
  margin: 0 0.2rem;
}

.inner-mfe-form .form-ff-outer .ff-header ul li button[type="submit"]:hover {
  background: #1c5ba8;
}

.inner-mfe-form .form-ff-outer .ff-header ul li button[type="submit"].active {
  background: #1c5ba8;
  border: 1px solid #fff;
}

.inner-mfe-form .form-ff-outer .ff-header ul li a {
  background: #f56e5b;
  padding: 0.275rem 0.75rem;
  margin: 0 0.2rem;
  border-radius: 0.25rem;
  color: #fff;
  border: 1px solid #1f539e;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.inner-mfe-form .form-ff-outer .ff-header ul li a:hover {
  background: #1c5ba8;
  border: 1px solid #00d8c2;
}

.inner-mfe-form .form-ff-outer .ff-header .head-buy {
  color: #fff;
}

.inner-mfe-form .form-ff-outer .ff-header .head-buy h3 {
  margin: 0.3rem 0;
  padding: 0;
  font: 500 1.2rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.inner-mfe-form .form-ff-outer .main-form {
  padding: 0 1rem;
}

.live-f-rate {
  border: 1px solid #003346;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  margin: 3.5rem 0 2rem;
}

.live-f-rate .header {
  background: #003346;
  padding: 1rem;
  position: relative;
}

.live-ff-card {
  position: absolute;
  width: 99%;
  text-align: center;
  margin: 2rem 0 0;
  z-index: 1;
}

.live-ff-card button[type="submit"] {
  background: #1b59a6;
  border: 1px solid #fff;
  padding: 0.655rem 2rem;
}

.live-f-rate .header .rate-search {
  width: 25%;
  position: relative;
}

.rate-search label {
  position: absolute;
  right: 15px;
  top: 5px;
}

.rate-search label i {
  color: #1c5ba8;
}

.live-f-rate .header .rate-search #search-clear {
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 0;
  color: #b3b3b3;
}

.live-f-rate .header .rate-search .hide {
  display: none;
}

.live-f-rate .row1 {
  background: #fff;
  padding: 1rem 1rem;
}

.live-f-rate .row1 .col1fix {
  float: left;
  width: 15%;
}

.live-f-rate .row1 .col1fix .row1 {
  padding: 0 0 0.5rem;
  color: #1b59a6;
  border-bottom: 1px solid transparent;
  font: 600 0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.live-f-rate .row1 .col1fix .row1 i {
  color: #1c5ba8;
  margin: 0 0.2rem 0 0;
}

.live-f-rate .row1 .col1fix .row2 {
  padding: 0;
  color: #454545;
  border-bottom: 1px solid #979899;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.live-f-rate .row1 .col1fix .row3 {
  padding: 0;
  color: #454545;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.3rem 0;
}

.live-f-rate .row1 .col1fix .row3 i {
  color: #1c5ba8;
  margin: 0 0.2rem 0 0;
}

.live-f-rate .row1 .col1fix .row4 {
  padding: 0.55rem 0;
  color: #454545;
  border-bottom: 1px solid #979899;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
}

.live-f-rate .row1 .col1fix .row5 {
  padding: 0;
  color: #454545;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.3rem 0;
}

.live-f-rate .row1 .col1slide {
  float: left;
  width: 85%;
}

.live-f-rate .row1 .col1slide .row1 {
  padding: 0;
}

.live-f-rate .row1 .col1slide .row1 .col1 {
  padding: 0 0 0.5rem;
  color: #267aa4;
  border-bottom: 1px solid transparent;
  font: 600 0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.live-f-rate .row1 .col1slide .row1 .col2 {
  padding: 0;
  color: #66d3f8;
  font: 300 0.75rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.5rem 0 0.05rem;
}

.live-f-rate .row1 .col1slide .row1 .col2 a {
  color: #00a1f1;
  font: 300 0.75rem Roboto, Arial, Helvetica, sans-serif;
}

.live-f-rate .row1 .col1slide .row1 .col2 a i {
  color: #1759a6;
  display: none;
}

.live-f-rate .row1 .col1slide .row1 .col2 a:hover i {
  display: inline-block;
}

.live-f-rate .row1 .col1slide .row1 .col3 {
  padding: 0.54rem 0;
  color: #66d3f8;
  font: 300 0.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
  border-bottom: 1px solid #979899;
}

.live-f-rate .row1 .col1slide .row1 .col3 a {
  color: #00a1f1;
  font: 300 0.75rem Roboto, Arial, Helvetica, sans-serif;
}

.live-f-rate .row1 .col1slide .row1 .col3 a i {
  color: #1759a6;
  display: none;
}

.live-f-rate .row1 .col1slide .row1 .col3 a:hover i {
  display: inline-block;
}

.live-f-rate .row1 .col1slide .row1 .col4 {
  padding: 0.3rem 0;
  color: #66d3f8;
  font: 300 0.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
}

.live-f-rate .row1 .col1slide .row1 .col4 a {
  color: #00a1f1;
  font: 300 0.75rem Roboto, Arial, Helvetica, sans-serif;
}

.live-f-rate .row1 .col1slide .row1 .col4 a i {
  color: #1759a6;
  display: none;
}

.live-f-rate .row1 .col1slide .row1 .col4 a:hover i {
  display: inline-block;
}

#order-summary-tables {
  width: 100%;
}

#order-summary-tables table {
  border-collapse: separate;
  border-spacing: 0;
}

#order-summary-tables th {
  border: solid 1px #003346;
  border-style: none solid solid none;
  padding: 5px;
  font: 700 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

#order-summary-tables tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

#order-summary-tables tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

#order-summary-tables tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}

#order-summary-tables tr:last-child th:last-child {
  border-bottom-right-radius: 10px;
}

#order-summary-tables tr:first-child th {
  border-top-style: solid;
}

#order-summary-tables tr th:first-child {
  border-left-style: solid;
}

#order-summary-tables table tr td {
  padding: 5px;
  font: 400 0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  vertical-align: middle;
}

#order-summary-tables table tr td a {
  color: #003346;
  margin: 0 0.2rem;
}

#order-summary-tables table tr td p {
  color: #ff8c0f;
  margin: 0;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

#order-summary-tables table tr td h6 {
  color: #ff8c0f;
  font: 400 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.express-order button[type="submit"] {
  background: #1b59a6;
  border-radius: 5px;
  padding: 0.6rem 1.3rem;
  color: #fbaf5c;
}

.book-order button[type="submit"] {
  background: #1b59a6;
  border-radius: 5px;
  padding: 0.6rem 1.3rem;
  color: #fff;
}

.order-summary-mfe {
  position: relative;
}

.gridbuySell {
  display: none;
}

.buyforex .owl-theme .owl-dots .owl-dot.active span {
  background: #009ee7;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
}

.buyforex .owl-theme .owl-dots .owl-dot span {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  background: #1c5ca6;
}

.gridbuysee {
  display: none;
}

.red-icon {
  color: #dc3545;
}

.express-submit button[type="submit"] {
  background: #1b59a6;
  border-radius: 5px;
  padding: 0.6rem 2rem;
  color: #fff;
}

.login-popup .ex-order {
  border-left: 1px solid #1958a7;
  min-height: 325px;
  padding: 1.2rem 1rem;
}

.login-popup .ex-order h3 {
  color: #1b58a8;
  margin: 1.5rem 0 1rem;
  text-align: left;
  text-transform: capitalize;
  font: 400 1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.order-tab {
  overflow: hidden;
  border: 1px solid #65d6f8;
  background: #fff;
  border-radius: 10px;
}

.order-tab ul {
  margin: 0;
}

.order-tab ul li {
  display: inline-block;
  padding: 1.2rem 1rem;
}

.order-tab ul li a {
  color: #3c6cae;
  font: 500 1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.order-tab ul li a.active {
  color: #00ca8f;
}

.order-tab ul li a span i {
  color: #00a1f1;
}

.order-tab ul li a span {
  margin: 0 0.5rem 0 0;
  display: inline-block;
}

.order-tab ul li a .custom-checkbox .custom-control-label::before {
  border: 1px solid #3c6cae;
  background: #fff;
}

.order-tab ul li a .custom-control-label::before {
  top: 0.12rem;
}

.order-tab ul li span {
  color: #464543;
}

.form-top-outer {
  overflow: hidden;
  margin: 2rem 0 0;
}

.form-top-outer .form-top-breadcrumb {
  margin: 0 0 0;
}

.fmc-form-head {
  overflow: hidden;
  margin: 1rem 0;
}

.fmc-form-head .back-button a i {
  color: #fff;
  font-size: 1.3rem;
}

.fmc-form-head .back-button a {
  background: #3c6cae;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 0.4rem 0.8rem;
  border-radius: 100%;
}

.next-button {
  text-align: right;
}

.next-button ul {
  margin: 0;
}

.next-button ul li {
  display: inline-block;
  float: right;
  margin: 0 0 0 1rem;
}

.next-button ul li a {
  background: #3c6cae;
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 0.5rem 1rem;
  border-radius: 100%;
}

.next-button ul li a i {
  color: #fff;
  font-size: 2rem;
}

.next-button .save-button a {
  padding: 0.7rem 1rem;
}

.next-button .save-button a i {
  font-size: 1.5rem;
}

.order-de-form {
  overflow: hidden;
}

.user-f-rate {
  margin: 0.3rem -15px 2rem;
}

.user-f-rate p {
  color: #28327a;
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
}

.user-f-rate h3 {
  color: #3c6cae;
  text-align: right;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.user-f-rate h3 a {
  color: #3c6cae;
}

.user-f-rate h3 a:hover {
  color: #2a347b;
}

.mobile-view {
  display: none;
}

.user-result {
  overflow: hidden;
}

.order-sum {
  overflow: hidden;
  border: 1px solid #ededed;
  padding: 1rem;
}

.order-sum .row1 {
  width: 100%;
  overflow: hidden;
  display: flex;
  border-bottom: 1px solid #3cc0f0;
  padding: 0.5rem 0;
}

.order-sum .row1:last-child {
  border-bottom: 1px solid transparent;
}

.order-sum .row1 .col1 {
  width: 50%;
  float: left;
  font: 500 0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.order-sum .row1 .col2 {
  width: 50%;
  float: left;
  font: 500 0.9rem Roboto, Arial, Helvetica, sans-serif;
  text-align: right;
}

.order-sum .row1 .col2 i {
  color: #1b59a6;
}

.order-sum .header h4 {
  color: #1e58a2;
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
}

.order-button {
  text-align: right;
}

.order-button ul {
  margin: 0;
}

.order-button ul li {
  display: inline-block;
}

.order-user-tables table tbody tr td {
  border-bottom: 1px solid #3dbff0;
}

.order-button button[type="submit"] {
  padding: 0.375rem 2rem;
  margin: 0 0 0 0.5rem;
}

.pa-head h3 {
  color: #1e58a2;
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
}

.pa-head ul {
  margin: 0 0 1rem;
}

.pa-head ul li {
  display: inline-block;
  padding: 0 0 0.5rem 1rem;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.order-de-tab {
  overflow: hidden;
  margin: 0.5rem 0;
}

.order-de-tab ul li {
  display: block;
  margin: 0.5rem 0;
}

.order-de-tab ul li a {
  color: #65d6f8;
}

.order-de-tab ul li h6 {
  color: #1c5ca6;
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.9rem 0;
}

.order-de-delivery {
  overflow: hidden;
  padding: 1rem;
}

.order-button-de {
  margin: 1rem;
  text-align: right;
}

.order-button-de ul {
  margin: 0;
}

.order-button-de ul li {
  margin: 0 0.2rem;
  display: inline-block;
}

.order-button {
  margin: 1rem;
}

.order-de-tab-add {
  padding: 1rem;
}

.order-de-tab-add h4 {
  color: #1c5ca6;
  font: 500 1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.9rem 0;
}

.map-m {
  overflow: hidden;
  margin: 2rem 0 0;
}

.m-heading {
  display: none;
}

.buy-edit {
  overflow: hidden;
}

.buy-edit p {
  text-transform: uppercase;
  font: 700 0.8rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  margin: 0;
  padding: 0 0 1rem;
}

.buy-edit p span {
  display: block;
  text-transform: capitalize;
  font: 500 0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.buy-edit p b {
  color: #ff8c0f;
  font: 500 0.9rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: capitalize;
}

.buy-edit p b span {
  display: inline-block;
}

.buy-edit .bot-border {
  border-bottom: 1px solid #e7e5e6;
  margin: 0 0 1rem;
}

.buy-edit h3 {
  color: #454545;
}

.buy-edit h4 {
  color: #454545;
}

.buy-edit h3 i {
  color: #1a5ca8;
}

.buy-edit h4 i {
  color: #1a5ca8;
}

.file-f-upload p {
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.5rem 0;
  color: #283579;
}

.choose-f-file {
  background: #fff;
  color: #1d5ca9;
  position: relative;
  cursor: pointer;
}

.choose-f-file i {
  color: #1d5ca9;
}

.file-buy-upload .btn-secondary:hover {
  background: #eef5fc;
  color: #273478;
}

.choose-f-file span {
  cursor: pointer;
}

.choose-f-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.file-f-upload .bot-border {
  border-bottom: 1px solid #e7e5e6;
  margin: 0 0 1rem;
  padding: 0 0 0.3rem;
}

.buy-re-row ul {
  margin: 0;
  text-align: right;
}

.buy-re-row ul li {
  margin: 0 0.5rem;
  display: inline-block;
  color: #1b5dab;
}

.buy-re-row ul li a {
  color: #1b5dab;
}

.m-logo {
  display: none;
}

.pro-b-from {
  border-bottom: 1px solid #e7e5e5;
  position: relative;
  padding: 0 0 1.5rem;
  margin-bottom: 1rem;
}

.pro-from p {
  display: block;
  border-bottom: 1px solid #b7b5b5;
  position: relative;
  color: #454545;
  margin: 0;
  padding: 0;
}

.pro-from label {
  color: #454545;
  margin: 0;
  padding: 0;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.hide-desktop {
  display: none;
}

.pay-t-col .col-md-2 {
  width: 20%;
}

.pay-t-col .col-md-10 {
  width: 80%;
}

.mar-right {
  margin-left: 15px;
}

.custom-r-dropdown {
  margin: 0;
  padding: 0;
}

.taeb-switch {
  position: relative;
}

.taeb-switch:after {
  content: "";
  position: absolute;
  width: 50%;
  top: 0;
  transition: left 0.2s;
  background-color: #00adef;
  color: #fff;
  height: 100%;
  border-radius: 22px;
  z-index: 0;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06);
}

.taeb-switch.left:after {
  left: 0;
}

.taeb-switch.right:after {
  left: 50%;
}

.taeb-switch .taeb.active {
  color: #fff;
}

.text-center {
  text-align: center;
}

i {
  margin-right: 5px;
}

.wrapper {
  background-color: #fff;
  border-radius: 22px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  float: right;
  color: #000;
  border: 1px solid #ecebeb;
}

.wrapper .left #RealTime {
  color: #fff;
  background: url(../images/chk-rate.png) no-repeat;
  background-size: 25px;
  padding: 5px 25px 5px 50px;
  background-position: 12px 0;
}

.wrapper .left #Historical {
  color: #000;
}

.wrapper .right #RealTime {
  color: #000;
}

.wrapper .right #Historical {
  color: #fff;
  background: url(../images/chk-rate.png) no-repeat;
  background-size: 25px;
  padding: 5px 29px 5px 55px;
  background-position: 22px 0;
}

.rate-table {
  border: 1px solid #013856;
  border-radius: 10px;
}

.rate-m-table {
  border-radius: 10px;
}

.taeb-switch .taeb {
  display: inline-block;
  padding: 10px 32px;
  z-index: 1;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
  font-weight: 700;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
}

.rate-table thead {
  background: #0097de;
  color: #fff;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-table thead h4 {
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-table .table td,
.rate-table .table th {
  font: 300 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-m-sec {
  display: none;
}

.mob-show {
  display: none;
}

.rate-head {
  background: #003346;
  border-radius: 10px 10px 0 0;
  color: #fff;
  overflow: hidden;
  padding: 0.7rem 1rem;
}

.rate-head h4 {
  font: 300 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.rate-head a {
  color: #fff;
}

.rate-content {
  overflow: hidden;
  padding: 0.5rem 1rem;
}

.rate-content p {
  color: #000;
  padding: 0;
  margin: 0;
}

.rate-content h3 {
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-m-row2 {
  overflow: hidden;
  width: 100%;
  padding: 0 0;
  color: #fff;
  background: #008fdd;
  border-radius: 5px;
  margin: 1.5rem 0;
}

.rate-m-row2 .rate-m-row2-s1 {
  width: 50%;
  float: left;
  padding: 0.5rem;
}

.rate-m-row2 .rate-m-row2-s2 {
  width: 50%;
  float: left;
  background: #003658;
  padding: 0.5rem;
}

.rate-r-head {
  background: #0097de;
  border-radius: 10px 10px 0 0;
  color: #fff;
  overflow: hidden;
  padding: 0.7rem 1rem;
}

.rate-r-head h3 {
  font: 300 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.rate-r-content {
  overflow: hidden;
  padding: 0.5rem 1rem;
}

.rate-re-bottom {
  background: #0097de;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #003046;
  color: #fff;
}

.rate-l-re {
  background: #003957;
  text-align: right;
}

.rate-l-re p {
  margin: 0;
  padding: 0.8rem 1rem;
  color: #ff745d;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-l-ge {
  background: #003957;
  text-align: right;
}

.rate-l-ge p {
  margin: 0;
  padding: 0.8rem 1rem;
  color: #28a745;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-re-bottom h3 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.8rem 1rem;
}

.rate-r-ret p {
  color: #ed0707;
  font: 300 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-but-right button[type="submit"] {
  background: #003957;
  color: #fff;
  font: 300 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.6rem 1.2rem;
}

.submit-rate-but button[type="submit"] {
  margin: 0 0.5rem;
}

.green-txt {
  color: #28a745;
}

.rate-g-re p {
  margin: 0;
  padding: 0.8rem 1rem;
  color: #28a745;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.rate-g-ret p {
  color: #28a745;
  font: 300 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
}

.setalert-row {
  overflow: hidden;
  padding: 0 1rem 1rem;
}

.setalert-row .setalert-s1-row {
  overflow: hidden;
  text-align: center;
}

.inner-head h1 {
  font: 600 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  text-transform: capitalize;
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  text-align: left;
  position: relative;
  text-transform: uppercase;
}

.inner-head h1::before {
  border: 2px solid #1a58a7;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
  border-radius: 5px;
}

.researh-bg {
  background: #f8f8f8;
  overflow: hidden;
}

.banner-r-bor {
  padding-top: 0;
  padding-bottom: 2rem;
}

.banner-row1 {
  position: relative;
  max-height: 280px;
  overflow: hidden;
}

.banner-row1 .owl-carousel.owl-drag .owl-item {
  max-height: 280px;
}

.banner-row1 .owl-carousel.owl-drag .owl-item .item a {
  width: 100%;
}

.banner-row1 .item .bot-band {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(58, 56, 56, 0.8);
}

.banner-row1 .item .bot-band .bot-t-band {
  position: relative;
  padding: 0.5rem 1rem;
}

.banner-row1 .item .bot-band .bot-t-band p {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.banner-row1 .item .bot-band .bot-t-band h6 {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.banner-row1-border {
  border-radius: 10px;
  border: 1px solid #0f6ead;
  overflow: hidden;
  max-height: 280px;
  position: relative;
}

.banner-row1 .bot-band {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(58, 56, 56, 0.5);
}

.banner-row1 .bot-band .bot-t-band {
  position: relative;
  padding: 0.5rem 1rem;
}

.banner-row1 .bot-band .bot-t-band p {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 500 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.banner-row1 .bot-band .bot-t-band h6 {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 500 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.top-right-sec {
  padding-bottom: 2rem;
  padding-top: 0;
  overflow: hidden;
}

.top-right-sec .col-m-row1 {
  overflow: hidden;
  padding: 0 0 1rem 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.top-right-sec .col-m-row1 .col-row2:hover h3 {
  color: #009ee7;
}

.top-right-sec .col-m-row1 img {
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

.top-right-sec .col-m-row1:hover img {
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.top-right-sec .col-m-row1 .col-row1 {
  float: left;
  width: 25%;
}

.top-right-sec .col-m-row1 .col-row1 .col-im-row1 {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  overflow: hidden;
}

.top-right-sec .col-m-row1 .col-row2 {
  float: left;
  width: 72%;
  margin: 0 0 0 3%;
}

.top-right-sec .col-m-row1 .col-row2 p {
  color: #454545;
  margin: 0;
  padding: 0 0 0.8rem;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.top-right-sec .col-m-row1 .col-row2 h6 {
  color: #999;
  font: 300 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
}

.top-right-sec .col-m-row2 {
  overflow: hidden;
  border-bottom: 1px solid transparent;
  padding: 1rem 0 0 0;
}

.top-right-d-sec {
  padding-top: 0;
}

.top-right-d-sec .col-m-row1 .col-row1 .col-im-row1 {
  height: 112px;
}

.top-right-d-sec .col-m-row1 .col-row1 .col-im-row1 img {
  height: 100%;
  width: 100%;
}

.top-right-d-sec .col-m-row1 {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid #d1d1d1;
}

.top-right-d-sec .col-m-row1:first-child {
  padding: 0 0 1rem;
}

.res-left {
  overflow: hidden;
}

.res-sec-1 {
  background: #fafafa;
  border: 1px solid #d1d1d1;
  overflow: hidden;
  border-radius: 5px;
  margin: 0 0 2rem;
}

.res-sec-1 .res-sec-r1 {
  overflow: hidden;
  border-bottom: 1px solid #d1d1d1;
  padding: 0.5rem 1rem;
}

.res-sec-1 .res-sec-r1 h3 {
  color: #1e59a7;
  margin: 0;
  padding: 0;
  font: 600 1.2rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.res-sec-1 .res-sec-r2 {
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.res-sec-1 .res-sec-r2 ul {
  margin: 0;
  padding: 0;
}

.res-sec-1 .res-sec-r2 ul li {
  display: inline-block;
  text-align: center;
  margin: 0 0.5rem;
}

.res-sec-1 .res-sec-r2 ul li a {
  color: #000;
}

.res-sec-2 {
  overflow: hidden;
  margin: 0 0 2rem;
}

.res-sec-2 button[type="submit"] {
  color: #1b58a8;
  background: 0 0;
  position: absolute;
  right: 20px;
  top: 6px;
  cursor: pointer;
  z-index: 1;
}

.res-sec-2 .input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.res-right {
  overflow: hidden;
}

.res-right .slider-sec {
  overflow: hidden;
  border-bottom: 1px solid #626262;
  padding: 0;
}

.res-right .slider-sec .slider-row {
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  margin: 0 1rem;
}

.res-right .slider-sec .slider-row .row1 {
  overflow: hidden;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #b4b4b4;
  font-size: 0;
  margin: 0.1rem;
}

.res-right .slider-sec .slider-row .row2 {
  overflow: hidden;
  text-align: center;
  padding: 1rem 0.3rem;
}

.res-right .slider-sec .slider-row .row2 p {
  text-align: center;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #006cb7;
  padding: 0;
  margin: 0 0 0.2rem;
}

.res-right .slider-sec .slider-row .row2 h3 {
  text-align: center;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #666;
  padding: 0 0 0.3rem;
  margin: 0;
  border-bottom: 1px solid #666;
}

.res-right .slider-sec .slider-row .row2 h6 {
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  padding: 0;
  margin: 0;
}

.research-carousel {
  padding: 0 2rem;
}

.research-carousel .owl-carousel .owl-nav button.owl-next,
.research-carousel .owl-carousel .owl-nav button.owl-prev {
  color: #006cb4;
  font-size: 30px;
  position: absolute;
  top: 40%;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.research-carousel .owl-carousel .owl-nav button.owl-prev {
  /* left: -35px; */
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.research-carousel .owl-carousel .owl-nav button.owl-next {
  /* right: -35px; */
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.research-carousel .owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.latest-report {
  overflow: hidden;
  border-bottom: 1px solid #626262;
  position: relative;
}

.lat-head {
  overflow: hidden;
  margin: 1.5rem 0 1.5rem 0;
  position: relative;
}

.lat-r-head {
  margin: 0 0 1.5rem 0;
}

.lat-head h3 {
  color: #1b5ead;
  font: 600 1.4rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  text-transform: uppercase;
}

.lat-head h3::before {
  border: 1px solid #1a58a7;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 4rem;
  right: 0;
}

.lat-head a {
  color: #1b5ead;
}

.lat-content {
  overflow: hidden;
}

.banner-row2 {
  max-height: 250px;
  border-radius: 10px;
}

.banner-row2 a {
  width: 100%;
}

.banner-row2 a img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.banner-row2:hover a img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.latest-r-row {
  overflow: hidden;
  border-bottom: 1px solid #626262;
  margin: 0 0 0.5rem;
  padding: 0 0 0.5rem;
}

.latest-r-row p {
  color: #454545;
}

.latest-r-row h6 {
  color: #999;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.pre-slider {
  overflow: hidden;
  text-align: center;
  padding: 1rem;
}

.pre-slider-row {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #006cb7;
  font-size: 0;
  border-radius: 10px;
  overflow: hidden;
}

.report-by-forex {
  overflow: hidden;
  text-align: left;
  padding: 0;
}

.report-by-forex ul {
  margin: 0;
  padding: 0;
}

.report-by-forex .nav-link {
  padding: 0.5rem 0.7rem;
  color: #1b5ead;
}

.report-by-forex .nav-tabs .nav-item.show .nav-link,
.report-by-forex .nav-tabs .nav-link.active {
  background: #1b5ead;
  color: #fff;
}

.report-by-forex .tab-content > .active {
  margin: 1rem;
}

.report-by-forex .tab-content > .active .row-main {
  overflow: hidden;
  border-bottom: 1px solid #d1d1d1;
  padding: 0 0 0.5rem;
  margin: 0 0 0.5rem;
}

.report-by-forex .tab-content > .active .row-main .row-col1 {
  float: left;
  font-size: 0;
  width: 25%;
  border-radius: 10px;
  border: 1px solid #7a7a7a;
  overflow: hidden;
}

.report-by-forex .tab-content > .active .row-main .row-col1 img {
  font-size: 0;
}

.report-by-forex .tab-content > .active .row-main .row-col2 {
  float: left;
  width: 70%;
  margin: 0 0 0 5%;
}

.report-by-forex .tab-content > .active .row-main .row-col2 p {
  color: #1e59a7;
}

.report-by-forex .tab-content > .active .row-main2 {
  border-bottom: 1px solid transparent;
}

.daily-re {
  padding: 1rem 1rem 0;
  overflow: hidden;
}

.daily-re .row-main {
  overflow: hidden;
  border-bottom: 1px solid #d1d1d1;
  padding: 0 0 0.5rem;
  margin: 0 0 0.5rem;
}

.daily-re .row-main:last-child {
  border-bottom: 1px solid transparent;
}

.daily-re .row-main .row-col1 {
  float: left;
  font-size: 0;
  width: 25%;
  border-radius: 5px;
  border: 1px solid #7a7a7a;
  overflow: hidden;
}

.daily-re .row-main .row-col1 img {
  font-size: 0;
  max-height: 40px;
  width: 100%;
}

.daily-re .row-main .row-col2 {
  float: left;
  width: 70%;
  margin: 0 0 0 5%;
}

.daily-re .row-main .row-col2 p {
  color: #1e59a7;
  font: 600 0.83rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.daily-re .row-main2 {
  border-bottom: 1px solid transparent;
  margin: 0;
  padding: 0;
}

.daily-re ul {
  margin: 0;
}

.daily-re ul li {
  border-bottom: 1px solid #d1d1d1;
  line-height: 2.5rem;
  background: url(../images/blue-arrow.gif) no-repeat 0 15px;
  padding: 0 0 0 1rem;
}

.daily-re ul li:last-child {
  border-bottom: 1px solid transparent;
}

.daily-re ul li a {
  color: #454545;
}

.daily-re ul li a:hover {
  color: #1e59a7;
}

.res-list {
  overflow: hidden;
  margin: 1.5rem 0 0;
}

.row-main-list {
  overflow: hidden;
  border: 1px solid #e1e1e1;
  background: #f8f8f8;
  border-radius: 10px;
  margin: 0;
  min-height: 320px;
}

.row-main-list .row-1 {
  position: relative;
  font-size: 0;
}

.row-main-list .row-1 img {
  height: 168px;
  width: 100%;
}

.row-main-list .row-1 .bot-band {
  opacity: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-44px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
  text-align: center;
}

.row-main-list .row-1 .bot-band .bot-t-band {
  position: relative;
  padding: 0.3rem 1rem;
}

.row-main-list .row-1 .bot-band .bot-t-band ul {
  margin: 0;
  padding: 0;
}

.row-main-list .row-1 .bot-band .bot-t-band ul li {
  display: inline-block;
  color: #33c2f1;
  font-size: 1rem;
  margin: 0 0.6rem;
}

.row-main-list .row-1 .bot-band .bot-t-band ul li a {
  color: #33c2f1;
  font-size: 1.2rem;
}

.row-main-list .row-1:hover .bot-band {
  transform: translateY(-30px);
  opacity: 1;
}

.row-main-list .row-2 {
  text-align: center;
  padding: 0 0.3rem 1rem;
  position: relative;
}

.row-main-list .row-2 p {
  color: #145aac;
  margin: 2rem 0 0.5rem;
  padding: 0;
  font: 400 0.9rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
}

.row-main-list .row-2 h6 {
  color: #454545;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.row-main-list .row-1 .bot-band .bot-t-band .right-arrow {
  background: #d5d110;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  right: 0.3rem;
  border-radius: 100%;
}

.row-main-list .row-1 .bot-band .bot-t-band .right-arrow a {
  color: #fff;
  padding: 0.56rem 1rem;
  font-size: 1rem;
}

.row-main-list .row-3 {
  overflow: hidden;
  border-top: 1px solid #e9e9e9;
  text-align: center;
}

.row-main-list .row-3 p {
  text-align: center;
}

.videos-sec .video-r-head {
  overflow: hidden;
}

.mfe-videos {
  overflow: hidden;
}

.mfe-video-row {
  border-radius: 10px;
  overflow: hidden;
  font-size: 0;
}

.rec-r-main {
  background: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 10px;
  padding: 1rem;
  margin: 0 1rem 2.5rem;
  height: 550px;
  position: relative;
}

.rec-r-main img {
  border-radius: 10px;
}

.re-details {
  /*overflow: hidden;*/
  position: relative;
  color: #454545;
}
.re-details h1::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.re-details h1 {
  color: #1c5ba8;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
  padding: 0 0 0.8rem;
  text-align: left;
  position: relative;
}

.re-details .col-r1 {
  max-height: 425px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 1rem;
}

.re-details .col-r1 img {
  width: 100%;
}

.re-details h3 {
  color: #000;
  font: 600 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.3rem;
  padding: 0 0 0;
}

.top-right-sec .col-m-row1 .col-row2 h3 {
  color: #000;
  font: 600 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.3rem;
  padding: 0 0 0.5rem;
}

.re-details h4 {
  color: #454545;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1.2rem;
}

.re-details ul li {
  list-style: disc;
  margin: 0 0 0.8rem;
  color: #666;
}

.re-details ol li {
  list-style: decimal;
  margin: 0 0 0.8rem;
}

.re-details .col-r2 {
  text-align: left;
}

.re-details .col-r3 {
  text-align: right;
}

.re-details .col-r4 {
  overflow: hidden;
  width: 100%;
}

.re-details .col-r4 ul {
  margin: 0 0 1rem;
  padding: 0;
}

.re-details .col-r4 ul li {
  display: inline-block;
  padding: 0;
  margin: 0 0.3rem 0 0;
  vertical-align: top;
}

.re-details .col-r4 ul li a {
  color: #ccc;
  font-size: 1.2rem;
}

.re-details p {
  padding: 0 0 1rem;
  color: #454545;
}

.re-detailswli ul li {
  list-style: none;
  margin: 0 0 0.8rem;
}

.full-desc {
  position: relative;
  opacity: 0.08;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  color: transparent;
}

.full-desc-login {
  position: relative;
}

.sneakPeekBox {
  width: 90%;
  position: absolute;
  top: 40%;
  left: 5%;
  text-align: center;
  opacity: 1;
  margin: 0;
  -webkit-box-shadow: 0 7px 5px -5px rgba(50, 50, 50, 0.3);
  box-shadow: 0 7px 5px -5px rgba(50, 50, 50, 0.3);
  border: 1px solid #00a1df;
  border-radius: 5px;
  padding: 1rem;
  z-index: 1;
}

.sneakPeekBox p {
  padding: 0;
  margin: 0;
}

.re-so-icon ul {
  margin: 0;
  padding: 0;
}

.re-so-icon ul li {
  display: inline-block;
  margin: 0 0.8rem 0 0;
}

.cat-r-txt {
  text-align: right;
  color: grey;
  font-size: 0.8rem;
}

.rec-r-main .rec-sec1 {
  width: 100%;
  overflow: hidden;
}

.rec-r-main .rec-sec1 p {
  font: 300 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1.5rem;
}

.rec-r-main .rec-sec1 h3 {
  font: 500 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1.2rem;
}

.rec-r-main .rec-sec2 {
  width: 100%;
  overflow: hidden;
}

.rec-r-main .rec-sec2 .col-rec-1 {
  float: left;
  width: auto;
}

.rec-r-main .rec-sec2 .col-rec-1 img {
  border-radius: 100%;
  margin: 0 1rem 0 0;
  border: 1px solid #cdcdcd;
}

.rec-r-main .rec-sec2 .col-rec-1 ul {
  margin: 0;
}

.rec-r-main .rec-sec2 .col-rec-1 ul li {
  float: left;
}

.rec-r-main .rec-sec2 .col-rec-1 ul li p {
  margin: 0;
  padding: 1rem;
}

.rec-r-main .rec-sec3 {
  width: 100%;
  overflow: hidden;
  margin: 1.5rem 0 0;
}

.rec-r-main .rec-sec4 {
  width: 100%;
  overflow: hidden;
  margin: 1rem 0 0;
  position: absolute;
  bottom: 20px;
  right: 15px;
}

.recom-carousel {
  padding: 0 2rem;
  overflow: hidden;
}

.recom-carousel .owl-carousel .owl-nav button.owl-next,
.recom-carousel .owl-carousel .owl-nav button.owl-prev {
  color: #006cb4;
  font-size: 30px;
  position: absolute;
  top: 40%;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.recom-carousel .owl-carousel .owl-nav button.owl-prev {
  left: -35px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.recom-carousel .owl-carousel .owl-nav button.owl-next {
  right: -35px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.recom-carousel .owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.re-offer {
  padding: 0.5rem;
  width: 90%;
  margin: 0.8rem auto;
}

.premium-research .owl-theme .owl-nav.disabled + .owl-dots {
  position: absolute;
  bottom: 0.8rem;
  width: 100%;
  text-align: center;
}

.premium-research .owl-theme .owl-dots .owl-dot.active span {
  background: #009ee7;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
}

.premium-research .owl-theme .owl-dots .owl-dot span {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  background: #1c5ca6;
}

.wrapper-account {
  display: flex;
  width: 100%;
}

#sidebar-acc {
  width: 250px;
  z-index: 1;
  background: #285f9f;
  color: #fff;
  transition: all 0.3s;
  border-radius: 5px;
}

#sidebar-acc .user-leftnar {
  margin: 0;
  padding: 0;
}

#sidebar-acc .user-leftnar .card-header {
  padding: 0;
  border-bottom: 0 solid transparent;
}

#sidebar-acc .user-leftnar .card {
  padding: 0;
  border: 0 solid transparent;
  background-color: transparent;
}

#sidebar-acc .user-leftnar .card h5 a {
  display: block;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  font: 500 0.7rem/0.7rem Roboto, Arial, Helvetica, sans-serif;
  border-radius: 5px;
}

#sidebar-acc .user-leftnar .card h5 a span {
  margin: 0 0.3rem 0 0;
}

#sidebar-acc .user-leftnar .card h5 a span img {
  vertical-align: sub;
}

#sidebar-acc .user-leftnar .card .card-body {
  margin: 0;
  padding: 0;
  background: #285f9f;
}

#sidebar-acc .user-leftnar .card .card-body ul {
  margin: 0;
  padding: 0;
}

#sidebar-acc .user-leftnar .card .card-body ul li {
  margin: 0 0 0 1.6rem;
  padding: 0.45rem 0;
}

#sidebar-acc .user-leftnar .card .card-body ul li span {
  margin: 0 0.5rem;
}

#sidebar-acc .user-leftnar .card .card-body ul li span img {
  vertical-align: sub;
}

#sidebar-acc .user-leftnar .card-logout {
  bottom: 0;
}

#sidebar-acc .user-leftnar .card .card-body ul li a {
  color: #fff;
  font-size: 0.7rem;
}

.deselect-nav a::after {
  font-family: FontAwesome;
  content: "\f107";
  color: #fff;
  position: absolute;
  font-size: 1.5rem;
  top: 1rem;
  right: 1rem;
}

.select-nav a::after {
  font-family: FontAwesome;
  content: "\f107";
  color: #fff;
  position: absolute;
  font-size: 1.5rem;
  top: 1rem;
  right: 1rem;
}

.select-nav {
  color: #fff;
}

.deselect-nav {
  border-bottom: 1px solid transparent;
  border-left: 2px solid transparent;
}

.deselect-nav a {
  background: #245790;
}

.deselect-nav:hover {
  border-left: 2px solid #a49ffb;
  border-bottom: 1px solid #9ab7d5;
}

.wrapper-account .hidden-bar-account {
  background: #285f9f;
  border-radius: 5px;
}

#content-acc {
  width: calc(100% - 250px);
  padding: 0 0 4rem 2rem;
  transition: all 0.3s;
  position: relative;
}

#content-acc .acc-profile {
  text-align: center;
}

#content-acc .acc-profile span {
  border-radius: 20%;
  padding: 0.3rem;
  height: 175px;
  display: block;
  overflow: hidden;
  background: #ebecee;
  text-align: center;
}

#content-acc .acc-profile a {
  background: #00b9f5;
  color: #fff;
  border: 1px solid #1f539e;
  border-radius: 0.25rem;
  padding: 0.2rem 1rem 0.2rem;
}

#content-acc .acc-profile a b {
  font-weight: 400;
}

.user-setting button[type="submit"] {
  font-size: 0.8rem;
}

.user-setting button[type="button"] {
  font-size: 0.8rem;
  margin: 0 0.3rem;
}

#content-acc .user-st-main span {
  padding: 2rem 0.2rem;
}

#content-acc .acc-r-profile h3 {
  font: 500 1.7rem/1.7rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  color: #19203a;
  padding: 0 0 1.2rem;
}

#content-acc .acc-r-profile .row1 h3 span a {
  background-color: transparent;
  border-color: transparent;
}

#content-acc .acc-r-profile .row1 h4 span a {
  background-color: transparent;
  border-color: transparent;
}

#content-acc .acc-r-profile h4 {
  font: 500 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.5rem;
}

#content-acc .acc-r-profile h5 {
  font: 500 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1.2rem;
}

#content-acc .acc-sce-2 {
  /*overflow: hidden;*/
  margin: 0 0 0;
}

#content-acc .acc-sce-3 {
  overflow: hidden;
  margin: 0;
}

#content-acc .acc-sce-2 h3 {
  color: #1c5ba8;
  font: 400 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
}

#content-acc .user-chapass {
  margin: 1rem 0 0;
}

#content-acc .acc-sce-2 .acc-sce-2-cont {
  /*overflow: hidden;*/
  border-radius: 5px;
  border: 1px solid #e8e7e7;
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1cont {
  /*overflow: hidden;*/
  margin: 0 1rem;
  padding: 1rem 0 2rem;
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1cont-ro1 {
  overflow: hidden;
  margin: 0 1rem;
  padding: 1rem 0 0;
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1cont-ro2 {
  overflow: hidden;
  margin: 0 1rem;
  padding: 0 0 2rem;
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1-head {
  border-bottom: 2px solid #ececee;
  /*overflow: hidden;*/
  padding: 0.7rem 1rem;
  background: #dcf4fd;
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1-head span {
  background: #eaedfc;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: inline-block;
  padding: 9px 0;
  text-align: center;
  margin: 0 0.3rem;
  box-shadow: 0 0 4px 2px rgba(140, 240, 251, 0.5);
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1-head span a {
  color: #0a94f1;
  font-size: 1.1rem;
}

#content-acc .acc-sce-2 .acc-sce-2-cont .row1-head span a i {
  margin-right: 0;
}

#content-acc .card-header {
  border-bottom: 1px solid transparent;
}

#content-acc .table th {
  border-top: 1px solid transparent;
}

#content-acc .mfe-acc-table b {
  text-transform: uppercase;
}

#content-acc .table thead th {
  background: #f5f6fa;
  padding: 1rem 0.75rem 1rem 0.75rem;
  color: #b9bbca;
  border-top: 1px solid #f5f6fa;
  border-bottom: 1px solid #f5f6fa;
  white-space: nowrap;
  text-transform: uppercase;
  font: 600 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
}

#content-acc .table td {
  font: 400 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
}

#content-acc .table tr td .table tr td {
  border-top: 1px solid transparent;
  width: 50%;
}

#content-acc .mfe-bill-data [data-toggle="collapse"]:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f054";
  transform: rotate(90deg);
  transition: all linear 0.25s;
  color: #285f9f;
  margin-top: 0.7rem;
  position: absolute;
  right: 10px;
  display: none;
}

#content-acc .mfe-bill-data [data-toggle="collapse"].collapsed:after {
  transform: rotate(0);
  color: #285f9f;
}

#content-acc .table tr td .table tr td.mfe-acc-sec {
  border-bottom: 1px solid #8c8c8c;
  border-top: 1px solid #8c8c8c;
}

#content-acc .mfe-acc-sec3 h3 {
  font: 600 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #444450;
  padding: 1.2rem 0;
  margin: 0;
}

#content-acc .mfe-billing {
  margin: 0;
  padding: 0;
  position: relative;
}

#content-acc .mfe-billing ul {
  margin: 0;
  padding: 0;
}

#content-acc .mfe-pageing ul {
  margin: 1rem 0;
  padding: 0;
  float: right;
}

.mfe-pageing {
  text-align: right;
}

#content-acc .mfe-billing .nav-tabs .nav-link.active {
  background: #df8107;
  color: #fff;
}

#content-acc .mfe-billing .nav-link {
  padding: 0.5rem 2rem;
  background: #42425c;
  color: #fff;
  margin: 0 1rem 0 0;
}

#content-acc .org-color {
  color: #d16e33;
}

#content-acc .mfe-a-print {
  color: #05649c;
  text-align: center;
  display: inline-block;
}

#content-acc .custom-user-input {
  color: transparent;
  margin: 0 2rem;
}

#content-acc .custom-user-input::-webkit-file-upload-button {
  visibility: hidden;
}

#content-acc .custom-user-input::before {
  content: "Choose a File";
  display: inline-block;
  background: #4285f4;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: 0;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}

#content-acc .custom-user-input:hover::before {
  border-color: #000;
}

#content-acc .custom-user-input:active::before {
  background: #4285f4;
}

.mfe-payment-sec {
  overflow: hidden;
}

.mfe-payment-sec1 {
  overflow: hidden;
}

.mfe-payment-sec1 h3 {
  color: #1b5ead;
  font: 600 1.4rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  text-transform: uppercase;
}

.mfe-payment-sec .submit-but button[type="submit"] {
  padding: 0.5rem 2rem;
}

.mfe-payment-sec1 h3:before {
  border: 1px solid #01eafb;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 4rem;
  right: 0;
}

.mfe-payment-sec1 button[type="button"] {
  margin: 0 0 0 0.5rem;
  background: #3a9bfc;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: right;
}

.mfe-payment-sec1 button[type="button"] span {
  color: #0e2f4e;
}

.mfe-payment-sec2 {
  text-align: right;
}

.mfe-payment-sec3 {
  overflow: hidden;
  background: #f1f1f1;
  margin: 1rem 0 1rem;
  padding: 1rem 0;
  color: #444257;
}

.mfe-ps-acc {
  float: left;
  width: 35%;
}

.mfe-ps-acc .form-control {
  display: inline-block;
  width: auto;
  font-family: roboto;
}

.mfe-payment-sec3 button[type="button"] {
  margin: 0;
  background: #3a9bfc;
  color: #fff;
  padding: 0.3rem 2rem;
  border-radius: 10px;
  font-size: 1.2rem;
  text-align: right;
}

.mfe-ps-acc strong {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.mfe-ac-support {
  overflow: hidden;
  margin: 2rem 0;
  border-radius: 10px;
  border: 1px solid #f8f9fa;
  padding: 3rem 1.5rem;
}

.mfe-ac-support .support-row3-mfe p {
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.currency-tab {
  margin: 0 -15px 1rem;
}

#content-acc .table thead th .select-bar {
  color: #a4a6b3;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  font: 600 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 1.5rem 0 0;
}

#content-acc .table thead th .down-icon {
  -webkit-appearance: none;
  background: url(../images/down-icon.png);
  background-repeat: no-repeat;
  background-position: right 55%;
}

#content-acc .table thead th .select-bar option {
  display: block;
  white-space: pre;
  min-height: 1.2em;
  padding: 0 2px 1px;
}

#content-acc .table-scroling tbody tr td:nth-child(3) {
  color: #1428ad;
  font: 400 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.mfe-ac1-support {
  overflow: hidden;
  margin: 2rem 0;
  border-radius: 10px;
  border: 1px solid #f8f9fa;
  padding: 1rem 1.5rem 0;
}

#content-acc .mfe-ac1-support .table td {
  padding: 0.25rem 0;
  border-top: 1px solid transparent;
}

.inner-secction {
  overflow: hidden;
  position: relative;
}

.inner-secction h1 {
  color: #1b5ead;
  font: 600 1.4rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.8rem;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 1rem;
}

.inner-secction h1:before {
  border: 1px solid #1a58a7;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 4rem;
  right: 0;
}

.inner-secction h2 {
  color: #1b5ead;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
  /* text-transform: uppercase; */
  position: relative;
  margin: 0 0 0;
}

.inner-secction h3 {
  color: #1b5ead;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
  text-transform: uppercase;
  position: relative;
  margin: 0 0 0;
}

.inner-secction p {
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  padding: 0 0 1.5rem;
  margin: 0;
}
.inner-secction ul {
  margin: 0 0 1rem;
  padding: 0 0 0.5rem;
}

.inner-secction ul li {
  list-style: none;
  background: url(../images/blue-arrow.gif) no-repeat 0 5px;
  padding: 0 0 0.5rem 1.5rem;
}

.inner-error-secction {
  background: #f5f6f6;
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
}

.inner-error-secction button[type="button"] {
  background: #41cb9a;
  color: #fff;
  margin: 0;
  padding: 0 2rem;
  text-transform: uppercase;
  font: 400 1rem/2rem Roboto, Arial, Helvetica, sans-serif;
  border-radius: 20px;
  cursor: pointer;
}

.error-but-page {
  text-align: right;
}

.form-group-input .form-horizontal .form-group .form-control {
  display: inline-block;
}

.colors {
  color: #fff;
  display: none;
}

.select-lok {
  display: block;
}

.massage-icon {
  float: left;
  padding: 0 1.8rem 0 0;
}

.massage-txt {
  padding: 0.2rem;
}

.top-hading h4 {
  font-size: 1.2rem;
  padding: 0.6rem 0 1.3rem;
}

.adds-txt p a {
  font-size: 1rem;
  color: #454545;
}

.select-loction {
  font-size: 1rem;
  color: #454545;
}

.submit-bttn {
  float: left;
  padding: 10px 30px;
}

.form-top {
  padding: 1rem 0;
}

.google-maps {
  padding: 1.8rem 0;
  border: 1px solid #ccc;
}

.location-box {
  display: inline;
  width: 94%;
}

.colors img {
  border-radius: 5px;
}

.top-header-txt p {
  text-align: justify;
  padding: 0 0 0.8rem;
}

.table-back-clr {
  background: #f4fcff;
}

.table td,
.table th {
  font-size: 0.9rem;
}

.hading thead th {
  padding: 1.5rem 0 0.6rem;
}

.requered-txt {
  margin-top: 0.8rem;
}

.apply-bttn {
  margin: 0.8rem 2rem 0.4rem 0;
}

button[type="submit"].save-bttn {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: background-color 0.4s ease 0s;
  margin: 0.8rem 2rem 0.4rem 0;
  background: #efefef;
  color: #505050;
  border: 1px solid #efefef;
}

button[type="submit"].save-bttn:hover {
  color: #fff;
  background: #e25c33;
}

.form-top-bttm {
  border-bottom: 1px solid #ccc;
}

.add-deal-1 h3 {
  font: 400 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #2165a4;
  margin: 2.7rem 0 0;
}

.bttm-space {
  padding: 0 0 1.9rem;
}

.bttm-table {
  padding: 0 0 5rem;
}

.table-top {
  padding: 2rem 0 1rem;
}

.red-tooltip + .tooltip > .tooltip-inner {
  background-color: red;
}

.red-tooltip + .tooltip > .tooltip-arrow {
  border-bottom-color: red;
}

.table-scroling {
  overflow-x: auto;
  white-space: nowrap;
}

.researchmain {
  overflow: hidden;
  position: relative;
}

.researchmain h1::before {
  border: 2px solid #1a58a7;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
  border-radius: 5px;
}

.researchmain .inner-head h1 {
  padding: 1.6rem 0 0.85rem;
}

.daily-re-list {
  overflow: hidden;
}

.daily-re-list ul {
  margin: 0;
  padding: 0;
}

.daily-re-list ul li {
  display: block;
}

.view-r-more {
  text-align: right;
  margin: 1rem 0;
}

.view-r-more a {
  color: #1b5ead;
}

.view-r-more a:hover {
  color: #ff7043;
}

.view-r1-more {
  text-align: right;
  overflow: hidden;
  margin: 1rem 0;
}

.view-r1-more a {
  color: #1b5ead;
}

.view-r1-more a:hover {
  color: #ff7043;
}

.reearch-page {
  text-align: right;
  float: right;
  overflow: hidden;
}

.reearch-page nav ul {
  text-align: right;
}

.rearch-d-list {
  text-align: right;
  position: relative;
  display: none;
}

#filter-mobile {
  display: none;
  transition: max-height 350ms ease-in-out;
  position: absolute;
  top: 18px;
  right: 0;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #65d6f8;
  padding: 0.8rem;
}

#filter-mobile ul {
  margin: 0;
  padding: 0;
  text-align: left;
}

#filter-mobile ul li {
  margin: 0;
  padding: 0;
}

.better-model {
  overflow: hidden;
  padding: 1.5rem 0 0;
}

#AcceptModel .modal-body {
  padding: 0;
}

#AcceptModel .accept-sup-sec .accept-s-price {
  background: #283579;
  border-radius: 0.3rem 0.3rem 0 0;
}

#AcceptModel .accept-sup-sec .accept-s-price h3 {
  color: #fff;
  text-align: center;
  font: 500 1.2rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

#AcceptModel .accept-s-content {
  padding: 1rem 1rem;
}

#AcceptModel .accept-s-content .col-md-6 {
  width: 50%;
}

#AcceptModel .pop-button button[type="submit"] {
  padding: 0.5rem 1.5rem;
}

#AcceptModel .interst-price1 {
  background: #f0b503;
  display: inline-block;
  padding: 0.1rem 0.3rem;
  border-radius: 10px;
}

#AcceptModel .interst-price2 {
  background: #009de0;
  display: inline-block;
  padding: 0.1rem 0.3rem;
  border-radius: 10px;
}

#BetterQuoteModel .modal-body {
  padding: 0;
}

#BetterQuoteModel .accept-sup-sec .accept-s-price {
  background: #283579;
  border-radius: 0.3rem 0.3rem 0 0;
}

#BetterQuoteModel .accept-sup-sec .accept-s-price h3 {
  color: #fff;
  text-align: center;
  font: 500 1.2rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

#BetterQuoteModel .accept-s-content {
  padding: 1rem 1rem;
}

#BetterQuoteModel .accept-sup-sec .modal-body .close {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 5px;
  color: #fff;
  opacity: 1;
}

#BetterQuoteModel .pop-button button[type="submit"] {
  padding: 0.5rem 1.5rem;
}

#RequestCallbackModel .modal-body {
  padding: 0;
}

#RequestCallbackModel .accept-sup-sec .accept-s-price {
  background: #283579;
  border-radius: 0.3rem 0.3rem 0 0;
}

#RequestCallbackModel .accept-sup-sec .accept-s-price h3 {
  color: #fff;
  text-align: center;
  font: 500 1.2rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

#RequestCallbackModel .accept-s-content {
  padding: 1rem 1rem;
}

#RequestCallbackModel .accept-s-content .col-md-6 {
  width: 50%;
}

#RequestCallbackModel .pop-button button[type="submit"] {
  padding: 0.5rem 1.5rem;
}

#RequestCallbackModel .interst-price1 {
  background: #f0b503;
  display: inline-block;
  padding: 0.1rem 0.3rem;
  border-radius: 10px;
}

#RequestCallbackModel .interst-price2 {
  background: #009de0;
  display: inline-block;
  padding: 0.1rem 0.3rem;
  border-radius: 10px;
}

#RequestCallbackModel .pop-button-green button[type="submit"] {
  padding: 0.5rem 1.5rem;
  background: #7fba00;
}

.feedback-input {
  overflow: hidden;
}

.feedback-row1-input h2 {
  color: #1a58a3;
  font: 500 1.2rem/3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0 0 0;
}

.feedback-row1-input h2:before {
  border: 1px solid #1a58a3;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 4rem;
  right: 0;
}

.feedback-row2-input {
  overflow: hidden;
  border: 1px solid #16323d;
  border-radius: 10px;
  margin: 1.2rem 0 0;
  padding: 1rem;
}

.feedback-row2-input h3 {
  color: #14323a;
  font: 500 1.2rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0 0 0.5rem;
}

.feedback-row2-input .custom-checkbox .custom-control-label::before {
  border: 1px solid #434343;
}

.feedback-row4 {
  overflow: hidden;
  margin: 0 0 1rem;
}

.feed-textarea textarea {
  width: 100%;
  overflow: hidden;
  border: 1px solid #bebebc;
  border-radius: 5px;
  margin: 1rem 0 0;
  height: 5rem;
  padding: 0.3rem;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.feed-rate {
  border: 1px solid #205696;
  border-radius: 10px;
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
}

.feed-rate h5 {
  text-align: center;
  color: #1a58a3;
  font: 500 1.3rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0 0 1rem;
}

.feed-row3-rate {
  overflow: hidden;
  position: relative;
}

.feed-row3-rate h5 {
  text-align: center;
  color: #1a58a3;
  font: 500 1.3rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
  margin: 0 0 2rem;
  position: relative;
}

.feed-row3-rate h5::before {
  border: 1px solid #1858a2;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0 auto;
  position: absolute;
  width: 20%;
  right: 0;
}

.feed-rate h5 span {
  display: block;
}

.feed-row1-rate {
  background: #1ec659;
  overflow: hidden;
  padding: 0.5rem 1rem;
}

.feed-row1-rate span {
  float: left;
}

.feed-row1-rate span img {
  width: 60%;
}

.feed-row1-rate p {
  color: #fff;
  font: 500 1.4rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.3rem 0 0;
  margin: 0;
}

.feed-row2-rate {
  overflow: hidden;
  position: relative;
  margin: 1rem 0 2rem;
}

.feed-row3-rate {
  overflow: hidden;
  padding: 0 0 1rem;
}

.feed-row2-rate h6 span {
  text-align: center;
  display: inline-block;
  width: 20%;
  margin: 0 40%;
  background: #fff;
  color: #454545;
}

.feed-row2-rate h6:before {
  border: 1px solid #325278;
  bottom: 0.5rem;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  right: 0;
  z-index: -1;
}

.feed-row3-rate ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.feed-row3-rate ul li {
  display: inline-block;
  margin: 0 1rem;
}

.feed-row3-rate ul li a i {
  margin: 0;
}

.feed-row3-rate .fb-facebook {
  background: #39559f;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
}

.feed-row3-rate .fb-twitter {
  background: #50abf1;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
}

.feed-row3-rate .fb-google {
  background: #dd4c39;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
}

.feed-row3-rate .fb-ellipsis {
  background: #0054a5;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
}

.mfe-feed-row1 {
  overflow: hidden;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 1rem 0.2rem;
  border-radius: 10px;
  padding: 2rem 1.5rem 1rem;
}

.feed-form-main {
  overflow: hidden;
}

.feed-w-share {
  overflow: hidden;
}

.feed-sec1 {
  text-align: center;
}

.feed-sec1 ul {
  margin: 2rem 0 3rem;
  padding: 0;
}

.feed-sec1 ul li {
  display: inline-block;
  margin: 0 1rem;
}

.mfe-payment-sec h4 {
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #427590;
  margin: 2rem 0 2rem;
}

.buyonline-bg {
  background: url(../images/buyonline-bg.jpg) no-repeat top center;
  overflow: hidden;
  min-height: 345px;
}

.buyplan-sec-coursole {
  position: relative;
}

.buyplan-sec-coursole .owl-theme .owl-dots .owl-dot.active span,
.buyplan-sec-coursole .owl-theme .owl-dots .owl-dot:hover span {
  background: #00dfcc;
}

.buyplan-sec-coursole .owl-theme .owl-nav {
  margin-top: 0;
}

.buyonline-coursole {
  min-height: 350px;
}

.buyplan-coursole {
  margin: 2rem 0 0;
}

.buyplan-coursole ul {
  margin: 0;
  padding: 0;
}

.buyplan-coursole ul li {
  margin: 0.4rem 0.5rem;
  padding: 0;
  background: #f3f3f3;
  border-radius: 10px;
  position: relative;
  min-height: 70vh;
  box-shadow: 0 2px 4px 0 rgba(194, 194, 194, 0.5);
}

.buyplan-coursole ul li ol {
  width: auto;
  padding: 0 0 7rem;
  overflow: hidden;
  margin: 0 0 1.5rem;
  font: 400 0.75rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.buyplan-coursole ul li ol li {
  list-style: decimal;
  padding: 0.1rem;
  min-height: auto;
  margin: 0 0 0 2rem;
  color: #00b9f5;
  box-shadow: none;
}

.buyplan-coursole ul li ol li span {
  color: #454545;
}

.buyplan-coursole ul li .portfolio-s-row1 {
  background: #4ed0aa;
  border-radius: 10px 10px 0 0;
  padding: 2.2rem 1.5rem;
  margin: 0 0 1.1rem;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.buyplan-coursole ul li .portfolio-s-row1 h3 {
  color: #fff;
  text-align: center;
}

.buyplan-coursole p {
  margin: 1rem 0;
  padding: 0;
}

.buyplan-coursole h3 {
  font: 600 1.15rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0;
}

.buyplan-coursole .owl-carousel .owl-nav button.owl-next,
.buyplan-coursole
  .owl-carousel
  .owl-nav
  button.owl-prev.buyplan-coursole
  .owl-carousel
  .owl-nav
  button.owl-prev {
  /*color: #ff7043;*/
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 40%;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.buyplan-coursole .owl-carousel .owl-nav button.owl-prev {
  left: -35px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.buyplan-coursole .owl-carousel .owl-nav button.owl-next {
  right: -35px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.buyplan-coursole .owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.buyplan-coursole .owl-carousel .owl-nav button.owl-prev {
  /*color: #ff7043;*/
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 40%;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.buyplan-coursole-cop {
  margin: -10rem 0 0;
}

.buyonline-rates {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  /*padding: 0 0 2rem;*/
  padding: 0 0 0.5rem;
  width: 90%;
  margin: 0 0 0 1rem;
}

.buyonline-bg h2 {
  color: #fff;
  text-align: center;
  margin: 3rem 0 0;
}

.buyonline-rates a {
  border-radius: 10px;
  width: 100%;
  color: #fff;
  padding: 0.5rem 0;
  background: #1976d2;
  text-align: center;
  font-size: 1rem;
  transition: 0.5s ease;
}

.buyonline-rates a:hover {
  background: #ff7043;
  color: #fff;
  transition: 0.5s ease;
}

.buyonline-rates p {
  font: 600 1em/1em Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.5rem;
  color: #000;
}

.buyonline-rates h5 {
  color: #1976d2;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0;
  margin: 0 0 1.5rem;
}

.order-su-right {
  overflow: hidden;
}

.order-row1-right {
  background: #1a59a6;
  overflow: hidden;
  padding: 0.875rem 1rem;
  border-radius: 0.25rem;
}

.order-row1-right h3 {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.order-price-right {
  margin: 0.3rem 0.3rem 1rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.8), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.order-price-row1 {
  overflow: hidden;
  background: #009ee7;
  color: #fff;
  padding: 0.5rem;
}

.order-h-col1 {
  float: left;
  width: 70%;
}

.order-h-col2 {
  float: left;
  width: 30%;
}

.order-pr-details {
  overflow: hidden;
  margin: 0.4rem 0 0;
}

.order-pr-details .order-row1 {
  overflow: hidden;
  padding: 0.2rem;
  margin: 0 0.7rem;
  font: 400 0.875rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #7f7f7f;
}

.order-pr-details .order-row1 .order-col1 {
  overflow: hidden;
  float: left;
  width: 70%;
  color: #009ee7;
}

.order-pr-details .order-row1 .order-col2 {
  overflow: hidden;
  float: left;
  width: 30%;
  color: #212121;
}

.order-pr-details .order-row1 .order-col2 span {
  color: #f4511e;
  float: right;
  cursor: pointer;
}

/*  */

.order-pr-details .order-row11 {
  overflow: hidden;
  padding: 0.2rem;
  margin: 0 0.7rem;
  font: 400 0.875rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #7f7f7f;
}
.order-pr-details .order-row12 {
  border-top: 1px solid #cfcfcf;
  margin: 0.7rem 0.7rem 0;
}

.order-pr-details .order-row11 .order-col1 {
  overflow: hidden;
  float: left;
  width: 70%;
  color: #3d3d3d;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.order-pr-details .order-row11 .order-col2 {
  overflow: hidden;
  float: left;
  width: 30%;
  color: #212121;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.order-pr-details .order-row11 .order-col2 span {
  color: #f4511e;
  float: right;
  cursor: pointer;
}
.order-pr-details .order-row2 {
  overflow: hidden;
  padding: 0.4rem;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  margin: 0.3rem 0.7rem 0.5rem;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  background: #d5effc;
}

.order-pr-details .order-row2 .order-col1 {
  overflow: hidden;
  float: left;
  width: 70%;
  color: #2b3a7c;
}

.order-pr-details .order-row2 .order-col2 {
  overflow: hidden;
  float: left;
  width: 30%;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #2b3a7c;
}

.order-pr-details .order-avail {
  overflow: hidden;
}

.order-pr-details .order-avail button[type="submit"] {
  width: 100%;
  color: #fff;
  font: 600 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.8rem;
  cursor: pointer;
}

.order-pr-details .order-row3 {
  margin: 0 0.7rem;
}

.order-pr-details .order-row3 p {
  margin: 0;
  padding: 0 0 0.5rem;
  font: 400 0.7rem/0.7rem Roboto, Arial, Helvetica, sans-serif;
}

.order-pr-details .order-row3 p span {
  color: #fbaf5d;
}

.order-pr-details .order-row3 button {
  border-radius: 0.25rem;
  padding: 0.175rem 0;
  cursor: pointer;
  background: 0 0;
  color: #fb641b;
  margin: 0 0 0.5rem;
}

.order-pr-details .order-row3 button:hover {
  color: #1a59a6;
}

.order-pr-details .order-avail .plan-right-form {
  overflow: hidden;
  margin: 0 0.7rem;
}

.plan-right-form .plan-avail {
  color: #0099e5;
  font-style: italic;
}

.plan-section {
  overflow: hidden;
}

.plan-section h2 {
  overflow: hidden;
  color: #494a4a;
  font: 500 1.3em/1.3em Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 0;
}

#accordionplan h6 {
  color: #1b5dab;
  font: 500 1.2em/1.2em Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 1rem 0;
}

.plan-section .card-header {
  background: #1a59a6;
  /*padding: 0 1.25rem;*/
  padding: 1.6rem 1.25rem;
}

.plan-section .card-header .btn-link:focus,
.plan-section .card-header .btn-link:hover {
  text-decoration: none;
  color: #ff7043;
}

.plan-section .card-header h5 button p {
  color: #fff;
  text-align: left;
  font: 500 1.2em/1.3em Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.plan-section .card-header h5 button h3 {
  color: #fff;
  text-align: left;
  font: 500 0.92em/1.5em Roboto, Arial, Helvetica, sans-serif;
  margin: 0.4rem 0 0;
}

.plan-section .card-header h5 button h5 {
  color: #fff;
  text-align: left;
  font: 500 0.92em/1.5em Roboto, Arial, Helvetica, sans-serif;
  margin: 0.5rem 0 0;
}

.plan-section .card-header h5 h6 {
  color: #fff;
  text-align: right;
  padding: 0;
  margin: 0;
  float: right;
}

.plan-section .card-header h5 h6 span {
  color: #20ffa8;
  text-align: right;
  border: 1px dashed #fff;
  font: 500 0.8em/1em Roboto, Arial, Helvetica, sans-serif;
  padding: 0.3rem 0.5rem;
}

#accordionplan .card-body {
  padding: 0;
}

#accordionplan .card-body .plan-sec {
  padding: 0;
  position: relative;
}

#accordionplan .card-body .plan-sec:hover {
  background: #d5effc;
  cursor: pointer;
}

#accordionplan .card-body .plan-sec .plan-row {
  padding: 1.5rem 0;
  position: relative;
  border-bottom: 1px solid #505050;
  overflow: hidden;
  margin: 0 1rem;
}

#accordionplan .card-body .plan-sec .plan-row-no {
  padding: 1.5rem 0;
  position: relative;
  border-bottom: 1px solid transparent;
  overflow: hidden;
  margin: 0 1rem;
}

#accordionplan .card-body .plan-sec .plan-col1 {
  float: left;
  width: 50%;
  font: 500 1.3em/1.3em Roboto, Arial, Helvetica, sans-serif;
}

#accordionplan .card-body .plan-sec .plan-col2 {
  float: left;
  width: 50%;
  text-align: right;
  color: #003346;
  font: 500 1.3em/1.3em Roboto, Arial, Helvetica, sans-serif;
}

#accordionplan .card-body .plan-sec .plan-col2 i {
  color: #ff8c0f;
}

#accordionplan .card-body .plan-sec .plan-col2 span {
  color: #1b59a6;
  font: 500 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
}

#accordionplan .plan-tpo .custom-control {
  float: right;
}

.plan-sec1 {
  position: relative;
  overflow: hidden;
  margin: 0 1rem;
  padding: 1.5rem 0 0;
}

.plan-sec1 .plan-col-1 {
  float: left;
  width: 70%;
}

.plan-sec1 .plan-col-1 p {
  color: #023246;
  font: 500 1em/1em Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.plan-sec1 .plan-col-1 h3 {
  color: #023246;
  font: 500 1.1em/1.1em Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.plan-sec1 .plan-col-2 {
  float: left;
  width: 30%;
  text-align: right;
}

.plan-sec1 .plan-col-2 p span {
  color: #04c178;
}

.select-plan-drop {
  float: right;
  position: absolute;
  top: 55px;
  right: 1.8rem;
}

.select-reports-drop {
  float: right;
  position: absolute;
  top: 88px;
  right: 1.8rem;
}

.select-plan-drop .form-control,
.select-reports-drop .form-control {
  height: calc(1.7rem + 2px);
  padding: 0 0.25rem;
  font-size: 0.8rem;
}

.select-b-chek {
  float: right;
  margin: 1.3rem 0 0;
}

#accordionplan .card {
  margin: 0.3rem 0.3rem 1rem;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.8), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.plan-m-pulse {
  overflow: hidden;
  margin: 0 0 2rem;
}

.portpolio-bg {
  background: url(../images/buyonline-bg.jpg);
  overflow: hidden;
  min-height: 345px;
  margin: 1rem 0 0;
}

.portpolio-bg h2 {
  color: #fff;
  text-align: center;
  margin: 3rem 0 0;
}

.port-plan-sec {
  position: relative;
  margin: -10rem 0 0;
}

.port-plan-sec ul {
  margin: 0 0 3rem;
  padding: 0;
  overflow: hidden;
}

.port-plan-sec ul li {
  float: left;
  width: 22%;
  margin: 0 1% 1rem;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  min-height: 112vh;
  position: relative;
}

.port-plan-sec ul li .portfolio-s-row1 {
  background: #4ed0aa;
  border-radius: 10px 10px 0 0;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0 0 1rem;
}

.port-plan-sec ul li .portfolio-s-row1 h2 {
  color: #fff;
  text-align: center;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.port-plan-sec ul li .portfolio-sp-row1 {
  background: #e7616c;
  border-radius: 10px 10px 0 0;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0 0 1rem;
}

.port-plan-sec ul li .portfolio-sp-row1 h2 {
  color: #fff;
  text-align: center;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.port-plan-sec ul li .portfolio-sfourth-row1 {
  background: #e6609b;
  border-radius: 10px 10px 0 0;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0 0 1rem;
}

.port-plan-sec ul li .portfolio-sfourth-row1 h2 {
  color: #fff;
  text-align: center;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.port-plan-sec ul li .portfolio-sb-row1 {
  background: #3589df;
  border-radius: 10px 10px 0 0;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0 0 1rem;
}

.port-plan-sec ul li .portfolio-sb-row1 h2 {
  color: #fff;
  text-align: center;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.port-plan-sec ul li .portfolio-s-row2 {
  background: #fff;
  overflow: hidden;
}

.port-plan-sec ul li .portfolio-s-row2 ol {
  margin: 1rem 2.5rem 0;
  color: #00b9f5;
}

.port-plan-sec ul li .portfolio-s-row2 ol li {
  list-style: decimal;
  width: 90%;
  box-shadow: none;
  margin: 0 0 0.2rem;
  color: #717171;
  font: 400 0.8rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  min-height: auto;
}

.port-plan-sec ul li .portfolio-s-row3 {
  position: absolute;
  margin: 0 0 4rem;
  width: 100%;
  text-align: center;
  bottom: 0;
}

.port-plan-sec ul li .portfolio-s-row3 h3 {
  color: #1877d3;
  text-align: center;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.port-plan-sec ul li .portfolio-s-row4 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.port-plan-sec ul li .portfolio-s-row4 a {
  background: #3589df;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  width: 100%;
  padding: 0.5rem;
}

.mobile-banner-img {
  width: 100%;
}

.inner-content h3 {
  color: #323232;
  text-align: center;
  padding: 3.2rem 0 0;
  font-weight: 700;
  font-size: 1.5rem;
}

.introducing-main img {
  margin: 0 auto;
  display: block;
  padding: 8rem 0 1rem;
  width: 331px;
}

.forex-pulse {
  text-align: center;
}

.forex-pulse h3 {
  padding: 0 0 1rem;
  color: #fff;
  font: 800 3rem/3rem Roboto, sans-serif;
}

.forex-pulse p {
  color: #fff;
  font-size: 1.2rem;
}

.membership-services {
  text-align: center;
}

.membership-services h3 {
  color: #242424;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 0 0;
}

.membership-services p {
  color: #6b6b6b;
  font-size: 1rem;
  font-size: 0.9rem;
}

.services-padding-top {
  padding: 3rem 0 2rem;
}

.services-padding-bttm {
  padding: 0 0 2.5rem;
}

.app-txt-hading h3 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 2.3rem 0 1rem;
}

.top-mobile {
  padding: 2rem 0 0;
  max-width: 100%;
  margin-top: 18px;
}

.forex-plus-img img {
  margin: 0 auto;
  display: block;
  padding: 0 0 3rem;
}

.border {
  width: 50px;
  height: 7px;
  background: #b8997a;
  display: inline-block;
}

.mobile-bttm-clr {
  background-image: -webkit-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
  background-image: linear-gradient(0deg, #2a231b 13%, #3c424f 100%);
  background-image: -moz-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
  background-image: -ms-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
  background-image: -o-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
}

.banner-img {
  background-image: -webkit-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
  background-image: linear-gradient(0deg, #2a231b 13%, #3c424f 100%);
  background-image: -moz-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
  background-image: -ms-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
  background-image: -o-linear-gradient(90deg, #2a231b 13%, #3c424f 100%);
}

::placeholder {
  color: #fff;
}

.mobile-img img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 500px;
  position: relative;
  z-index: 2;
}

.mobile-main .sedow img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 1;
}

.shedow img {
  margin: 0 auto;
  max-width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 1;
}

.logo-img {
  padding: 0.3rem 0;
}

.cross-txt {
  color: #fff;
}

.crose-txt-line {
  color: red;
}

.download_container .download_wrapper .download_link {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.download_link ul li a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
  float: left;
  background: #2b2d32;
  border-radius: 12px;
  padding: 15px;
  width: 215px;
  transition: all 0.2s ease;
  margin: 0 2.4rem 4rem;
}

.download_link ul li a img {
  max-width: 100%;
  width: 175px;
}

.download_link a:hover {
  text-decoration: none;
  outline: 0;
  background: #3b3d44;
}

.download_wrapper {
  width: 53%;
  max-width: 1000px;
  margin: auto;
  height: inherit;
  text-align: center;
  position: relative;
}

.strikeout {
  line-height: 1em;
  position: relative;
}

.strikeout::after {
  border-bottom: 0.125em solid red;
  content: "";
  left: 0;
  margin-top: calc(0.125em / 2 * -1);
  position: absolute;
  right: 0;
  top: 50%;
}

.line_left {
  background-image: linear-gradient(to right, #a89885 0, #ffefd0 100%);
  background-image: -webkit-linear-gradient(to left, #a89885 0, #ffefd0 100%);
  background-image: -o-gradient(to right, #a89885 0, #ffefd0 100%);
  background-image: -moz-gradient(to right, #a89885 0, #ffefd0 100%);
  width: 50px;
  top: 64px;
  left: 35%;
  position: absolute;
  height: 2px;
  z-index: 1;
}

.line_right {
  background-image: linear-gradient(to left, #a89885 0, #ffefd0 100%);
  background-image: -webkit-linear-gradient(to right, #a89885 0, #ffefd0 100%);
  background-image: -o-gradient(to left, #a89885 0, #ffefd0 100%);
  background-image: -moz-gradient(to left, #a89885 0, #ffefd0 100%);
  width: 50px;
  top: 64px;
  right: 35%;
  position: absolute;
  height: 2px;
  z-index: 1;
}

.footer-row {
  background: #393c46;
  margin: 0 0 2rem;
}

.footer-row p,
.sub-row ul li.active .sub-row2 {
  color: #fff;
  font-size: 1.2rem;
}

.footer-row p {
  font-weight: 700;
  font-size: 2rem;
  padding: 3rem 0 1rem;
}

.but-row button[type="submit"] {
  cursor: pointer;
  margin: 2rem 0 2rem;
  display: inline-block;
  background: #c69c6b;
  border-radius: 8px;
  padding: 1rem 2rem;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  outline: 0;
  font: 400 1.3rem/1.3rem Roboto, sans-serif;
}

.but-row {
  text-align: center;
}

.inner-contant h6 {
  line-height: 1.4rem;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0 0.6rem;
  color: #1c5ba8;
  font-weight: 600;
}

.bttm-txt-space {
  padding: 0 0 2.6rem;
}
.list-style ul {
}

.list-style ul li {
  padding: 0 0.1rem 1rem;
  margin: 0 1rem 0;
  list-style: decimal;
}

.form-horizontal .form-group .option-wd {
  width: 92%;
  display: inline-block;
}

.form-horizontal .form-group .type-txt {
  color: #c3c2c2;
}

.main-tab.nav-tabs .nav-sm-link {
  padding: 0.8rem;
  width: 30%;
  margin: 0 1.4rem 0 0;
  font: 300 1.05rem/1.05rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: capitalize;
  background: #3883fa;
  color: #fff;
  border-radius: 6px;
}

.main-tab {
  padding: 0 0 2rem;
  background: 0 0;
  border-bottom: none;
}

.main-tab .nav-tabs .nav-item .nav-link,
.nav-tabs .nav-sm-link.active {
  position: relative;
  font: 300 1.05rem/1.05rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: capitalize;
  color: #fff;
  background-color: #df8107;
}

.txt-left {
  padding: 0.6rem 0 0;
}

.txt-left h4 a {
  color: #54545e;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.txt-left h4 {
  color: #4c4d51;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.txt-left h4 a:hover {
  color: #0056b3;
}

.txt-left p {
  padding: 0.4rem 0 0.2rem;
  font: 500 0.8rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.hover-txt strong {
  color: #3d3d3f;
  font: 600 0.9rem/0.9rem Roboto;
  margin: 0.4rem;
  vertical-align: top;
}

.hover-txt span {
  font: 700 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.4rem;
  vertical-align: super;
  color: #212123;
}

.delete-bttn {
  overflow: hidden;
  float: right;
  padding: 0 1.3rem 0;
  position: relative;
}

.row-margin {
  margin: 0 0 0.6rem;
  border-bottom: 1px solid #eee;
}

.delete-icon {
  color: #386db3;
  cursor: pointer;
  text-align: right;
}

.delete-icon span {
  line-height: 1.5rem;
  top: -13px;
}

.delete-buzz {
  color: #386db3;
  cursor: pointer;
  text-align: right;
  transform: rotate(-20deg);
}

.delete-buzz span {
  line-height: 1.5rem;
  font-size: 1.3rem;
  top: 9px;
  position: relative;
}

.delete-buzz span b {
  background: #ec3702;
  color: #fff;
  font: 400 0.6rem/0.5rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: rotate(16deg);
  padding: 0.2rem;
  position: absolute;
  right: -12px;
}

.filter-txt p {
  background: #4fc2f8;
  color: #fff;
  padding: 0.7rem 1rem 0.7rem;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.filter-txt h4 {
  font: 500 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  color: #fff;
  margin: 0 0 0.6rem;
  padding: 0.7rem 1rem 0.6rem;
  background: #009ee7;
  border-radius: 10px 10px 0 0;
}

.inner-filter-border {
  border: 1px solid #88adff;
  border-radius: 10px;
}

.inner-check {
  margin: 1rem 1rem 2rem;
  font: 500 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.scroling {
  overflow: scroll;
  height: 400px;
  overflow-x: hidden;
}

.row-back-clr {
  margin: 0 0 0.8rem;
  background: #f1f1f3;
  box-shadow: 0 0 5px #333;
}

.img-left-border img {
  width: 100%;
}

.img-left-border {
  border-bottom: 2px solid #f8f8f8;
  margin: 0 0 0.5rem;
  border-left: 4px solid transparent;
}

.img-left-border:hover {
  background: #f1f1f3;
  cursor: pointer;
}

.rate-img img {
  margin: 1rem 1rem 2rem;
}

.rate-txt {
  padding: 1rem 0 0;
}

.rate-txt h4 {
  font: 700 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  color: #408dff;
  padding: 0.6rem 0;
}

.rate-txt h5 strong {
  font: 600 0.9rem/0.9rem Roboto;
  margin: 0.4rem;
  vertical-align: top;
  color: #212123;
}

.rate-txt p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font: 500 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.huver-txt {
  padding: 4.6rem 0 0;
}

.huver-txt strong {
  padding: 0.5rem;
}

.row-back-colored {
  background: #437955;
}

.row-back-colored p {
  color: #133119;
  margin: 0;
  text-align: center;
  font: 600 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.6rem;
}

.yellow p {
  color: #ffb900;
}

.main-top {
  margin-top: 2rem;
}

.inner-check .check-txt {
  padding: 0.4rem 0.4rem;
}

.delete-bttn .custom_check {
  margin: 0.6rem 0 1.5rem;
}

.hover-txt i {
  color: #212529;
  float: right;
  font-size: 1.1rem;
}

.gradiant {
  background: linear-gradient(to right, #437955 100%, #e6e6e8 0);
}

.gradiant1 {
  background: linear-gradient(to right, #437955 0, #e6e6e8 45%);
}

.gradiant2 {
  background: linear-gradient(to right, #437955 20%, #e6e6e8 90%);
}

.gradiant3 {
  background: linear-gradient(to right, #437955 0, #e6e6e8 0);
}

.tgradiant {
  background: linear-gradient(to right, #25ae60 100%, #e6e6e8 0);
}

.tgradiant1 {
  background: linear-gradient(to right, #25ae60 0, #e6e6e8 45%);
}

.tgradiant2 {
  background: linear-gradient(to right, #25ae60 20%, #e6e6e8 90%);
}

.rate-txt .hover-txt i {
  padding: 0.4rem 0;
  font-size: 1.1rem;
  font-weight: 400;
}

.check-txt::before {
  overflow: hidden;
  background-color: #cdcdcf;
  border: 1px solid #bababc;
  width: 1.2rem;
  height: 1.2rem;
}

.check-txt::after {
  width: 1.2rem;
  height: 1.2rem;
}

.main-tab .nav-tabs .nav-item .nav-link,
.nav-tabs .nav-sm-link.active:after {
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 88%;
  margin-left: -9%;
  content: "";
  width: 0;
  height: 0;
  border-top: solid 28px #df8107;
  border-left: solid 5px transparent;
  border-right: solid 21px transparent;
}

.row-bttm-clr {
  margin: 0 0 3rem;
  background: #f1f1f3;
  box-shadow: 0 0 5px #333;
}

.box-bttm-space {
  margin: 0 0 1rem;
}

.inner-pagination .pagination {
  float: right;
  padding: 1rem 1.3rem;
}

.inner-pagination .pagination .page-link {
  border: none;
}

.inner-pagination .pagination .page-link {
  color: #e4e8eb;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.inner-pagination .pagination .page-link:hover {
  background: 0 0;
  color: #0056b3;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.blank-box {
  border: 2px solid #e4e8eb;
  border-radius: 5px;
  color: #fff;
}

.page-nxt h5 {
  padding: 1.3rem 0;
  color: #babcc9;
  font: 600 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.page-nxt strong {
  color: #797c83;
  padding: 0.4rem;
}

.page-nxt span {
  color: #797c83;
  padding: 0.4rem;
}

.wip {
  text-transform: uppercase;
}

.active-back-clr {
  border-left: 4px solid #fe6464;
  background: #f1f1f3;
  padding: 0.3rem 0 0;
}

.custom_height {
  min-height: 2.1rem;
}

.delete-icon .fa-bell {
  transform: rotate(-35deg);
  font-size: 1.3rem;
}

.del-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 1rem;
}

.bttn-check-mrg,
input[type="checkbox"] {
  overflow: hidden;
  margin: 0 0 0 0.7rem;
  background-color: #cdcdcf;
  border: 2px solid #bababc;
  width: 1.2rem;
  height: 1.2rem;
}

.rearch-d-list {
  display: none;
}

.delete-all {
  color: #fff;
  border-radius: 6px;
  background: #4fc2f8;
  border: 1px solid #4fc2f8;
  padding: 0.8rem 1.2rem 0.7rem;
  font: 300 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.delete-all button {
  color: #fff;
  background: 0 0;
}

.check-track .delete-bttn {
  margin: -8px 0;
}

.wip-txt {
  text-transform: uppercase;
}

.filter-right {
  float: left;
  position: absolute;
  z-index: 1;
  top: 5rem;
  display: none;
}

#filter-mobile1 {
  display: none;
  transition: max-height 350ms ease-in-out;
  position: absolute;
  top: 18px;
  left: 0;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #65d6f8;
  padding: 0.8rem;
  z-index: 1;
}

.top-right-sec .col-m-row3 {
  padding: 1rem 0 0.8rem;
}

.news-bttm-txt p {
  color: #1e59a7;
  margin: 0;
}

.banner-row1-bttm {
  max-height: 350px;
}

.banner-border-height {
  border-radius: 10px;
  border: 1px solid #0f6ead;
  overflow: hidden;
  position: relative;
}

.top-right-bttm {
  padding-bottom: 0;
}

.row-mrg-bttm .row-main .row-col2 p {
  margin: 0;
}

.row-mrg-bttm p span {
  font-size: 1rem;
  color: #bdbdbd;
  margin: 0;
  margin-bottom: 0.6rem;
}

.date-time-txt {
  margin: 0 0 1rem;
  border-bottom: 1px solid #ccc;
  overflow: hidden;
}

.date-time-txt p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #454545;
  font: 400 0.95rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
}

.jpyinr {
  border-bottom: 1px solid #ccc;
}

.jpyinr p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #454545;
  font: 400 1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.jpyinr p:nth-child(2) {
  font-size: 0.9rem;
  color: #b8b8b8;
}

.date-time-txt p:nth-child(2) {
  font-size: 0.9rem;
  color: #b8b8b8;
}

.social-img-border a {
  width: 100%;
  display: inline;
}

.trade-flt-img img {
  float: right;
  border-radius: 5px 0 0 5px;
  margin: 0;
}

.trade-flt-img a {
  float: right;
  bottom: 0;
  position: absolute;
  right: 0;
}

.banner-row1-bttm a {
  width: 100%;
}

.news .owl-item img {
  width: 100vw;
}

.date-bdr-hidden p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 0 1rem;
  border-bottom: none;
  color: #454545;
  font: 400 1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.date-bdr-hidden p:nth-child(2) {
  font-size: 0.9rem;
  color: #b8b8b8;
}

.usd-tabs {
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #dee2e6;
  background: #1b5ead;
  border-radius: 5px;
}

.nav-tabs .links.active,
.usd-tabs .nav-item.show .nav-link {
  color: #fff;
  background-color: #033672;
  border: none;
  border-radius: 5px;
}

.usd-tabs .nav-link {
  font-weight: 500;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.eurinr-txt p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #454545;
  font: 400 1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.eurinr-txt p:nth-child(2) {
  font-size: 0.9rem;
  color: #b8b8b8;
}

.usd2-tabs {
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #dee2e6;
  background: #1b5ead;
  border-radius: 5px;
}

.tab-chart {
  width: 50%;
}

.res-padd .slider-sec {
  padding: 0;
}

.tab-txt-left > .active {
  display: block;
  padding: 0;
}

.news-section {
  background: #f6f6f6;
  padding: 1.6rem 0;
  margin: 3rem 0;
}

.inner-news {
  overflow: hidden;
}

.inner-main {
  border-bottom: 1px solid #018aea;
  padding: 1rem 0 1rem;
  overflow: hidden;
}

.inner-news-bx {
  width: 100%;
}

.inner-nov-txt {
  float: left;
  padding: 0 0.2rem;
}

.inner-nov-txt p {
  text-transform: uppercase;
}

.inner-nov-txt p span {
  display: block;
  font-weight: 700;
  border-top: 1px solid #006cb7;
  text-align: center;
}

.inner-nov-txt p strong {
  font-size: 0.8rem;
  font-weight: 400;
}

.inner-nov-txt img {
  margin: 0 0.6rem;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.news-txt p {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  text-transform: capitalize;
  margin: 0 0 0;
  padding: 0.2rem 0 0.4rem;
  text-align: left;
  position: relative;
}

.arow-icon {
  float: right;
}

.inner-main-2 {
  padding: 1rem 0;
}

.links {
  display: block;
  padding: 0.7rem 0.67rem;
}

.usd2-tabs .nav-link {
  font-weight: 600;
  color: #fff;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.res-right .slider-sec .slider-row .row2 h5 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  padding: 0.6rem 0;
  margin: 0;
}

.res-right .slider-sec .slider-row .row2 h4 {
  font: 500 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  color: #666;
  padding: 0;
  margin: 0;
}

.popup-check {
  margin: 0.6rem 0;
}

.banner-img-width a {
  width: 100%;
}

.row-main-list .row-1 .bot-band .icon-t-left ul li {
  margin: 0 0.4rem;
}

.row-main-list .row-1 .bot-band .icon-t-left ul {
  text-align: left;
}

.top-right-d-sec .mrg-btm {
  padding: 0 0 1rem;
}

.rec-r-main .txt-clr h3 {
  color: #212529;
  font: 500 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1.2rem;
}

.research .owl-item img {
  width: 100vw;
}

.top-inner-head h3::before {
  border: 2px solid #5497dd;
  bottom: -1rem;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 10rem;
  right: 0;
}

.top-inner-head h3 {
  position: relative;
  color: #707070;
  font: 500 2rem/2rem Roboto, Arial, Helvetica, sans-serif;
}

.inner-top {
  padding: 3rem 0 0;
}

.select-hading-txt h3 {
  padding: 0.8rem 0;
  float: left;
  font: 700 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #43425d;
}

.inner-form {
  width: 25% !important;
}

.down-icon {
  -webkit-appearance: none;
  background: url(../images/down-icon.png);
  background-repeat: no-repeat;
  background-position: 96%;
}

.inner-back-img {
  margin-top: 2rem;
}

.inner-hd-top h2 {
  padding: 2.8rem 1.4rem 3.7rem;
  color: #fff;
  font: 500 2rem/2rem Roboto, Arial, Helvetica, sans-serif;
}

.list-item-head h3 {
  background: #4ed0aa;
  color: #fff;
  font: 500 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2.4rem 1.6rem 2.6rem;
  border-radius: 10px 10px 0 0;
}

.list-body-txt {
  position: relative;
  height: 53.6rem;
  background: #fff;
  border-radius: 10px 10px;
  margin: 0 1rem 0 1rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.list-item1-head h3 {
  background: #e6616b;
  color: #fff;
  font: 600 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2.4rem 1.6rem 2.6rem;
  border-radius: 10px 10px 0 0;
}

.list-item2-head h3 {
  background: #358adf;
  color: #fff;
  font: 600 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2.4rem 1.6rem 2.6rem;
  border-radius: 10px 10px 0 0;
}

.list-item3-head h3 {
  background: #e6619b;
  color: #fff;
  font: 600 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2.4rem 1.6rem 2.6rem;
  border-radius: 10px 10px 0 0;
}

.list-desimal ul li {
  list-style: decimal;
  color: #959595;
  font-size: 0.9rem;
  line-height: 2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.list-desimal {
  padding: 0 1rem 1rem;
}

.bttm-rate-txt {
  width: 100%;
  position: absolute;
  bottom: 6rem;
  color: #1976d3;
  text-align: center;
  font: 500 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.buy-bttn {
  width: 100%;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 0.8rem 4rem 0.8rem;
  border-radius: 5px;
  background: #358adf;
  color: #fff;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.inner-form .form-group {
  margin: 0 0.5rem !important;
}

.box-bttm {
  margin-bottom: 7rem;
}

.page-nxt h5 {
  padding: 1.3rem 0;
  color: #babcc9;
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif, sans-serif;
}

.page-nxt strong {
  color: #797c83;
  padding: 0.4rem;
}

.page-nxt span {
  color: #797c83;
  padding: 0.4rem;
}

.inner-pagination .pagination {
  float: right;
  padding: 1rem 1.3rem;
}

.inner-pagination .pagination .page-link {
  color: #e4e8eb;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.inner-pagination .pagination .page-link:hover {
  color: #007bff;
  background: 0 0;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.inner-pagination .pagination .page-link {
  border: none;
}

.inner-pagination .pagination .page-link {
  color: #e4e8eb;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.blank-box {
  border: 2px solid #e4e8eb;
  border-radius: 5px;
  color: #fff;
}

.bttm-rate-txt i {
  font-weight: 600;
  font-size: 1.3rem;
}

.footer-row {
  background: #393c46;
  margin: 0 0 2rem;
}

.footer-row p,
.sub-row ul li.active .sub-row2 {
  color: #fff;
  font-size: 1.2rem;
}

.footer-row p {
  font-weight: 700;
  font-size: 2rem;
  padding: 3rem 0 1rem;
}

.sub-row {
  width: 100%;
  margin: 0 auto;
}

.sub-row .sub-row1,
.sub-row .sub-row2 {
  width: 100%;
  overflow: hidden;
}

.sub-row .sub-row2 {
  color: #fff;
  padding: 1rem 2rem 2rem;
  font-size: 1.2rem;
}

.sub-row ul li.active {
  border-bottom: 8px solid #25ae60;
  color: #25ae60;
}

.sub-row .sub-row1 span {
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 0 0 0 0.5rem;
}

.sub-row ul li.active {
  border-bottom: 8px solid #ebd8c7;
  color: #fff;
}

.sub-row ul li {
  display: inline-block;
  border-bottom: 8px solid #a5a5a5;
  width: 33%;
}

.free-row {
  padding: 1rem 0 0;
}

.main-input {
  padding: 3px 0 10px;
}

.reveal-if-active {
  opacity: 0;
  min-height: 0;
  overflow: hidden;
  font-size: 16px;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: 0.5s;
}

input[type="checkbox"]:checked ~ .reveal-if-active,
input[type="radio"]:checked ~ .reveal-if-active {
  opacity: 1;
  min-height: 20px;
  -webkit-transform: scale(1);
  transform: scale(1);
  overflow: visible;
  padding: 0 10px;
}

.reveal-if-active input[type="text"] {
  color: #fff;
  outline: 0;
}

.require-if-active {
  background: #393c46;
  border-bottom: 1px solid #fff;
  border-top: none;
  border-left: none;
  border-right: none;
}

.days-free {
  color: #fff;
}

.days-free,
.require-if-active {
  font-size: 1.2rem;
}

.reveal-if-active {
  opacity: 0;
  min-height: 0;
  overflow: hidden;
  font-size: 16px;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: 0.5s;
}

.payment-mod h4 {
  color: #fff;
  text-transform: capitalize;
  font-size: 1.4rem;
  padding: 4px 0;
}

.but-row button[type="submit"] {
  cursor: pointer;
  margin: 2rem 0 2rem;
  display: inline-block;
  background: #c69c6b;
  border-radius: 8px;
  padding: 1rem 2rem;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  outline: 0;
  font: 400 1.3rem/1.3rem Roboto, sans-serif;
}

.app-txt-hading h4 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #383351;
  padding: 2rem 0 2.6rem;
}

.footer-icon-bttm {
  padding: 0 0 4.9rem;
}

.footer-txt {
  font-weight: 600;
  padding: 2rem 0 1rem;
  color: #fff;
  text-align: center;
}

.mobole-view {
  display: none;
}

.but-row {
  text-align: center;
}

.contact-frame iframe {
  width: 100%;
  overflow: hidden;
  height: 25rem;
}

.live-rate-sec {
  overflow: hidden;
  margin: 1.5rem 0;
}

.live-rate-sec .tab-content {
  border-radius: 0.25rem 0 0.25rem 0.25rem;
  border-top: 1px solid transparent;
  border-left: 1px solid #00b9f5;
  border-right: 1px solid #00b9f5;
  border-bottom: 1px solid #00b9f5;
  margin: -1px 0 0;
}

.live-rate-sec ul {
  margin: 0;
  border-bottom: 1px solid #00b9f5;
  width: 100%;
}

.live-rate-sec .nav-tabs .nav-item {
  margin: 0 auto;
}

.flag {
  display: inline-block;
  width: 16px;
  height: 11px;
  margin-right: 7px;
}

.live-rate-sec .table thead th {
  color: #283579;
  border-top: 1px solid transparent;
  width: 30%;
  padding: 0.85rem 0.15rem;
}

.live-rate-sec .table thead th p {
  color: #283579;
  padding: 0 0 0 2.8rem;
  margin: 0;
  font-size: 0.9rem;
}

.live-rate-sec .table tbody tr th {
  color: #1d5da9;
  font-size: 0.75rem;
}

.live-rate-sec .table td,
.live-rate-sec .table th {
  padding: 0.5rem 0.15rem;
}

.live-rate-sec .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(61, 192, 240, 0.05);
}

.live-rate-sec .nav-tabs .nav-item.show .nav-link,
.live-rate-sec .nav-tabs .nav-link.active {
  border-color: #fff #fff #fff;
  color: #283579;
  font-size: 1.3rem;
  padding: 0.2rem 3rem;
  text-transform: uppercase;
}

.live-rate-sec .nav-tabs .nav-link {
  border: 1px solid #dee2e6;
}

.live-rate-sec .buy-f-color {
  color: #5db602;
}

.live-rate-sec .sell-f-color {
  color: #ab1214;
}

.live-rate-sec .table-striped a {
  position: relative;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.live-rate-sec .table-striped a i {
  display: none;
  position: absolute;
  right: -20px;
  top: 0;
}

.live-rate-sec .table-striped a:hover i {
  display: inline-block;
}

.live-rate-sec .table tbody tr td {
  font-size: 0.81rem;
  font-weight: 500;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.live-rate-sec .table tbody tr td img {
  vertical-align: middle;
  width: 10%;
}

.live-rate-sec .table thead th.cur-col {
  padding: 0.65rem 1rem;
}

.live-rate-sec .table tbody tr td.cur-col-1 {
  padding: 0.5rem 1rem;
  border-right: 1px solid #dee2e6;
  text-align: left;
}

.live-rate-sec .table thead th.cur-col input[type="text"] {
  border: 1px solid #898989;
  padding: 0.15rem;
  width: 100%;
}

.live-rate-sec .table thead .f-col1 {
  border-right: 1px solid #00b9f5;
  text-align: center;
}

.live-rate-sec .table thead .f-col2 {
  text-align: center;
}

.live-rate-sec .table .f-col2 {
  text-align: center;
  border-right: 1px solid #dee2e6;
}

.live-rate-sec .table .f-col3 {
  text-align: right;
  border-right: 1px solid #dee2e6;
  padding-right: 1.1rem;
}

.live-rate-sec .table .f-col4 {
  border-right: 1px solid #dee2e6;
}

.faq-b-details {
  border: 1px solid #003956;
  border-radius: 5px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.faq-b-details ul {
  margin: 0;
}

.faq-b-details ul li {
  margin: 0 0 0.3rem;
  border-bottom: 1px solid #009ee7;
}

.faq-b-details ul li:last-child {
  margin: 0;
  border-bottom: 0 solid transparent;
}

.faq-b-details ul li a {
  color: #fff;
  display: block;
  background: #4fc2f8;
  padding: 0.7rem 0 0.7rem 1rem;
}

.faq-b-details ul li a:hover {
  background: #009ee7;
}

.faq-b-details ul li a.active {
  background: #009ee7;
}

.faq-head {
  overflow: hidden;
  position: relative;
  margin: 0 0 1.5rem;
}

.faq-head h2 {
  font: 600 1.4rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  text-transform: uppercase;
  margin: 0 0 0;
  padding: 0 0 0.5rem;
  text-align: left;
  position: relative;
}

.faq-head h2::before {
  border: 1px solid #1a58a7;
  bottom: 0;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.faq-drop {
  display: none;
}

.faq-block-all .accordion .card {
  margin: 0.3rem 0.3rem 1rem;
  border-radius: 10px;
  box-shadow: 3px 3px 3px 0 rgba(0, 57, 87, 0.2);
}

.faq-block-all .accordion .card-header {
  border-radius: 10px;
  padding: 1.05rem 1.25rem;
}

.faq-block-all .accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 10px;
}

.faq-block-all .accordion .card:not(:first-of-type):not(:last-of-type) {
  border-radius: 10px;
}

.faq-block-all .accordion .card-header h5 a {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.faq-b-details ul li a span {
  font-size: 0.7rem;
  margin: 0 0.3rem 0 0;
}

.popupform .table-responsive {
  margin: 2.5rem 0 0;
}

.popupform .table-responsive .table td {
  padding: 0.45rem;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid transparent;
  text-align: left;
}

.popupform .table-responsive .table th {
  padding: 0.45rem;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #3d4986;
  border-bottom: 1px solid #dee2e6;
  border-top: 1px solid transparent;
  text-align: left;
}

.footer-bottom-block {
  display: none;
}

.add-rate-border button[type="submit"] {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.4rem 1.3rem 0.4rem;
  margin: 0 0.2rem;
  letter-spacing: 1px;
}

.banner-border-height .banner-row-news {
  position: relative;
  overflow: hidden;
}

.banner-border-height .banner-row-news a {
  width: 100%;
}

.banner-border-height .banner-row-news .bot-band {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(58, 56, 56, 0.8);
}

.banner-row-news .item .bot-band .bot-t-band {
  position: relative;
  padding: 0.5rem 1rem;
}

.banner-row-news .item .bot-band .bot-t-band p {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.banner-row-news .item .bot-band .bot-t-band h6 {
  color: #fff;
  margin: 0;
  padding: 0;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.view-more {
  width: 100%;
  overflow: hidden;
}

.view-more #accordion-more .card {
  border: 1px solid transparent;
  text-align: center;
}

.view-more #accordion-more .card .card-header h5 {
  color: #1c5ba8;
}

.buy-thanku p {
  font: 500 0.8rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.buy-thanku h3 {
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.buy-thanku p span {
  display: inline-block;
  color: #1c5ba8;
}

.thanku-sec1 {
  margin: 0.5rem 0 0;
}

.thanku-sec1 .view-de-buy {
  text-align: center;
  margin: 0 0 0.5rem;
}

.img-preview {
  border: 1px solid #081e4f;
  display: inline-block;
  width: 60px;
  height: 45px;
  overflow: hidden;
  border-radius: 5px;
  float: left;
  margin: 0 1rem 0 0;
}

.img-progress {
  display: block;
  margin: 1rem 0 0;
}

.img-progress .progress {
  height: 0.5rem;
}

.add-buy-border {
  background: #f4fcff;
  overflow: hidden;
  padding: 1rem;
  border-radius: 10px;
}

.thanku-sec1 .card-body {
  padding: 0;
}

.file-buy-upload p {
  font: 500 1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.5rem 0;
  color: #283579;
}

.file-buy-upload .bot-border {
  border-bottom: 1px solid #e7e5e6;
  margin: 0 0 1rem;
  padding: 0 0 0.3rem;
}

.countrylist {
  float: right;
}

.countrylist .form-horizontal .form-group {
  margin: 0;
}

.countrylist .form-horizontal .form-group .form-control {
  height: auto;
}

.cou-map {
  float: right;
  color: #1b59a6;
  margin: 0.25rem 0 0;
}

.rate-sell .input-group-prepend {
  float: left;
  position: relative;
  top: 26px;
  width: 5%;
}

.rate-sell .input-group-prepend i {
  margin-right: 0;
  color: #233c7e;
}

.rate-sell .rate-exp {
  float: left;
  width: 95%;
}

.rate-sell .input-group-prepend .input-group-text {
  padding: 0;
  background-color: #fff;
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.error-msg {
  position: relative;
  top: -15px;
  left: 0;
}

.researchlistrow {
  overflow: hidden;
}

.researchlistrow .card-header {
  padding: 0;
}

.researchlistrow .card-header .left-o-sec-head {
  width: 100%;
  text-align: left;
  padding: 0;
  border-radius: 0;
}

.researchlistrow .card-body {
  padding: 0;
}

.researchlistrow .card-header .left-o-sec-head h4 {
  text-align: left;
}

.researchlistrow .left-o-cont ul {
  margin: 0;
}

.researchlistrow .left-o-cont ul li {
  margin: 0 0 0.3rem;
}

.researchlistrow .left-o-cont ul li span {
  margin: 0 0 0 0.8rem;
  display: inline-block;
}

.researchlistrow .left-o-cont ul li span span {
  margin: 0 0 0 0.8rem;
  display: inline-block;
}

.researchlistrow .custom-control-label {
  font-size: 0.8rem;
}

.data-f-mobile {
  display: none;
}

.sub-forexpulse .card {
  border: 1px solid transparent;
}

.sub-forexpulse .card h3 {
  text-transform: uppercase;
  color: #797979;
  font: 600 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-forexpulse .card h5 {
  text-transform: uppercase;
  color: #797979;
  font: 600 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-forexpulse .card-header {
  background: #fff;
}

.for-dec-row {
  color: #797979;
  font: 600 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

#accordionsubscription .table td {
  font: 400 0.9rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #707070;
}

#accordionsubscription .table thead th {
  color: #dc0733;
  background: #fff;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  text-transform: capitalize;
  font-size: 1rem;
}

#accordionsubscription .card-body {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 1rem 0.2rem;
  border-radius: 10px;
  padding: 2rem 1.5rem 1rem;
}

.sub-button span {
  background: #b43642;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}

#accordionsubscription .sub-total th {
  border-top: 1px solid #c7c7c7;
}

#accordionsubscription .sub-total td {
  color: #1c5ba8;
}

#accordionsubscription .table {
  color: #707070;
}

.sub-button span .custom-control-label::before {
  border: 1px solid #585197;
}

.sub-g-button span {
  background: #04b888;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
}

.sub-total {
  border-bottom: 1px solid #c7c7c7;
  border-top: 1px solid #c7c7c7;
}

.unsubscribepopup {
  overflow: hidden;
  margin: 2.5rem 0;
}

.unsubscribepopup .card h3 {
  color: #313131;
  text-transform: capitalize;
  font: 600 1.1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.7rem;
}

.unsubscribepopup .card h3 span {
  color: #707070;
  font: 600 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.unsubscribepopup .card ul {
  margin: 0;
}

.unsubscribepopup .card ul li {
  margin: 0 0 0.3rem;
  padding: 0;
}

.unsubscribepopup .card p {
  color: #707070;
  font: 400 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  text-align: left;
}

.text-danger {
  position: relative;
  top: -23px;
  font: 500 0.6rem/0.8rem roboto, Arial, Helvetica, sans-serif;
}
.text-danger-otp {
  position: relative;
  top: -21px;
  font: 500 0.6rem/0.8rem roboto, Arial, Helvetica, sans-serif;
  color: #dc3545;
}

.text-danger-pay {
  position: relative;
  top: -7px;
  font: 500 0.6rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #dc3545;
  left: 50px;
}
.text-danger-down {
  position: relative;
  top: 5px;
  font: 500 0.6rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #dc3545;
}

.text-a-danger {
  position: relative;
  top: -25px;
  font: 500 0.6rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #dc3545;
}

.text-term-danger {
  position: relative;
  top: -20px;
  font: 500 0.6rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #dc3545;
}

.text-danger-sub {
  position: absolute;
  color: #dc3544;
  left: 60px;
  top: 33px;
  font: 500 0.6rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.mfe-payment-sec .submit-sub button[type="submit"] {
  background: #00b2cc;
  border: 1px solid #00b2cc;
}

.unhappy-top {
  border-top: 1px solid #3968ac;
  overflow: hidden;
  margin: 3.5rem 0 0;
  padding: 1rem 0 0;
}

.unhappy-row {
  overflow: hidden;
}

.unhappy-row img {
  margin: 0 0 1rem;
}

.blog-bg {
  background: #6dcff6;
  background: url(../images/blog-bmg2.jpg) center top;
}

.blog-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  max-height: 400px;
  background: url(../images/blog-bmg2.jpg) center top repeat-x;
}

.blog-carousel .owl-carousel .owl-nav button.owl-next,
.blog-carousel .owl-carousel .owl-nav button.owl-prev {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 55%;
  opacity: 1 !important;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.blog-carousel .owl-carousel .owl-nav button.owl-prev {
  right: 30px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.blog-carousel .owl-carousel .owl-nav button.owl-next {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.blog-carousel .owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.blog-carousel .bimg {
  float: left;
  width: 75%;
}

.blog-carousel .bcontent {
  float: left;
  width: 23%;
  padding: 4rem 0 0 2%;
}

.blog-carousel .bcontent p {
  color: #fff;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  text-align: left;
}

.blog-carousel .bcontent p a {
  color: #000;
}

.blog-lead {
  overflow: hidden;
  background: #ebebeb;
  padding: 2rem;
}

.blog-2 {
  overflow: hidden;
  margin: 2rem 0;
}

.blog-r-sec {
  overflow: hidden;
  width: 100%;
  background: #fff;
  margin: 0 0 1rem;
  padding: 1rem;
}

.blog-lead h3 {
  margin: 0 0 1rem;
  color: #232323;
  font: 600 1.2rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.blog-r-sec .leimg {
  float: left;
  width: 40%;
}

.blog-r-sec .leimg img {
  overflow: hidden;
}

.blog-r-sec .lecontent {
  width: 50%;
  margin: 0 0 0 1rem;
  padding: 0;
  float: left;
}

.lecontent-row1 {
  overflow: hidden;
  border-bottom: 1px solid #d5d5d5;
}

.lecontent-row1 h4 {
  color: #233645;
  padding: 0 0 0.5rem;
  margin: 0;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.lecontent-row1 p {
  color: #233645;
  padding: 0 0 0.5rem;
  margin: 0;
  font: 400 0.7rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.lecontent-row2 {
  position: relative;
  margin: 0.5rem 0 0;
}

.lecontent-row2 p i {
  margin-right: 0;
}

.lecontent-row2 p {
  padding: 0;
  margin: 0;
}

.lecontent-row2 p a {
  color: #109dd0;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.lecontent-row2 p span {
  right: 0;
  position: absolute;
  color: #3fbdea;
  top: 0.1rem;
}

.blog-thumb {
  position: relative;
  border: 1px solid #ccc;
}

.blog-b-thumb {
  height: 295px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
}

.blog-thumb .meta-date {
  position: absolute;
  top: 0;
  background: #85d03f;
  color: #3a3838;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.3rem 2rem 0.3rem 0.2rem;
}

.blog-thumb .meta-detail {
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 1)
  );
  width: 100%;
  padding: 0.5rem 0;
}

.blog-thumb .meta-detail h3 {
  color: #fff;
  padding: 0 0 0 1rem;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.blog-thumb .meta-detail h3 a {
  color: #fff;
  padding: 0;
}

.blog-thumb .meta-detail a {
  color: #fff;
  padding: 0 0 0 1rem;
  position: relative;
}

.blog-thumb .meta-detail a::after {
  border: 1px solid #fff;
  content: "";
  position: absolute;
  width: 3rem;
  border-radius: 2.5px;
  margin: 0 0 0 0.5rem;
  top: 0.8rem;
}

.blog-thumb .meta-detail h3 a::after {
  border: none;
}

.blog-cs-thumb {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin: 0.4rem;
}

.blog-bg-bot {
  margin: 0 0 1rem;
}

.blog-po-row {
  overflow: hidden;
}

.blog-po-row h3 {
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font: 600 2.3rem/2.3rem Roboto, Arial, Helvetica, sans-serif;
}

.blog-po-row1 {
  overflow: hidden;
}

.blog-po-row1 h4 {
  color: #fff;
  text-align: left;
}

.blog-tweet {
  background: #119dd0;
  overflow: hidden;
}

.blog-tweet .row1 {
  overflow: hidden;
  background: #0d8bbb;
}

.blog-tweet .row1 h5 {
  color: #fff;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.4rem 1rem;
}

.blog-tweet .row2 {
  overflow: hidden;
  background: #119dd0;
}

.blog-tweet .row2 .row3 {
  overflow: hidden;
  background: #fff;
  margin: 0.3rem;
}

.blog-linkedin {
  background: #0077b6;
  overflow: hidden;
}

.blog-linkedin .row1 {
  overflow: hidden;
  background: #04679b;
}

.blog-linkedin .row1 h5 {
  color: #fff;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.4rem 1rem;
}

.blog-linkedin .row2 {
  overflow: hidden;
  background: #0077b6;
}

.blog-linkedin .row2 .row3 {
  overflow: hidden;
  margin: 0.3rem;
}

.blog-linkedin .row2 .row3 .linkitem {
  min-height: 336px;
  overflow: hidden;
  padding: 1rem;
}

.blog-linkedin .row2 .row3 .linkitem .item1 {
  overflow: hidden;
  border-bottom: 1px solid #fff;
  margin: 0 0 1.5rem;
}

.blog-linkedin .row2 .row3 .linkitem .item1 h6 {
  color: #fff;
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.7rem;
}

.blog-linkedin .row2 .row3 .linkitem .item1 p {
  color: #fff;
  font: 400 0.8rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
}

.blog-linkedin .row2 .row3 .linkitem .item1:last-child {
  border-bottom: 1px solid transparent;
}

.blog-youtube {
  background: #fff;
  overflow: hidden;
}

.blog-youtube .row1 {
  overflow: hidden;
  background: red;
}

.blog-youtube .row1 h5 {
  color: #fff;
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.4rem 1rem;
}

.blog-youtube .row2 {
  overflow: hidden;
  background: #fff;
  min-height: 336px;
  padding: 1rem;
}

.blog-youtube .row2 .row3 {
  overflow: hidden;
  background: #fff;
  margin: 0.3rem;
}

.youtube1 {
  overflow: hidden;
}

.youtube1 p {
  font: 400 0.8rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  color: #000;
}

.youtube1 iframe {
  margin: 0 0 1.5rem;
}

.blog-bot-row2 {
  overflow: hidden;
}

.blog-bot-row2 .row-head-1 h3 {
  text-align: left;
  font: 500 1.3rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.blog-bot-row2 .row-cont-1 {
  background: #fff;
  overflow: hidden;
  min-height: 445px;
  padding: 1.1rem;
}

.blog-bot-row2 .row-cont-1 ul li {
  font: 500 0.8rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.blog-bot-row2 .row-cont-1 ul li::before {
  content: "\2022";
  color: #c81a78;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.blog-bot-row2 .row-cont-1 h6 {
  margin: 0 0 0.5rem;
}

.blog-bot-row2 .row-cont-1 h6 span {
  display: inline-block;
  background: #8f53a1;
  color: #fff;
  font: 500 0.8rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.3rem 1.2rem;
}

.blog-bot-row2 .row-cont-1 .row1 h4 {
  color: #1a5a8a;
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.5rem 0 0.5rem;
}

.blog-bot-row2 .row-cont-1 .row1 h5 {
  font: 500 0.8rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 1rem;
}

.blog-bot-row2 .row-cont-1 .row1 p {
  color: #000;
  font: 500 0.8rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.blog-po-row2 {
  overflow: hidden;
  padding: 0 0 3rem;
}

.blog-row3 {
  overflow: hidden;
  margin: 0 0;
}

.blog-row3 h2 {
  color: #272727;
  font: 600 1.8rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
  text-transform: uppercase;
  text-align: center;
}

.blog-row3 p {
  text-align: center;
}

.blog-row4 {
  overflow: hidden;
  margin: 2rem 0;
}

.blog-row4 h3 {
  text-transform: uppercase;
}

.blog-row4 h3 a {
  display: inline-block;
  border: 1px solid #00bff3;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  text-transform: capitalize;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.blog-row5 {
  overflow: hidden;
  margin: 2rem 0;
}

.blog-cs-cont2 {
  overflow: hidden;
  position: relative;
}

.blog-cs-cont2 p span {
  right: 0;
  position: absolute;
  color: #00bff3;
}

.blog-case {
  overflow: hidden;
  padding: 1rem;
}

.int-form {
  margin: 0;
}

.int-form-row {
  border: 1px solid #8d8d8d;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
}

.int-form-row::after {
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #88b7d5;
  border-width: 30px;
  margin-left: -30px;
}

.int-form h5 {
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.int-form-row h6 {
  font: 600 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.case-row {
  overflow: hidden;
  background: #1b5cac;
}

.case-row .col1 {
  float: left;
  width: 70%;
}

.case-row .col2 {
  float: left;
  width: 28%;
  padding: 2%;
}

.case-row .col2 h3 {
  color: #fff;
  margin: 3rem 0 1rem 0;
  text-shadow: 0 0 0.3em #000;
  font: 600 1.6rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
}

.case-row .col2 h3 a {
  color: #fff;
  text-decoration: none;
}

.case-row .col2 p {
  color: #fff;
}

.case-row .col2 p a {
  color: #3ec2f3;
  text-align: right;
  display: inline-block;
}

.case-row2 {
  margin-top: 3rem;
}

.case-row3 {
  padding: 1rem 0 0;
}

.case-row3 h3 {
  margin: 0;
}

.test-case {
  float: left;
  position: relative;
  margin: 7rem 0 0;
}

.test-case .top-head-sec {
  width: 100%;
  position: absolute;
}

.test-case .top-head {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: -4rem auto 0;
  position: relative;
}

.test-case .top-head img {
  height: 100%;
}

.casestudy-tm {
  overflow: hidden;
  margin: 0 0 3rem;
  padding: 0 0;
}

.casestudy-tm .owl-carousel .owl-nav button.owl-next,
.casestudy-tm .owl-carousel .owl-nav button.owl-prev {
  color: #006df0;
  font-size: 30px;
  position: absolute;
  top: 0;
  opacity: 1;
  width: 25px;
  height: 40px;
  line-height: 38px;
  font-weight: 600;
}

.casestudy-tm .owl-carousel .owl-nav button.owl-prev {
  right: 30px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.casestudy-tm .owl-carousel .owl-nav button.owl-next {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.casestudy-tm .owl-theme .owl-nav [class*="owl-"]:hover {
  background: 0 0;
}

.casestudy-tm .client-content {
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.16);
  margin: 0 0.3rem 0.5rem;
  width: 96%;
  min-height: 280px;
  padding: 6rem 1rem 0;
}

.casestudy-tm .client-content h6 {
  font: 600 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 0 0 1rem;
}

.casestudy-tm .client-content p {
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 0 0 0.5rem;
}

.casestudy-tm .client-content h5 {
  color: #636363;
  text-align: center;
  font: 800 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.email_error {
  color: #dc3545;
}

.casestudy-row3 {
  margin: 0;
}

.promo-row {
  overflow: hidden;
  padding: 0 0.2rem;
  margin: 0 0 0.5rem;
  border-bottom: 1px solid #505050;
}

.promo-r-main .promo-row:last-child {
  border-bottom: 1px solid transparent;
}

.promo-r-main ul {
  margin: 0;
  padding: 0;
}

.promo-r-main {
  overflow: hidden;
  padding: 0 0.2rem;
  margin: 2.5rem 0 0;
}

.promo-main .modal-body .close {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 20px;
  color: #1c59aa;
  opacity: 1;
}

.promo-row h6 {
  color: #20a910;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.promo-row h6 i {
  color: #ff8c0f;
  margin-right: 0;
  margin-left: 0.2rem;
}

.promo-row label {
  color: #283579;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-row .custom-control-label::before {
  border: 1px solid #9b9b9b;
}

.promo-row h5 {
  font: 500 0.75rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.5rem;
}

.promo-row h5 span {
  color: #2f3c7e;
  font-size: 1rem;
}

.promo-row p {
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.3rem 0.2rem;
  color: #009ee7;
}

.promo-row p i {
  margin-right: 0;
  margin-left: 0.2rem;
  color: #ff8c0f;
}

.buy-term {
  border-top: 1px solid #1b5cac;
  padding: 1rem 0;
}

.promo-row h4 {
  font: 600 0.775rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.5rem;
}

.promo-row h4 span {
  color: #dc3545;
}

.footercontSec h1 {
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  text-transform: capitalize;
  margin: 0 0 0;
  padding: 0 0 1rem;
  text-align: left;
  position: relative;
}

.footercontSec h1::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.footercontSec h2 {
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  margin: 0 0 0;
  padding: 0 0 1rem;
  text-align: left;
  position: relative;
}

.footercontSec h2::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}

.footercontSec p {
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 0;
}
.footercontSec h3 {
  font: 400 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  padding: 0 0 0.6rem;
  margin: 0;
}
.footercontSec h4 {
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  padding: 0 0 0.6rem;
  margin: 0;
}
.footercontSec h5 {
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  padding: 0 0 0.6rem;
  margin: 0;
}
.footercontSec h6 {
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  padding: 0 0 0.6rem;
  margin: 0;
}
.footercontSec ol {
  margin: 5px 0 20px 18px;
}
.footercontSec ol li {
  color: #454545;
  font: 400 0.975rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}
.footercontSec ul {
  margin: 5px 0 20px 18px;
}
.footercontSec ul li {
  color: #454545;
  font: 400 0.975rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  list-style: disc;
}
.current-row1 {
  overflow: hidden;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: #555;
  font: 600 1rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}

.current-row1 .colcurr-1 {
  float: left;
  width: 20%;
}

.current-row1 .colcurr-2 {
  float: left;
  width: 20%;
}

.current-row1 .colcurr-3 {
  float: left;
  width: 20%;
}

.current-row1 .colcurr-4 {
  float: left;
  width: 20%;
}

.current-row1 .colcurr-5 {
  float: left;
  width: 15%;
}

.current-row1 .colcurr-6 {
  float: left;
  width: 5%;
}

.current-row2 {
  background: #f4fcff;
  font: 400 0.85rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}

.accordioncareer .card-header {
  padding: 0;
}

.accordioncareer .card-body h3 {
  color: #1c5ba8;
  margin: 0 0 0.6rem;
  padding: 0 0 0.3rem;
  font: 500 1.2rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px dashed #ccc;
}

.accordioncareer .card-body h4 {
  color: #555;
  margin: 0 0 0.6rem;
  padding: 0 0 0.6rem;
  font: 600 0.9rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #ccc;
}

.accordioncareer .card-body h4 span {
  font: 400 0.9rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}

.accordioncareer .card-body p {
  margin: 0 0 1rem;
}

.accordioncareer .card-body h5 {
  color: #555;
  margin: 0;
  padding: 0;
  font: 600 0.9rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px solid transparent;
}

.accordioncareer .card-body ol li {
  list-style: decimal;
}

.accordioncareer .custom-control {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 13px;
}

.accordioncareer .card {
  position: relative;
}

.carapplyform {
  margin: 0 0;
  background: #f7f7f7;
  padding: 1rem;
  overflow: hidden;
}

.carapplyform button[type="submit"] {
  padding: 0.6rem 2.5rem;
  margin: 0 0.5rem;
}

.accordioncareer .custom-control-label::before {
  border: 1px solid #65d6f8;
}

.careerjob {
  margin: 0 0 3rem;
  overflow: hidden;
}

.accordioncareer .card-header {
  background: #fff;
}

.applyjob-popup .modal-header .close {
  color: #1c59aa;
  opacity: 1;
}

.applyjob-popup .modal-header h5 {
  color: #1c5ba8;
  margin: 0;
  padding: 0.5rem 0 0;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.conaddress {
  overflow: hidden;
  margin: 0 0.3rem 0.5rem;
}

.conaddress .colcontact-1 {
  float: left;
  width: 5%;
}

.conaddress .colcontact-1 i {
  color: #283579;
  font-size: 1.3rem;
}

.conaddress .colcontact-2 {
  float: left;
  width: 95%;
}

.conaddress .colcontact-2 h5 {
  color: #2196f3;
  font: 500 1rem/1.7rem Roboto, Arial, Helvetica, sans-serif;
}

.conaddress .colcontact-2 h5 span {
  color: #666;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.conaddress .colcontact-2 p {
  padding: 0;
  margin: 0;
}

.google-map {
  overflow: hidden;
  border: 1px solid #003956;
  border-radius: 10px;
  max-height: 335px;
}

.contact-tm {
  margin: 1rem 0 1rem;
}

.body-bg-img {
  position: relative;
}

.comming-txt h1 {
  font: 500 3rem/6rem Roboto, Arial, Helvetica, sans-serif;
  padding: 8.3rem 3rem 0;
  color: #214a81;
}

.comming-txt p {
  font: 500 1.2rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
  color: #020202;
  padding: 1rem 3rem 0;
}

.comming-txt h3 {
  font: 600 1.2rem/2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 1rem 3rem 0;
  color: #214a81;
}

.comming-txt ul li {
  float: left;
  padding: 0 0.2rem 0;
  margin: 0 0 12rem;
}

.comming-txt ul {
  padding: 2rem 1.8rem 0;
}

.txt-block {
  display: block;
}

.login-popup .modal-body .top-o {
  top: 0;
  padding: 0.9rem 0;
  color: #c4c5c5;
}

.login-popup .popup-txt h3 {
  text-align: center;
  font: 500 1.6rem/2rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: none;
  padding: 3rem 0;
}

.popup-txt span {
  color: #1c5ba8;
}

.login-popup .modale-width {
  max-width: 456px;
}

.login-popup .boder-o {
  border-left: none;
  padding: 1.2rem 3.4rem;
}

.login-bttn button[type="submit"] {
  padding: 0.3rem 7.8rem 0.5rem;
  font-size: 1.2rem;
}

.form-horizontal .form-group .txt-size {
  overflow: hidden;
  left: 8rem;
  position: relative;
}

.mobile-img {
  background: url(../images/phone-icon.png);
  background-repeat: no-repeat;
  background-position: 26%;
  background-size: 4%;
  padding: 0.3rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-popup .login-row .nav-center {
  border: 1px solid #ccc;
  margin: 0 0 3rem;
  padding: 0 0;
  border-radius: 3px;
}

.login-popup .login-row .mrg {
  padding: 0.5rem 0.8rem;
  width: 100%;
  border-right: 1px solid #ccc;
  border-radius: 0;
  color: #767676;
  text-align: center;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.nav-item .active {
  background: #ccc;
}

.login-bttn .login-row .nav-tabs .nav-link.active {
  border-bottom: 3px solid #1c5ba8;
  background: #cce4fc;
  width: 100%;
  border-radius: 0;
}

.login-bttn .login-row .nav-tabs .nav-link {
  border-bottom: 3px solid transparent;
}

.login-bttn .login-row .nav-tabs .nav-link:hover {
  border-bottom: 3px solid #1c5ba8;
  background: #cce4fc;
  width: 100%;
  border-radius: 0;
}

.login-popup .login-row .both {
  border-right: 0;
  padding: 0.5rem 0.81rem;
}

.login-bttn {
  top: 4rem;
}

.login-bttn .modal-content {
  border: 0;
}

.request-call {
  background: #1c5ca8;
  position: fixed;
  right: 0;
  top: 43%;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  z-index: 99;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
}

.request-call img {
  max-width: 100%;
  padding: 10px 2px 10px 5px;
}

.schedule-heading {
  color: #1c5ba8;
  font: 500 1.4rem/2rem "Poppins";
  margin: 0 0 0.6rem;
}

.jou-r-img {
  text-align: center;
  width: 100%;
  background: url(../images/jou-img-bg.jpg);
}

.jou-main {
  text-align: center;
  overflow: hidden;
  margin: 3rem 0;
}

.jou-main h2 {
  margin: 0 0 1rem;
}

.jou-main img {
  margin: 2rem 0 0;
}

.jou-main p {
  font: 400 0.975rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
}

.buyon-corporate p {
  font-size: 0.8rem;
  line-height: 1.4rem;
  font-family: "Poppins";
}

.supPricingsec .card-header {
  padding: 0;
  background: #009ee7;
}

.supPricingsec .card-body {
  padding: 0;
}

.supPricingsec .card-header a {
  cursor: pointer;
  text-align: left;
  color: #fff;
  width: 100%;
}

.suppricinglist .card-title {
  margin: 0;
}

.suppricinglist .supPricingsec .card-header .collapsed:after {
  font-family: FontAwesome;
  content: "\f067";
  float: right;
  color: #fff;
  position: absolute;
}

.suppricinglist .supPricingsec .card-header:after {
  font-family: FontAwesome;
  content: "\f068";
  float: right;
  position: absolute;
  top: 7px;
  color: #fff;
}

.req-text p {
  font-size: 0.9rem;
}

.req-text .custom-control-label::before {
  border: 1px solid #00b9f5;
}

.req-services {
  color: #000;
}

#scheduleDemo p {
  color: #666;
}

#scheduleDemo p a {
  color: #007ad9;
}

.req-services .multiselect-dropdown .dropdown-btn .dropdown-down {
  border-top: 7px solid #1c5ba8 !important;
  position: absolute;
  right: 5px;
  /* top: 16px!important; */
  top: 10px !important;
  border-left: 7px solid transparent !important;
  border-right: 7px solid transparent !important;
}

.req-services .multiselect-dropdown .dropdown-btn .dropdown-up {
  border-bottom: 7px solid #1c5ba8 !important;
  position: absolute;
  right: -5px;
  top: 13px !important;
  border-left: 7px solid transparent !important;
  border-right: 7px solid transparent !important;
}

.req-services .dropdown-list li {
  padding: 3px 10px 8px !important;
  font-size: 0.8rem;
}

.req-services .multiselect-dropdown .dropdown-btn .selected-item {
  padding: 0 5px 3px !important;
  background: #1c5ba8 !important;
  margin: 0 0 0.1rem;
  font-size: 0.7rem;
}

.req-services .dropdown-list ul {
  max-height: 120px !important;
}

.req-message {
  background: #ced4da;
  margin: 0;
  /*margin: 0 .8rem;*/
  padding: 0 0.3rem;
}

.req-services .multiselect-dropdown .dropdown-btn {
  border-bottom: 1px solid #adadad !important;
  border-left: 1px solid transparent !important;
  border-top: 1px solid transparent !important;
  border-right: 1px solid transparent !important;
  border-radius: 0 !important;
  padding: 6px 4px !important;
}

.form-horizontal .req-services span {
  color: #80868b;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.req-services .multiselect-item-checkbox input[type="checkbox"] + div:before {
  border: 1px solid #337ab7 !important;
}

/* #scheduleDemo button[type=button] {
    background: 0 0;
    color: #1c5ba8
} */

.border-f-top h6 {
  font: 400 0.9rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 2rem;
  color: #c2c2c2;
}

.border-f-top h6 span {
  color: #9a9999;
  font: 300 0.9rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
}

.buyonline-tpay {
  overflow: hidden;
  padding: 0.4rem;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  margin: 0 0.7rem 0.5rem;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
}

.del-icon span {
  color: #f4511e;
  cursor: pointer;
}

.mfe-no-page {
  overflow: hidden;
  margin: 2rem 0 0;
}

.mfe-ser-head {
  position: absolute;
  top: 0;
  right: -97px;
}

.best-offer-left .offer-inner-row {
  width: 90%;
  margin: 0 auto;
  margin: 1rem;
  padding: 0.5rem;
}

.top-right-sec .col-m-row4 {
  width: 100%;
  overflow: hidden;
}

.top-right-sec .col-m-row4 p {
  color: #454545;
  font: 400 0.9rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.8rem;
}

.top-right-sec .col-m-row5 {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e7e7e7;
  margin: 0 0 1.3rem;
}

.top-right-sec .col-m-row5 ul {
  margin: 0;
  padding: 0;
}

.top-right-sec .col-m-row5 ul li {
  display: inline-block;
  margin: 0 1rem 0 0;
  font-size: 0.9rem;
}

.top-right-sec .col-m-row5 ul li a {
  color: #707070;
}

.top-right-sec .col-m-row5 ul li a:hover {
  border-bottom: 2px solid #293276;
}

.top-right-sec .col-m-row5 ul li:last-child {
  margin: 0;
}

.top-right-sec .col-m-row1 .col-row3 {
  width: 72%;
  float: left;
  overflow: hidden;
  margin: 0 0 0 3%;
}

.rate-timepk {
  position: absolute;
  overflow: hidden;
  border-radius: 5px;
  padding: 0.5rem;
  top: 3rem;
  box-shadow: 0 0 10px 0 #aaa;
  background: #fff;
  transition: 0.5s ease;
  z-index: 2;
}

.rate-timepk button[type="button"] {
  padding: 0.1rem;
  font-size: 0.8rem;
  background: #1c5ba8;
  color: #fff;
}

.rate-timepk a span {
  color: #1c5ba8;
  padding: 0;
}

.selectdiv .select2-container {
  width: 100% !important;
}

.login-row2 .custom-radio .custom-control-label::before {
  border: 1px solid #9b9b9b;
  transition: transform 0.28s ease;
}

.login-row
  .custom-radio
  .custom-control-input:checked
  ~ .custom-control-label::before {
  border: 1px solid #00b9f5;
  background: #1c5ba8;
  transition: transform 0.28s ease;
}

.faq-vi-more {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.3rem 0;
  background: #f0f9fc;
  border-radius: 0 0 0.25rem 0.25rem;
  color: #fff;
  padding-right: 2.1rem !important;
}

.faq-vi-more a {
  color: #f97408;
}

.bottotop i {
  margin-right: 0;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.bottotop button {
  background: #504e51;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  box-shadow: 0 0 16px 2px rgba(66, 197, 242, 0.5);
}

.bottotop button:hover {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
}

.dr-f-mf-3 {
  margin-top: 1rem;
}

.validity-text p {
  margin: 1rem 0 0;
}

.public-row {
  overflow: hidden;
}

.public-row .col-md-3 {
  padding-left: 0;
}

.public-row .col-md-9 {
  padding-right: 0;
  padding-left: 0;
}

.open-in-app {
  display: none;
}

.career-r-page {
  text-align: center;
  overflow: hidden;
}

.career-r-page h5 {
  font: 600 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.6rem;
}

.career-r-page h6 {
  font: 500 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0.6rem;
}

.free-t-row {
  background-color: #fff;
  background: #b72525;
  padding: 0.2rem 0;
  color: #fff;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.free-t-row a {
  color: #1c5ba8 !important;
  margin: 0 0 0 1rem;
  background: #fff;
  border-color: #fff;
  padding: 0.175rem 0.75rem;
  font: 400 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  animation: example 1 s;
  -moz-animation: example 1s infinite;
  -webkit-animation: example 1s infinite;
}

.free-t-row a:hover {
  background: #1c5ba8;
  color: #fff !important;
}

.free-t-row span {
  color: #60b417;
  font: 500 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
}

.free-t-row .closse-free {
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
}

@keyframes example {
  0% {
    background-color: #b72525;
    color: #fff;
  }
  50% {
    background-color: #fff;
    color: #000;
  }
  100% {
    background-color: #b72525;
    color: #fff;
  }
}

.deal-popup .modal-body {
  padding: 0;
}

.deal-popup .accept-sup-sec .accept-s-price {
  background: #283579;
  border-radius: 0.3rem 0.3rem 0 0;
}

.deal-popup .accept-sup-sec .accept-s-price h3 {
  color: #fff;
  text-align: center;
  font: 500 1.2rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

.deal-popup .accept-s-content {
  padding: 1rem 1rem;
}

.deal-popup .accept-sup-sec .modal-body .close {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 5px;
  color: #fff;
  opacity: 1;
}

.deal-popup .pop-button button[type="submit"] {
  padding: 0.5rem 1.5rem;
}

.custom-radio .custom-control-label::before {
  border: 1px solid #9b9b9b;
  transition: transform 0.28s ease;
  background: #fff;
}

.right-border {
  border-right: 1px solid #ced4da;
}

#accordionExample .card-header {
  border-bottom: 1px solid transparent;
}

.order-rate p span {
  color: #f56e5b;
}

.sup-all-row1 {
  font-size: 0.9rem;
}

.m-addnew,
.m-addnew-1 {
  padding: 0;
}

.m-addnew a,
.m-addnew-1 a {
  font-size: 0.8rem;
  margin: 0.8rem 0 0;
}

.sup-opt-bg {
  background: #bae8f9;
  padding: 0.3rem 0;
  margin: 0 -15px 0.3rem;
}

.cut-opt-bg {
  background: #bae8f9;
  padding: 0.5rem 0;
}

.cut-optre-bg {
  background: #cbeefb;
  padding: 0.5rem 0;
}

.del-button {
  color: #d15b47;
}

.del-button a {
  color: #d15b47;
  margin: 0.7rem 0 0;
}

.addc-button {
  color: #0f9d58;
}

.addc-button a {
  color: #0f9d58;
  margin: 0.7rem 0 0;
  position: absolute;
  right: 10px;
  top: 0;
}

#nav-tabContent .table td {
  font: 400 0.9rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}
#nav-tabContent .table td p {
  font: 400 0.9rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-benefic-row {
  position: relative;
}

.add-cut-txt a {
  margin: 5px 0 0;
}

.service-mobile {
  display: none;
}

.header-ho-banner {
  min-height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../images/home-ban-bg.jpg) repeat-x top center;
}

.header-ho-banner h5 {
  margin: 5rem 0 0.5rem;
  text-align: right;
  color: #1c5ba8;
  font: 600 3rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

.header-ho-banner h5 span {
  color: #b72525;
  font: 400 3rem/3rem Roboto, Arial, Helvetica, sans-serif;
}

.header-ho-banner h6 {
  margin: 0 0 2rem;
  text-align: center;
  color: #4c4c4c;
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.header-ho-banner ul {
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.header-ho-banner ul li button[type="submit"] {
  border: 1px solid #989898;
  background: #b72525;
  color: #fff;
  padding: 0.375rem 1rem;
}

.header-ho-banner ul li button[type="submit"]:hover {
  background: #ff7043;
  color: #fff;
}

.header-ho-banner .col-lg-3 {
  padding-left: 0;
}

.add-cut-but {
  position: absolute;
  right: 20px;
  top: 0;
}

.ffmc-s-order {
  overflow: hidden;
}

.ffmc-s-order h3 {
  color: #033b52;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.7rem;
  padding: 0 0 0.7rem;
  border-bottom: 1px solid #033b52;
}

#order-summary {
  width: 80%;
  margin: 1rem auto;
  background: #bae8f9;
  padding: 1rem;
  border-radius: 10px;
}

#order-summary table {
  border-collapse: separate;
  border-spacing: 0;
}

#order-summary th {
  border: solid 1px #003346;
  border-style: none solid solid none;
  padding: 10px;
  font: 600 0.9rem Roboto, Arial, Helvetica, sans-serif;
}

#order-summary thead tr {
  background: #00b9f5;
  color: #fff;
}

#order-summary tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

#order-summary tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

#order-summary tr:last-child th:first-child {
  border-bottom-left-radius: 10px;
}

#order-summary tr:last-child th:last-child {
  border-bottom-right-radius: 10px;
}

#order-summary tr:first-child th {
  border-top-style: solid;
}

#order-summary tr th:first-child {
  border-left-style: solid;
}

#order-summary table tr td {
  padding: 10px;
  font: 400 0.8rem Roboto, Arial, Helvetica, sans-serif;
  color: #454545;
  vertical-align: middle;
}

#order-summary table td {
  border-bottom: 1px solid #a4defc;
  border-top: 1px solid transparent;
}

#order-summary table tr td a {
  margin: 0 0.2rem;
}

#order-summary table tr td p {
  color: #ff8c0f;
  margin: 0;
  font: 500 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

#order-summary table tr td h6 {
  color: #ff8c0f;
  font: 400 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

#order-summary tbody tr:nth-of-type(even) {
  background: #cbeefb;
}

.ffmc-s-bg {
  overflow: hidden;
}

.buy-f-slider .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

.buy-b-cont {
  width: auto;
  background: url(../images/ffmc-b-bg.png) no-repeat bottom;
}

.buy-b-cont ul {
  margin: 0;
}

.buy-b-cont ul li {
  display: inline-block;
  width: 33.3%;
  text-align: center;
  padding: 1rem 0 2.2rem;
  background: url(../images/ffmc-bor-bg.png) no-repeat right top;
  background-position: right 25px;
}

.buy-b-cont ul li span {
  display: block;
}

.buy-b-cont ul li:last-child {
  background: 0 0;
}

.ffmc-smob-order {
  overflow: hidden;
  display: none;
}

.acceptedPrice1 p {
  text-align: center;
  margin: 0;
  padding: 0.3rem;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background: green;
}

.acceptedPrice p {
  text-align: center;
  margin: 0;
  padding: 0.3rem;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  background: #7fba00;
}

.de-current-account.owl-carousel .owl-nav button.owl-next,
.de-current-account.owl-carousel .owl-nav button.owl-prev {
  color: #1c5ba8;
  font-size: 30px;
  position: absolute;
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  opacity: 0;
  border: 1px solid #ffb01b;
  background: #ffb01b;
  width: 40px;
  height: 40px;
  line-height: 24px;
  text-align: center;
  margin-top: -20px;
}

.de-current-account.owl-carousel .owl-nav button.owl-prev {
  left: 10%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.de-current-account.owl-carousel .owl-nav button.owl-next {
  right: 10%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.de-current-account.owl-carousel:hover .owl-nav button.owl-next {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.de-current-account.owl-carousel:hover .owl-nav button.owl-prev {
  left: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.de-current-account.owl-carousel:hover .owl-nav button.owl-next:hover,
.de-current-account.owl-carousel:hover .owl-nav button.owl-prev:hover {
  color: #1c5ba8;
  border: 1px solid #ffb01b;
  background: 0 0;
}

.de-current-account.owl-theme .owl-dots .owl-dot span {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  background: #1c5ca6;
}

.de-current-account.owl-theme .owl-dots .owl-dot.active span {
  background: #25ae60;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
}

.de-current-account.owl-theme .owl-nav [class*="owl-"] {
  background: 0 0;
}

.want-know {
  overflow: hidden;
  position: relative;
}

.want-know ul li {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.want-know ul li:hover {
  background: #fff;
}

.want-know ul li p {
  padding: 0;
  margin: 0;
}

.want-know ul li p span img {
  width: auto;
}

.want-know ul li p input[type="text"] {
  width: 60%;
  display: inline-block;
  border: 1px solid transparent;
  margin: 0.2rem 0;
}

.want-know ul li p input[type="tel"] {
  width: 60%;
  display: inline-block;
  border: 1px solid transparent;
  margin: 0.2rem 0;
}

.want-know ul li p button[type="submit"] {
  width: 20%;
  display: inline-block;
  border-color: transparent;
  float: right;
  border-radius: 0;
  padding: 0.7rem 0;
}

.want-know ul li b {
  padding: 1rem 0 0.8rem 1rem;
  float: left;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.noti-list {
  overflow: hidden;
  padding: 0 0.5rem;
}

.noti-list:hover {
  overflow: hidden;
  background: #edf2fa;
}

.noti-list a h3 {
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-align: left;
}

.noti-list a h3 b {
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-align: right;
  float: right;
}

.buy-row5 {
  margin: 0.8rem 0 0;
}

.not-b-servise {
  width: auto;
}

.not-b-servise h4 {
  background: #1c5ba8;
  padding: 0.7rem 4rem 0.7rem 1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  display: inline-block;
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  box-shadow: 8px 0 7px -5px #888;
}

.not-b-servise h4 span {
  color: #fff;
  background: url(../images/icons/icon-s-not.png) no-repeat top left;
  padding: 0 0 0 1.5rem;
  width: 12vw;
}

.not-d-servise {
  overflow: hidden;
  border: 1px solid #a1a1a1;
  border-radius: 0 0 0 0.5rem;
  overflow-y: scroll;
  height: 500px;
}

.not-d-servise ul {
  padding: 0;
  margin: 0;
}

.not-d-servise ul li {
  border-bottom: 1px solid #a1a1a1;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 0;
}

.not-d-servise ul li:hover {
  background: #e6e7e8;
  transition: 0.5s ease;
}

.not-d-servise ul li a {
  width: 100%;
  font-size: 0;
}

.not-d-servise ul li a .left-img {
  width: 25%;
  float: left;
}

.not-d-servise ul li a .left-img img {
  border-radius: 0.55rem 0 0 0.55rem;
  height: 65px;
  width: 100%;
}

.not-d-servise ul li a .nofi-r-data {
  width: 73%;
  float: left;
  margin: 0 0 0 2%;
}

.not-d-servise ul li a .left-s-img {
  width: 13%;
  float: left;
}

.not-d-servise ul li a .left-s-img img {
  border-radius: 0.55rem 0 0 0.55rem;
  height: 65px;
  width: 80%;
}

.not-d-servise ul li a .nofi-rs-data {
  width: 85%;
  float: left;
  margin: 0 0 0 2%;
}

.not-d-servise ul li a .tpo-progress {
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.not-d-servise ul li a .tran-p-row {
  padding: 0.5rem 1rem;
  overflow: hidden;
}

.not-d-servise ul li:last-child {
  border-bottom: 1px solid transparent;
}

.not-d-servise ul li p {
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0.5rem;
  text-overflow: ellipsis;
  font: 500 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.not-d-servise ul li p b {
  color: #000;
}

.not-d-servise ul li h6 {
  font: 600 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #414141;
}

.not-d-servise ul li h6 b {
  color: #1c5ba8;
  font: 400 0.8rem/1rem Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
  margin: 0 0 0 2rem;
  position: relative;
  float: right;
}

.mfe-noti-page {
  margin: 1rem 6rem 0;
}

#scrollstyle::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  overflow: hidden;
}

#scrollstyle::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  overflow: hidden;
}

#scrollstyle::-webkit-scrollbar-thumb {
  background-color: #a1a1a1;
  border-radius: 15px;
  overflow: hidden;
}

.noti-mobile {
  display: none;
}

.add-fmc-border {
  border: 1px solid #003956;
  border-radius: 10px;
  margin: 0 0 2rem;
  padding: 0;
  background: #fff;
}

.add-fmc-border .frow1 {
  background: #0054a6;
  overflow: hidden;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.add-fmc-border .frow1 h3 {
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.8rem 0;
}

#order-pro-table {
  padding: 0;
}

#order-pro-table table thead tr {
  border-bottom: 1px solid #003956;
}

#order-pro-table table thead tr th {
  color: #0048bf;
  padding: 0.5rem 1rem;
  border-right: 1px solid #003956;
}

#order-pro-table table thead tr th:last-child {
  border-right: 1px solid transparent;
}

#order-pro-table table tbody tr td {
  padding: 0.5rem 1rem;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

#order-pro-table table tbody .or-border-top {
  border-top: 1px solid #003956;
  padding: 1rem;
}

#order-pro-table table tbody tr td b {
  font: 300 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;
}

.ffc-pay-row {
  padding: 1rem;
}

.fp-payment {
  overflow: hidden;
}

.fp-payment ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.fp-payment ul li {
  background: #ebebeb;
  float: left;
  width: 48%;
  margin: 1%;
  border-radius: 10px;
}

.fp-payment ul li.active {
  border: 1px solid #6e9ac6;
}

.fp-pay-row1 {
  overflow: hidden;
  border-bottom: 1px solid #d2d2d2;
  padding: 0.5rem 1rem;
  font: 600 1rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
}

.notservice-tab p {
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
}

.notservice-tab p span {
  margin: 0 1rem;
  display: inline-block;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.fp-pay-row2 {
  padding: 1rem;
}

.fp-pay-row2 .row1 {
  text-align: right;
  font: 300 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.fp-pay-row2 .row2 {
  text-align: left;
  font: 300 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #1d4fa2;
}

.fp-pay-row2 h6 {
  text-align: left;
  font: 300 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #181818;
  padding: 0 0 0.5rem;
}

.fp-pay-row2 p {
  text-align: left;
  font: 300 1rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
}

.ffc-d-text {
  overflow: hidden;
  margin: 1rem 0 0;
}

.ffc-d-text h6 {
  color: #1d4fa2;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
}

.ffc-d-text h5 {
  color: #1d4fa2;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
}

.ffc-d-text h5 span {
  color: red;
  font-size: 2rem;
  display: inline-block;
  margin: 0 0.3rem 0 0;
  position: absolute;
}

.ffc-d-text h5 b {
  color: #676767;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
  margin: 0 0 0 1rem;
}

.ffc-d-text p {
  padding: 0 0 0.5rem;
}

.ffc-d-text ul {
  margin: 0;
}

.noti-tab .wrapper {
  float: none;
  max-width: 265px;
}

.noti-tab {
  margin: 0 0 1rem;
}

.noti-tab .wrapper .left #RealTime {
  padding: 5px 25px 5px 37px;
  background-size: 22px;
  background-position: 8px 2px;
}

.noti-tab .taeb-switch .taeb {
  padding: 8px 25px;
}

.noti-tab .taeb-switch:after {
  background-color: #0054a6;
}

.noti-tab .wrapper .right #Historical {
  padding: 5px 15px 5px 58px;
  background-size: 20px;
  background-position: 32px 2px;
}

.fp-pay-row3 {
  padding: 1rem;
}

.fp-pay-row3 .row1 {
  text-align: left;
  font: 300 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.2rem 1rem;
  color: #000;
}

.fp-pay-row3 .row2 {
  text-align: right;
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  color: #1d4fa2;
}

.trial-n-cont ul li {
  font: 400 0.8rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  list-style: disc;
  margin: 0 1rem 0;
}

.boderdays {
  padding: 0 0;
}

.ndaytiral .popup-txt h3 {
  text-align: center;
  font: 500 1.3rem/2rem Roboto, Arial, Helvetica, sans-serif;
  text-transform: none;
  padding: 3rem 0 1rem;
}

.logo-otp {
  text-align: center;
}

.logo-otp img {
  width: 35%;
}

.notpublic-tab {
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.notpublic-tab .row .col-md-6 {
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}

.export-bdpopup .login-popup .dialog-wd {
  width: 560px;
}

.export-bdpopup .popup1 {
  padding: 2rem 1rem;
}

.export-bdpopup .login-popup .btn-ok {
  margin: 0 auto;
  display: block;
  padding: 0.5rem 2rem 0.6rem;
  color: #fff;
  text-transform: uppercase;
}

.export-bdpopup .currecy-rate ul li {
  float: left;
  padding: 0 1rem;
}

.export-bdpopup .main-table-bdr table {
  margin-bottom: 0;
  border-collapse: collapse;
  border-radius: 1em;
  overflow: hidden;
}

.export-bdpopup .main-table-bdr table td {
  border-bottom: 1px solid #007aff;
  color: #000;
  border-top: none;
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.export-bdpopup .main-table-bdr table .bttm-remove td {
  color: #302c77;
  border-bottom: 0;
  font-style: italic;
}

.export-bdpopup .main-table-bdr table .txt-italic td {
  color: #000;
  border-bottom: 0;
  font-style: italic;
}

.export-bdpopup .main-table-bdr table .add-boder td {
  color: #000;
  border-bottom: 1px solid #007aff;
  font-style: italic;
}

.export-bdpopup .main-table-bdr table .txt-bold td {
  color: #302c77;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.export-bdpopup .login-popup .modal-body .closed-btn1 {
  right: 10px;
  top: 4px;
}

.export-bdpopup .login-popup .modul-pop {
  padding: 0;
}

.export-bdpopup .main-table-bdr table thead tr td {
  background: #003346;
  color: #fff;
}

.export-bdpopup .main-table-bdr {
  margin: 0 0 2rem;
  border-collapse: collapse;
  border-radius: 1em;
  overflow: hidden;
  border: 1px solid #ccc;
}

.export-bdpopup .main-table-bdr table .bttm_amount td {
  border-bottom: none;
}

.ffmc-h-destop {
  display: none;
}

.nav-holder .nav-header > ul > li > ul.notification .noti-p-right a {
  color: #666;
  display: block;
  padding: 0.3rem 0.3rem 0.5rem;
}

.nav-holder .nav-header > ul > li > ul.notification .noti-p-right a:hover {
  color: #666;
  background: #fafafa;
}

.nav-holder .nav-header > ul > li > ul.notification .noti-p-right a p {
  color: #666;
  padding: 0;
  font: 500 0.8rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.nav-holder .nav-header > ul > li > ul.notification .noti-p-right a h3 {
  color: #666;
  text-align: left;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.nav-holder .nav-header > ul > li > ul.notification .noti-p-right a h3 b {
  color: #1b5ca7;
  float: right;
  position: relative;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.realtime-tab button[type="submit"] {
  margin: 0.1rem;
}

.short-desc {
  color: #454545;
}

.best-offer-km {
  border: 1px solid rgba(0, 0, 0, 0.125);
  overflow: hidden;
  margin: 1rem 0 0;
  border-radius: 5px;
}

.best-offer-km .want-know {
  overflow: hidden;
  position: relative;
}

.best-offer-km .want-know ul {
  margin: 0;
  padding: 0;
}

.best-offer-km .want-know ul li {
  padding: 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #ecebeb;
}

.best-offer-km .want-know ul li:hover {
  background: #fff;
}

.best-offer-km .want-know ul li p {
  padding: 0;
  margin: 0;
}

.best-offer-km .want-know ul li a {
  color: #1c5ba8;
  overflow: hidden;
  display: block;
}

.best-offer-km .want-know ul li span {
  padding: 0.5rem 0 0 1rem;
  float: left;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  width: 19%;
}

.best-offer-km .want-know ul li p span img {
  width: auto;
}

.best-offer-km .want-know ul li p input[type="text"] {
  width: 60%;
  display: inline-block;
  border: 1px solid transparent;
  margin: 0.2rem 0;
}

.best-offer-km .want-know ul li p input[type="tel"] {
  width: 60%;
  display: inline-block;
  border: 1px solid transparent;
  margin: 0.2rem 0;
}

.best-offer-km .want-know ul li p button[type="submit"] {
  width: 20%;
  display: inline-block;
  border-color: transparent;
  float: right;
  border-radius: 0;
  padding: 0.7rem 0;
}

.best-offer-km .want-know ul li b {
  padding: 1rem 0 0.8rem 0.3rem;
  float: left;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.payment-pop .modal-dialog {
  width: 400px;
}

.buyonline-coursolere {
  min-height: 450px;
}

/* LCBD */

.lcbd-epopup {
  overflow: hidden;
  background: #dcf4fe;
  border-radius: 5px;
  margin: 0 0 1rem;
}

.lcbd-epopup table {
  margin: 0;
  color: #2e2c77;
  font: 600 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.lcbd-epopup table td {
  padding: 0.25rem 0.75rem;
  border-top: 1px solid transparent;
}
.lcbd-row1 {
  color: #252525;

  font: 500 1.3rem/1.3rem Roboto, Arial, Helvetica, sans-serif;

  text-align: center;

  border-bottom: 2px solid #e7e7e7;

  padding: 0 0 0.7rem;
}

.lcbd-row2 {
  color: #454545;
  text-align: center;
}

.lcbd-row2 p {
  color: #454545;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 1rem 0 0;
}

#otp_model_show .modal-dialog {
  width: 400px;
}

.sup-crer-sec .row3 {
  width: 48%;
  float: left;
  border: 1px solid #003956;
  border-radius: 5px;
  background: #c5ecfb;
}

.sup-crer-sec .row3 .col1 {
  width: 100%;
  display: block;
  padding: 0.3rem 1rem;
  overflow: hidden;
}

.sup-crer-sec .row3 .col1 .row7 {
  float: left;
  width: 50%;
}

.sup-crer-sec .row3 .col1 .row7 .sec1 {
  float: left;
  width: 100%;
}

.sup-crer-sec .row3 .col1 .row7 .sec1 p {
  margin: 0;
  padding: 0;
  color: #185caf;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row3 .col1 .row7 .sec2 {
  float: left;
  width: 100%;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.buy-date-cur {
  display: none;
}
.buy-date-m1-cur {
  display: none;
}

.sup-crer-sec .row3 .col1 .row8 {
  float: left;
  width: 45%;
}

.sup-crer-sec .row3 .col1 .row9 {
  float: left;
  width: 5%;
  text-align: right;
}

.sup-crer-sec .row3 .col1 .row9 p {
  margin: 0.3rem 0 0;
  padding: 0;
}

.sup-crer-sec .row3 .col1 .row8 .sec1 {
  float: left;
  width: 100%;
}

.sup-crer-sec .row3 .col1 .row8 .sec1 p {
  margin: 0;
  padding: 0;
  color: #185caf;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row3 .col1 .row8 .sec2 {
  float: left;
  width: 100%;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row3 .col2 {
  width: 100%;
  display: block;
  background: #9ee0f8;
  overflow: hidden;
  padding: 0.2rem 1rem;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row3 .col2 .row5 {
  float: left;
  color: #2e68b1;
}

.sup-crer-sec .row3 .col2 .row6 {
  float: right;
}

.sup-crer-sec .lcbd-button {
  width: 100%;
  float: left;
  text-align: right;
  margin: 0.5rem 0 0;
}

.sup-crer-sec .lcbd-button button[type="submit"] {
  margin: 0 0.2rem;
}

.sup-crer-sec .row4 {
  width: 48%;
  float: right;
  border: 1px solid #003956;
  border-radius: 5px;
}

.sup-crer-sec .row4 .col1 {
  width: 100%;
  display: block;
  padding: 0.3rem 1rem;
  overflow: hidden;
}

.sup-crer-sec .row4 .col1 .row7 {
  float: left;
  width: 50%;
}

.sup-crer-sec .row3 .col1 .row7 .sec1 {
  float: left;
  width: 100%;
}

.sup-crer-sec .row4 .col1 .row7 .sec1 p {
  margin: 0;
  padding: 0;
  color: #185caf;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row4 .col1 .row7 .sec2 {
  float: left;
  width: 100%;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row4 .col1 .row8 {
  float: left;
  width: 45%;
}

.sup-crer-sec .row4 .col1 .row9 {
  float: left;
  width: 5%;
  text-align: right;
}

.sup-crer-sec .row4 .col1 .row9 p {
  margin: 0.3rem 0 0;
  padding: 0;
}

.sup-crer-sec .row4 .col1 .row8 .sec1 {
  float: left;
  width: 100%;
}

.sup-crer-sec .row4 .col1 .row8 .sec1 p {
  margin: 0;
  padding: 0;
  color: #185caf;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row4 .col1 .row8 .sec2 {
  float: left;
  width: 100%;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sup-crer-sec .row4 .col2 {
  width: 100%;
  display: block;
  background: #9ee0f8;
  overflow: hidden;
  padding: 0.2rem 1rem;
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}
.sup-crer-sec .row4 .col2 .row5 {
  float: left;
  color: #2e68b1;
}
.sup-crer-sec .row4 .col2 .row6 {
  float: right;
}
/* LCBD */

/* Forex Calculator */

/* PcfcVsRpc */

.calc-border {
  background: #dcf4fd;

  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);

  border-radius: 10px;

  overflow: hidden;

  border: 1px solid #003956;
}

.calc-row1 {
  /*border-bottom: 1px solid #e0e0e0;*/

  margin: 0 0 0.5rem;

  padding: 0.5rem 1.5rem;
}

.calc-row1 h2 {
  font: 500 1.1rem/1.1rem Raleway, Arial, Helvetica, sans-serif;

  color: #3e3e3e;

  background: url(../images/calc-img.png) no-repeat left;

  padding: 12px 0 12px 15px;
}

.calc-row1 h2::first-letter {
  color: #ffff;
}

.calc-row2 {
  padding: 0.5rem 1rem;
}

.calc-form {
  overflow: hidden;

  font: 500 0.8rem/0.9rem Raleway, Arial, Helvetica, sans-serif;
}

.buy-o-check {
}

.buy-o-check .custom-control-input:checked ~ .custom-control-label::before {
  width: 1.3rem;
  height: 1.3rem;
}

.buy-o-check .custom-control-label::before {
  width: 1.3rem;
  height: 1.3rem;
}

.buy-o-check .custom-control-input:checked ~ .custom-control-label::after {
  background-size: 12px;
}

.buy-o-check .custom-control-label::after {
  top: 0.35rem;
  left: -1.8em;
}

.calc-form p {
  font: 500 0.8rem/0.9rem Raleway, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.22rem 0 0;
}

.calc-form input[type="text"] {
  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 5px 10px;

  width: 80%;

  background: #fff;

  float: right;

  font: 300 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;

  text-align: right;
}

.cal-m {
  margin-bottom: 0.5rem;
}

.calc-row3 {
  overflow: hidden;

  padding: 0.5rem 0 0;

  display: flex;
}

.calc-row3 .lrow {
  float: left;

  width: 50%;
}

.calc-row3 .lrow .row1-head {
  overflow: hidden;

  background: #55cbf9;

  border-right: 1px solid #cadde4;

  margin: 0 0 0.8rem;
}

.calc-row3 .lrow .row1-head h3 {
  font: 500 1rem/1rem Raleway, Arial, Helvetica, sans-serif;

  color: #fff;

  text-align: center;

  padding: 0.5rem;
}

.calc-row3 .lrow .row1-data {
  overflow: hidden;

  padding: 0 1rem;

  margin: 0 0 0.3rem;
}

.calc-row3 .rrow {
  float: left;

  width: 50%;
}

.calc-row3 .rrow {
  float: left;

  width: 50%;
}

.calc-row3 .rrow .row1-head {
  overflow: hidden;

  background: #55cbf9;
}

.calc-row3 .rrow .row1-head h3 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;

  color: #fff;

  text-align: center;

  padding: 0.5rem;
}

.calc-row3 .rrow .row1-data {
  overflow: hidden;

  border-left: 1px solid #cadde4;

  padding: 0.8rem 1rem;
}

.calc-row4 {
  overflow: hidden;

  padding: 1rem;

  border-top: 1px solid #cadde4;

  font: 500 0.8rem/0.9rem Raleway, Arial, Helvetica, sans-serif;
}

.calc-row5 {
  overflow: hidden;

  background: #cb706d;

  padding: 0.25rem 1rem;

  color: #fff;
}

.calc-row5 input[type="text"] {
  border: 1px solid #d99896;

  text-align: right;

  background: transparent;

  color: #fff;

  font: 600 0.84rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.calc-row5 p {
  color: #fff;

  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;

  margin: 0;

  padding: 0.3rem 0 0.3rem;
}

.calc-row5 p span {
  color: #800000;

  display: inline-block;

  margin: 0 1.5rem 0 0;

  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.calc-row5 p b {
  color: #800000;

  display: inline-block;

  margin: 0 0.5rem;
}

.calc-row5 p strong {
  display: inline-block;

  margin: 0 0 0 2.5rem;

  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.calc-row-right {
  background: #ecebeb;

  border-radius: 10px;

  border: 1px solid #999;

  margin: 1rem 0 0;
}

.calc-row-right ul {
  margin: 0;

  padding: 0;
}

.calc-row-right ul li {
  margin: 0.2rem 0 0.2rem;

  padding: 0.5rem 1rem;

  background: #fff;
}

.calc-row-right ul li:first-child {
  border-radius: 10px 10px 0 0;

  margin: 0 0 0.2rem;
}

.calc-row-right ul li:last-child {
  border-radius: 0 0 10px 10px;

  margin: 0;
}

.calc-row-right ul li:hover {
  color: #fff;

  background: #dcf4fd;
}

.calc-row-right ul li a {
  color: #5f5860;

  display: block;

  background: url(../images/l-arrow.png) no-repeat left;

  padding: 0 0 0 15px;
}

.calc-row-right ul li a:hover {
  color: #1c5ba8;

  display: block;

  padding: 0 0 0 15px;
}

.calc-row-right ul li.selected {
  background: #dcf4fd;
  color: #1c5ba8;
}

.calc-row-right ul li.selected a {
  color: #1c5ba8;
}

.eq-t h6 {
  margin: 1.5rem 0 0;

  font: 500 1.6rem/1.6rem Roboto, Arial, Helvetica, sans-serif;
}

.total3-row h5 {
  font: 600 0.9rem/1rem Raleway, Arial, Helvetica, sans-serif;

  margin: 0 0 0.5rem;
}

.total3-row input[type="text"] {
  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 10px;

  text-align: center;
}

.total4-row input[type="text"] {
  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 10px;

  background: #d99795;

  color: #fff;

  text-align: center;
}

.form-control-calc {
  display: block;

  background: 0 0;

  padding: 5px 10px;

  font-size: 0.8rem;

  border-width: 0;

  border: 1px solid #ccc;

  line-height: 1.1;

  width: 100%;

  box-shadow: none;

  outline: 0;

  border-radius: 5px;
}

.form-calc select {
  box-shadow: none;

  -moz-appearance: none;

  -webkit-appearance: none;
}

.down-c-icon {
  -webkit-appearance: none;

  background: url(../images/down-icon.png) #fff no-repeat;

  width: 80%;

  float: right;

  background-position: 94%;
}

.total-form input[type="text"] {
  width: 60%;
}

.selectdiv-calc .ui-dropdown {
  width: 80% !important;
  float: right;
}

.selectdiv-calc .cur-img {
  width: 20px;

  height: 16px;

  border-radius: 5px;
}

.selectdiv-calc .cur-label {
  vertical-align: top;

  margin: 0 0 0 5px;
}

.selectdiv-calc .ui-inputtext {
  padding: 5px 10px;
}

.selectdiv-calc .ui-helper-clearfix img {
  width: 20px;

  height: 16px;

  border-radius: 5px;

  float: left;
}

.selectdiv-calc .ui-helper-clearfix .cur-r-label {
  vertical-align: top;

  margin: 0 0 0 25px;
}

.cal-date {
  position: relative;

  width: 100%;

  float: right;
}

.cal-date .form-control {
  position: relative;

  margin-bottom: 0;
}

.cal-date input[type="text"] {
  position: relative;

  margin-bottom: 0;

  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;

  height: calc(1.6rem + 2px);

  width: 80%;

  text-align: left;

  background: url(../images/calendar-m.png) #fff no-repeat;

  background-position: right;
}

.selectdiv-tcalc .cur-label {
  margin: 0;
}
.calc-r-form input[type="text"]:read-only {
  color: #717171;
}

.calc-in-form {
  padding: 0 1.5rem;
}

.calc-form button[type="submit"] {
  line-height: 1rem;
}

/* PcfcVsRpc */

/* Cash Credit */

.cash-row3 {
  overflow: hidden;
}

.cash-row3 .row1-head {
  overflow: hidden;

  background: #55cbf9;

  border-right: 1px solid #cadde4;

  margin: 0 0 0.8rem;
}

.cash-row3 .row1-head h3 {
  font: 500 1rem/1rem Raleway, Arial, Helvetica, sans-serif;

  color: #fff;

  text-align: center;

  padding: 0.5rem;
}

.cash-row4 {
  overflow: hidden;
  padding: 0 1.5rem;
  width: 425px;
  margin: 0 auto;
}

/* Cash Credit */

/* Pivot Calc */

.calc-p-row1 {
  border-bottom: 1px solid #e0e0e0;

  margin: 0 0 0.5rem;

  padding: 0.5rem 1.5rem;
}

.calc-v-row1 h2 {
  font: 500 1.1rem/1.1rem Raleway, Arial, Helvetica, sans-serif;

  color: #3e3e3e;

  background: url(../images/calc-img.png) no-repeat left;

  padding: 12px 0 12px 15px;
}

.calc-v-row1 h2::first-letter {
  color: #ffff;
}

.calc-pi-form {
  padding: 0 1.5rem;
}

.calc-pi-form .row .col-md-1 {
  padding-left: 5px;

  padding-right: 5px;
}

.pivot-table {
  overflow: hidden;

  background: #fff;
  margin: 1rem 0 0;
}

.pivot-table thead {
  background: #e3ecf8;
}

.pivot-table .p-blue {
  color: #3366ff;
}

.pivot-table .p-red {
  color: #dfa8a6;
}

.pivot-table .p-gray {
  color: #fff;
  background: url(../images/pi-arrow.jpg) #707070 right 0 no-repeat;
}

.pivot-table .p-gray1 {
  background: #a3a3a3;
  color: #fff;
}

.pivot-table .p-gray2 {
  background: #efefef;
  color: #000;
}

.pivot-cu {
  border-bottom: 1px solid #e0e0e0;

  /* overflow: hidden; */

  margin: 0 0 0.5rem;
}

.pivot-d-table {
  overflow: hidden;
  margin: 0;
}

.pivot-d-table table {
  font: 500 1rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.pivot-d-table table thead tr th {
  text-align: center;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.72rem;
}

.pivot-d-table table tbody tr td {
  text-align: center;
  padding: 0.66rem;
  font: 400 0.9rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
}

.pivot-table .table tbody tr th {
  font: 500 0.8rem/0.9rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.66rem;
}

.pivot-d-table .pi-level {
  background: url(../images/level-img.jpg) center 0 no-repeat;
  padding: 1.2rem 0 0.3rem;
}

/* Pivot Calc */

/* Forward Calc */

.for-import ul {
  margin: 0;
  padding: 0;
  position: relative;
}

.for-import ul h6 {
  position: absolute;
  right: 20px;
  bottom: 0px;
  color: #454545;
  font: 500 0.8rem/0.9rem Raleway, Arial, Helvetica, sans-serif;
}

.ford-import {
  margin: 1rem 0;
}

.for-import .nav-tabs .nav-link.active {
  background: #3366ff;
  color: #fff;
}

.for-import .nav-tabs .nav-link {
  border: 1px solid #858a8c;
}

.for-import ul li {
  margin: 0 0.2rem;
}

.for-import ul li:first-child {
  margin: 0 0 0 1rem;
}

/* Forward Calc */

/* CC Vs Import Funding Calculator */

.comp-col-1 {
  float: left;
  width: 40%;
}

.comp-col-2 {
  float: left;
  width: 40%;
}

.comp-col-3 {
  float: left;
  width: 20%;
}

.comp-col-1 input[type="text"] {
  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 5px 10px;

  width: 35%;

  background: #fff;

  float: left;

  font: 300 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;

  text-align: right;

  margin: 0.2rem 0 0;
}

.comp-col-2 input[type="text"] {
  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 5px 10px;

  width: 35%;

  background: #fff;

  float: left;

  font: 300 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;

  text-align: right;

  margin: 0.2rem 0 0;
}

.comp-col-3 input[type="text"] {
  border: 1px solid #ccc;

  border-radius: 5px;

  padding: 5px 10px;

  width: 70%;

  background: #fff;

  float: left;

  font: 300 0.8rem/0.8rem Roboto, Arial, Helvetica, sans-serif;

  text-align: right;

  margin: 0.2rem 0 0;
}

.comp-row span {
  display: inline-block;
  margin: 0.6rem 0 0 0.2rem;
}

/* CC Vs Import Funding Calculator */

/* Forex Calculator */

/* QUESTIONNAIRE */

.que-block {
  background: #c7e7f4;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 10px;
  /* overflow: hidden; */
  padding: 0 0 2rem;
}
.que-row1 {
  margin: 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid #bcd8e3;
}

.que-row1 h2 {
  font: 500 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
  color: #3e3e3e;
  background: url(../images/calc-img.png) no-repeat left;
  padding: 12px 0 12px 15px;
}
.que-row1 h2::first-letter {
  color: #ffff;
}
.que-row2 {
  margin: 0;
  padding: 1rem 1.5rem;
}
.que-row2 input[type="text"] {
  border: 1px solid #adadad;
  border-radius: 5px;
  padding: 10px 15px;
  width: 100%;
  background: transparent;
}
.que-row2 .dropdown-list {
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.que-row2 .multiselect-dropdown .dropdown-btn {
  border: 1px solid #adadad !important;
  padding: 10px 12px !important;
}

.que-row2 .multiselect-dropdown .dropdown-btn .dropdown-down {
  border-top: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.que-row2 .multiselect-dropdown .dropdown-btn .dropdown-up {
  border-bottom: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.cur-inv .multiselect-dropdown .dropdown-btn {
  padding: 10px 12px !important;
}
.cur-inv .multiselect-dropdown .dropdown-btn .dropdown-down {
  border-top: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.cur-inv .multiselect-dropdown .dropdown-btn .dropdown-up {
  border-bottom: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.que-bank .multiselect-dropdown .dropdown-btn {
  padding: 10px 12px !important;
}

.que-bank .multiselect-dropdown .dropdown-btn .dropdown-down {
  border-top: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.que-bank .multiselect-dropdown .dropdown-btn .dropdown-up {
  border-bottom: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.fx-select-1 .multiselect-dropdown .dropdown-btn {
  padding: 10px 12px !important;
}

.fx-select-1 .multiselect-dropdown .dropdown-btn .dropdown-down {
  border-top: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.fx-select-1 .multiselect-dropdown .dropdown-btn .dropdown-up {
  border-bottom: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.fx-select-2 .multiselect-dropdown .dropdown-btn {
  padding: 10px 12px !important;
}

.fx-select-2 .multiselect-dropdown .dropdown-btn .dropdown-down {
  border-top: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.fx-select-2 .multiselect-dropdown .dropdown-btn .dropdown-up {
  border-bottom: 10px solid #3366ff !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.que-row3 {
  margin: 0 0 0.5rem;
  padding: 0.5rem 1.5rem;
}
.que-block-1 {
  margin: 0.5rem 0;
}
.que-block-1-1 {
  background: #c7e7f4;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 10px;
  padding: 1.5rem 1.5rem;
}
.que-block-1-2 {
  margin: 0 0 1rem;
}
.que-block-1-3 {
  border-top: 1px solid #b4cfd8;
}
.que-block-1-4 {
  margin: 1rem 0 1rem;
}
.fx-select-3 p a {
  color: #3e3e3e;
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.fx-select-3 p {
  margin: 0.5rem 0 0;
  color: #3e3e3e;
  font: 400 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}
.fx-select-4 {
}
.que-block-cycle {
  background: #c7e7f4;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 10px;
  /* overflow: hidden; */
  padding: 0 0 1rem;
}

.que-block-cycle h3 {
  overflow: hidden;
  border-bottom: 1px solid #bcd8e3;
  font: 300 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 1rem 1.5rem;
}

.que-block-cycle h4 {
  font: 300 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  margin: 0 0 0.5rem;
}

.que-block-trade {
  overflow: hidden;
  padding: 1rem 1.5rem;
}

.que-block-trade input[type="text"] {
  width: 15%;
  padding: 0.2rem;
  margin: 0 0.1rem;
}

body .que-export .ui-selectbutton .ui-button {
  margin: 0 0.2rem;
  background: #ddf3fe;
}

.que-r-block {
  background: #dcf4fe;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 10px;
  overflow: hidden;
}

.que-r-block h3 {
  overflow: hidden;
  border-bottom: 1px solid #bcd8e3;
  font: 300 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 1.3rem 1.5rem;
  margin: 0 0 0.5rem;
}
.pi-chart {
  text-align: center;
}

.forex-row1 {
  margin: 0 0 0.5rem;
}
.forex-row1 ul {
  margin: 0 1rem 0.5rem;
  padding: 0;
  overflow: hidden;
}
.forex-row1 ul li {
  float: left;
}
.forex-row1 ul li:nth-child(1) {
  float: left;
  margin: 0 0.5rem 0 0;
}
.forex-row1 ul li:nth-child(1) span {
  width: 15px;
  height: 15px;
  background: #88a3fa;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0.3rem 0 0;
}

.forex-row1 ul li:nth-child(2) {
  float: left;
}

.forex-row1 ul li:nth-child(3) {
  float: left;
  width: 50%;
}

.forex-row1 ul li:nth-child(3) input[type="text"] {
  width: 50%;
}

.forex-row2 {
  margin: 0 0 0.5rem;
  border-bottom: 1px solid #d2ebf2;
}
.forex-row2 ul {
  margin: 0 1rem 0.5rem;
  padding: 0;
  overflow: hidden;
}
.forex-row2 ul li {
  float: left;
}
.forex-row2 ul li:nth-child(1) {
  float: left;
  margin: 0 0.5rem 0 0;
}
.forex-row2 ul li:nth-child(1) span {
  width: 15px;
  height: 15px;
  background: #ffc700;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #fff;
  margin: 0.3rem 0 0;
}

.forex-row2 ul li:nth-child(2) {
  float: left;
}

.forex-row2 ul li:nth-child(3) {
  float: left;
  width: 50%;
}

.forex-row2 ul li:nth-child(3) input[type="text"] {
  width: 50%;
}

.forrex-check {
  padding: 0 1rem 1rem;
  font: 300 0.95rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

#informationalModal .row1 {
  text-align: center;
  margin: 0 0 1rem;
}
#informationalModal .row1 img {
  text-align: center;
  width: 30%;
}

#informationalModal .row2 {
  border-bottom: 1px solid #b7d3dd;
  margin: 0 0 1rem;
}

#informationalModal .row3 {
  margin: 0 0 0.5rem;
}
/* QUESTIONNAIRE */

.selectdiv-dcalc .ui-dropdown {
  min-width: 8.7em;
}
.mfe-ind a {
  float: right;
}

@media (max-width: 414px) {
  .header-banner .banner-txt p {
    font-size: 1rem;
  }
  .header-banner {
    min-height: 230px;
  }
  .header-banner .banner-txt {
    margin: 1rem 0 0;
  }
  .total-r1-amount {
    width: 60%;
  }
  .total-r2-amount {
    width: 40%;
  }
  .ffmc-tab ul li a.active {
    background: #ff7043;
    color: #f1f1f1;
    border: 1px solid #2a3472;
    border-radius: 5px;
    padding: 1rem 0.2rem;
    font-weight: 700;
  }
  .m-logo {
    display: inline-block;
  }
  .acc-pad {
    padding-bottom: 0;
  }
}

@media (max-width: 650px) {
  .offer-row {
    background-size: 100% 100%;
  }
}

/* 9 July 2020 */
.ex-login {
  margin: 0 0 1rem;
}

.ex-login .ui-buttonset .ui-button {
  margin-right: 1rem;
}

body .ex-login .ui-selectbutton .ui-button {
  background-color: #fff;
  border: 1px solid #c3c3c3;
  color: #000;
  padding: 0.2rem 1.5rem;
  border-radius: 3px;
}

body .ex-inlogin .ui-selectbutton .ui-button {
  padding: 0.2rem 0.7rem;
}

.ex-login .col-md-12 {
  padding-right: 0;
  padding-left: 0;
}

.logincoin .wrapper .left #RealTime {
  background-position: 10px 0;
  padding: 5px 30px 5px 45px;
}

.logincoin .wrapper .right #Historical {
  padding: 5px 29px 5px 65px;
  background-position: 30px 0;
}

body .ex-login .ui-selectbutton .ui-button:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.mobile-d-screen {
  display: none;
}
.swhi-mobile {
  display: block;
}

/* SubscriptionComponent */
.mobile-off {
  display: none;
}
.desktop-off {
  display: block;
}

.sub-main {
  position: relative;
  overflow: hidden;
}
.sub-head {
  position: relative;
  border: 1px solid #d2d5d9;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.sub-head .common {
  position: relative;
  float: left;
  width: 395px;
}
.sub-head .common .cbox {
  position: relative;
  float: left;
  width: 100%;
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #d2d5d9;
  border-left: 1px solid #d2d5d9;
  border-right: 1px solid #d2d5d9;
  border-bottom: 1px solid transparent;
  height: 200px;
  text-align: center;
  padding: 25px 0 0;
}
.sub-head .common .cbox .topimg {
  position: relative;
  margin: 0 0 5rem;
}

.sub-head .common .cbox .bswith {
  position: relative;
  color: #000;
}

.sub-head .common .cboxcont {
  position: relative;
  float: left;
  width: 100%;
  border: 1px solid #d2d5d9;
  border-radius: 0 0 10px 10px;
}
.sub-head .common .cboxcont .fbox1 {
  position: relative;
  background: #f0f1f2;
  border-bottom: 1px solid #d2d5d9;
  padding: 1.3rem 1rem;
}

.sub-head .common .cboxcont .fbox1 h4 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .common .cboxcont .fbox2 {
  position: relative;
}
.sub-head .common .cboxcont .fbox2 ul {
  position: relative;
  margin: 0;
  padding: 0;
}

.sub-head .common .cboxcont .fbox2 ul li {
  position: relative;
  color: #737378;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #d2d5d9;
  padding: 1.3rem 1rem;
}
.sub-head .common .cboxcont .fbox2 ul li i {
  color: #283579;
}

.sub-head .common .cboxcont .fbox2 ul li:last-child {
  border-bottom: 1px solid transparent;
}
.sub-head .rightplan {
  position: relative;
  float: right;
}

.sub-head .rightplan .rightplan-out {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sub-head .rightplan .mfestarter {
  position: relative;
  float: left;
  width: 348px;
}
.sub-head .rightplan .mfestarter .sbox {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #d2d5d9;
  border-left: 1px solid #d2d5d9;
  border-right: 1px solid #d2d5d9;
  border-bottom: 1px solid transparent;
}
.sub-head .rightplan .mfestarter .sbox .row1 {
  width: 100%;
  text-align: center;
}
.sub-head .rightplan .mfestarter .sbox .row1 p {
  color: #000;
  font: 500 24px/24px Roboto, Arial, Helvetica, sans-serif;
  padding: 15px 0 15px;
  margin: 0;
}

.sub-head .rightplan .mfestarter .sbox .row2 {
  width: 100%;
  text-align: center;
}

.sub-head .rightplan .mfestarter .sbox .row2 h3 {
  color: #000;
}

.sub-head .rightplan .mfestarter .sbox .row2 h3 i {
  color: #000;
  font-size: 40px;
  position: relative;
  bottom: 14px;
}
.sub-head .rightplan .mfestarter .sbox .row2 h3 span {
  color: #000;
  font: 500 40px/40px Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
}
.sub-head .rightplan .mfestarter .sbox .row2 h3 span u {
  color: #656a72;
  text-decoration: none;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
  display: block;
  text-align: right;
}
.sub-head .rightplan .mfestarter .sbox .row2 h3 b {
  color: #000;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .rightplan .mfestarter .sbox .row2 h3 span.bus-an {
  color: #000;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
}
.sub-head .rightplan .mfestarter .sbox .row2 h3 span u.bus-dis {
  color: #e37171;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  text-decoration: line-through;
}
.sub-head .rightplan .mfestarter .sbox .row2 h3 span i {
  position: relative;
  bottom: 0;
}

.sub-head .rightplan .mfestarter .sbox .row3 {
  width: 100%;
  text-align: center;
}

.sub-head .rightplan .mfestarter .sbox .row3 p {
  color: #000;
  padding: 0 1rem 1rem;
  font: 400 14px/18px Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .rightplan .mfestarter .sbox .row4 {
  width: 100%;
  text-align: center;
  margin: 1.5rem 0 0;
}

.sub-head .rightplan .mfestarter .sbox .row5 {
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 10px 0 30px;
}

.sub-head .rightplan .mfestarter .sbox .row4 button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}

.sub-head .rightplan .rightplan-cont {
  position: relative;
  width: 100%;
  border: 1px solid #d2d5d9;
  border-radius: 0 0 10px 10px;
  display: flex;
}

.sub-head .rightplan .rightplan-cont .stcontent {
  float: left;
  width: 50%;
  border-right: 1px solid #d2d5d9;
}

.sub-head .rightplan .rightplan-cont .stcontent .starbox1 {
  position: relative;
  text-align: center;
}

.sub-head .rightplan .rightplan-cont .stcontent .starbox1 ul {
  position: relative;
  margin: 0;
  padding: 0;
}

.sub-head .rightplan .rightplan-cont .stcontent .starbox1 ul li {
  position: relative;
  margin: 0;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #d2d5d9;
  padding: 1.27rem 1rem;
}
.sub-head .rightplan .rightplan-cont .stcontent .starbox1 ul li:last-child {
  border-bottom: 1px solid transparent;
}
.sub-head .rightplan .rightplan-cont .stcontent .starbox1 ul li.g-check {
  color: #008060;
}

.sub-head .rightplan .rightplan-cont .stcontent .starbox1 ul li.g-cross {
  color: #d8d8d8;
}

.sub-head
  .rightplan
  .rightplan-cont
  .stcontent
  .starbox1
  ul
  li
  button[type="submit"] {
  background: #6e54a6;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #6e54a6;
  padding: 0.7rem 2.5rem;
}

.sub-head .rightplan .rightplan-cont .bucontent {
  float: left;
  width: 50%;
}
.sub-head .rightplan .rightplan-cont .bucontent .starbox1 {
  position: relative;
  text-align: center;
}

.sub-head .rightplan .rightplan-cont .bucontent .starbox1 ul {
  position: relative;
  margin: 0;
  padding: 0;
}

.sub-head .rightplan .rightplan-cont .bucontent .starbox1 ul li {
  position: relative;
  margin: 0;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #d2d5d9;
  padding: 1.27rem 1rem;
}
.sub-head .rightplan .rightplan-cont .bucontent .starbox1 ul li:last-child {
  border-bottom: 1px solid transparent;
}

.sub-head .rightplan .rightplan-cont .bucontent .starbox1 ul li.g-check {
  color: #008060;
}

.sub-head .rightplan .rightplan-cont .bucontent .starbox1 ul li.g-cross {
  color: #d8d8d8;
}

.sub-head .rightplan .mfebusiness {
  position: relative;
  float: left;
  width: 348px;
  margin-left: 25px;
}
.sub-head .rightplan .mfebusiness .bsbox {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  border-top: 1px solid #d2d5d9;
  border-left: 1px solid #d2d5d9;
  border-right: 1px solid #d2d5d9;
  border-bottom: 1px solid transparent;
}
.sub-head .rightplan .mfebusiness .bsbox .row1 {
  width: 100%;
  text-align: center;
}
.sub-head .rightplan .mfebusiness .bsbox .row1 p {
  color: #000;
  font: 500 24px/24px Roboto, Arial, Helvetica, sans-serif;
  padding: 15px 0 15px;
  margin: 0;
}

.sub-head .rightplan .mfebusiness .bsbox .row2 {
  width: 100%;
  text-align: center;
}

.sub-head .rightplan .mfebusiness .bsbox .row2 h3 {
  color: #000;
}

.sub-head .rightplan .mfebusiness .bsbox .row2 h3 i {
  color: #000;
  font-size: 15px;
  position: relative;
  bottom: 30px;
}
.sub-head .rightplan .mfebusiness .bsbox .row2 h3 span {
  color: #000;
  font: 500 40px/40px Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
}
.sub-head .rightplan .mfebusiness .bsbox .row2 h3 span u {
  color: #656a72;
  text-decoration: none;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
  display: block;
  text-align: right;
}
.sub-head .rightplan .mfebusiness .bsbox .row2 h3 b {
  color: #000;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .rightplan .mfebusiness .bsbox .row2 h3 span.bus-an {
  color: #000;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
}
.sub-head .rightplan .mfebusiness .bsbox .row2 h3 span u.bus-dis {
  color: #e37171;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  text-decoration: line-through;
}
.sub-head .rightplan .mfebusiness .bsbox .row2 h3 span i {
  position: relative;
  bottom: 0;
}

.sub-head .rightplan .mfebusiness .bsbox .row3 {
  width: 100%;
  text-align: center;
}

.sub-head .rightplan .mfebusiness .bsbox .row3 p {
  color: #000;
  padding: 0 1rem 1rem;
  font: 400 14px/18px Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .rightplan .mfebusiness .bsbox .row4 {
  width: 100%;
  text-align: center;
  margin: 1.5rem 0 0;
}

.sub-head .rightplan .mfebusiness .bsbox .row5 {
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 10px 0 30px;
}

.sub-head .rightplan .mfebusiness .bsbox .row4 button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}
.sub-head
  .rightplan
  .rightplan-cont
  .bucontent
  .starbox1
  ul
  li
  button[type="submit"] {
  background: #3b9776;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3b9776;
  padding: 0.7rem 2.5rem;
}

.price-b {
  overflow: hidden;
  width: 100%;
  margin: 1.5rem 0;
}

.price-b .price-st-but {
  float: left;
  text-align: center;
  width: 50%;
}

.price-b .price-st-but button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}

.price-b .price-bs-but {
  float: left;
  text-align: center;
  width: 50%;
}

.price-b .price-bs-but button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}

.switch label input[type="checkbox"]:checked + .lever {
  background-color: #dccfe2;
}
.switch label .lever {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  margin-right: 0.625rem;
  vertical-align: middle;
  content: "";
  background-color: #dccfe2;
  border-radius: 0.9375rem;
  width: 2.5rem;
  height: 0.9375rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.switch label .lever:after {
  position: absolute;
  top: -0.1875rem;
  left: -0.3125rem;
  display: inline-block;
  content: "";
  background-color: #f1f1f1;
  border-radius: 1.3125rem;
  -webkit-box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, 0.4);
  box-shadow: 0 0.0625rem 0.1875rem 0.0625rem rgba(0, 0, 0, 0.4);
  width: 1.3125rem;
  height: 1.3125rem;
  -webkit-transition: left 0.3s ease, background 0.3s ease,
    -webkit-box-shadow 1s ease;
  transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 1s ease,
    -webkit-box-shadow 1s ease;
}
.switch label input[type="checkbox"]:checked + .lever:after {
  left: 1.5rem;
  background-color: #f1f1f1;
}

.switch label input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
}
.switch label [type="checkbox"]:not(:checked) {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0;
}

.mobile-pon {
  display: none;
}

/*  */
.sub-head .mfe-feature {
  float: left;
  width: 50%;
  border-right: 1px solid #d2d5d9;
  text-align: center;
  height: 200px;
  position: relative;
}

.sub-head .mfe-feature .mfe-f-out {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.sub-head .mfe-feature .mfe-f-out .mfe-swith {
  position: relative;
  width: 100%;
  padding: 0 0 1.5rem;
}

.sub-head .mfe-feature .mfe-f-out .mfe-fswith {
  position: relative;
  width: 100%;
  background: #f0f1f2;
}

.sub-head .mfe-feature .mfe-f-out .mfe-fswith h4 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-align: left;
  padding: 1.3rem 1rem;
  color: #1b5ca7;
}

.sub-head .mfe-plan1 {
  float: left;
  width: 50%;
  text-align: center;
  height: 200px;
}
.sub-head .mfe-plan1 .sbox {
  width: 100%;
}
.sub-head .mfe-plan1 .sbox .row1 {
  width: 100%;
  text-align: center;
}
.sub-head .mfe-plan1 .sbox .row1 p {
  color: #000;
  font: 500 24px/24px Roboto, Arial, Helvetica, sans-serif;
  padding: 15px 0 15px;
  margin: 0;
}

.sub-head .mfe-plan1 .sbox .row2 {
  width: 100%;
  text-align: center;
}

.sub-head .mfe-plan1 .sbox .row2 h3 {
  color: #000;
}

.sub-head .mfe-plan1 .sbox .row2 h3 i {
  color: #000;
  font-size: 40px;
  position: relative;
}
.sub-head .mfe-plan1 .sbox .row2 h3 span {
  color: #000;
  font: 500 40px/40px Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
}
.sub-head .mfe-plan1 .sbox .row2 h3 span u {
  color: #656a72;
  text-decoration: none;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
  display: block;
  text-align: right;
}
.sub-head .mfe-plan1 .sbox .row2 h3 b {
  color: #000;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .mfe-plan1 .sbox .row2 h3 span.bus-an {
  color: #000;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
}
.sub-head .mfe-plan1 .sbox .row2 h3 span u.bus-dis {
  color: #e37171;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  text-decoration: line-through;
}
.sub-head .mfe-plan1 .sbox .row2 h3 span i {
  position: relative;
  bottom: 0;
}

.sub-head .mfe-plan1 .sbox .row3 {
  width: 100%;
  text-align: center;
}

.sub-head .mfe-plan1 .sbox .row3 p {
  color: #000;
  padding: 0 1rem 1rem;
  font: 400 14px/18px Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .mfe-plan1 .sbox .row4 {
  width: 100%;
  text-align: center;
  margin: 1.5rem 0 0;
}

.sub-head .mfe-plan1 .sbox .row5 {
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 10px 0 30px;
}

.sub-head .mfe-plan1 .sbox .row4 button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}

.sub-head .mfe-plan2 {
  float: left;
  width: 33%;
  text-align: center;
  height: 200px;
}
.sub-head .mfe-plan2 .bsbox {
  width: 100%;
}
.sub-head .mfe-plan2 .bsbox .row1 {
  width: 100%;
  text-align: center;
}
.sub-head .mfe-plan2 .bsbox .row1 p {
  color: #000;
  font: 500 24px/24px Roboto, Arial, Helvetica, sans-serif;
  padding: 15px 0 15px;
  margin: 0;
}

.sub-head .mfe-plan2 .bsbox .row2 {
  width: 100%;
  text-align: center;
}

.sub-head .mfe-plan2 .bsbox .row2 h3 {
  color: #000;
}

.sub-head .mfe-plan2 .bsbox .row2 h3 i {
  color: #000;
  font-size: 40px;
  position: relative;
}
.sub-head .mfe-plan2 .bsbox .row2 h3 span {
  color: #000;
  font: 500 40px/40px Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
}
.sub-head .mfe-plan2 .bsbox .row2 h3 span u {
  color: #656a72;
  text-decoration: none;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
  display: block;
  text-align: right;
}
.sub-head .mfe-plan2 .bsbox .row2 h3 b {
  color: #000;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .mfe-plan2 .bsbox .row2 h3 span.bus-an {
  color: #000;
  font: 500 13px/13px Roboto, Arial, Helvetica, sans-serif;
}
.sub-head .mfe-plan2 .bsbox .row2 h3 span u.bus-dis {
  color: #e37171;
  font: 500 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  text-decoration: line-through;
}
.sub-head .mfe-plan2 .bsbox .row2 h3 span i {
  position: relative;
  bottom: 0;
}

.sub-head .mfe-plan2 .bsbox .row3 {
  width: 100%;
  text-align: center;
}

.sub-head .mfe-plan2 .bsbox .row3 p {
  color: #000;
  padding: 0 1rem 1rem;
  font: 400 14px/18px Roboto, Arial, Helvetica, sans-serif;
}

.sub-head .mfe-plan2 .bsbox .row4 {
  width: 100%;
  text-align: center;
  margin: 1.5rem 0 0;
}

.sub-head .mfe-plan2 .bsbox .row5 {
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 10px 0 30px;
}

.sub-head .mfe-plan2 .bsbox .row4 button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}

.sub-price-table {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid transparent;
  border-left: 1px solid #d2d5d9;
  border-right: 1px solid #d2d5d9;
  border-bottom: 1px solid #d2d5d9;
  border-radius: 0 0 10px 10px;
}

.sub-price-table .outer-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.sub-price-table .outer-section .heading {
  position: relative;
  background: #f2f6fb;
  border-bottom: 1px solid #d2d5d9;
  overflow: hidden;
}

.sub-price-table .outer-section .heading h4 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 1.3rem 1rem;
}

.sub-price-table .outer-section .heading .name-col1 {
  float: left;
  width: 50%;
  border-right: 1px solid #d2d5d9;
  text-align: left;
  color: #000;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 1.3rem 1rem;
}

.sub-price-table .outer-section .heading .name-col2 {
  float: left;
  width: 50%;
  text-align: center;
  padding: 1rem 1rem;
}

.sub-price-table .outer-section .sunheading {
  position: relative;
  background: #f6f6f6;
  border-bottom: 1px solid #d2d5d9;
}

.sub-price-table .outer-section .sunheading h4 {
  font: 500 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 1rem 1rem;
}

.sub-price-table .outer-section .pcontent {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d2d5d9;
  overflow: hidden;
}

.com-tu-mar label {
  margin: 0.5rem 0 0;
}

.sub-price-table .outer-section .pcontent .name-col1 {
  float: left;
  width: 50%;
  border-right: 1px solid #d2d5d9;
  text-align: left;
  color: #737378;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 1.3rem 1rem;
}
.sub-price-table .outer-section .pcontent .name-col1 i {
  color: #283579;
}

.sub-price-table .outer-section .pcontent .name-col2 {
  float: left;
  width: 50%;
  border-right: 1px solid #d2d5d9;
  text-align: center;
  padding: 1rem 1rem;
}
.sub-price-table .outer-section .pcontent .name-col2 .g-check {
  color: #008060;
}
.sub-price-table .outer-section .pcontent .name-col2 .g-cross {
  color: #d8d8d8;
}

.sub-price-table .outer-section .pcontent .name-col3 {
  float: left;
  width: 33%;
  text-align: center;
  padding: 1rem 1rem;
}
.sub-price-table .outer-section .pcontent .name-col3 .g-check {
  color: #008060;
}
.sub-price-table .outer-section .pcontent .name-col3 .g-cross {
  color: #d8d8d8;
}

.price-tab {
  width: 100%;
  overflow: hidden;
  margin: 1.5rem 0 0;
}

.price-tab .p-col1 {
  width: 33%;
  float: left;
}

.price-tab .p-col2 {
  width: 33%;
  float: left;
  text-align: center;
}

.price-tab .p-col2 button[type="submit"] {
  background: #3499e0;
  color: #fff;
  font: 400 16px/16px Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #3499e0;
  padding: 0.7rem 1.5rem;
}
.sub-left-icon {
  position: relative;
}

.sub-left-icon ul {
  margin: 1rem 0 0;
  padding: 0;
}

.sub-left-icon ul li {
  margin: 0 1rem 0 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.subfree-outer {
  overflow: hidden;
  padding: 2rem 0;
}

.subfree-outer h2 {
  color: #1c5ba8;
  font: 400 1.8rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
  text-align: center;
}

.subfree-outer p {
  text-align: center;
  color: #000;
  font: 500 1.2rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
}

.sub-left-icon button[type="submit"] {
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0.8rem 2.5rem;
}
.sub-left-icon h6 {
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0.7rem 0 1rem;
}

.gauge-chart1 .gauge-chart svg {
  height: 185px;
}

.sub-price-table .subheading {
  position: relative;
  background: #f2f6fb;
  border-bottom: 1px solid #d2d5d9;
  overflow: hidden;
}

.sub-price-table .subheading h4 {
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 1.3rem 1rem;
}

.sub-price-table .subheading .name-col1 {
  float: left;
  width: 50%;
  border-right: 1px solid #d2d5d9;
  text-align: left;
  color: #000;
  font: 500 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 1.3rem 1rem;
}

.sub-price-table .subheading .name-col2 {
  float: left;
  width: 50%;
  text-align: center;
  padding: 1rem 1rem;
}

/*  */

/* End SubscriptionComponent */

.risk-re-table .as-w1 {
  width: 50%;
}

.risk-re-table .as-w2 {
  width: 50%;
}

.risk-option {
  position: relative;
  float: right;
  width: 100%;
}
.risk-option .col-rmd-4 {
  width: 16%;
  display: inline-block;
}
.send-query .modal-header {
  background: #729ef5;
  padding: 1rem 1rem 0.8rem;
}
.send-query .modal-header h3 {
  font: 400 1.2rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}
.send-query .modal-header .modal-title {
  color: #fff;
  font: 300 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}
.send-query .modal-header .close {
  padding: 0.7rem 1rem 0;
}
.modal-lg {
  max-width: 1000px;
}

/* monthlyreports css */
.monthly-main {
  position: relative;
  margin: 0 0 2rem;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}
.monthly-w-main {
  background: #e5f5ff;
}
.monthly-w2-main {
  background: #f2faff;
}
.monthly-row {
  background: #2b3a7c;
  margin: 0;
  padding: 0;
  border-radius: 10px 10px 0 0;
}
.monthly-row p {
  margin: 0;
  padding: 0.8rem 1rem;
  color: #fff;
  font: 400 1.4rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
}

.monthly-row ul {
  margin: 0;
  padding: 0;
}
.monthly-row ul li {
  color: #fff;
  display: inline-block;
  border-right: 1px solid #fff;
  padding: 0 0.8rem;
}

.monthly-row1 {
  position: relative;
  margin: 1rem 0;
  padding: 0 1rem;
}
.monthly-row1 h3 {
  padding: 1rem 0 0;
  margin: 0;
  font: 500 2rem/2rem Roboto, Arial, Helvetica, sans-serif;
}
.monthly-row1 h4 {
  padding: 0 0 2rem;
  margin: 0;
  font: 500 2rem/2rem Roboto, Arial, Helvetica, sans-serif;
}
.monthly-row1 h5 {
  color: #2b3a7c;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 1rem;
}
.monthly-row1 p {
  color: #6c6464;
  margin: 0;
  padding: 0 0 1rem;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.monthly-row2 {
  position: relative;
  padding: 0 1rem;
}
.monthly-row2 p {
  color: #1d7306;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}
.monthly-row2 h6 {
  color: #2b3a7c;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
}
.monthly-row2 h6 span {
  color: #2b3a7c;
  display: block;
}
.month-summary {
  position: relative;
  margin: 1rem 0 0;
}
.month-summary .mon-summ-1 {
  position: relative;
  background: #01705f;
  border-radius: 10px 10px 0 0;
}
.month-summary .mon-summ-1 p {
  color: #fff;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.8rem 1rem;
  margin: 0 0 0;
}

.month-summary .mon-summ-2 {
  background: #e0e0e0;
  padding: 0;
}

.month-summary .mon-summ-3 {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}
.month-summary .mon-summ-3 div {
  padding: 1rem;
  white-space: normal;
  display: inline-block;
  vertical-align: top;
  width: 225px;
  border-right: 1px solid #d1d1d1;
  min-height: 170px;
}
.month-summary .mon-summ-3 div h6 {
  color: #1e59a7;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
  margin: 0;
}

.month-summary .mon-summ-3 div p {
  color: #272727;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
.month-summary .mon-summ-3 div:last-child {
  border-right: 1px solid transparent;
}

.monthly-content {
  position: relative;
}
.monthly-content-row1 {
  position: relative;
}
.monthly-content-row1 img {
  float: right;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 35%;
  height: 190px;
  margin: 0 0 1rem 1rem;
}
.monthly-content-row1 p {
  color: #272727;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}
.monthly-content-row1 h3 {
  color: #1c5ba8;
  font: 600 1.4rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 0;
}
.monthly-content-row1 p span {
  color: #1c5ba8;
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 0;
}

.monthly-content-row2 {
  position: relative;
  overflow: hidden;
}
.monthly-content-row2 img {
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 100%;
  height: 240px;
  margin: 0 0 1rem;
}
.monthly-content-row2 p {
  color: #272727;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}
.monthly-content-row2 h3 {
  color: #1c5ba8;
  font: 600 1.4rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 0;
}
.monthly-content-row2 p span {
  color: #1c5ba8;
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 1rem;
  margin: 0;
}

.monthly-content-row3 {
  position: relative;
}
.monthly-content-row3 img {
  float: left;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 35%;
  height: 190px;
  margin: 0 1rem 1rem 0;
}
.monthly-content-row3 p {
  color: #272727;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.mobile-m-scroller {
  text-align: right;
}

.month-event-summary {
  position: relative;
  margin: 1rem 0 0;
}
.month-event-summary .mon-summ-1 {
  position: relative;
  background: #01705f;
  border-radius: 10px 10px 0 0;
}
.month-event-summary .mon-summ-1 p {
  color: #fff;
  font: 600 1rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.8rem 1rem;
  margin: 0 0 0;
}

.month-event-summary .mon-summ-2 {
  background: #e0e0e0;
  padding: 0;
}

.month-event-summary .mon-summ-3 {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}
.month-event-summary .mon-summ-3 div {
  padding: 1rem;
  white-space: normal;
  display: inline-block;
  vertical-align: top;
  width: 225px;
  border-right: 1px solid #d1d1d1;
  min-height: 90px;
}
.month-event-summary .mon-summ-3 div h6 {
  color: #1e59a7;
  font: 600 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
  margin: 0;
}

.month-event-summary .mon-summ-3 div p {
  color: #272727;
  font: 400 0.9rem/1.2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
.month-event-summary .mon-summ-3 div:last-child {
  border-right: 1px solid transparent;
}

/* monthlyreports css */

.gauge-chart1 .gauge-chart svg {
  height: 160px;
}

/* forex-loans-advisory */
.loan-h-bg {
  background: url(../images/forex-loans-advisory/header-bg.jpg) no-repeat left
    center;
  min-height: 458px;
}

.forex-l-form {
  background: rgba(255, 249, 224, 0.75);
  margin: 2rem 0;
  padding: 2rem 1rem;
}

.forex-l-form h3 {
  font: 400 1.8rem/2rem Roboto, Arial, Helvetica, sans-serif;
  color: #323232;
  padding: 0;
  margin: 0 0 1rem;
}

.forex-l-form p {
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #323232;
}

.heading-text {
  position: relative;
}

.heading-text h2 {
  position: relative;
  color: #0a2759;
  font: 400 1.8rem/2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 2.8rem;
}
.heading-text.heading-section h2:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100px;
  background-color: #0a2759;
  bottom: -20px;
  left: 0;
  right: 0;
}
.heading-text.heading-section.text-center h2:before {
  margin: 0 auto;
}
.loan-text {
  position: relative;
}

.loan-text p {
  color: #0a2759;
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
.loan-margin {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.loan-bg2 {
  background: url(../images/forex-loans-advisory/foreign-cur.jpg) no-repeat left
    center;
}
.foreign-currency {
  position: relative;
}
.foreign-currency h2 {
  color: #fff;
  font: 400 1.8rem/2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2rem 0 1.5rem;
}
.foreign-currency ul {
  margin: 0;
  padding: 0;
}

.foreign-currency ul li {
  color: #fff;
  font: 400 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  background: url(../images/forex-loans-advisory/f-bullet.png) no-repeat 0 0;
  margin: 0 0 1.8rem;
  padding: 0 0 0 2rem;
}

.loan-bg2 img {
  vertical-align: bottom;
}

.loan-bg3 {
  background: url(../images/forex-loans-advisory/foreign-bg3.jpg) no-repeat
    right center;
  background-color: #15549a;
}

.foreign-t-currency {
  position: relative;
}

.foreign-t-currency h2 {
  color: #fff;
  font: 400 1.8rem/2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2rem 0 1.5rem;
}

.foreign-t-currency ul {
  margin: 0;
  padding: 0;
}

.foreign-t-currency ul li {
  color: #fff;
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  background: url(../images/forex-loans-advisory/f-bullet2.png) no-repeat 0 0;
  margin: 0 0 1rem;
  padding: 0 0 0 1.2rem;
}

.loan-bg4 {
  background: #f4f6f8;
}
.loan-padding {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.loan-t-padding {
  position: relative;
  padding-bottom: 3rem;
}

.loan-tb-padding {
  position: relative;
  padding-top: 3rem;
}
.loan-factor {
  position: relative;
  margin-top: 1rem;
}

.loan-factor .card {
  display: block;
  text-align: center;
  padding: 3.5rem 0;
}

.loan-factor .card .card-body h5 {
  color: #0a2759;
  font: 400 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.card-mitigating {
  border: 1px solid #dee4ee;
  border-radius: 10px;
  text-align: center;
}

.card-mitigating .card-body h5 {
  font: 400 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #213159;
  margin: 0;
  padding: 0 0 1.5rem;
}

.card-mitigating .card-body p {
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #778191;
  margin: 0;
  padding: 0;
}
.bg-boxshadow {
  -webkit-box-shadow: 0px 4px 16px 3px rgba(213, 221, 234, 0.5);
  -moz-box-shadow: 0px 4px 16px 3px rgba(213, 221, 234, 0.5);
  box-shadow: 0px 4px 16px 3px rgba(213, 221, 234, 0.5);
}

.client-mi-outer {
  position: relative;
}
.client-mi-outer .item {
  position: relative;
}
.client-mi-outer .item .case-media {
  position: relative;
  border: 1px solid #ccdefb;
  width: 325px;
  border-radius: 8px 8px;
  overflow: hidden;
  background: #fff9e0;
  box-shadow: 12px 14px 0 #e5edfa;
  transition: all 1s;
  margin: 0 1.5rem 1.5rem;
}
.client-mi-outer .item .case-media .case-media-col1 {
  position: relative;
  text-align: center;
  padding: 2rem 0 0;
}

.client-mi-outer .item .case-media .con-body {
  position: relative;
  text-align: center;
  padding: 1rem;
}

.client-mi-outer .item .case-media .con-body h5 {
  position: relative;
  color: #030303;
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
}

.client-mi-outer .item .case-media .con-body h6 {
  position: relative;
  color: #4d4b4b;
  font: 400 0.9rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
}

.client-mi-outer .item .case-media .con-body p {
  position: relative;
  color: #4d4b4b;
  font: 400 0.85rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 1rem;
}

.case-outer {
  position: relative;
}
.case-outer .item {
  position: relative;
}

.case-outer .item .case-media {
  position: relative;
  border: 1px solid #f1d3d3;
  width: 315px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 2rem;
}

.case-outer .item .case-media .case-media-col1 {
  position: relative;
  border-radius: 5px 5px 0 0;
  vertical-align: top;
  font-size: 0;
}

.case-outer .item .case-media .case-media-col2 {
  background: #286ab3;
  border-radius: 0 0 5px 5px;
  padding: 1rem;
}

.case-outer .item .case-media .case-media-col2 h6 {
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #b0ceef;
  text-align: right;
  padding: 0 0 1rem;
  margin: 0;
}
.case-outer .item .case-media .case-media-col2 h5 {
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: left;
  padding: 0 0 1rem;
  margin: 0;
}
.case-outer .item .case-media .case-media-col2 p {
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #b0ceef;
  text-align: left;
  padding: 0 0 1rem;
  margin: 0;
}

.case-outer .item .case-media .case-media-col2 h4 {
  font: 400 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  color: #fff;
  text-align: right;
}
.case-outer .item .case-media .case-media-col2 h4 a {
  color: #fff;
}

.client-m-outer.owl-carousel .owl-nav button.owl-prev {
  left: 10%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.client-m-outer.owl-carousel .owl-nav button.owl-next {
  right: 10%;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
}

.client-m-outer.owl-carousel:hover .owl-nav button.owl-next {
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.client-m-outer.owl-carousel:hover .owl-nav button.owl-prev {
  left: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  opacity: 1;
}

.client-m-outer.owl-carousel:hover .owl-nav button.owl-next:hover,
.client-m-outer.owl-carousel:hover .owl-nav button.owl-prev:hover {
  color: #1c5ba8;
  border: 1px solid transparent;
  background: 0 0;
}

.client-m-outer.owl-carousel .owl-nav button.owl-next,
.client-m-outer.owl-carousel .owl-nav button.owl-prev {
  color: #1c5ba8;
  font-size: 30px;
  position: absolute;
  top: 50%;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  margin-top: -20px;
}

/* forex-loans-advisory */

/* forex-risk-managment */
.risk-h-bg {
  background: url(../images/forex-risk-managment/risk-header-bg.jpg) no-repeat
    left center;
  min-height: 458px;
  background-color: #d9ebf5;
}
.forex-h-text {
  position: relative;
}
.forex-h-text h5 {
  position: relative;
  color: #2b3a7c;
  font: 400 1.9rem/3rem Roboto, Arial, Helvetica, sans-serif;
  margin: 2rem 0 0;
  padding: 0;
}

.risk-padding {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.risk-t-padding {
  position: relative;
  padding-bottom: 3rem;
}
.risk-margin {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.risk-text {
  position: relative;
}

.risk-text p {
  color: #464646;
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.risk-text-con {
  position: relative;
}

.risk-text-con p {
  color: #464646;
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 2rem;
}
.risk-bg3 {
  background: #b4d6f1;
}

.riskplan {
  background: #fff;
  border-radius: 15px;
  min-height: 660px;
  position: relative;
}

.risk-stater {
  padding-top: 2rem;
}

.risk-stater .rrow1 {
  position: relative;
  border-right: 5px solid #f6bb07;
}

.risk-stater .rrow1 .rcol-m-1 {
  position: relative;
  text-align: center;
}

.risk-stater .rrow1 .rcol-m-1 h3 {
  color: #f6bb07;
  text-transform: uppercase;
  padding: 0 0 1.5rem;
}

.risk-stater .rrow1 .rcol-m-2 h4 {
  color: #5b77ff;
  text-align: center;
  padding: 0 0 0.3rem;
  font: 500 4rem/4rem Roboto, Arial, Helvetica, sans-serif;
}

.risk-stater .rrow1 .rcol-m-2 h4 i {
  font-size: 2rem;
  margin-right: 0;
}

.risk-stater .rrow1 .rcol-m-2 h4 span {
  font-size: 1.3rem;
  text-transform: uppercase;
}

.risk-stater .rrow2 {
  position: relative;
  padding: 0 0.5rem;
}

.risk-stater .rrow2 ol {
  margin: 1rem 0 0 1.3rem;
  padding: 0;
}

.risk-stater .rrow2 ol li {
  list-style: decimal;
  color: #172f53;
  font: 400 0.88rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
}

.risk-stater .rrow3 {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.risk-stater .rrow3 .rcol-m-1 h4 {
  color: #5b77ff;
  text-align: center;
  padding: 0 0 1rem;
}

.risk-stater .rrow3 .rcol-m-1 h4 i {
}

.risk-stater .rrow3 .rcol-m-1 h4 span {
  text-transform: uppercase;
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.risk-stater .rrow3 .rcol-m-2 {
  position: relative;
  background: #172f53;
  border-radius: 0 0 15px 15px;
  text-align: center;
  padding: 1.3rem 0;
}

.risk-stater .rrow3 .rcol-m-2 a {
  color: #fff;
  display: block;
  text-transform: uppercase;
  font: 500 1.1rem/1.1rem Roboto, Arial, Helvetica, sans-serif;
}

.risk-bg2 {
  background: #efeff1;
}

.risk-work {
  border-radius: 15px;
  background: url(../images/forex-risk-managment/how-bg.jpg) no-repeat left
    bottom;
  min-height: 345px;
  position: relative;
}

.risk-work .riskimg {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.risk-work .riskcontent {
  position: relative;
  text-align: center;
}

.risk-work .riskcontent h5 {
  color: #fff;
  font: 500 1.5rem/1.8rem Roboto, Arial, Helvetica, sans-serif;
  margin: 2rem 0 1rem;
  padding: 0 1rem;
}

.risk-work .riskcontent1 {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  width: 100%;
}

.risk-work .riskcontent1 h6 {
  color: #b1e4f6;
  font: 500 1rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0 0 0;
}

.risk-work .riskcontent1 h6 a {
  color: #b1e4f6;
  cursor: pointer;
}

.risk-work .riskcontent1 h6 a:hover {
  color: #fff;
}

.risk-standard .rrow1 .rcol-m-1 h3 {
  color: #04b8d1;
}
.risk-standard .rrow1 {
  position: relative;
  border-right: 5px solid #04b8d1;
}

.risk-premim .rrow1 .rcol-m-1 h3 {
  color: #643bb5;
}
.risk-premim .rrow1 {
  position: relative;
  border-right: 5px solid #643bb5;
}

.risk-enterprise .rrow1 .rcol-m-1 h3 {
  color: #172f53;
}
.risk-enterprise .rrow1 {
  position: relative;
  border-right: 5px solid #172f53;
}

/* forex-risk-managment */

.risk-faq {
  margin: 1rem 0;
}

.risk-faq h5 {
  color: #3d3d3d;
  font: 500 1rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

.risk-faq #accordionExample .card-header {
  background: #f5fafa;
}

.risk-faq .card {
  margin: 0 0 0.7rem;
}

.risk-faq .card:first-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.risk-faq .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.risk-faq .card .card-header a:not(.collapsed) .rotate-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.risk-faq .card .fa-angle-down {
  float: right;
  color: #2b3a7c;
  font-weight: bold;
  font-size: 1.3rem;
}
.risk-faq .card .card-header a {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  display: block;
  cursor: pointer;
}

.risk-faq .card-body {
  font: 400 0.95rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
}

.risk-but a {
  background: #2b3a7c;
  color: #fff;
  font: 400 1.2rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
}
.risk-but a:hover {
  color: #fff;
}

/* Exporter's Misguided Conclusion */
.con-img {
  position: relative;
  border: 1px solid #6d6c6c;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
}
.loan-bg5 {
  background: #bdc6cf;
}
.exp-video {
  background: #0e2a47;
  border-radius: 15px;
  padding: 1rem;
}
.con-text1 {
  position: relative;
}
.con-text1 h3 {
  color: #1c5ba8;
  font: 500 1.45em/2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
.con-text1 p {
  color: #464646;
  font: 400 0.9em/1.4rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0 0;
  padding: 0;
}
.loan-met {
  position: relative;
}
.loan-met ul {
  margin: 0;
}

.con-result {
  background: url(../images/forex-risk-managment/con-img2.png) no-repeat 0 0;
}

.con-result h3 {
  color: #0d3e6f;
  font: 500 1.5rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  padding: 2rem 0 1rem;
}

.con-result p {
  font: 400 1rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 2rem 0 1rem;
}

.con-result h6 {
  font: 500 1rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  color: #000;
  padding: 0 0 1rem;
}

.con-result a {
  background: #00b9f5;
  border-radius: 10px;
  display: inline-block;
  padding: 0.7rem 1.5rem;
  color: #fff;
  margin: 0 0 3rem;
}
.con-result a:hover {
  color: #fff;
}
.exporter-result {
  position: relative;
}
.exporter-result table {
  border-collapse: separate;
  border-spacing: 0;
}

.exporter-result table tr th,
.exporter-result table tr td {
  border-right: 1px solid #172f53;
  border-bottom: 1px solid #172f53;
}

.exporter-result table tr th:first-child,
.exporter-result table tr td:first-child {
  border-left: 1px solid #172f53;
}
.exporter-result table tr th {
  background: #efeff1;
  border-top: 1px solid #172f53;
  text-align: left;
}

/* top-left border-radius */
.exporter-result table thead tr:first-child th:first-child {
  border-top-left-radius: 30px;
}

.exporter-result table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 30px;
}
.exporter-result .table td {
  background: #efeff1;
}

.con-text3 {
  position: relative;
}

.con-text3 h4 {
  color: #1c5ba8;
  font: 500 1.2em/2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
  text-align: center;
  padding: 0 3rem;
}

/* Quick Assessment */

.quick-ass-txt {
  position: relative;
}

.quick-ass-txt p {
  position: relative;
}

.quick-ass-txt h4 {
  font: 500 1.2em/2rem Roboto, Arial, Helvetica, sans-serif;
}
.quick-ass-main {
  position: relative;
  margin: 1rem 1rem;
}
.quick-ass-main p span {
  color: #009ee7;
}

.quick-ass-main ul {
  margin: 0;
}
.quick-ass-main ul li {
  margin: 0 0 0.5rem;
  background: #f1f1f1;
  border: 1px solid #d0cfcf;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 0.85rem;
  line-height: 1.4rem;
  width: 92%;
}
.quick-ass-main .quick-q1 {
  float: left;
  width: 53%;
  margin-right: 4%;
}

.quick-ass-main .quick-q2 {
  float: left;
  width: 35%;
}

.quick-ass-main ul li p {
  margin: 0;
  padding: 0;
}

.quick-ass-main button[type="submit"] {
  padding: 0.4rem 1.5rem;
}

.quick-ass-ma-bottom {
  margin-bottom: 1rem;
}

.loan-bg6 {
  background: url(../images/forex-risk-managment/ass-ruslt-bg.jpg) no-repeat 0 0;
  background-size: 100%;
}

.ass-result {
  position: relative;
}

.ass-result h3 {
  color: #194056;
  margin: 0 0 1.5rem;
  text-align: center;
}

.ass-result button[type="submit"] {
  background: url(../images/forex-risk-managment/ass-rusltbut-bg.jpg) repeat-x 0
    0;
  color: #fff;
  border: 1px solid #e93e61;
  font: 500 1.2em/1.2rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0.6rem 1.5rem;
  margin: 1rem 0 0;
}
.ass-result p {
  text-align: left;
}

.loan-bg7 {
  background: url(../images/forex-risk-managment/ass-graph-bg.jpg) no-repeat 0 0;
  background-size: 100%;
}

.con-text2 {
  position: relative;
}

.con-text2 h3 {
  font: 500 2em/2rem Roboto, Arial, Helvetica, sans-serif;
  color: #194056;
  padding: 0;
  margin: 0 0 2rem;
}

.heading-text1 {
  position: relative;
}

.heading-text1 h2 {
  position: relative;
  color: #194056;
  font: 400 1.8rem/2rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 2.8rem;
  text-transform: uppercase;
}
.heading-text1.heading-section h2:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100px;
  background-color: #194056;
  bottom: -20px;
  left: 0;
  right: 0;
}
.heading-text1.heading-section.text-center h2:before {
  margin: 0 auto;
}
.exp-video video {
  width: 100%;
  height: 450px;
}

.ass-report {
  position: relative;
  width: 70%;
  margin: 0 0 0 10%;
}

.ass-report .table td {
  border-top: 1px solid transparent;
}

.ass-report .table tbody tr td .ass-green {
  background: #78dc00;
}

.ass-report .table tbody tr td .ass-red {
  background: #ff0028;
}

.ass-report .table tbody tr td .ass-yellow {
  background: #ffd200;
}

.ass-report .table tbody tr td .progress {
  background-color: transparent;
}

.ass-right-rep {
  position: relative;
}

.ass-right-rep .ass-row {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 0.7rem;
}

.ass-right-rep .ass-row .ass-col1 {
  float: left;
  text-align: right;
  width: 80%;
  font: 400 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #194056;
  padding: 0 1rem 0 0;
}

.ass-right-rep .ass-row .ass-col2 {
  float: left;
  width: 20%;
}

.ass-right-rep .ass-row .ass-col2 .ass-green {
  background: #78dc00;
}

.ass-right-rep .ass-row .ass-col2 .ass-red {
  background: #ff0028;
}

.ass-right-rep .ass-row .ass-col2 .ass-yellow {
  background: #ffd200;
}

.ass-report .ass-w1 {
  width: 40%;
  text-align: right;
  color: #194056;
  padding: 0.7rem 1rem 0.7rem 0;
}

.ass-report .ass-w2 {
  width: 60%;
  border-left: 1px solid #454747;
  padding: 0.7rem 0 0.7rem;
}
.ass-report .ass-bw2 {
  border-bottom: 1px solid #454747;
}

.swhi-mobile1 {
  display: none;
}

/* GlossarySearch */
.glossarycont {
  position: relative;
}
.glossarycont h4 {
  font: 400 1.1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;
  color: #1c5ba8;
  margin: 0;
  padding: 0 0 1rem;
  text-align: left;
  position: relative;
}

.glossarycont h6 {
  font: 600 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 1rem 0 0.6rem;
  color: #1c5ba8;
}

.glossarycont td {
  padding: 0;
  border-top: 1px solid transparent;
}

/* GlossarySearch */

.risk-ma-ques {
  position: relative;
}

.risk-ma-ques .risk-ma-head {
  color: #1c5ba8;
  font: 400 1.5rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
  padding: 0 0 0.8rem;
  text-align: left;
  position: relative;
}

.risk-ma-ques .risk-ma-head::before {
  border: 1px solid #1a58a7;
  bottom: 5px;
  content: "";
  left: 0;
  margin: 0;
  position: absolute;
  width: 3rem;
  right: 0;
}
.back-r-button {
  position: relative;
}

.back-r-button a {
  background: #3c6cae;
  display: inline-block;
  width: 35px;
  height: 35px;
  padding: 0.4rem 0.8rem;
  border-radius: 100%;
}

.back-r-button a i {
  color: #fff;
  font-size: 1.3rem;
}

/*  Risk   */
.quick-nass-txt {
  position: relative;
}

.quick-nass-txt h5 {
  color: rgb(28, 91, 168);
  text-align: left;
  position: relative;
  font: 400 1.5rem / 1.5rem Roboto, Arial, Helvetica, sans-serif;
  margin: 0px 0px 0.5rem;
  padding: 0px 0px 0.8rem;
}
.quick-nass-txt ul {
  margin: 0;
  padding: 0;
}

.quick-nass-txt ul li {
  margin: 0 1.5rem 0.3rem 0;
  padding: 0 0 0 2rem;
  background: url(../images/forex-risk-managment/bullet.png) no-repeat 0 0;
  display: inline-block;
}

.quick-risk-ass-main {
  position: relative;
  margin: 1rem 0;
}
.quick-risk-ass-main p span {
  color: #009ee7;
}

.quick-risk-ass-main ul {
  margin: 0 0 1rem;
  overflow: hidden;
}
.r-margin {
  margin: 0 !important;
}

.quick-risk-ass-main ul li {
  margin: 0 0 0.5rem;
  background: #f1f1f1;
  border: 1px solid #d0cfcf;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 0.85rem;
  line-height: 1.4rem;
  width: 92%;
}
.quick-risk-ass-main .quick-q1 {
  float: left;
  width: 53%;
  margin-right: 4%;
}

.quick-risk-ass-main .quick-q2 {
  float: left;
  width: 35%;
}

.quick-risk-ass-main ul li p {
  margin: 0;
  padding: 0;
}

.quick-risk-ass-main button[type="submit"] {
  padding: 0.4rem 1.5rem;
}

.risk-qu-form {
  position: relative;
  border: 1px solid #003956;
  border-radius: 10px;
  margin: 0 0 2rem;
  padding: 1rem 1rem 2rem;
  background: #dcf4fd;
}
.risk-mobile-form {
  position: relative;
  background: #dcf4fd;
  border: 1px solid #003956;
  padding: 1rem 1rem 2rem;
  border-radius: 10px;
}
.risk-mobile-form .rp-1 {
  margin: 0 0 1rem;
}
.risk-mobile-form .rp-2 {
  margin: 0 0 1rem;
}
.riskm-select {
  position: relative;
}
.riskm-select .ui-multiselect {
  width: 100%;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  background: transparent;
}
.riskm-select .ui-multiselect .ui-multiselect-trigger {
  background: transparent;
}
.risk-mobile-form p {
  font: 500 1rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
  padding: 0 0 0.5rem;
  margin: 0;
}
.riskm-button .ui-selectbutton .ui-button {
  background: #fff;
  color: #000;
  border: 1px solid #acacac;
  margin: 0 5px 0 0;
}
.riskm-button .ui-buttonset:not(.ui-splitbutton) .ui-button {
  margin-bottom: 5px;
}

.risk-mobile-form input[type="text"] {
  border-bottom: 1px solid #bbbbbb;
  padding: 0.3rem 0;
  margin: 0 0 0 10px;
  background: transparent;
}
.riskm-select .ui-multiselect .ui-multiselect-label {
  font-size: 1rem;
}
.riskm-button .ui-selectbutton .ui-button {
  border-radius: 5px;
}
.riskm-button .ui-selectbutton .ui-button:first-child {
  border-radius: 5px;
}

.risk-mobile-form .rp-4 p {
  padding: 0.5rem 0;
}

.risk-mobile-form .rp-5 {
  margin: 0;
}

/*  Risk   */

.custom-check {
  padding-left: 0;
}
.custom-check input[type="checkbox"] {
  margin: 0;
  height: 16px;
  width: 16px;
}
.custom-check span {
  margin: 0 0 0 0.5rem;
}

.owl-prev img {
  left: -30px;
  top: 50%;
  width: 40px;
  padding: 8px;
  position: absolute;
  border-radius: 4px;
  transition: 0.3s;
  transform: translateY(-50%);
}

.owl-next img {
  top: 50%;
  right: 0px;
  width: 40px;
  padding: 8px;
  position: absolute;
  border-radius: 4px;
  transition: 0.3s;
  transform: translateY(-50%);
}

.icon-chevron-left,
.icon-chevron-right {
  background: lightblue;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

/* #accordionExample div:first-of-type {
  padding-right: 0 !important;
  padding-left: 0 !important;
} */
.anim-5,
.anim-5-all * {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.hidden-bar-closer {
  display: none;
}

#header {
  position: relative;
  background: #fff;
  z-index: 3;
}

#header.stricky-fixed {
  position: fixed;
  top: -1px;
  left: 0;
  z-index: 3;
  width: 100%;
}

#planpurchase {
  /*position: fixed;
    float: right;
    width: 27%*/
}

#planpurchase.stricky-fixed {
  position: absolute;
  float: right;
  width: 90%;
  bottom: 0;
}

#header.stricky-fixed .nav-holder .nav-footer > ul.nav > li {
  padding: 20px 0;
}

#header.stricky-fixed .nav-holder .nav-header > ul > li {
  padding: 19px 0;
}

#header.stricky-fixed .logo {
  line-height: 1rem;
  padding-right: 0;
}

#header.stricky-fixed .logo img {
  width: 90%;
  margin: 0.3rem 0 0.3rem;
}

#header .logo {
  line-height: 2rem;
  position: relative;
  width: 190px;
}

#header .logo img {
  position: relative;
  margin: 0.3rem 0 0;
  width: 100%;
}

#header .nav-holder .nav-footer ul.nav > li {
  padding: 1.8rem 0;
  transition: all 0.3s ease;
}

#header .nav-holder .nav-footer ul.nav > li:last-child > a {
  padding-right: 0;
}

#header .nav-holder .nav-footer ul.nav > li > a {
  font-size: 0.875rem;
  border: none;
  padding: 0 7px;
}

.nav-holder {
  position: relative;
}

.nav-holder .nav-header {
  display: inline-block;
  padding-left: 10px;
}

.nav-holder .nav-header > ul > li {
  display: inline-block;
  padding: 1rem 0;
  position: relative;
}

.nav-holder .nav-header > ul > li button[type="submit"] {
  border: 1px solid #989898;
  background: #fff;
  color: #274c91;
  text-transform: uppercase;
}

.nav-holder .nav-header > ul > li button[type="submit"]:hover {
  background: #ff7043;
  color: #fff;
}

.nav-holder .nav-header .menu-expander {
  display: none;
}

.nav-holder .nav-header > ul > li > span {
  padding: 0;
  border: none;
  outline: 0;
  color: #1c5ba8;
  font-size: 18px;
  display: inline-block;
  background-color: transparent;
  padding: 0 3px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.nav-holder .nav-header > ul > li > span b {
  top: 0;
  background: #ec3702;
  color: #fff;
  font: 400 0.6rem/.5rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  padding: 0.2rem;
  right: 0;
}

.nav-holder .nav-header > ul > li > span span {
  color: #454545;
  font-size: 0.875rem;
}

.y-color {
  color: #f0b503;
}

.nav-holder .nav-header > ul > li:nth-child(2) {
  margin: 0 15px 0 0;
}

.nav-holder .nav-footer {
  display: inline-block;
}

.nav-holder .nav-footer ul {
  margin: 0;
}

.nav-holder .nav-footer ul.nav > li {
  display: inline-block;
  line-height: 29px;
  padding: 18px 0;
  position: relative;
}

.nav-holder .nav-footer ul.nav > li span.active {
  color: #ff7043;
  background-color: transparent;
}

.nav-holder .nav-footer ul.nav > li.active a,
.nav-holder .nav-footer ul.nav > li:hover a {
  color: #ff7043;
  background-color: transparent;
}

#header .nav-holder .nav-footer ul.nav > li > a.active-menu {
  color: #ff7043;
}

.nav-holder .nav-footer ul.nav > li:last-child > a {
  border: none;
  padding-right: 0;
}

.nav-holder .nav-footer ul.nav > li > a {
  font: 500 0.875rem/1rem Raleway, Arial, Helvetica, sans-serif;
  padding: 0 15px;
  display: block;
  font-size: 15px;
  color: #1c5ba8;
  text-transform: uppercase;
  background-color: transparent;
  transition: all 0.3s ease;
}

.nav-holder .nav-footer ul.nav > li > ul.submenu {
  top: 100%;
  left: 0;
}

.nav-holder .nav-footer ul.nav > li > ul.submenu.align-right {
  right: 0;
  left: auto;
}

.nav-holder .nav-footer ul.nav > li:hover > ul.submenu {
  visibility: visible;
  opacity: 1;
}

.nav-holder .nav-footer ul.nav > li > ul.submenu > li > ul.submenu {
  top: 0;
  left: 100%;
}

.nav-holder .nav-footer ul.nav > li > ul.submenu > li > ul.submenu.align-right {
  right: 100%;
  left: auto;
}

.nav-holder .nav-footer ul.nav > li > ul.submenu > li:hover > ul.submenu {
  visibility: visible;
  opacity: 1;
}

.nav-holder .nav-footer ul.nav > li ul.submenu {
  position: absolute;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
}

.nav-holder .nav-footer ul.nav > li ul.submenu li {
  display: block;
  padding: 0;
  position: relative;
}

.nav-holder .nav-footer ul.nav > li ul.submenu span {
  position: absolute;
  display: inline;
  right: 10px;
  font-size: 1rem;
}

.nav-holder .nav-footer ul.nav > li ul.submenu li:last-child a {
  /* border-bottom: 0 */
  border-bottom: 1px solid #dbdbdb;
}

.nav-holder .nav-footer ul.nav > li ul.submenu li:last-child a:after {
  /* display: none */
}

.nav-holder .nav-footer ul.nav > li ul.submenu li:hover > a {
  color: #f0683e;
}

.nav-holder .nav-footer ul.nav > li ul.submenu li a {
  color: #242424;
  font: 500 0.84rem/1rem Raleway, Arial, Helvetica, sans-serif;
  padding: 0.8rem;
  /* border-bottom: 1px solid #dbdbdb; */
  position: relative;
  display: block;
  transition: all 0.3s ease;
}

.nav-holder .nav-footer ul.nav > li ul.submenu li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #c5c5c5;
}

.nav-footer ul.nav li.has-submenu > a > button {
  display: none;
}

.nav-holder .nav-header > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}

.nav-holder .nav-header ul {
  margin: 0;
  text-align: right;
}

.notification-col ul li {
  border-bottom: 1px solid #ccc;
}

.notification-col ul li:last-child {
  border-bottom: 1px solid transparent;
}

.notification-col ul li h6 {
  background: #1b5ca7;
  color: #fff;
  text-align: left;
  font: 500 0.9rem/.9rem Raleway, Arial, Helvetica, sans-serif;
  padding: 0.8rem;
}

.notification-col ul li h5 {
  text-align: center;
  font: 500 0.9rem/.9rem Raleway, Arial, Helvetica, sans-serif;
  padding: 0.8rem;
}

.nav-holder .nav-header > ul > li > ul {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-holder .nav-header > ul > li > ul.search-box {
  background: #fff;
  padding: 5px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.nav-holder .nav-header > ul > li > ul.user-box {
  background: #fff;
  padding: 5px 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.875rem;
}

.nav-holder .nav-header > ul > li > ul.user-box .user-r1-box {
  background: #f5f5f5;
  border-bottom: 1px solid #c4c4c4;
  text-align: left;
  padding: 4px;
}

.nav-holder .nav-header > ul > li > ul.user-box .user-r2-box {
  display: inline-block;
}

.nav-holder .nav-header > ul > li > ul.user-box .user-r1-box span {
  display: inline-block;
  border-radius: 100%;
  height: 45px;
  width: 45px;
  overflow: hidden;
  text-align: left;
}

.nav-holder .nav-header > ul > li > ul.user-box li a {
  color: #454545;
}

.nav-holder .nav-header > ul > li > ul.user-box li a:hover {
  color: #f4511e;
}

.nav-holder .nav-header > ul > li > ul.user-box .user-r2-box a {
  color: #3079ed;
}

.nav-holder .nav-header > ul > li > ul.notification {
  background: #fff;
  padding: 5px 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.nav-holder .nav-header > ul > li > ul.notification span {
  color: #1c5ba8;
  text-align: center;
  width: 100%;
  font-size: 2rem;
}

.nav-holder .nav-header > ul > li > ul.notification .bell-row1 {
  width: 100%;
  margin: 0 auto;
}

.nav-holder .nav-header > ul > li > ul.notification button[type="submit"] {
  background: #fff;
  border: 1px solid #e25c33;
  color: #000;
  font: 400 1rem/1.1rem Raleway, Arial, Helvetica, sans-serif;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  margin: 0.5rem;
}

.nav-holder .nav-header > ul > li > ul.notification p {
  color: #454545;
  font: 500 0.8rem/1.1rem Raleway, Arial, Helvetica, sans-serif;
  padding: 0.5rem 0 0;
  text-align: left;
}

.not-uparrow {
  position: absolute;
  top: -17px;
  right: 10px;
}

.nav-holder .nav-header > ul > li > ul.search-box form {
  height: 45px;
  background: #f0683e;
}

.nav-holder .nav-header > ul > li > ul.search-box form input {
  width: calc(100% - 52px);
  height: 100%;
  border: none;
  outline: 0;
  color: #fff;
  background-color: transparent;
  line-height: 14px;
  padding-left: 15px;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.search-box
  form
  input::-webkit-input-placeholder {
  color: #fff;
  text-transform: capitalize;
}

.nav-holder .nav-header > ul > li > ul.search-box form input:-moz-placeholder {
  color: #fff;
  text-transform: capitalize;
}

.nav-holder .nav-header > ul > li > ul.search-box form input::-moz-placeholder {
  color: #fff;
  text-transform: capitalize;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.search-box
  form
  input:-ms-input-placeholder {
  color: #fff;
  text-transform: capitalize;
}

.nav-holder .nav-header > ul > li > ul.search-box form button {
  width: 40px;
  height: 100%;
  line-height: 45px;
  color: #fff;
  font-size: 15px;
  background-color: transparent;
  border: none;
  outline: 0;
}

.nav-holder .nav-header > ul > li > ul.cart-box {
  background: #fff;
  padding-top: 15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.11);
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-header h4 {
  text-transform: capitalize;
  color: #391f0a;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: Lato, sans-serif;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-content {
  padding: 15px 0;
  border-top: 1px dashed #bebebe;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-content .content,
.nav-holder .nav-header > ul > li > ul.cart-box .cart-content .img-box {
  display: table-cell;
  vertical-align: top;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-content .img-box {
  width: 100px;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-content .content {
  padding-left: 30px;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-content .content h4 {
  font: 700 1rem/1rem Raleway, Arial, Helvetica, sans-serif;
  margin: 0;
  text-transform: uppercase;
  color: #000;
  margin-top: 0;
  margin-bottom: 6px;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-content .content i {
  color: #f0683e;
  cursor: pointer;
  font-size: 13px;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.cart-box
  .cart-content
  .content
  ul.price {
  margin-left: -10px;
  margin-right: -10px;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.cart-box
  .cart-content
  .content
  ul.price
  li {
  display: table-cell;
  vertical-align: middle;
  padding: 8px 10px;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.cart-box
  .cart-content
  .content
  ul.price
  li
  span {
  color: #2d2d2d;
  font-style: italic;
  font: 600 1rem/1rem Raleway, Arial, Helvetica, sans-serif;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-footer {
  border-top: 1px dashed #bebebe;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-footer .total-price {
  float: left;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-footer .total-price h4 {
  color: #000;
  text-transform: capitalize;
  font: 700 1rem/1rem Raleway, Arial, Helvetica, sans-serif;
  line-height: 34px;
  vertical-align: bottom;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-footer {
  padding-top: 15px;
}

.nav-holder .nav-header > ul > li > ul.cart-box .cart-footer .checkout-box {
  float: right;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.cart-box
  .cart-footer
  .checkout-box
  a.thm-btn {
  padding: 0 15px;
  background: #f0683e;
  color: #fff;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.cart-box
  .cart-footer
  .checkout-box
  a.thm-btn
  i {
  line-height: 35px;
  margin-left: 15px;
  padding-left: 0;
  border: none;
  color: inherit;
}

.nav-holder
  .nav-header
  > ul
  > li
  > ul.cart-box
  .cart-footer
  .checkout-box
  a.thm-btn
  i:after {
  display: none;
}

.nav-holder .nav-footer ul.nav > li.mfe-a-account {
  display: none;
}

.mfe-acc-mobile {
  display: none;
}

@media (max-width: 1200px) {
  #header .nav-holder .nav-footer ul.nav > li > a {
    padding: 0 5px;
  }
  .nav-holder .nav-header > ul > li > span {
    padding: 0 5px;
  }
}

@media (max-width: 1100px) {
  .main-menu-wrapper .thm-container {
    padding: 0 !important;
  }
  .nav-holder .nav-header {
    display: inline-block;
  }
  .nav-holder .nav-header .menu-expander button {
    display: block;
    font-size: 20px;
    position: relative;
    bottom: 3px;
    background: 0 0;
    color: #ff7043;
  }
  .nav-holder .nav-footer ul.nav > li > a {
    padding: 9px 26px;
  }
  .nav-holder > .nav-footer ul > li > .submenu {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: auto !important;
    left: auto !important;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: none;
    transition: none !important;
  }
  .nav-holder > .nav-footer ul > li > ul.submenu,
  .nav-holder > .nav-footer ul > li > ul.submenu > li > .submenu {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    display: none;
    transition: none;
    padding-right: 00px;
    width: 100% !important;
  }
  .nav-holder .nav-footer ul.nav > li ul.submenu1 li a {
    padding: 0.875rem 0 0.875rem 1.5rem;
  }
  .nav-holder > .nav-footer ul > li > ul.submenu > li > .submenu1 {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    display: none;
    transition: none;
    padding-right: 0;
    width: 100% !important;
  }
  .nav-footer ul.nav {
    padding-bottom: 0;
  }
  .nav-footer ul.nav > li > a {
    color: #242424;
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 29px;
    padding: 15px 25px;
    text-transform: uppercase;
  }
  .nav-holder > .nav-footer ul.nav > li:hover > a {
    background: #f0683e;
    color: #1b5faa;
  }
  .nav-footer ul.nav li.has-submenu > a {
    position: relative;
  }
}

@media (max-width: 1024px) {
  .nav-holder > .nav-footer ul.submenu-list {
    overflow: hidden;
  }
  .nav-holder > .nav-footer ul.submenu-list li {
    border-bottom: 1px solid rgba(27, 95, 170, 0.2);
  }
  .nav-holder > .nav-footer ul.submenu-list li a {
    padding: 0.6rem 1rem;
    display: block;
  }
  .nav-holder > .nav-footer ul.subchildmenu-list {
    overflow: hidden;
  }
  .nav-holder > .nav-footer ul.subchildmenu-list li {
    border-bottom: 1px solid rgba(27, 95, 170, 0.2);
  }
  .nav-holder > .nav-footer ul.subchildmenu-list li a {
    padding: 0.6rem 1rem;
    display: block;
  }
  .nav-holder .nav-header .menu-expander {
    margin: 1.19rem 0 0 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav-holder .nav-header ul {
    margin: 0 25px 0 0;
  }
  .nav-holder .nav-header > ul > li:nth-child(4) {
    display: none;
  }
  .nav-holder .nav-header > ul > li:nth-child(3) {
    display: none;
  }
  .nav-holder .nav-header {
    display: block;
  }
  .nav-holder .nav-header > ul > li > span {
    padding: 0 10px;
  }
  .hidden-bar {
    position: fixed;
    top: 0;
    right: -150%;
    width: 350px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: scroll;
  }
  .hidden-bar .hidden-bar-closer {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999999;
    display: block;
  }
  .hidden-bar .hidden-bar-closer:hover {
    background: #283478;
  }
  .hidden-bar .hidden-bar-closer .btn {
    background-color: transparent;
    border: none;
    outline: 0;
    font-size: 17px;
    color: #1b5faa;
    padding: 0.65rem 0.8rem;
  }
  .hidden-bar .hidden-bar-closer:hover .btn {
    color: #1c5ba8;
  }
  .nav-holder .nav-footer ul.nav > li > a {
    color: #1c5ba8;
  }
  .nav-holder .nav-header .menu-expander {
    padding: 0;
    margin: 1rem 0 0 0;
  }
  #header.stricky-fixed .nav-holder .nav-header > ul > li {
    padding: 10px 0;
  }
  #header.stricky-fixed .nav-holder .nav-header .menu-expander {
    padding: 0;
    margin: 0.7rem 0 0 0;
  }
  .nav-holder {
    width: 32%;
  }
  .hidden-bar-account {
    position: fixed;
    top: 0;
    right: -150%;
    width: 325px;
    height: 100%;
    background: #1e1e1e;
    z-index: 9999;
  }
  .hidden-bar-account .hidden-bar-closer {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: -28px;
    background: #1f4d84;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999999;
    display: block;
  }
  .hidden-bar-account .hidden-bar-closer:hover {
    background: #fff;
  }
  .hidden-bar-account .hidden-bar-closer:hover .btn {
    color: #e8a20c;
  }
  .hidden-bar-account .hidden-bar-closer .btn {
    background-color: transparent;
    border: none;
    outline: 0;
    font-size: 17px;
    color: #fff;
  }
  .mfe-acc-mobile {
    display: block;
    color: #285f9f;
  }
  .mfe-acc-mobile button {
    background: 0 0;
    color: #285f9f;
    margin: 1rem 0 0;
  }
  .mfe-acc-mobile button span {
    display: block;
    margin: 0.5rem 0;
  }
  .mfe-acc-mobile button span img {
    vertical-align: middle;
  }
  .mfe-a-icon {
    display: inline-block;
    padding: 0 0 1rem;
  }
  .nav-holder .nav-header .menu-expander {
    display: inline-block;
    vertical-align: middle;
    float: left;
  }
  .nav-footer ul.nav li.has-submenu > a > button {
    display: block;
    position: absolute;
    top: 0;
    background: 0 0;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #1b5faa;
    font-size: 16px;
    height: 48px;
    outline: medium none;
    width: 100%;
    padding: 0;
    text-align: center;
    line-height: 15px;
  }
  .nav-footer ul.nav li.has-submenu > a > button i {
    position: absolute;
    top: 13px;
    right: 37px;
    margin-right: 0;
  }
  .nav-footer ul.nav li.has-submenu > button {
    display: block;
    position: absolute;
    top: 0;
    background: 0 0;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #1b5faa;
    font-size: 16px;
    height: 48px;
    outline: medium none;
    width: 100%;
    padding: 0;
    text-align: center;
    line-height: 15px;
  }
  .nav-footer ul.nav li.has-submenu > button i {
    position: absolute;
    top: 13px;
    right: 16px;
  }
  #header .nav-holder .nav-footer ul.nav > li {
    border-bottom: 1px solid rgba(27, 95, 170, 0.2);
  }
  #header .nav-holder .nav-footer ul.nav > li:last-child {
    border-bottom: 0 solid #ddd;
  }
  #header .nav-holder .nav-footer ul.nav > li > a {
    padding: 1rem;
  }
  #header .nav-holder .nav-footer ul.nav > li {
    padding: 0;
  }
  .nav-holder > .nav-footer {
    width: 100%;
  }
  .nav-holder > .nav-footer ul > li {
    width: 100%;
    display: block;
    float: none;
    text-align: left;
  }
  .nav-holder > .nav-footer ul.nav > li:hover > a {
    background: 0 0;
    color: #1b5faa;
  }
  .nav-holder .nav-footer ul.nav > li.active a,
  .nav-holder .nav-footer ul.nav > li:hover a {
    color: #1b5faa;
  }
  .nav-holder .nav-footer ul.nav > li ul.submenu {
    background: #f4fbfe;
  }
  .nav-holder .nav-footer ul.nav > li ul.submenu li a {
    color: #41c5f2;
    font-size: 0.9rem;
    padding: 0.8rem 2rem;
  }
  .nav-holder .nav-footer ul.nav > li ul.submenu1 li a {
    padding: 0.8rem 2.5rem;
    color: #676767;
  }
}

@media (max-width: 850px) {
  .nav-holder {
    width: 35%;
  }
}

@media (max-width: 768px) {
  .nav-holder {
    width: 41%;
  }
  .col-flex1 .col {
    flex-basis: auto;
  }
  .nav-holder .nav-header .menu-expander button {
    bottom: 0;
  }
}

@media (max-width: 736px) {
  #header.stricky-fixed .nav-holder .nav-header > ul > li {
    padding: 10px 0.2rem;
  }
  .nav-holder .nav-footer ul.nav > li > a {
    color: #1b5faa;
  }
  #planpurchase.stricky-fixed {
    width: 100%;
  }
  .plan-right-form .plan-avail {
    padding-bottom: 1rem;
  }
  .order-pr-details .order-row3 p {
    padding: 0 0 1rem;
  }
  .order-pr-details .order-avail {
    margin: 0.5rem 0 0;
  }
}

@media (max-width: 650px) {
  .nav-holder {
    width: 50%;
  }
  #header.stricky-fixed .nav-holder {
    width: 100%;
  }
  #header.stricky-fixed .nav-holder .nav-header > ul > li {
    padding: 0 0.2rem;
  }
  #header.stricky-fixed .nav-holder .nav-header .menu-expander {
    padding: 0;
    margin: 0;
  }
}

@media (max-width: 640px) {
  #header .nav-holder .nav-footer ul.nav > li > a {
    text-align: left;
  }
  .nav-holder {
    text-align: left;
  }
  .nav-holder > .nav-footer ul.submenu-list {
    text-align: left;
  }
}

@media (max-width: 480px) {
  #header {
    padding-bottom: 20px;
  }
  #header .logo::before {
    right: 35px;
  }
  #header .logo {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  #header .logo img {
    width: 80%;
  }
  #header {
    padding-bottom: 0;
  }
  .nav-holder > .nav-footer ul > li {
    display: block;
    float: none;
    width: 100%;
    text-align: left;
  }
  #header.stricky-fixed .nav-holder .nav-header > ul > li {
    padding: 19px 0.4rem;
  }
  .nav-holder {
    width: 100%;
    text-align: center;
  }
  .nav-holder .nav-footer ul.nav > li.mfe-a-account {
    display: block;
  }
}

@media (max-width: 414px) {
  .nav-holder .nav-header > ul > li {
    padding: 0;
    position: inherit;
  }
  .nav-holder .nav-header .menu-expander button {
    bottom: 1px;
  }
  #header.stricky-fixed .nav-holder .nav-header > ul > li {
    padding: 0;
    position: inherit;
  }
  .nav-holder .nav-header > ul > li > ul {
    left: 0;
    top: 30px;
  }
  #header.stricky-fixed .nav-holder .nav-header .menu-expander {
    margin: 0;
  }
  .nav-holder .nav-header .menu-expander {
    padding: 0;
    margin: 0;
  }
  #header.stricky-fixed .nav-holder {
    width: 100%;
  }
  #header .logo {
    display: none;
  }
  #header .col {
    padding: 0 10px;
  }
  .nav-header button[type="submit"] {
    background: 0 0;
    color: #1c5ba8;
    border: 1px solid transparent;
    padding: 0;
  }
  .nav-holder .nav-header {
    padding-left: 0;
    margin: 0.8rem 0;
  }
  .nav-holder .nav-header ul {
    float: right;
    margin: 0;
  }
  .nav-holder .nav-header > ul > li > span {
    padding: 0 7px;
  }
  .nav-holder .nav-header .menu-expander button {
    display: inline-block;
    margin: 0 10px 0 0;
  }
  .refresh-row {
    position: relative;
    margin: 0 0 0;
    text-align: right;
  }
  .refresh-row ul li {
    text-align: right;
  }
  .mfe-top {
    margin: 1rem -15px 0;
  }
  #header.stricky-fixed .nav-holder .nav-header .menu-expander {
    padding: 0;
  }
  .ffmc-tab ul li i {
    width: 1.6rem;
    height: 1.6rem;
  }
  .nav-holder .nav-header .menu-expander {
    left: 0;
    position: relative;
  }
  #header .nav-holder .nav-footer ul.nav > li > a span i {
    color: #ff7043;
  }
}

@media (max-width: 375px) {
  .nav-holder {
    float: none;
  }
  .nav-holder .nav-header {
    text-align: center;
  }
  .nav-holder > .nav-footer {
    width: 100%;
  }
}

@media (max-width: 320px) {
  #header.stricky-fixed .nav-holder .nav-header > ul > li {
    padding: 10px 0.2rem;
  }
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),
    url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
    url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
    url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@font-face {
  font-family: consults;
  src: url(../fonts/Linearicons-Free.eot?w118d);
  src: url(../fonts/Linearicons-Free.eot?#iefixw118d)
      format("embedded-opentype"),
    url(../fonts/Linearicons-Free.woff?w118d) format("woff"),
    url(../fonts/Linearicons-Free.ttf?w118d) format("truetype"),
    url(../fonts/Linearicons-Free.svg?w118d#Linearicons-Free) format("svg");
  font-weight: 400;
  font-style: normal;
}
.icon {
  /* font-family: consults; */
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-home:before {
  content: "\e800";
}
.icon-apartment:before {
  content: "\e801";
}
.icon-pencil:before {
  content: "\e802";
}
.icon-magic-wand:before {
  content: "\e803";
}
.icon-drop:before {
  content: "\e804";
}
.icon-lighter:before {
  content: "\e805";
}
.icon-poop:before {
  content: "\e806";
}
.icon-sun:before {
  content: "\e807";
}
.icon-moon:before {
  content: "\e808";
}
.icon-cloud:before {
  content: "\e809";
}
.icon-cloud-upload:before {
  content: "\e80a";
}
.icon-cloud-download:before {
  content: "\e80b";
}
.icon-cloud-sync:before {
  content: "\e80c";
}
.icon-cloud-check:before {
  content: "\e80d";
}
.icon-database:before {
  content: "\e80e";
}
.icon-lock:before {
  content: "\e80f";
}
.icon-cog:before {
  content: "\e810";
}
.icon-trash:before {
  content: "\e811";
}
.icon-dice:before {
  content: "\e812";
}
.icon-heart:before {
  content: "\e813";
}
.icon-star:before {
  content: "\e814";
}
.icon-star-half:before {
  content: "\e815";
}
.icon-star-empty:before {
  content: "\e816";
}
.icon-flag:before {
  content: "\e817";
}
.icon-envelope:before {
  content: "\e818";
}
.icon-paperclip:before {
  content: "\e819";
}
.icon-inbox:before {
  content: "\e81a";
}
.icon-eye:before {
  content: "\e81b";
}
.icon-printer:before {
  content: "\e81c";
}
.icon-file-empty:before {
  content: "\e81d";
}
.icon-file-add:before {
  content: "\e81e";
}
.icon-enter:before {
  content: "\e81f";
}
.icon-exit:before {
  content: "\e820";
}
.icon-graduation-hat:before {
  content: "\e821";
}
.icon-license:before {
  content: "\e822";
}
.icon-music-note:before {
  content: "\e823";
}
.icon-film-play:before {
  content: "\e824";
}
.icon-camera-video:before {
  content: "\e825";
}
.icon-camera:before {
  content: "\e826";
}
.icon-picture:before {
  content: "\e827";
}
.icon-book:before {
  content: "\e828";
}
.icon-bookmark:before {
  content: "\e829";
}
.icon-user:before {
  content: "\e82a";
}
.icon-users:before {
  content: "\e82b";
}
.icon-shirt:before {
  content: "\e82c";
}
.icon-store:before {
  content: "\e82d";
}
.icon-cart:before {
  content: "\e82e";
}
.icon-tag:before {
  content: "\e82f";
}
.icon-phone-handset:before {
  content: "\e830";
}
.icon-phone:before {
  content: "\e831";
}
.icon-pushpin:before {
  content: "\e832";
}
.icon-map-marker:before {
  content: "\e833";
}
.icon-map:before {
  content: "\e834";
}
.icon-location:before {
  content: "\e835";
}
.icon-calendar-full:before {
  content: "\e836";
}
.icon-keyboard:before {
  content: "\e837";
}
.icon-spell-check:before {
  content: "\e838";
}
.icon-screen:before {
  content: "\e839";
}
.icon-smartphone:before {
  content: "\e83a";
}
.icon-tablet:before {
  content: "\e83b";
}
.icon-laptop:before {
  content: "\e83c";
}
.icon-laptop-phone:before {
  content: "\e83d";
}
.icon-power-switch:before {
  content: "\e83e";
}
.icon-bubble:before {
  content: "\e83f";
}
.icon-heart-pulse:before {
  content: "\e840";
}
.icon-construction:before {
  content: "\e841";
}
.icon-pie-chart:before {
  content: "\e842";
}
.icon-chart-bars:before {
  content: "\e843";
}
.icon-gift:before {
  content: "\e844";
}
.icon-diamond:before {
  content: "\e845";
}
.icon-linearicons:before {
  content: "\e846";
}
.icon-dinner:before {
  content: "\e847";
}
.icon-coffee-cup:before {
  content: "\e848";
}
.icon-leaf:before {
  content: "\e849";
}
.icon-paw:before {
  content: "\e84a";
}
.icon-rocket:before {
  content: "\e84b";
}
.icon-briefcase:before {
  content: "\e84c";
}
.icon-bus:before {
  content: "\e84d";
}
.icon-car:before {
  content: "\e84e";
}
.icon-train:before {
  content: "\e84f";
}
.icon-bicycle:before {
  content: "\e850";
}
.icon-wheelchair:before {
  content: "\e851";
}
.icon-select:before {
  content: "\e852";
}
.icon-earth:before {
  content: "\e853";
}
.icon-smile:before {
  content: "\e854";
}
.icon-sad:before {
  content: "\e855";
}
.icon-neutral:before {
  content: "\e856";
}
.icon-mustache:before {
  content: "\e857";
}
.icon-alarm:before {
  content: "\e858";
}
.icon-bullhorn:before {
  content: "\e859";
}
.icon-volume-high:before {
  content: "\e85a";
}
.icon-volume-medium:before {
  content: "\e85b";
}
.icon-volume-low:before {
  content: "\e85c";
}
.icon-volume:before {
  content: "\e85d";
}
.icon-mic:before {
  content: "\e85e";
}
.icon-hourglass:before {
  content: "\e85f";
}
.icon-undo:before {
  content: "\e860";
}
.icon-redo:before {
  content: "\e861";
}
.icon-sync:before {
  content: "\e862";
}
.icon-history:before {
  content: "\e863";
}
.icon-clock:before {
  content: "\e864";
}
.icon-download:before {
  content: "\e865";
}
.icon-upload:before {
  content: "\e866";
}
.icon-enter-down:before {
  content: "\e867";
}
.icon-exit-up:before {
  content: "\e868";
}
.icon-bug:before {
  content: "\e869";
}
.icon-code:before {
  content: "\e86a";
}
.icon-link:before {
  content: "\e86b";
}
.icon-unlink:before {
  content: "\e86c";
}
.icon-thumbs-up:before {
  content: "\e86d";
}
.icon-thumbs-down:before {
  content: "\e86e";
}
.icon-magnifier:before {
  content: "\e86f";
}
.icon-cross:before {
  content: "\e870";
}
.icon-menu:before {
  content: "\e871";
}
.icon-list:before {
  content: "\e872";
}
.icon-chevron-up:before {
  content: "\e873";
}
.icon-chevron-down:before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.icon-chevron-left:before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  color: #2933f9;
  font-weight: 900;
}
.icon-chevron-right:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2933f9;
}
.icon-arrow-up:before {
  content: "\e877";
}
.icon-arrow-down:before {
  content: "\e878";
}
.icon-arrow-left:before {
  content: "\e879";
}
.icon-arrow-right:before {
  content: "\e87a";
}
.icon-move:before {
  content: "\e87b";
}
.icon-warning:before {
  content: "\e87c";
}
.icon-question-circle:before {
  content: "\e87d";
}
.icon-menu-circle:before {
  content: "\e87e";
}
.icon-checkmark-circle:before {
  content: "\e87f";
}
.icon-cross-circle:before {
  content: "\e880";
}
.icon-plus-circle:before {
  content: "\e881";
}
.icon-circle-minus:before {
  content: "\e882";
}
.icon-arrow-up-circle:before {
  content: "\e883";
}
.icon-arrow-down-circle:before {
  content: "\e884";
}
.icon-arrow-left-circle:before {
  content: "\e885";
}
.icon-arrow-right-circle:before {
  content: "\e886";
}
.icon-chevron-up-circle:before {
  content: "\e887";
}
.icon-chevron-down-circle:before {
  content: "\e888";
}
.icon-chevron-left-circle:before {
  content: "\e889";
}
.icon-chevron-right-circle:before {
  content: "\e88a";
}
.icon-crop:before {
  content: "\e88b";
}
.icon-frame-expand:before {
  content: "\e88c";
}
.icon-frame-contract:before {
  content: "\e88d";
}
.icon-layers:before {
  content: "\e88e";
}
.icon-funnel:before {
  content: "\e88f";
}
.icon-text-format:before {
  content: "\e890";
}
.icon-text-format-remove:before {
  content: "\e891";
}
.icon-text-size:before {
  content: "\e892";
}
.icon-bold:before {
  content: "\e893";
}
.icon-italic:before {
  content: "\e894";
}
.icon-underline:before {
  content: "\e895";
}
.icon-strikethrough:before {
  content: "\e896";
}
.icon-highlight:before {
  content: "\e897";
}
.icon-text-align-left:before {
  content: "\e898";
}
.icon-text-align-center:before {
  content: "\e899";
}
.icon-text-align-right:before {
  content: "\e89a";
}
.icon-text-align-justify:before {
  content: "\e89b";
}
.icon-line-spacing:before {
  content: "\e89c";
}
.icon-indent-increase:before {
  content: "\e89d";
}
.icon-indent-decrease:before {
  content: "\e89e";
}
.icon-pilcrow:before {
  content: "\e89f";
}
.icon-direction-ltr:before {
  content: "\e8a0";
}
.icon-direction-rtl:before {
  content: "\e8a1";
}
.icon-page-break:before {
  content: "\e8a2";
}
.icon-sort-alpha-asc:before {
  content: "\e8a3";
}
.icon-sort-amount-asc:before {
  content: "\e8a4";
}
.icon-hand:before {
  content: "\e8a5";
}
.icon-pointer-up:before {
  content: "\e8a6";
}
.icon-pointer-right:before {
  content: "\e8a7";
}
.icon-pointer-down:before {
  content: "\e8a8";
}
.icon-pointer-left:before {
  content: "\e8a9";
}

.form-top-breadcrumb {
  width: 100%;
  margin: 0 0 1.6rem;
  position: relative;
}

.form-top-breadcrumb ul {
  margin: 0;
  padding: 0;
}

.form-top-breadcrumb ul li {
  display: inline-block;
  margin: 0 1rem 0 0;
  font: 500 1rem/1rem Raleway, Arial, Helvetica, sans-serif;
}

.form-top-breadcrumb ul li a {
  color: #454545;
  font: 500 1.2rem/1.2rem Raleway, Arial, Helvetica, sans-serif;
  display: block;
  padding: 0 0 0.5rem;
  position: relative;
}

.form-top-breadcrumb ul li a:hover {
  color: #0097de;
}

.add-f-new-border {
  border: 1px solid #003956;
  border-radius: 10px;
  margin: 0 0 2rem;
  padding: 1rem;
  background: #dcf4fd;
}

.add-rate-border {
  border: 1px solid #003956;
  border-radius: 10px;
  margin: 0 0 2rem;
  padding: 1rem;
  overflow: hidden;
}

.add-re-rate-border {
  border: 1px solid #003956;
  border-radius: 10px;
  margin: 0 0 2rem;
  padding: 0;
}

.form-control:focus {
  box-shadow: none;
}

#change_pwd .form-group {
  margin-bottom: 20px !important;
}

.joinBaProgram .form-horizontal .form-group {
  margin: 5px 0 !important;
}

.form-horizontal .form-group .control-label {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  padding-left: 2px;
  z-index: 1;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  transition: all 0.2s ease;
  left: 0;
  text-align: left;
  padding: 0;
  background: 0 0;
  color: #80868b;
}

.form-horizontal .form-group .control-label-textarea {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  padding-left: 2px;
  z-index: 1;
  font: 400 0.72rem/1rem Roboto, Arial, Helvetica, sans-serif;
  transition: all 0.2s ease;
  left: 0;
  text-align: left;
  padding: 0;
  background: 0 0;
  color: #000;
  top: -0.5rem;
}

.form-horizontal .custom-control-label p {
  font: 400 0.72rem/1.3rem Raleway, Arial, Helvetica, sans-serif;
  margin: 0 0 0.5rem;
  text-align: left;
}

.bank-margin .form-group .control-label {
  color: #80868b;
}

.rate-r-bank .form-group .control-label {
  color: #80868b;
}

.form-horizontal.sme-form .form-group .control-label {
  top: 0.2rem;
}

.form-horizontal-landing .form-group .control-label {
  position: absolute;
  top: 10px;
  pointer-events: none;
  padding-left: 2px;
  z-index: 1;
  font-size: 1em;
  font-weight: 400;
  left: 0;
  text-align: left;
  padding: 0;
  background: 0 0;
  color: #c3c2c2;
}

.form-group label {
  font-weight: 400;
  margin-bottom: 10px;
}

.form-group label sup {
  top: 0;
  left: 3px;
}

.form-group select {
  box-shadow: none;
  height: 50px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.form-group select::-ms-expand,
.rb-sticky-filter select.form-control::-ms-expand {
  display: none;
}

.form-horizontal .form-group {
  margin: 10px 0 20px;
  position: relative;
}

.form-horizontal .form-group-input {
  margin: 0 0 20px;
  position: relative;
}

.form-horizontal .form-group-cut {
  margin: 5px 0 5px;
  position: relative;
}

.form-horizontal-landing .form-group {
  margin: 0;
  position: relative;
}

.form-horizontal form .form-group label {
  margin-bottom: 15px;
}

.form-horizontal {
  display: inline-block;
  width: 100%;
}

.form-horizontal .form-group .form-control {
  display: block;
  background: 0 0;
  padding: 0 2px 0;
  font-size: 0.9rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  box-shadow: none;
  height: 2rem;
  outline: 0;
}

.form-horizontal .form-group .form-control-textarea {
  display: block;
  background: 0 0;
  padding: 10px 2px 0;
  font-size: 0.9rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  box-shadow: none;
  height: 2.5rem;
  outline: 0;
}

.form-horizontal .form-group .form-control-textarea .form-control {
  height: 3rem;
  border-bottom: 1px solid #b7b5b5;
}

form .form-group .bar:focus {
  border-bottom: 1px solid #1a73e8;
}

form .form-group .bar {
  position: relative;
  border-bottom: 1px solid #b7b5b5;
  display: block;
}

form .form-group-ffm .bar {
  display: none;
}

.form-horizontal .form-group-ffm {
  padding: 0;
  margin: 0;
  font: 400 0.8rem Roboto, Arial, Helvetica, sans-serif;
}

form .form-group-order {
  width: 100px;
}

form .form-group-order input {
  margin: 0;
  padding: 0.2rem;
  background: 0 0;
  font: 500 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  width: 100%;
}

form .form-group-order input:focus {
  background-color: #fff;
}

form .form-group .bar:before {
  left: 50%;
}

form .form-group .bar:after {
  right: 50%;
}

form .form-group .bar:after,
form .form-group .bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: -1px;
  position: absolute;
  background: #2196f3;
  -webkit-transition: left 0.28s ease, width 0.28s ease;
  transition: left 0.28s ease, width 0.28s ease;
  z-index: 2;
}

.edit-profile-content
  .form-horizontal
  .form-group
  .form-control:focus
  ~ .bar:before,
.form-horizontal .form-group .form-control:focus ~ .bar:after,
.form-horizontal .form-group .form-control:focus ~ .bar:before {
  width: 50%;
}

.form-horizontal .form-group .form-control:focus ~ .bar:before {
  width: 50%;
}

.form-horizontal .form-group .form-control:focus,
.form-horizontal .form-group .form-control:valid {
  color: #333;
}

.form-horizontal .form-group .form-control.ng-dirty {
  color: #333;
}

.form-horizontal .form-group .form-control.ng-dirty ~ .control-label,
.form-horizontal .form-group .form-control:focus ~ .control-label,
.form-horizontal .form-group .form-control:valid ~ .control-label {
  font-size: 0.72rem;
  color: #1c5ca9;
  top: -0.8rem;
  left: 0;
}

.form-horizontal .form-group .form-control:focus > :read-only ~ .control-label {
  color: #000;
}

.form-horizontal .tpovaluedate .form-control {
  color: #000;
}

.form-horizontal .tpovaluedate .control-label {
  bottom: 17px;
  font-size: 0.75rem;
  color: #1c5ca9;
}

.form-horizontal .tpovaluedate .form-control:focus ~ .control-label {
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  top: -0.4rem;
}

.form-horizontal .ng-dirty option {
  color: #000;
}

.form-horizontal .form-group .control-label strong {
  width: 14px;
  height: 14px;
  color: #fff;
  background: #1c5aa7;
  display: inline-block;
  border-radius: 100%;
  font: 600 0.6rem/1rem Roboto, Arial, Helvetica, sans-serif;
  text-align: center;
}

.form-horizontal .form-group .control-label i {
  color: #25bdf1;
  cursor: pointer;
  display: inline-block;
  font-size: 0.7rem;
}

.form-horizontal .form-group span {
  position: relative;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #1c5aa7;
}

.form-horizontal .form-group .control-label strong a {
  color: #fff;
  display: block;
}

.form-horizontal .form-group small {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #1c5aa7;
}

.form-horizontal-landing form .form-group label {
  margin-bottom: 15px;
}

.form-horizontal-landing .form-group {
  margin: 15px 0 !important;
}

.form-horizontal-landing {
  display: inline-block;
  width: 100%;
}

.form-horizontal-landing .form-group .form-control {
  display: block;
  background: 0 0;
  padding: 3px 2px 1px;
  font-size: 0.9rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.4;
  width: 100%;
  color: transparent;
  box-shadow: none;
  height: 2.5rem;
}

.form-horizontal-landing .form-group .bar:focus {
  border-bottom: 1px solid #fff;
}

.form-horizontal-landing .form-group .bar {
  position: relative;
  border-bottom: 1px solid #fff;
  display: block;
}

.form-horizontal-landing .form-group .bar:before {
  left: 50%;
}

.form-horizontal-landing .form-group .bar:after {
  right: 50%;
}

.form-horizontal-landing .form-group .bar:after,
.form-horizontal-landing .form-group .bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: -1px;
  position: absolute;
  background: #fff;
  z-index: 2;
}

.edit-profile-content
  .form-horizontal-landing
  .form-group
  .form-control:focus
  ~ .bar:before,
.form-horizontal-landing .form-group .form-control:focus ~ .bar:after,
.form-horizontal-landing .form-group .form-control:focus ~ .bar:before {
  width: 50%;
}

.form-horizontal-landing .form-group .form-control:focus ~ .bar:before {
  width: 50%;
}

.form-horizontal-landing .form-group .form-control:focus,
.form-horizontal-landing .form-group .form-control:valid {
  color: #fff;
}

.deal-b-list .form-control:focus {
  background: #ff7043;
}

.form-horizontal-landing .form-group .form-control:focus ~ .control-label,
.form-horizontal-landing .form-group .form-control:valid ~ .control-label {
  font-size: 0.8rem;
  color: #1a73e8;
  top: -0.5rem;
  -webkit-transform: scale(0.85) translateY(-2px);
  transform: scale(0.85) translateY(-2px);
  left: 0;
}

.form-horizontal-landing .form-group .form-control:focus ~ .control-label {
  color: #fff;
}

.form-horizontal .form-group .show-row {
  text-align: right;
  display: block;
  position: absolute;
  right: 6px;
  top: 0.2rem;
}

.form-horizontal .form-group .show-row a {
  color: #44c9f6;
  font-size: 0.8rem;
}

.form-horizontal .login-row1 {
  padding: 1.5rem 0 0;
  text-align: center;
}

.form-horizontal .login-row1 a {
  color: #44c9f6;
  font-size: 0.8rem;
}

.form-horizontal .login-row2 {
  padding: 0.5rem 0;
}

.form-horizontal .login-row2 .form-check-input {
  margin-top: 0.4rem;
}

.login-left {
  text-align: center;
}

.login-left p {
  margin: 2rem 0 0;
}

.login-popup .modal-body {
  padding: 0 1rem;
}

.form-horizontal .login-row1 button[type="submit"] {
  padding: 0.68rem 1.8rem;
  font: 400 1rem/1rem Raleway, Arial, Helvetica, sans-serif;
}

.form-horizontal .form-group button {
  margin: 0 0 1rem;
}

.form-horizontal .form-ngroup button {
  margin: 0;
}

.form-horizontal .nform-group {
  margin: 0;
}

.form-horizontal .form-cigroup {
  margin: 10px 0 10px;
}
.ci-txtdanger .text-danger {
  top: -14px;
}

.add-f-new-border .submit-but button[type="submit"] {
  font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 0.4rem 1.3rem 0.4rem;
  margin: 0 0.2rem;
}

.add-f-new-border .submit-but button[type="button"] {
  font-size: 1.2rem;
  line-height: 1.5rem;
  padding: 0.4rem 1.3rem 0.4rem;
  margin: 0 0.2rem;
}

.thank-popup {
  width: 100%;
  text-align: center;
}

.onlyalert-preview .form-group .form-control:disabled,
.onlyalert-preview .form-group .form-control[readonly] {
  background: 0 0;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
}

.onlyalert-preview .form-group .form-control {
  padding: 0.375rem 0;
  font-size: 0.9rem;
}

.onlyalert-preview .form-group {
  position: relative;
  margin: 15px 0;
}

.onlyalert-preview .form-group .control-label {
  position: absolute;
  bottom: 20px;
  pointer-events: none;
  padding-left: 2px;
  z-index: 1;
  transition: all 0.28s ease;
  left: 0;
  text-align: left;
  padding: 0;
  background: 0 0;
  color: #1c5ca9;
  font: 500 0.72rem/1rem Raleway, Arial, Helvetica, sans-serif;
}

.form-group-opt .custom-control {
  display: inline-block;
  margin: 0.6rem 2rem 0 0;
}

.form-group-opt1 .custom-control {
  display: inline-block;
  margin: 0 1rem 0 0;
}

.form-group-opt2 .custom-control {
  display: inline-block;
  margin: 0;
}

.form-group-opt3 .custom-control {
  display: block;
  margin: 0.6rem 0 0 0;
}

.form-group-opt .control-label-opt {
  color: #1b59a4;
  position: absolute;
  left: 0;
  font-weight: 400;
  bottom: 1.2rem;
  font-size: 0.8rem;
}

.form-group-opt .custom-control label {
  margin-bottom: 0;
}

.form-horizontal .form-group .invalid-feedback-mfe {
  position: absolute;
  font-size: 0.8rem;
}

.usance-row .form-u-group small {
  color: #1b59a4;
  font-size: 0.6rem;
}

.form-grow1 p span {
  display: inline-block;
  margin: 0 1rem;
}

.form-horizontal .form-grouppad {
  margin: 0 0 15px;
}

.form-horizontal .form-group-inputm0 {
  margin: 0;
}

.form-group-opt .custom-controlm0 {
  margin: 0 2rem 0 0;
}

.custom-r-dropdown .big {
  font-size: 1.2em;
}

.custom-r-dropdown .square {
  width: 0.7em;
  height: 0.7em;
  margin: 0.5em;
  display: inline-block;
}

.custom-r-dropdown .custom-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.custom-r-dropdown .custom-dropdown select {
  background-color: #233c7e;
  color: #fff;
  font-size: inherit;
  padding: 0.5em;
  padding-right: 2.5em;
  border: 0;
  margin: 0;
  border-radius: 3px;
  text-indent: 0.01px;
  text-overflow: "";
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.custom-r-dropdown .custom-dropdown select::-ms-expand {
  display: none;
}

.custom-r-dropdown .custom-dropdown::after,
.custom-r-dropdown .custom-dropdown::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.custom-r-dropdown .custom-dropdown::after {
  content: "\25BC";
  height: 1em;
  font-size: 0.625em;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -0.5em;
}

.custom-r-dropdown .custom-dropdown::before {
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.custom-r-dropdown .custom-dropdown::after {
  color: rgba(255, 255, 255, 1);
}

.custom-r-dropdown .custom-dropdown select[disabled] {
  color: rgba(0, 0, 0, 0.25);
}

.selectdiv {
  position: relative;
}

.selectdiv .select2-selection__rendered .image img {
  width: 46px;
  height: 28px;
  border-radius: 5px;
  vertical-align: top;
}

.selectdiv .select2-container {
  width: 100%;
}

.selectdiv .select2-container .select2-selection--single {
  height: 45px;
  background: #233c7e;
  color: #fff;
  border: 1px solid #233c7e;
  padding: 7px 0 0 0;
}

.selectdiv
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff;
}

.selectdiv
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #0ebeff transparent transparent transparent;
  border-width: 8px 6px 0 6px;
  margin-left: -9px;
  margin-top: 1px;
}

.selectdiv
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #0ebeff transparent;
  border-width: 0 6px 8px 6px;
}

.resultimg .image img {
  width: 46px;
  height: 28px;
  border-radius: 5px;
  vertical-align: top;
}

.form-horizontal .form-group .input-group-prepend {
  position: absolute;
}

.form-horizontal .form-group label sup {
  color: #d85364;
  font-size: 1rem;
}

.form-horizontal .buy-dropdown .form-group {
  margin: 0;
}

.form-horizontal .buy-dropdown .form-group .form-control {
  height: auto;
}

.form-horizontal .optional-field {
  margin: 10px 0 20px;
  position: relative;
}

.form-horizontal .optional-field .control-o-label {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  padding-left: 2px;
  z-index: 1;
  font: 500 0.85rem/1rem Raleway, Arial, Helvetica, sans-serif;
  transition: all 0.2s ease;
  left: 0;
  text-align: left;
  padding: 0;
  background: 0 0;
  color: #80868b;
}

.form-horizontal .form-opt-group .form-control {
  display: block;
  background: 0 0;
  padding: 0 2px 0;
  font-size: 0.9rem;
  border-width: 0;
  border-color: transparent;
  line-height: 1.9;
  width: 100%;
  color: transparent;
  box-shadow: none;
  height: 2rem;
  outline: 0;
}

.form-horizontal .form-opt-group .control-label {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  padding-left: 2px;
  z-index: 1;
  font: 500 0.85rem/1rem Raleway, Arial, Helvetica, sans-serif;
  transition: all 0.2s ease;
  left: 0;
  text-align: left;
  padding: 0;
  background: 0 0;
  color: #80868b;
}

form .form-opt-group .bar:focus {
  border-bottom: 1px solid #1a73e8;
}

form .form-opt-group .bar {
  position: relative;
  border-bottom: 1px solid #b7b5b5;
  display: block;
}

form .form-opt-group .bar:before {
  left: 50%;
}

form .form-opt-group .bar:after {
  right: 50%;
}

form .form-opt-group .bar:after,
form .form-opt-group .bar:before {
  content: "";
  height: 2px;
  width: 0;
  bottom: -1px;
  position: absolute;
  background: #2196f3;
  z-index: 2;
}

.form-opt-group label {
  font-weight: 400;
  margin-bottom: 10px;
}

.form-horizontal .form-opt-group {
  margin: 10px 0 20px;
  position: relative;
}

.form-horizontal .form-opt-group .form-control:focus,
.form-horizontal .form-opt-group .form-control:valid {
  color: #333;
}

.form-horizontal .form-opt-group .form-control.ng-dirty ~ .control-label,
.form-horizontal .form-opt-group .form-control:focus ~ .control-label {
  font-size: 0.72rem;
  color: #1c5ca9;
  top: -0.8rem;
  left: 0;
}

.form-horizontal .form-opt-group .control-label i {
  color: #25bdf1;
  cursor: pointer;
  display: inline-block;
  font-size: 0.7rem;
}

.custom-checkbox .custom-control-label::before {
  border: 1px solid #9b9b9b;
}

.form-group-arrow::after {
  content: "\f078";
  font: normal normal normal 15px/1 FontAwesome;
  color: #0ebeff;
  right: 5px;
  top: 0;
  height: 34px;
  padding: 9px 0 0 8px;
  position: absolute;
  pointer-events: none;
}

.ff-amount .form-group {
  margin: 0;
}

.ff-mt-amount .form-group {
  margin: 0;
}

/* Dashboard Form */
.form-dhorizontal .custom-control-label p {
  font: 400 0.75rem/1.5rem Raleway, Arial, Helvetica, sans-serif;
}

.form-dhorizontal .form-group {
  position: relative;
}
.form-dhorizontal .subdrop {
  position: relative;
  margin: 1rem 0;
}

.form-dhorizontal .form-group label {
  margin-bottom: 0.2rem;
  margin-top: 0.1rem;
  color: #3a3a3a;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
}
.form-dhorizontal .form-group label.ui-dropdown-label {
  margin-bottom: 0.2rem;
  margin-top: 0.3rem;
  color: #3a3a3a;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
}

.form-dhorizontal .form-group .custom-file-label span {
  margin-bottom: 0.2rem;
  margin-top: 0.3rem;
  color: #3a3a3a;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  display: inline-block;
}

.add-b-exp button[type="button"] {
  border: 1px solid #ccc;
  padding: 0.4rem 1rem;
}

.form-dhorizontal .form-group .form-label {
  color: #019aff;
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
}
.form-dhorizontal .form-mfgroup .form-label {
  font: 400 0.82rem/1rem Roboto, Arial, Helvetica, sans-serif;
  margin-right: 0.5rem;
}

.form-u-group b {
  color: #019aff;
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  display: block;
}

.form-dhorizontal .form-group .show-row {
  text-align: right;
  display: block;
  position: absolute;
  right: 0;
  top: 2rem;
}
.form-dhorizontal .form-group-opt label {
  margin-bottom: 0;
  font: 400 0.78rem/1.4rem Roboto, Arial, Helvetica, sans-serif;
  color: #4b4b4b;
}
.form-dhorizontal .form-group-opt .custom-control {
  display: inline-block;
  margin: 0 0.5rem 0 0;
}

.form-dhorizontal .form-group-opt .custom-mferadio {
  margin: 1rem 0 0;
}

.form-dhorizontal .form-control {
  border: 1px solid #a6a6a6;
  height: 40px;
}

.form-dhorizontal .custom-m-checkbox {
  margin: 0.5rem 0 0;
}

.form-dhorizontal .form-mgroup-opt {
  margin-bottom: 0.5rem;
}

.form-dhorizontal .form-group span {
  cursor: pointer;
  color: #1c5aa7;
}

.form-dhorizontal .form-group label i {
  color: #25bdf1;
  font-size: 0.65rem;
  display: inline-block;
}
.form-dhorizontal .form-group .tpo-sel-com label {
  margin-bottom: 0;
  color: #515151;
  font: 400 0.8rem/1rem Raleway, Arial, Helvetica, sans-serif;
}

.form-dhorizontal .form-group .ui-dropdown {
  min-width: 100%;
  height: 40px;
}

.form-dhorizontal .attach-d-file {
  position: relative;
}

.form-dhorizontal .attach-d-file label {
  position: absolute;
  top: 12px;
  left: 8px;
  color: #000;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
}
.form-dhorizontal .attach-d-file .form-control:disabled {
  background: transparent;
  border: 1px solid #a6a6a6;
  height: calc(2.4rem + 2px);
}

.theme-green .bs-datepicker-head {
  background: #00b9f5 !important;
}

/* Dashboard Form */

/* Dashboard Form Common */
.form-common {
  position: relative;
}

.form-common .form-group label {
  margin-bottom: 0;
  /*color:#727272;*/
  color: #000;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  display: block;
}

.form-common .form-group label span {
  color: #ff0d0d;
}

.form-common .form-group {
  position: relative;
}

.form-common .form-group .ui-dropdown {
  min-width: 100%;
  border-bottom: 1px solid #707070;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  background: transparent;
}
.form-common .form-group .ui-inputtext {
  background: transparent;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #090909;
  padding: 0.65rem 0.3rem;
}

.form-common .form-group .ui-dropdown .ui-dropdown-trigger {
  background: transparent;
}

.form-common .form-group .ui-dropdown:hover {
  border-bottom: 1px solid #707070;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  background: transparent;
}

.form-common .form-control {
  border-bottom: 1px solid #707070;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-top: 1px solid transparent;
  background: transparent;
  border-radius: 0;
  padding: 0.375rem 0.05rem;
}

.form-common .form-group input[type="text"]::placeholder {
  color: #090909;
}
.form-common .form-group input[type="text"] {
  color: #727272;
}
.form-common .form-group .show-row {
  position: absolute;
  right: 0;
  top: 25px;
}

.btn-save {
  background: linear-gradient(90deg, #2c4189, #4d9cfc);
  color: #fff;
  padding: 0.3rem 2rem;
}

.set-bdetail .nav-tabs {
  border-top: 1px solid #e5e5e5;
}

.set-bdetail .nav-tabs .nav-link.active {
  background: #60c0ff;
  color: #fff;
}

.set-bdetail .nav-tabs .nav-link {
  border-radius: 0;
  border-color: transparent;
}

.set-bdetail ul {
  margin: 1rem 0 0;
}

.set-bdetail {
  position: relative;
}

.basic-det {
  position: relative;
  background: #f6f6f6;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin: 0.3rem;
  padding: 0;
}

.basic-d-pad {
  padding: 1rem 1rem 0;
}
.cont-hmid {
  border-bottom: 1px solid #e5e5e5;
}

.cont-hmid h5 {
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  color: #019aff;
  padding: 0 1rem 0.3rem;
}

.form-group-inline {
  position: relative;
}
.form-group-inline .custom-control {
  display: inline-block;
  margin: 0.8rem 0.5rem 0 0;
}

.form-common .form-group-inline .custom-control label {
  font: 400 0.85rem/1.5rem Roboto, Arial, Helvetica, sans-serif;
}

.add-bank span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #4d9cfc, #2c4189);
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0.8rem 1.2rem;
}

.add-sm-plus a {
  position: absolute;
  right: -10px;
  top: 20px;
}

.upload-file {
  background: #fff;
  text-align: center;
  padding: 3rem 0;
}

.uplaod-row {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  text-align: center;
  padding: 1.5rem;
}
.uplaod-row button {
  margin: 0 1rem;
}

.uplaod-row2 {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
  padding: 0.6rem 1rem;
}

.uplaod-row2 a {
  color: #ff0000;
  display: inline-block;
  margin: 0 0 0 1rem;
}

.uplaod-row2 a span {
  background: #3b97d3;
  color: #fff;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  display: inline-block;
  text-align: center;
  padding: 2px 6px;
}

.form-dhorizontal .form-group input[type="text"] {
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #a6a6a6;
  height: calc(2.4rem + 2px);
  padding: 0.375rem 0.4rem;
  background: url(../images/dashboard/blankfill.gif) repeat 0 0;
}

/* Dashboard Form Common */

.add-n-deal h3 {
  display: inline-block;
  font: 400 1rem/1.3rem Roboto, Arial, Helvetica, sans-serif;

  margin: 0;
}
.add-n-deal h3 a {
  color: #262626;
  background: #f0f0f0;
  padding: 0.5rem 0.8rem;
  border-radius: 0.25rem;
  cursor: pointer;
  font: 400 0.9rem/1rem Roboto, Arial, Helvetica, sans-serif;
  border: 1px solid #ccc;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.add-n-deal h3 a span i {
  color: #283579;
}

.form-cal-group {
  position: relative;
}

.form-cal-group span {
  position: relative;
}

.form-cal-group .form-control {
  height: calc(2em + 2px);
  padding: 0.175rem 0.75rem;
}

.form-cala-group {
  position: relative;
}

/*  */
.formsub-horizontal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.formsub-horizontal .form-group {
  position: relative;
  width: 100%;
}

.formsub-horizontal .form-group input[type="email"] {
  border: 1px solid #00a3fa;
  left: 0;
  width: 98%;
  padding: 16px 0 16px 15px;
  border-radius: 5px 0 0 5px;
}
.formsub-horizontal .form-group input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 1px solid #00a3fa;
  right: 0;
  width: 30%;
  border-radius: 0 5px 5px 0;
  background-color: #00a3fa;
  color: #fff;
  position: absolute;
  height: 58px;
  top: 0;
  bottom: 0;
}

/*  */

.ass-risk .multi-dropdown-p .multiselect-dropdown .dropdown-btn .dropdown-down {
  background: url(../images/dashboard/down-arrow.gif) no-repeat 0 0 !important;
  width: 17px !important;
  height: 8px !important;
  border-top: 0px solid transparent !important;
  border-left: 0px solid transparent !important;
  border-right: 0px solid transparent !important;
}
.ass-risk .multi-dropdown-p .multiselect-dropdown .dropdown-btn .dropdown-up {
  background: url(../images/dashboard/down-up.gif) no-repeat 0 0 !important;
  width: 28px !important;
  height: 8px !important;
  border-bottom: 10px solid transparent !important;
  border-left: 10px solid transparent !important;
  border-right: 10px solid transparent !important;
}
.ass-risk .dropdown-list li {
  font-size: 0.8rem;
}

.multiselect-dropdown .dropdown-btn .selected-item {
  border: 1px solid #337ab7;
  margin-right: 4px;
  background: #1c5ba8 !important;
  color: #fff;
  border-radius: 2px;
  float: left;
  font-size: 0.7rem;
}

.send-query {
  position: relative;
  margin: 13px 0 1rem;
}

.send-query1 {
  position: relative;
  margin: 13px 0 1rem;
}

.send-query
  .multi-s-dropdown
  .multiselect-dropdown
  .dropdown-btn
  .dropdown-down {
  background: url(../images/dashboard/down-arrow.gif) no-repeat 0 0 !important;
  width: 17px !important;
  height: 8px !important;
  border-top: 0px solid transparent !important;
  border-left: 0px solid transparent !important;
  border-right: 0px solid transparent !important;
}
.send-query .multi-s-dropdown .multiselect-dropdown .dropdown-btn .dropdown-up {
  background: url(../images/dashboard/down-up.gif) no-repeat 0 0 !important;
  width: 28px !important;
  height: 8px !important;
  border-bottom: 10px solid transparent !important;
  border-left: 10px solid transparent !important;
  border-right: 10px solid transparent !important;
}
.send-query .multi-s-dropdown .multiselect-dropdown .dropdown-btn {
  border-bottom: 1px solid #b7b5b5 !important;
  border-left: 1px solid transparent !important;
  border-top: 1px solid transparent !important;
  border-right: 1px solid transparent !important;
  padding: 6px 0 !important;
  color: #80868b;
  font: 400 0.85rem/1rem Roboto, Arial, Helvetica, sans-serif !important;
  border-radius: 0 !important;
}
.send-query .dropdown-list li {
  font-size: 0.8rem;
  margin: 0;
}

.moldelc .modal-header {
  background: #729ef5;
}
.moldelc .modal-header .modal-title {
  color: #fff;
  font: 300 1rem/1rem Roboto, Arial, Helvetica, sans-serif;
}
.moldelc .modal-header .close {
  padding: 0.7rem 1rem 0;
}
.moldelc .modal-header {
  padding: 1rem 1rem 0.8rem;
}

.moldelc .modal-footer {
  background: #3755cf;
  text-align: center;
  justify-content: center;
  padding: 0;
}
.moldelc .btn-primary {
  background: #3755cf;
  border-color: #3755cf;
}
.moldelc .addcur-opt label {
  color: #294bc9;
}

/*  */
.formsub-horizontal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.formsub-horizontal .form-group {
  position: relative;
  width: 100%;
}

.formsub-horizontal .form-group input[type="email"] {
  border: 1px solid #00a3fa;
  left: 0;
  width: 98%;
  padding: 16px 0 16px 15px;
  border-radius: 5px 0 0 5px;
}
.formsub-horizontal .form-group input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 1px solid #00a3fa;
  right: 0;
  width: 30%;
  border-radius: 0 5px 5px 0;
  background-color: #00a3fa;
  color: #fff;
  position: absolute;
  height: 58px;
  top: 0;
  bottom: 0;
}

/*  */

/* forex-loans-advisory */
.form-loan {
  position: relative;
}
.form-loan .form-group {
  margin: 10px 0 20px;
  position: relative;
}
.form-loan .form-group .form-control {
  position: relative;
  border-color: transparent;
  border-width: 0;
  background: transparent;
  color: #000;
  padding: 0;
}

.form-loan button[type="submit"] {
  width: 100%;
}

.form-loan .form-group .form-control::placeholder {
  color: #000;
}

/*  */
.form-help {
  position: relative;
}
.form-help .form-group {
  margin: 10px 0 20px;
  position: relative;
}
.form-help .form-group .form-control {
  position: relative;
  border-color: transparent;
  border-width: 0;
  background: transparent;
  color: #000;
  padding: 0;
}

.form-help button[type="submit"] {
  width: auto;
  margin: 1rem 0 0;
  padding: 0.475rem 1.5rem;
}

.form-help .form-group .form-control::placeholder {
  color: #000;
}

/* forex-loans-advisory */

.glo-search {
  position: relative;
  float: right;
}

.glo-search input[type="text"] {
  border: 1px solid #989898;
  background: #fff;
  color: #274c91;
  border-radius: 0.25rem;
  padding: 6px 20px 6px 40px;
}
.glo-search i {
  position: absolute;
  top: 10px;
  left: 12px;
}
/* Missing Template at Path: \'myforexeye\/css\/assets\/css\/fonts.css\' */
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-datetimepicker-widget {
  top: 0;
  left: 0;
  width: 250px;
  padding: 4px;
  margin-top: 1px;
  z-index: 3000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px;
}
.bootstrap-datetimepicker-widget:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  top: -6px;
  left: 7px;
}
.bootstrap-datetimepicker-widget.pull-right:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.pull-right:after {
  left: auto;
  right: 7px;
}
.bootstrap-datetimepicker-widget > ul {
  list-style-type: none;
  margin: 0;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 100%;
  font-weight: bold;
  font-size: 1.2em;
}
.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator {
  width: 4px;
  padding: 0;
  margin: 0;
}
.bootstrap-datetimepicker-widget .datepicker > div {
  display: none;
}
.bootstrap-datetimepicker-widget .picker-switch {
  text-align: center;
}
.bootstrap-datetimepicker-widget table {
  width: 100%;
  margin: 0;
}
.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget td.day:hover,
.bootstrap-datetimepicker-widget td.hour:hover,
.bootstrap-datetimepicker-widget td.minute:hover,
.bootstrap-datetimepicker-widget td.second:hover {
  background: #eee;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget td.old,
.bootstrap-datetimepicker-widget td.new {
  color: #999;
}
.bootstrap-datetimepicker-widget td.active,
.bootstrap-datetimepicker-widget td.active:hover {
  color: #fff;
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #08c, #04c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
  background-image: -webkit-linear-gradient(top, #08c, #04c);
  background-image: -o-linear-gradient(top, #08c, #04c);
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #04c;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget td.active:hover,
.bootstrap-datetimepicker-widget td.active:hover:hover,
.bootstrap-datetimepicker-widget td.active:active,
.bootstrap-datetimepicker-widget td.active:hover:active,
.bootstrap-datetimepicker-widget td.active.active,
.bootstrap-datetimepicker-widget td.active:hover.active,
.bootstrap-datetimepicker-widget td.active.disabled,
.bootstrap-datetimepicker-widget td.active:hover.disabled,
.bootstrap-datetimepicker-widget td.active[disabled],
.bootstrap-datetimepicker-widget td.active:hover[disabled] {
  color: #fff;
  background-color: #04c;
  *background-color: #003bb3;
}
.bootstrap-datetimepicker-widget td.active:active,
.bootstrap-datetimepicker-widget td.active:hover:active,
.bootstrap-datetimepicker-widget td.active.active,
.bootstrap-datetimepicker-widget td.active:hover.active {
  background-color: #039 \9;
}
.bootstrap-datetimepicker-widget td.disabled,
.bootstrap-datetimepicker-widget td.disabled:hover {
  background: 0;
  color: #999;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget td span {
  display: block;
  width: 47px;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 2px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget td span:hover {
  background: #eee;
}
.bootstrap-datetimepicker-widget td span.active {
  color: #fff;
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #08c, #04c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
  background-image: -webkit-linear-gradient(top, #08c, #04c);
  background-image: -o-linear-gradient(top, #08c, #04c);
  background-image: linear-gradient(to bottom, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  *background-color: #04c;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.bootstrap-datetimepicker-widget td span.active:hover,
.bootstrap-datetimepicker-widget td span.active:active,
.bootstrap-datetimepicker-widget td span.active.active,
.bootstrap-datetimepicker-widget td span.active.disabled,
.bootstrap-datetimepicker-widget td span.active[disabled] {
  color: #fff;
  background-color: #04c;
  *background-color: #003bb3;
}
.bootstrap-datetimepicker-widget td span.active:active,
.bootstrap-datetimepicker-widget td span.active.active {
  background-color: #039 \9;
}
.bootstrap-datetimepicker-widget td span.old {
  color: #999;
}
.bootstrap-datetimepicker-widget td span.disabled,
.bootstrap-datetimepicker-widget td span.disabled:hover {
  background: 0;
  color: #999;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget th.switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget th.next,
.bootstrap-datetimepicker-widget th.prev {
  font-size: 21px;
}
.bootstrap-datetimepicker-widget th.disabled,
.bootstrap-datetimepicker-widget th.disabled:hover {
  background: 0;
  color: #999;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget thead tr:first-child th:hover {
  background: #eee;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.bootstrap-datetimepicker-widget.left-oriented:before {
  left: auto;
  right: 6px;
}
.bootstrap-datetimepicker-widget.left-oriented:after {
  left: auto;
  right: 7px;
}
/* Missing Template at Path: \'myforexeye\/css\/assets\/css\/responsive.css\' */
/* Missing Template at Path: \'myforexeye\/css\/assets\/css\/dashboard.css\' */
/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
}
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
@-ms-viewport {
  width: device-width;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}
code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
.h1,
h1 {
  font-size: 2.5rem;
}
.h2,
h2 {
  font-size: 2rem;
}
.h3,
h3 {
  font-size: 1.75rem;
}
.h4,
h4 {
  font-size: 1.5rem;
}
.h5,
h5 {
  font-size: 1.25rem;
}
.h6,
h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.small,
small {
  font-size: 80%;
  font-weight: 400;
}
.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014 \00A0";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  -ms-flex-order: -1;
  order: -1;
}
.order-last {
  -ms-flex-order: 13;
  order: 13;
}
.order-0 {
  -ms-flex-order: 0;
  order: 0;
}
.order-1 {
  -ms-flex-order: 1;
  order: 1;
}
.order-2 {
  -ms-flex-order: 2;
  order: 2;
}
.order-3 {
  -ms-flex-order: 3;
  order: 3;
}
.order-4 {
  -ms-flex-order: 4;
  order: 4;
}
.order-5 {
  -ms-flex-order: 5;
  order: 5;
}
.order-6 {
  -ms-flex-order: 6;
  order: 6;
}
.order-7 {
  -ms-flex-order: 7;
  order: 7;
}
.order-8 {
  -ms-flex-order: 8;
  order: 8;
}
.order-9 {
  -ms-flex-order: 9;
  order: 9;
}
.order-10 {
  -ms-flex-order: 10;
  order: 10;
}
.order-11 {
  -ms-flex-order: 11;
  order: 11;
}
.order-12 {
  -ms-flex-order: 12;
  order: 12;
}
.offset-1 {
  margin-left: 8.333333%;
}
.offset-2 {
  margin-left: 16.666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.333333%;
}
.offset-5 {
  margin-left: 41.666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.333333%;
}
.offset-8 {
  margin-left: 66.666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.333333%;
}
.offset-11 {
  margin-left: 91.666667%;
}
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table .table {
  background-color: #fff;
}
.table-sm td,
.table-sm th {
  padding: 0.3rem;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}
.table-bordered thead td,
.table-bordered thead th {
  border-bottom-width: 2px;
}
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary > td,
.table-primary > th {
  background-color: #b8daff;
}
.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}
.table-secondary,
.table-secondary > td,
.table-secondary > th {
  background-color: #d6d8db;
}
.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}
.table-success,
.table-success > td,
.table-success > th {
  background-color: #c3e6cb;
}
.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
.table-info,
.table-info > td,
.table-info > th {
  background-color: #bee5eb;
}
.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}
.table-warning,
.table-warning > td,
.table-warning > th {
  background-color: #ffeeba;
}
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}
.table-danger,
.table-danger > td,
.table-danger > th {
  background-color: #f5c6cb;
}
.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
.table-light,
.table-light > td,
.table-light > th {
  background-color: #fdfdfe;
}
.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
.table-dark,
.table-dark > td,
.table-dark > th {
  background-color: #c6c8ca;
}
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}
.table-active,
.table-active > td,
.table-active > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
select.form-control[multiple],
select.form-control[size] {
  height: auto;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 1rem;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
}
.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}
.form-check-label {
  margin-bottom: 0;
}
.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
  border-color: #28a745;
}
.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip {
  display: block;
}
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip,
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip {
  display: block;
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
  color: #28a745;
}
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
  display: block;
}
.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #28a745;
}
.custom-control-input.is-valid ~ .custom-control-label::before,
.was-validated .custom-control-input:valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip,
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip {
  display: block;
}
.custom-control-input.is-valid:checked ~ .custom-control-label::before,
.was-validated
  .custom-control-input:valid:checked
  ~ .custom-control-label::before {
  background-color: #34ce57;
}
.custom-control-input.is-valid:focus ~ .custom-control-label::before,
.was-validated
  .custom-control-input:valid:focus
  ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #28a745;
}
.custom-file-input.is-valid ~ .custom-file-label::after,
.was-validated .custom-file-input:valid ~ .custom-file-label::after {
  border-color: inherit;
}
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip,
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip {
  display: block;
}
.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
}
.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block;
}
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip,
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip {
  display: block;
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block;
}
.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #dc3545;
}
.custom-control-input.is-invalid ~ .custom-control-label::before,
.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip,
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip {
  display: block;
}
.custom-control-input.is-invalid:checked ~ .custom-control-label::before,
.was-validated
  .custom-control-input:invalid:checked
  ~ .custom-control-label::before {
  background-color: #e4606d;
}
.custom-control-input.is-invalid:focus ~ .custom-control-label::before,
.was-validated
  .custom-control-input:invalid:focus
  ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.custom-file-input.is-invalid ~ .custom-file-label::after,
.was-validated .custom-file-input:invalid ~ .custom-file-label::after {
  border-color: inherit;
}
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip,
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip {
  display: block;
}
.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .custom-select,
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:focus,
.btn:hover {
  text-decoration: none;
}
.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary.focus,
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success.focus,
.btn-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info.focus,
.btn-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning.focus,
.btn-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger.focus,
.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light.focus,
.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark.focus,
.btn-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light.focus,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.btn-link.focus,
.btn-link:focus {
  text-decoration: underline;
  border-color: transparent;
  box-shadow: none;
}
.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}
.btn-group-lg > .btn,
.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-group-sm > .btn,
.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
  width: 100%;
}
.fade {
  transition: opacity 0.15s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropdown,
.dropleft,
.dropright,
.dropup {
  position: relative;
}
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
  right: auto;
  bottom: auto;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.btn-group-vertical > .btn:hover,
.btn-group > .btn:hover {
  z-index: 1;
}
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus {
  z-index: 1;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
}
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control {
  margin-left: -1px;
}
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-append,
.input-group-prepend {
  display: -ms-flexbox;
  display: flex;
}
.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group-append {
  margin-left: -1px;
}
.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
  margin-top: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.input-group
  > .input-group-append:last-child
  > .btn:not(:last-child):not(.dropdown-toggle),
.input-group
  > .input-group-append:last-child
  > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group
  > .input-group-prepend:first-child
  > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.custom-control-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #dee2e6;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox
  .custom-control-input:indeterminate
  ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox
  .custom-control-input:disabled:indeterminate
  ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio
  .custom-control-input:disabled:checked
  ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff
    url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
    no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}
.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}
.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}
.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #495057 !important;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}
.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar > .container,
.navbar > .container-fluid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:focus,
.navbar-brand:hover {
  text-decoration: none;
}
.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}
@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
  color: #fff;
}
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-header,
  .card-group > .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-footer,
  .card-group > .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-header,
  .card-group > .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-footer,
  .card-group > .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-header,
  .card-group > .card:only-child .card-img-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-footer,
  .card-group > .card:only-child .card-img-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-footer,
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-header,
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-img-bottom,
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-img-top {
    border-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}
.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}
.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #007bff;
}
.badge-primary[href]:focus,
.badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
.badge-secondary[href]:focus,
.badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge-success[href]:focus,
.badge-success[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:focus,
.badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
.badge-warning[href]:focus,
.badge-warning[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-danger[href]:focus,
.badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
.badge-light[href]:focus,
.badge-light[href]:hover {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:focus,
.badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}
.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.media-body {
  -ms-flex: 1;
  flex: 1;
}
.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:focus,
.list-group-item-action:hover {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item:focus,
.list-group-item:hover {
  z-index: 1;
  text-decoration: none;
}
.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}
.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}
.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}
.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}
@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-auto[x-placement^="top"],
.bs-tooltip-top {
  padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-top .arrow {
  bottom: 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}
.bs-tooltip-auto[x-placement^="right"],
.bs-tooltip-right {
  padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow,
.bs-tooltip-right .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.bs-tooltip-right .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}
.bs-tooltip-auto[x-placement^="bottom"],
.bs-tooltip-bottom {
  padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.bs-tooltip-bottom .arrow {
  top: 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before,
.bs-tooltip-bottom .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}
.bs-tooltip-auto[x-placement^="left"],
.bs-tooltip-left {
  padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow,
.bs-tooltip-left .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.bs-tooltip-left .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::after,
.popover .arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-popover-auto[x-placement^="top"],
.bs-popover-top {
  margin-bottom: 0.5rem;
}
.bs-popover-auto[x-placement^="top"] .arrow,
.bs-popover-top .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-auto[x-placement^="top"] .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-top .arrow::before {
  border-width: 0.5rem 0.5rem 0;
}
.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="top"] .arrow::after,
.bs-popover-top .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}
.bs-popover-auto[x-placement^="right"],
.bs-popover-right {
  margin-left: 0.5rem;
}
.bs-popover-auto[x-placement^="right"] .arrow,
.bs-popover-right .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-auto[x-placement^="right"] .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-right .arrow::before {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}
.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="right"] .arrow::after,
.bs-popover-right .arrow::after {
  left: 1px;
  border-right-color: #fff;
}
.bs-popover-auto[x-placement^="bottom"],
.bs-popover-bottom {
  margin-top: 0.5rem;
}
.bs-popover-auto[x-placement^="bottom"] .arrow,
.bs-popover-bottom .arrow {
  top: calc((0.5rem + 1px) * -1);
}
.bs-popover-auto[x-placement^="bottom"] .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-bottom .arrow::before {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}
.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="bottom"] .arrow::after,
.bs-popover-bottom .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}
.bs-popover-auto[x-placement^="bottom"] .popover-header::before,
.bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}
.bs-popover-auto[x-placement^="left"],
.bs-popover-left {
  margin-right: 0.5rem;
}
.bs-popover-auto[x-placement^="left"] .arrow,
.bs-popover-left .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-auto[x-placement^="left"] .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-left .arrow::before {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}
.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="left"] .arrow::after,
.bs-popover-left .arrow::after {
  right: 1px;
  border-left-color: #fff;
}
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-item {
  position: relative;
  display: none;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item-next,
  .carousel-item-prev,
  .carousel-item.active {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.active.carousel-item-right,
.carousel-item-next {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .active.carousel-item-right,
  .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.active.carousel-item-left,
.carousel-item-prev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .active.carousel-item-left,
  .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
@supports (
  (-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)
) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev,
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.bg-primary {
  background-color: #007bff !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #0062cc !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #545b62 !important;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #1d2124 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #007bff !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 42.857143%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}
.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}
.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}
.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}
.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}
.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}
.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}
.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}
.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}
.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}
.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}
.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}
.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !important;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}
.text-justify {
  text-align: justify !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #007bff !important;
}
a.text-primary:focus,
a.text-primary:hover {
  color: #0062cc !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:focus,
a.text-secondary:hover {
  color: #545b62 !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:focus,
a.text-success:hover {
  color: #1e7e34 !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:focus,
a.text-info:hover {
  color: #117a8b !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:focus,
a.text-warning:hover {
  color: #d39e00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:focus,
a.text-danger:hover {
  color: #bd2130 !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:focus,
a.text-light:hover {
  color: #dae0e5 !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:focus,
a.text-dark:hover {
  color: #1d2124 !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media print {
  *,
  ::after,
  ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  blockquote,
  pre {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img,
  tr {
    page-break-inside: avoid;
  }
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered td,
  .table-bordered th {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark tbody + tbody,
  .table-dark td,
  .table-dark th,
  .table-dark thead th {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/*# sourceMappingURL=bootstrap.min.css.map */

/* carousel */

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}



.owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

.ng-select-container {
  border: 1px solid #233c7e !important;
  background-color: #233c7e !important;
}

.ng-select .ng-arrow-wrapper .ng-arrow {
  border-color: #00beff transparent transparent !important;
  border-style: solid;
  border-width: 5px 5px 2.5px;
}


.ng-select.ng-select-opened>.ng-select-container .ng-arrow {
  top: -2px;
  border-color: transparent transparent #00beff !important;
  border-width: 0 5px 5px;
}

.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:hover {
  background-color: #dcf3fe;
}


.multiselect-dropdown .dropdown-btn .selected-item-container .selected-item span {
  color: white !important;
  font-size: 10px;
}



/* custome_owl_carousel_for new_TPO_update_page */
.bg_blue_rounded .owl-prev img {
  left: -30px;
  top: 50%;
  width: 40px;
  padding: 8px;
  position: absolute;
  border-radius: 4px;
  transition: 0.3s;
  transform: translateY(-50%);
}

.bg_blue_rounded .owl-next img {
  top: 50%;
  right: 5px;
  width: 40px;
  padding: 8px;
  position: absolute;
  border-radius: 4px;
  transition: 0.3s;
  transform: translateY(-50%);

}


.bg_blue_rounded .owl-next img:hover,
.bg_blue_rounded .owl-prev img:hover {
  border-radius: 50px;
  border: 1px solid #0000ff59;
  box-shadow: none;
}

.clients_say .owl-next img,
.clients_say .owl-prev img {
  transition: 0.3s;
  background-color: white;
  box-shadow: 0px 0px 20px rgb(0 0 255 / 20%);
}

.other_service .owl-next img,
.other_service .owl-prev img {
  background-color: white;
  box-shadow: 0px 0px 20px rgb(0 0 255 / 20%);

}

.case_studies .owl-next img,
.case_studies .owl-prev img {
  background-color: white;
  box-shadow: 0px 0px 20px rgb(0 0 255 / 20%);

}

.clients_say.center {
  height: 100% !important;
}


.bg_blue_rounded .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}


.owl-nav {
  position: absolute;
  top: 50%;
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transform: translateY(-50%);
}

.owl-theme .owl-nav [class*=owl-] {
  color: blue !important;
}

.owl-prev {
  padding: 0;
  max-width: max-content;
  margin: 0;

  margin-left: -70px !important;
}

.owl-next {
  padding: 0;
  max-width: max-content;
  margin: 0;
  margin-right: -70px !important;
}

.icon-chevron-left,
.icon-chevron-right {
  background: lightblue;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}


.other_service_item {
  padding: 35px;
  display: flex;
  height: 100%;
}

.case_studies_box {
  display: flex;
  height: 100%;
}


.clients_say .owl-stage-outer {
  display: flex;
}


.owl-stage {
  display: flex;
}

.other_service_box {
  padding: 15px;
  border-radius: 8px;
  background-color: var(--bg_white);
}



.owl-item .item {
  height: 100%;
}

.owl-theme .owl-nav [class*=owl-] {
  background-color: transparent !important;
}




.cc-color-override-1788582612 .cc-btn {
  color: rgb(255, 255, 255);
  border-color: transparent;
  background-color: black;
  margin-right: 180px;
}

.grid_box .img_box {
  width: 100%;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
}


.grid_box .img_box img {
  height: 100%;
}

.post_section .grid_box {
  position: relative;
  padding-bottom: 25px;
}


.post_section .post_heading a {
  position: absolute;
  bottom: 10px;
  right: 10px;
}


.dhi-pagenation .pull-right {
  margin-left: 0 !important;
  margin-bottom: 0 !important;
}



.mfe_app_clients .icon-chevron-left,
.mfe_app_clients .icon-chevron-right {
  background-color: white !important;
}


.mfe_app_clients .owl-theme .owl-nav {
  margin-top: 0px;
}


.corporate_forex_service_carousel .owl-theme .owl-nav {
  z-index: -1;
}


@media(max-width:1100px) {
  .owl-prev {
    margin-left: -35px!important;
  }

  .owl-next {
    margin-right: -35px!important;
  }
 
}


@media(max-width:992px) {

  .bg_blue_rounded .owl-prev img,
  .bg_blue_rounded .owl-next img {
    width: 30px;
    padding: 5px;
  }

  .case_studies_box {
    display: flex;
    height: 100%;
  }
}


@media(max-width:940px) {
  .clients_say .item {
    margin-top: 0 !important;
  }
}


@media(max-width:767px) {
  .bg_blue_rounded .owl-next img {
    right: 20px;
  }

  .bg_blue_rounded .owl-prev img {
    left: 20px;
  }

}

.have_more_question button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 275px;
  }

  .have_more_question h4 {
    padding-bottom: 15px;
  }

  .have_more_question h5 {
    max-width: 50%;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: inherit;
  }

  .have_more_question a {
    display: contents;
  }
  .have_more_question img {
    width: 15px;
    margin-top: 0;
    margin-left: 10px;
  }

  .dhi_button {
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    padding: 13px 26px;
    border-radius: 3px;
    transition: 0.3s all;
    text-decoration: none;
  }

  .dhi_button_light {
    background-color: #41c4f1;
  }

  .px_80px {
    padding: 0 80px;
}


/* all pages same css  */



@media (min-width: 1200px) {
    .container-fluid, .contaner, .absolute_box_top {
        max-width: 1200px;
    }
}

.section_bg_form form input {
    border-radius: 4px;
    background-color: #f2f2f2;
    border-color: #d2d2d2;
}
.section_bg_form form input {
    width: 100%;
    height: 35px;
    font-size: 14px;
    margin-top: 15px;
    padding: 0 15px;
    position: relative;
    font-family: Poppins;
    border: 1px solid #17a2b8;
    border-radius: 12px 50px 50px 12px;
}


.section_bg_form form {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 35px 40px;
    float: right;
    max-width: 100%;
  }

  .section_bg_form form h4 {
    color: #1c5ba0;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    font-family: "Poppins";
  }

  .section_bg_form form input {
    border-radius: 4px;
    background-color: #f2f2f2;
    border-color: #d2d2d2;
  }

  .input_after::after {
    width: 2px;
    left: 8px;
    height: 35%;
    background-image: none;
    background-color: #d2d2d2 !important;
  }

  .section_bg_form form button {
    background-color: #00beff;
    padding: 7px 20px;
    font-size: 14px;
  }

  .section_bg_form form button:hover {
    background-color: #1c5ba0;
    color: white;
  }

  .why_wee_need {
    background-color: #eee !important;
    background-image: none;
    padding-bottom: 0;
    display: inline-table;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.absolute_box_top {
    position: relative;
    margin: -225px 0 0;
    padding: 60px;
    background-image: linear-gradient(180deg, #EEFAFF, #CDF2FF);
    margin: -225px auto 0!important;
}

.bg_blue_rounded {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #1c5ba0;
}

.book_call_btn {
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    margin-top: 15px;
    padding: 10px 26px;
    border-radius: 3px;
    text-decoration: none;
    background-color: #26a9e0;
    display: inline-block;
    transition: .3s all;
    font-family: Poppins;
}


  .forex_rates_options {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .forex_rates_options_child {
    width: 100%;
    max-width: "";
    border-radius: 12px !important;
    padding: 10px !important;
    border-bottom: 2px solid #1c5ba0 !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-image: linear-gradient(180deg, #f2fcff, #dcf6ff);
  }

  .forex_rates_img {
    background: transparent;
    padding: 50px 10px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: max-content !important;
    margin: 0 auto;
    border-radius: 14px;
  }

  .forex_rates_img img {
    height: 60px;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 65px;
  }

  .forex_rates_text p {
    font-size: 16px;
    margin-top: 10px;
    line-height: inherit;
    padding-bottom: 25px;
    margin-bottom: 0;
    text-align: center;
    font-family: "Poppins";
    display: block;
    color: #454545;
  }

  .advantages_box span span {
    color: white !important;
  }


  
  @media (min-width: 1300px) {
    .forex_rates_options {
      max-width: 90% !important;
      grid-gap: 20px !important;
    }
  }

  @media (max-width: 1300px) {
    .forex_rates_options {
      max-width: 95%;
      grid-gap: 15px !important;
    }
  }

      .salient_feature > .forex_rates_options {
      width: 100% !important;
      grid-template-columns: 1fr 1fr;
    }

      @media (max-width: 450px) {
    .forex_rates_options {
      grid-template-columns: 1fr;
    }
  }
  
  .clients_say {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* silent feaures */
  .salient_feature h2 {
    line-height: inherit;
    padding: 30px 0 35px;
}

  .salient_feature {
    border-radius: 30px;
    padding-bottom: 35px;
    background-color: #fff;
  }

  
  /* forex rates */

  .forex_rates_options {
    max-width: 90%;
    margin: 0 auto;
    display: grid;
    grid-gap: 35px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .forex_rates_options_child {
    width: 100%;
    border-radius: 6px;
    padding: 35px 10px 25px 10px;
    border: 1px solid darkblue;
  }

  .forex_rates_img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .forex_rates_img img {
    width: fit-content;
  }

  .forex_rates_text h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #1c5ba0;
    padding: 25px 0px 10px 0px;
  }

  .forex_rates_text p {
    text-align: center;
    font-size: 16px;
    line-height: normal;
    margin-top: 10px;
    display: block;
  }

  .forex_rates_text h5 {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
    line-height: inherit;
    color: var(--p_sub_color);
  }

  /* silent feature */
  .salient_feature_grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .salient_feature_grid_box {
    width: 100%;
    border-radius: 12px !important;
    padding: 10px !important;
    border: none !important;
    background-image: linear-gradient(4deg, #3b77a130, #fbfbfb);
  }

  ._grid_box_img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: max-content !important;
    margin: 0 auto;
    border-radius: 14px;
    background: #fbfbfb;
    padding: 50px 10px;
  }

  ._grid_box_img img {
    max-width: 65px;
  }

  ._grid_box_text h4 {
    text-align: center;
    font-size: 18px !important;
    font-weight: 500;
    color: #2b397d;
    line-height: normal;
    padding: 25px 0px 10px 0px;
  }

  /* greed card */

  
.card_greed_section {
	width: 100%;
	margin-top: 80px;
	margin-bottom: 50px;
	background-color: white;
}

.card_greed_section .col-lg-4 {
	margin-bottom: 30px;
}

.card_greed {
	height: 100%;
	border-radius: 12px;
	padding: 35px 10px 10px 10px;
	box-shadow: 0px 0px 33px rgb(0 0 0 / 19%);
}

.card_text {
	text-align: center;
	padding: 10px
}

.card_image{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
    height: 100px;
    border: 2px solid #08204c47;
    border-radius: 50px; 
    margin-left: auto;
    margin-right: auto;
}

.card_image img {
	width: 45px; 
    align-items: center;
    justify-content: center;
}

.card_text h4 {
	font-size: 18px;
	font-weight: 500;
    color: #08204c;
	margin-top: 15px;
	font-family: 'Poppins';
}

.card_text p {
	font-size: 15px;
	color: #4e4b4b;
	font-weight: 300;
	margin-top: 10px;
}

/* process flow  */

  @media (min-width: 1200px) {
    .process_flow_four_box {
      padding-bottom: 40px;
    }
  }

  .process_flow_four_box {
    width: 75%;
    display: grid;
    margin: 25px auto 0;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .process_flow h4 {
    margin-top: 50px;
    margin-bottom: 42px;
  }
  .process_flow h4 {
    text-align: center;
  }

  .process_flow_four_box_child {
    background: white;
    padding: 25px 10px;
    border-radius: 12px;
    width: 100%;
    height: 100%;
  }
  .process_flow_four_box_child .img_box {
    width: 80px;
    border: 2px solid #1d5ca1;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 50px;
    margin: 0 auto;
  }
  .process_flow_four_box_child .img_text {
    text-align: center;
    padding: 10px 0 0 2px;
  }
  .img_text a {
    text-align: center;
    padding: 10px 0 0 2px;
    color: #1d5ca1;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 500;
  }
  .img_text p {
    font-size: 15px;
    font-family: Poppins;
    margin-top: 10px;
    color: #1d5ca1;
  }


  
.process_flow h4 {
    text-align: center;
}

.process_flow h4 span {
    border-radius: 20px;
    border: 1px solid white;
    color: white;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins';
    padding: 5px 24px;
}

.process_flow img {
    width: 100%;
    margin-bottom: 170px;
}

  /* silent feature */
  .salient_feature_grid {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .salient_feature_grid_box {
    width: 100%;
    border-radius: 12px !important;
    padding: 10px !important;
    border: none !important;
    background-image: linear-gradient(4deg, #3b77a130, #fbfbfb);
  }

  ._grid_box_img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: max-content !important;
    margin: 0 auto;
    border-radius: 14px;
    background: #fbfbfb;
    padding: 50px 10px;
  }

  ._grid_box_img img {
    max-width: 65px;
  }

  ._grid_box_text h4 {
    text-align: center;
    font-size: 18px !important;
    font-weight: 500;
    color: #2b397d;
    line-height: normal;
    padding: 25px 0px 10px 0px;
  }

  body{
  overflow-x: hidden !important;
  }

  .bg_white_imp{
    background-color: #313131!important;
  }

  .dhi_button{
    border: none;
    outline: none;
    color: #fff;
    font-size: 15px;
    margin-top: 25px;
    font-weight: 400;
    padding: 13px 26px;
    border-radius: 3px;
    text-decoration: none;
    transition: .3s all;
    font-family: Poppins;
    background-color: #41c4f1;
}

.owl-nav button{
  background: transparent !important;
}

.owl-nav button:focus{
  outline: none !important;
}

.get-myforexeye-div {
    position: absolute;
    left: 0;
    bottom: 60px;
    padding: 0 50px;
    color: #fff !important;
}