p

/*//=============================
=============|| TYPOGRAPHY ||=========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
/*//=============================
=============|| PRELOADER ||=========================================================================*/
.preeloader {
  background-color: #ffffff;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 100%;
  z-index: 9999;
}

.preeloader .loader-gif {
  display: inline-block;
  vertical-align: middle;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*================ SASS HELPERS ================*/
/*============================================================================
   Convert pixels to ems
   eg. for a relational value of 12px write em(12) when the parent is 16px
   if the parent is another value say 24px write em(12, 24)
   Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
   ==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*============================================================================
  Return a color based on the brightness of an existing color.
  Need to pass in brightness because it is calculated with Liquid.
  @param {Number} $brightness
  @param {String} $color
  @example scss - Usage
    $focusColor: adaptiveColor(#000, 0);
  @example css - CSS Output
    $focusColor: #404040;
  @return {String}

  @adaptiveColor used for changing text
  @adaptiveBackgroundColor used for background colors where the change doesn't
  need to be as strong
==============================================================================*/
/*//=============================
=============|| RESET CSS ||=========================================================================*/
html,
body {
  height: 100%;
}

body {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  color: #002145;
  font-size: 15px;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #007bff;
}

a:focus {
  text-decoration: none;
  outline: none;
  color: #0067d6;
}

a:hover {
  text-decoration: none;
  outline: none;
  color: #0067d6;
}

a:focus,
input:focus {
  border-color: transparent;
  outline: none;
}

h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5 h6,
.h5 h6,
h5 .h6,
.h5 .h6 {
  color: #002145;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 1px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 a, .h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 h6 a,
.h5 h6 a,
h5 .h6 a,
.h5 .h6 a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

h1, .h1 {
  font-size: 2.86667em;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 991px) {
  h1, .h1 {
    font-size: 2.66667em;
  }
}


h2,
.h2 {
  font-size: 1.6em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 991px) {

  h2,
  .h2 {
    font-size: 1.46667em;
  }
}


h3,
.h3 {
  font-size: 2.13333em;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 991px) {

  h3,
  .h3 {
    font-size: 1.6em;
  }
}


h4,
.h4 {
  font-size: 1.4em;
}

@media (max-width: 991px) {

  h4,
  .h4 {
    font-size: 1.26667em;
  }
}

h5, .h5 {
  font-size: 1.2em;
}

@media (max-width: 991px) {
  h5, .h5 {
    font-size: 1.06667em;
  }
}

h6, .h6 {
  font-size: 1.13333em;
}

@media (max-width: 991px) {
  h6, .h6 {
    font-size: 1em;
  }
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}

@media (max-width: 1400px) {
  p {
    font-size: 14px;
  }
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.column-center {
  float: none;
  margin: 0 auto;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

ol li {
  list-style: decimal inside;
  padding: 0px;
  margin: 0px;
  line-height: 30px;
}

dl dt {
  font-weight: 500;
}

dl dd {
  font-weight: 300;
}

.list-none {
  list-style: none;
}

svg,
img {
  max-width: 100%;
}

.form-control, .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}



a,
div, h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4, h5, .h5,
p,
span {
  text-shadow: none;
}

[type=button]:focus,
a:active,
a:focus,
a:visited,
button::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner,
input[type=file] > input[type=button]::-moz-focus-inner,
select::-moz-focus-inner {
  outline: 0;
}

input,
.form-control:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  outline-width: 0;
  outline-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline-style: none;
}

textarea {
  resize: none;
  overflow-x: hidden;
}

.btn,
.btn-group.open .dropdown-toggle,
.btn:active,
.btn:focus,
.btn:hover,
.btn:visited,
a,
a:active,
a:checked,
a:focus,
a:hover,
a:visited,
body,
button,
button:active,
button:hover,
button:visited,
div,
input,
input:active,
input:focus,
input:hover,
input:visited,
select,
select:active,
select:focus,
select:visited,
textarea,
textarea:active,
textarea:focus,
textarea:hover,
textarea:visited {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button,
button:active,
button:checked,
button:focus,
button:hover,
button:visited {
  outline: 0;
  outline-offset: 0;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: 0;
  outline-offset: 0;
}

.dropdown-menu > li > a:active,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:visited {
  outline: 0;
}

.form-control {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: auto;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

.form-control-sm {
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

@media (max-width: 1400px) {
  .form-control {
    font-size: 13px;
  }
}

.form-control.border-left {
  border-left: 3px solid #f2cd00 !important;
}

.form-control.border-red {
  border: 2px solid #ff5e5e !important;
}

.form-control.border-yellow {
  border: 1.5px solid #ffd970 !important;
}

.form-control.placeholder {
  color: #bbbec2;
}

.form-control:-moz-placeholder {
  color: #bbbec2;
}

.form-control::-moz-placeholder {
  color: #bbbec2;
}

.form-control::-webkit-input-placeholder {
  color: #bbbec2;
}

.fill__secondary {
  fill: #1ed39b;
}

.fill__transparent {
  fill: transparent;
}

.fill__gray300 {
  fill: #bbbec2;
}

.fill__gray200 {
  fill: #bbbec2;
}

.fill__gray100 {
  fill: #f4f7f6;
}

.fill__white {
  fill: #ffffff;
}

.fill__green {
  fill: #1ed39b;
}

.fill__gray {
  fill: #bbbec2;
}

.fill__red {
  fill: #ff6363;
}

.fill__yellow {
  fill: #fffa6b;
}

.container {
  max-width: 1650px;
}

.card {
  -webkit-box-shadow: -4px 3px 30px 0px rgba(0, 2, 43, 0.1);
          box-shadow: -4px 3px 30px 0px rgba(0, 2, 43, 0.1);
  border: none;
  border-radius: 4px;
  padding: 10px;
}

.card-body {
  padding: 20px;
}

.card-header {
  background-color: transparent;
  font-size: 25px;
  border: none;
  padding: 0 22px;
  font-weight: 600;
}

.card-footer {
  background: transparent;
  border: none;
}

.card .avatar {
  margin-right: 10px;
  max-width: 60px;
  border: none;
}

.card h3, .card .h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.card h3 span, .card .h3 span {
  display: block;
  vertical-align: middle;
  font-size: 80%;
  font-weight: 400;
}

.section-gap {
  padding: 100px 0;
}

.marginB30 {
  margin-bottom: 30px;
}

.section-title {
  position: relative;
  text-transform: capitalize;
  font-size: 40px;
  font-weight: 900;
  color: #007bff;
  letter-spacing: -1px;
  margin-bottom: 50px;
  line-height: 50px;
  padding-bottom: 30px;
  text-align: center;
}

@media (max-width: 1400px) {
  .section-title {
    font-size: 25px;
  }
}

.section-title::after {
  position: absolute;
  content: '';
  width: 100px;
  height: 6px;
  line-height: 6px;
  background: #007bff;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 10px;
}

.section-title.left {
  text-align: left;
}

.section-title.left:after {
  left: 0;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.radio-group li, .square-group li {
  display: inline-block;
  vertical-align: middle;
  padding: 0px;
  padding-left: 0;
}

.radio-group li input[type=checkbox] + label, .square-group li input[type=checkbox] + label {
  display: block;
  vertical-align: middle;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
  padding-left: 23px;
  /* padding-left: 16px; */
  position: relative;
  vertical-align: middle;
  /* text-transform: uppercase; */
  font-size: 16px;
}

@media (max-width: 1400px) {
  .radio-group li input[type=checkbox] + label, .square-group li input[type=checkbox] + label {
    font-size: 12px;
  }
}

.radio-group li input[type=checkbox], .square-group li input[type=checkbox] {
  display: none;
}

.radio-group li input[type=checkbox] + label:before, .square-group li input[type=checkbox] + label:before {
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\2714";
  border: 1px solid #002145;
  border-radius: 0.2em;
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 13px;
  padding-bottom: 0.3em;
  margin-right: 0.3em;
  vertical-align: middle;
  color: transparent;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 1400px) {
  .radio-group li input[type=checkbox] + label:before, .square-group li input[type=checkbox] + label:before {
    width: 16px;
    height: 16px;
    line-height: 12px;
  }
}

.radio-group li input[type=checkbox] + label:active:before, .square-group li input[type=checkbox] + label:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-group li input[type=checkbox]:checked + label:before, .square-group li input[type=checkbox]:checked + label:before {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}

.radio-group li input[type=checkbox]:disabled + label:before, .square-group li input[type=checkbox]:disabled + label:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-color: #aaa;
}

.radio-group li input[type=checkbox]:checked:disabled + label:before, .square-group li input[type=checkbox]:checked:disabled + label:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: #007bff;
  border-color: #007bff;
}

.radio-group li input[type=radio] + label, .square-group li input[type=radio] + label {
  display: block;
  vertical-align: middle;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
  position: relative;
  vertical-align: middle;
  /* text-transform: uppercase; */
  font-size: 16px;
}

@media (max-width: 1400px) {
  .radio-group li input[type=radio] + label, .square-group li input[type=radio] + label {
    font-size: 12px;
  }

  .form-check-label{
    font-size: 12px;
  }
}

.radio-group li input[type=radio], .square-group li input[type=radio] {
  display: none;
}

.radio-group li input[type=radio] + label:before, .square-group li input[type=radio] + label:before {
  content: "\f058";
  font-family : 'Font Awesome 5 Pro';
  border: 1px solid #007bff;
  border-radius: 20em;
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  line-height: 15px;
  font-size: 16px;
  padding-bottom: 0.3em;
  margin-right: 0.3em;
  color: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  margin-bottom: 4px;
}

.radio-group li input[type=radio] + label:active:before, .square-group li input[type=radio] + label:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-group li input[type=radio]:checked + label, .square-group li input[type=radio]:checked + label {
  color: #007bff;
}

.radio-group li input[type=radio]:checked + label:before, .square-group li input[type=radio]:checked + label:before {
  color: #007bff;
  border: none;
}

.radio-group li input[type=radio]:disabled + label:before, .square-group li input[type=radio]:disabled + label:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-color: #aaa;
}

.radio-group li input[type=radio]:checked:disabled + label:before, .square-group li input[type=radio]:checked:disabled + label:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: #007bff;
  border-color: #007bff;
}

.radio-group.normal li input[type=radio] + label, .radio-group.normal li input[type=radio] + label {
  text-transform: capitalize;
  color: #bbbec2;
  font-size: 16px;
  font-weight: 300;
}

@media (max-width: 1400px) {
  .radio-group.normal li input[type=radio] + label, .radio-group.normal li input[type=radio] + label {
    font-size: 14px;
  }
}

.radio-group.normal li input[type=radio] + label:before, .radio-group.normal li input[type=radio] + label:before {
  border-color: #bbbec2;
}

.radio-group.normal li input[type=radio]:checked + label:before, .square-group.normal li input[type=radio]:checked + label:before {
  border-color: #007bff !important;
}

.radio-group.normal li input[type=checkbox]:checked + label, .radio-group.normal li input[type=checkbox]:checked + label {
  color: #007bff;
}

.radio-group.normal li input[type=radio] + label:before, .radio-group.normal li input[type=radio] + label:before {
  border-color: #bbbec2;
}

@media (max-width: 1400px) {
  .square-group li input[type=checkbox] + label:before {
    width: 14px;
    height: 14px;
    line-height: 12px;
  }
}

.square-group li input[type=checkbox]:checked + label:before {
  width: 18px;
  height: 18px;
  line-height: 15px;
  font-size: 12px;
}

@media (max-width: 1400px) {
  .square-group li input[type=checkbox]:checked + label:before {
    width: 14px;
    height: 14px;
    line-height: 12px;
  }
}

.scrollbar::-webkit-scrollbar, body::-webkit-scrollbar, .modal .myreplies::-webkit-scrollbar, .modal__content::-webkit-scrollbar, .contact-area-form textarea.form-control::-webkit-scrollbar, .chatbox__latestContent::-webkit-scrollbar, .search-area__table-content::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.scrollbar::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb, .modal .myreplies::-webkit-scrollbar-thumb, .modal__content::-webkit-scrollbar-thumb, .contact-area-form textarea.form-control
::-webkit-scrollbar-thumb, .chatbox__latestContent::-webkit-scrollbar-thumb, .search-area__table-content::-webkit-scrollbar-thumb {
  background: #00A2E8; /* background: #1ed39b; */
}

.scrollbar::-webkit-scrollbar-track, body::-webkit-scrollbar-track, .modal .myreplies::-webkit-scrollbar-track, .modal__content::-webkit-scrollbar-track, .contact-area-form textarea.form-control::-webkit-scrollbar-track, .chatbox__latestContent::-webkit-scrollbar-track, .search-area__table-content::-webkit-scrollbar-track {
  background: #FAFAFA;
}

.scrollbar, body, .modal .myreplies, .modal__content, .contact-area-form textarea.form-control, .chatbox__latestContent, .search-area__table-content {
  scrollbar-face-color: #1ed39b;
  scrollbar-track-color: #FAFAFA;
}

.section-height {
  padding: 80px 20px 10px;
  height: calc(100vh - 120px) !important;
  /* height: 100vh; */
}

@media (max-width: 991px) {
  .section-height {
    height: auto !important;
    padding: 80px 10px 40px;
  }
}

/* .modal::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  line-height: 100%;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.5);
} */

.modal-dialog:not(.original-modal) {
  max-width: 600px;
}

.modal-sm {
  max-width: 300px;
}

.modal .max-width-700 {
  max-width: 700px;
}

.modal-content {
  border-radius: 10px;
  border: none;
}

.modal-header {
  border: none;
  padding: 30px;
  padding-bottom: 0;
}

.modal-body {
  padding: 10px 30px;
}

.modal-body .chooseFilebox {
  position: relative;
  height: 60px;
}

.modal-body .chooseFilebox label {
  background: #007bff;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
}

.modal-body .chooseFilebox input[type=file] {
  padding: 5px 5px 5px 25px;
  font-size: 20px;
  color: #bbbec2;
}

.modal-footer {
  border: none;
  padding: 30px;
  padding-top: 0;
  justify-content: space-between;
}

.modal-title {
  font-size: 25px;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .modal-title {
    font-size: 22px;
  }
}

.modal .package-header {
  background-color: #F5F6F7;
  color: #002145;
  border-radius: 0.25rem;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 15px;
}

.modal .package-header span.line {
  display: inline-block;
  vertical-align: middle;
  width: 2px;
  height: 20px;
  line-height: 20px;
  background-color: #bbbec2;
}

.modal .package-header ul {
  margin: 0;
}

.modal .package-header input[type=checkbox] + label:active:before {
  border-color: #bbbec2;
}

/* .modal textarea:not(.tx) {
  height: 70px;
} */

.modal .smalltextarea{
  height: 70px;
}

.modal textarea.border {
  border-left: 3px solid #f2cd00 !important;
}

.modal .form-control.date-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
}

.modal .form-control.date-group input[type=date] {
  max-width: 110px;
  border: none;
}

.modal .form-control.date-group label {
  margin-bottom: 0;
}

.modal-close_icon {
  position: relative;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.modal-close_icon::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  height: 1px;
  line-height: 1px;
  background-color: #002145;
}

.modal-close_icon::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 20px;
  height: 1px;
  line-height: 1px;
  background-color: #002145;
}

.modal__navPills {
  background-color: #f7f7f7;
  color: #002145;
  display: block;
  vertical-align: middle;
  border: none;
  margin-bottom: 10px;
}

.modal__navPills li {
  display: inline-block;
  vertical-align: middle;
  width: auto !important;
}

.modal__navPills li a {
  color: #002145;
  padding: 10px 40px;
  border-radius: 0 !important;
  text-transform: uppercase;
  font-weight: 400;
  color: #bbbec2;
  border: 0 !important;
}

.modal__navPills li a svg {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.modal__navPills li a.active {
  font-weight: 600;
  background-color: #1ed39b !important;
  color: #ffffff !important;
}

.modal__navPills li a.active svg path.fill__white, .modal__navPills li a.active svg path.fill__gray300, .modal__navPills li a.active svg path.fill__gray200 {
  fill: #ffffff !important;
}

.modal__navPills li a.active svg path.fill__gray100 {
  fill: #1ed39b;
}

.modal__navPills li a:hover {
  border: none;
}

.modal .package-body__title {
  font-size: 15px;
  margin-bottom: 5px;
}

@media (max-width: 1400px) {
  .modal .package-body__title {
    font-size: 15px;
  }
}

.modal .package-body p {
  margin-bottom: 0;
  color: #bbbec2;
}

.modal .package-body__label {
  font-size: 20px;
}

@media (max-width: 1400px) {
  .modal .package-body__label {
    font-size: 16px;
  }
}

.modal .myreplies {
  height: 315px;
  padding-right: 10px;
  overflow-x: hidden;
}

.modal .myreplies__single {
  margin-bottom: 10px;
}

.modal .myreplies__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}

.modal .myreplies__headLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  width: auto;
}

.modal .myreplies__headLeft .userphoto {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 10px;
}

.modal .myreplies__headLeft .username {
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 1400px) {
  .modal .myreplies__headLeft .username {
    font-size: 14px;
  }
}

.modal .myreplies__body p {
  font-size: 15px;
  line-height: 20;
  color: #bbbec2;
}

@media (max-width: 1400px) {
  .modal .myreplies__body p {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .modal .myreplies__body p {
    line-height: 18px;
  }
}

.modal .myreplies__link {
  /* display: inline-block; */
  display: inline;
  vertical-align: middle;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-left: 25px;
  font-size: 12px;
}

.modal .myreplies__link:hover svg path.fill__gray200 {
  fill: #0067d6;
}

.modal .myreplies__link svg {
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.modal .alert {
  font-size: 13px;
}

@media (max-width: 1400px) {
  .modal .alert {
    font-size: 12px;
  }
}

.modal .bottom__linkarea {
  margin: 0;
}

.modal .bottom__linkarea a {
  color: #002145;
  padding: 10px;
  display: inline-block;
  vertical-align: middle;
}

.modal__content {
  height: 315px;
  padding-right: 10px;
  overflow-x: hidden;
}

.niceSelect {
  width: 100%;
  height: 40px;
  line-height: 40px;
}

@media (max-width: 767px) {
  .niceSelect {
    margin-bottom: 20px;
  }
}

.niceSelect ul.list {
  width: 100%;
}

#LoadShareModal .modal-dialog {
  max-width: 1400px;
}

.red-text {
  color: #EC332F;
  /* font-weight: 400; */

}

#inputForm h5{
  font-size: 16px;
}

.myinputgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  width: 100%;
}

.myinputgroup-left {
  width: calc(100% - 70px);
}

/*//=============================
=============|| HELPERS CSS ||=========================================================================*/
.bg {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bg__fixed {
  background-attachment: fixed !important;
}

.bg-theme-color {
  background-color: #007bff !important;
}

.bg-theme-color2 {
  background-color: #f5f8ff !important;
}

.bg-gray-100 {
  background-color: #f7f7f7 !important;
}

.bg-graylight {
  background-color: #EFF2F5 !important;
}

.overflow-x {
  overflow-x: auto;
}

.overflow-y {
  overflow-y: auto;
}

.overflow-auto {
  overflow: auto;
}

.border {
  border: 1px solid rgba(140, 144, 149, 0.32) !important;
}

.border-round {
  border-radius: 4px !important;
}

.border-round-full {
  border-radius: 500px !important;
}

.border-right,
.border-top,
.border-left,
.border-bottom {
  border-color: rgba(140, 144, 149, 0.32) !important;
}

.avatar {
  border: 2px solid rgba(140, 144, 149, 0.32);
}

.avatar-sm {
  width: 35px;
  height: 35px;
}

.avatar-md {
  width: 65px;
  height: 65px;
}

.avatar-lg {
  width: 100px;
  height: 100px;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

/*//=============================
=============|| HEADER ||=========================================================================*/
header {
  right: 0;
  left: 0;
  z-index: 999;
  /* position: absolute; */
  top: 0;
}

header .navbar-brand {
  max-width: 230px;
  /* -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; */
  /* font-weight: 700;
  font-size: 25px; */
  font-weight: 700;
  font-size: 20px;
  /* color: #c5cad4 !important; */
  /* font-family:'Inter', sans-serif; */
  font-family: Poppins !important;
  /* color:#4472C4 !important; */
  color:#00A2E8 !important;
  text-transform: uppercase;
}

header .navbar-brand .logo{
  /* width: 100px; */
  width: 80px;
}

header .navbar-brand span{
  color:#FFC000 !important;
}

@media (max-width: 1400px) {
  header .navbar-brand {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  header .navbar-brand {
    max-width: 175px;
  }
}

.header-area .navbar{
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.header-area .navbar button{
  text-transform: uppercase;
}

header .user-link {
  position: relative;
  margin-left: 100px;
}

@media (max-width: 991px) {
  header .user-link {
    margin: 0;
  }
}

header .user-link .dropdown-menu.show {
  right: 0;
  left: auto;
}

header .user-link .btn--secondary {
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  color: #002145;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 1400px) {
  header .user-link .btn--secondary {
    font-size: 14px;
  }
}

header .user-link .btn--secondary:hover, header .user-link .btn--secondary.active, header .user-link .btn--secondary:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  color: #002145;
}

header .user-link .btn--secondary .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  margin: 5px;
}

@media (max-width: 1400px) {
  header .user-link .btn--secondary .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

header #sticky {
  padding: 20px;
}

@media (max-width: 991px) {
  header #sticky {
    padding-left: 25px;
    padding-right: 25px;
  }
}

header .is-sticky .navbar-brand {
  max-width: 175px;
}

header .is-sticky #sticky {
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #007bff;
  -webkit-box-shadow: -4px 3px 30px 0px rgba(0, 2, 43, 0.1);
          box-shadow: -4px 3px 30px 0px rgba(0, 2, 43, 0.1);
}

header .nav-item-link {
  color: #002145;
  margin-left: 40px;
  font-weight: 400;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 17px;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  header .nav-item-link {
    font-size: 14px;
  }
}

header .nav-item-link:hover {
  color: #000d1c;
}

@media (max-width: 991px) {
  header .nav-item-link {
    line-height: 40px;
    margin-left: 10px;
  }
}

header .menu--close {
  right: 10px;
  position: absolute;
  top: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: none;
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 991px) {
  header .menu--close {
    display: inline-block;
    vertical-align: middle;
  }
}

header .menu--close:hover, header .menu--close:focus {
  color: #ffffff;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
      display: none;
      left: unset;
      right: 0 !important;
      font-size: .75rem;
  }

  /* .navbar .nav-item:hover .nav-link{ color: #fff;  } */
  .navbar .nav-item:hover .dropdown-menu {
      display: block;
  }

  .navbar .nav-item .dropdown-menu {
      margin-top: 0;
  }
}

/* .header-area .nav-item .dropdown-menu a,
    .header-area .nav-item a{
  font-size: 14px;
  font-weight: normal;
  font-family: 'Inter', sans-serif;
} */

.header-area .nav-item .dropdown-menu a{
  font-size: 14px;
  font-weight: normal;
  font-family: 'Inter', sans-serif;
}

#navbarSupportedContent .nav-item a,
.dropdown a {
    color: black !important;
}

.dropdown-toggle::after{
  margin-left: .7em;
}

/*//=============================
=============|| TOGGLER BUTTON ||=========================================================================*/
.navbar-toggler {
  border: none;
  margin-right: 10px;
}

.navbar-toggler span {
  display: block;
  vertical-align: middle;
  width: 25px;
  height: 1px;
  line-height: 1px;
  background: #002145;
  margin: auto;
  margin-bottom: 6px;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
  cursor: pointer;
}

.navbar-toggler span:last-child {
  margin-bottom: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 1;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:first-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: 7.5px;
}

.navbar-toggler:not(.collapsed) span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  bottom: 7px;
  position: relative;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #007bff;
    border-radius: 0px;
    left: -250px;
    z-index: 999;
    position: fixed;
    top: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    min-width: 240px;
    min-height: 100vh;
    padding: 10px;
    padding-top: 50px;
  }
  .navbar-collapse.show {
    left: 0px;
  }
  .navbar-collapse .nav-item a, .navbar-collapse .nav-link {
    color: #f4f7f6 !important;
  }
  .navbar-collapse .dropdown-menu {
    background-color: rgba(33, 40, 52, 0.6);
  }
}

/*//=============================
=============|| BANNER ||=========================================================================*/
/*//=============================
=============|| FOOTER ||=========================================================================*/
.footer-area {
  background-color: #e5ecfa;
  padding: 15px 0;
  height: 60px;
}

@media (max-width: 991px) {
  .footer-area {
    height: auto;
  }
}

.footer-area-menu {
  margin: 0;
}

@media (max-width: 991px) {
  .footer-area-menu {
    margin-bottom: 10px;
  }
}

.footer-area-menu li {
  display: inline-block;
  vertical-align: middle;
}

.footer-area-menu li a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  color: #002145;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .footer-area-menu li a {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .footer-area-menu li a {
    margin: 0px 10px;
  }
}

.footer-area-menu li a:hover {
  color: #0067d6;
}

.footer-area-social{
  display: none;
}

.footer-area-social a {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0px 5px;
}

@media (max-width: 1400px) {
  .footer-area-social a {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

/*//=============================
=============|| BUTTON STYLE ||=========================================================================*/
.btn {
  font-size: 14px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  padding: 10px 50px;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .btn:not(.btn-sm, .btn--custom) {
    font-size: 12px;
    padding: 10px 20px !important;
  }
}

.btn-sm{
  padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}

.btn--primary {
  background-color: #007bff;
  color: #ffffff;
  text-transform: uppercase;
}

.btn--primary:hover, .btn--primary.active, .btn--primary:focus {
  background-color: #0067d6;
  color: #ffffff;
}

.btn--primary2 {
  background-color: #007bff;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--primary2 {
    font-size: 11px;
  }
}

.btn--primary2:hover, .btn--primary2.active, .btn--primary2:focus {
  background-color: #0067d6;
  color: #ffffff;
}

.btn--info {
  background-color: #C2E0FF;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--info {
    font-size: 11px;
  }
}

.btn--info:hover, .btn--info:focus {
  background-color: #99cbff;
  color: #ffffff;
}

.btn--yello {
  background-color: #F2CD01;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--yello {
    font-size: 11px;
  }
}

.btn--yello:hover, .btn--yello:focus {
  background-color: #fedc1e;
  color: #ffffff;
}

.btn--yello2 {
  background-color: #FFC000;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--yello2 {
    font-size: 11px;
  }
}

.btn--yello2:hover, .btn--yello2:focus {
  background-color: #fedc1e;
  color: #ffffff;
}

.btn--success {
  background-color: #1ED39B;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--success {
    font-size: 11px;
  }
}

.btn--success:hover, .btn--success:focus {
  background-color: #37e3ae;
  color: #ffffff;
}

.btn--secondary2 {
  background-color: #6c757d;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--secondary2 {
    font-size: 11px;
  }
}

.btn--secondary2:hover, .btn--secondary2:focus {
  background-color: #8c9196;
  color: #ffffff;
}

.btn--danger {
  background-color: #DE4E33;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--danger {
    font-size: 11px;
  }
}

.btn--danger:hover, .btn--danger:focus {
  background-color: #e46c56;
  color: #ffffff;
}

.btn--blue {
  background-color: #022044;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--blue {
    font-size: 11px;
  }
}

.btn--blue:hover, .btn--blue:focus {
  background-color: #03336c;
  color: #ffffff;
}

.btn-custom {
  color: #fff;
  background-color: #00A2E8;
  border-color: #00A2E8;
}

.btn-custom:hover, .btn-custom:focus {
  background-color: #72d3fc;
  color: #ffffff;
}

.btn--custom {
  background-color: #00A2E8;
  color: #ffffff;
  text-transform: uppercase;
  padding: 10px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  /* font-size: 16px; */
}

/* @media (max-width: 1400px) {
  .btn--custom {
    font-size: 11px;
  }
} */

.btn--custom:hover, .btn--custom:focus {
  background-color: #72d3fc;
  color: #ffffff;
}

.btn--send {
  background-color: transparent;
  color: #007bff;
  text-transform: uppercase;
  padding: 10px 17px;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .btn--send {
    font-size: 13px;
  }
}

.btn--send:hover, .btn--send:focus {
  color: #03336c;
}

.btn--success2 {
  background-color: #E1FAF2;
  color: #1ED39B;
  text-transform: uppercase;
  padding: 11px 17px;
  margin-bottom: 10px;
  margin-right: 8px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1400px) {
  .btn--success2 {
    font-size: 11px;
  }
}

@media (max-width: 1400px) {
  .btn--success2 svg {
    width: 14px;
    height: 14px;
    line-height: 14px;
  }
}

.btn--success2:hover, .btn--success2:focus {
  background-color: #1ED39B;
  color: #ffffff;
}

.btn--border {
  background-color: transparent;
  color: #007bff;
  text-transform: uppercase;
  padding: 6px 30px;
  margin-bottom: 10px;
  margin-right: 8px;
  cursor: pointer;
  border: 2px solid #007bff;
  font-size: 16px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1400px) {
  .btn--border {
    font-size: 11px;
  }
}

@media (max-width: 1400px) {
  .btn--border svg {
    width: 14px;
    height: 14px;
    line-height: 14px;
  }
}

.btn--border:hover, .btn--border:focus {
  background-color: #007bff;
  color: #ffffff;
}

.btn--secondary, .btn--secondary:focus, .btn--secondary:hover {
  color: #007bff;
  border-width: 2px;
  border-color: currentColor;
  border-style: solid;
}

.btn--secondary:hover, .btn--secondary.active, .btn--secondary:focus, .btn--secondary:focus:hover, .btn--secondary:focus.active, .btn--secondary:focus:focus, .btn--secondary:hover:hover, .btn--secondary:hover.active, .btn--secondary:hover:focus {
  color: #0067d6;
}

.btn--trinary {
  background-color: #007bff;
  color: #ffffff;
  border-radius: 4px;
  padding: 12px 30px;
}

.btn--trinary:hover, .btn--trinary.active, .btn--trinary:focus {
  background-color: #0067d6;
  color: #ffffff;
}

.btn--full {
  width: 100%;
  text-align: center;
}

/*=============================
=============||03|| Contact Area =========================================================================*/
.contact-area  {
  padding-top: 10px;
}

@media (max-width: 640px) {
  .contact-area {
    padding: 70px 5px 40px;
  }
}

.contact-area-form {
  background-color: #FAFAFA;
  color: #002145;
  padding: 40px 50px;
}

@media (max-width: 1400px) {
  .contact-area-form {
    padding: 10px 40px;
  }
}

@media (max-width: 640px) {
  .contact-area-form {
    padding: 40px 10px;
  }
}

.contact-area-form-space {
  display: block;
  vertical-align: middle;
  width: 100%;
  height: 87px;
  line-height: 87px;
}

@media (max-width: 991px) {
  .contact-area-form-space {
    width: 0;
    height: 0;
    line-height: 0;
  }
}

.contact-area-form textarea.form-control {
  width: 100%;
  height: 230px;
  line-height: normal;
}

.contact-area-form-header {
  text-align: center;
}

.contact-area-form-header span.icon {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 20px;
}

@media (max-width: 1400px) {
  .contact-area-form-header span.icon {
    margin-bottom: 10px;
  }
}

.contact-area-form-header h3, .contact-area-form-header .h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media (max-width: 1400px) {
  .contact-area-form-header h3, .contact-area-form-header .h3 {
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .contact-area-form-header h3, .contact-area-form-header .h3 {
    margin-bottom: 10px;
  }
}

.contact-area-form form .message-box {
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 14px;
  background-color: rgba(30, 211, 155, 0.09);
  color: #1ed39b;
}

@media (max-width: 1400px) {
  .contact-area-form form .message-box {
    font-size: 13px;
  }
}

.contact-area-form form .form-check {
  padding-left: 25px;
}

.contact-area-form form .form-check .form-check-label {
  color: #002145;
  font-weight: 500;
  font-size: 15px;
}

@media (max-width: 1400px) {
  .contact-area-form form .form-check .form-check-label {
    font-size: 13px;
  }
}

.contact-area-form form .form-check .form-check-label a {
  color: #007bff;
  font-size: 80%;
}

/*=============================
=============||03|| Templata Admin =========================================================================*/
.template-admin {
  display: block;
  vertical-align: middle;
  padding: 80px 20px 0;
}

@media (max-width: 991px) {
  .template-admin {
    padding: 80px 10px 0;
  }
}

.template-admin .template-title {
  font-size: 25px;
  margin-top: 20px;
}

@media (max-width: 1400px) {
  .template-admin .template-title {
    font-size: 20px;
  }
}

/* .template-admin .input--box {
  padding-top: 10px;
} */

.template-admin-box {
  margin-bottom: 20px;
}

.template-admin .box {
  position: relative;
  display: block;
  vertical-align: middle;
  width: 100%;
  border: 1px dashed #007bff;
  padding: 40px 0;
  background-color: #F7F9FE;
  border-radius: 10px;
}

@media (max-width: 1400px) {
  .template-admin .box {
    padding: 10px 0;
  }
}

@media (max-width: 640px) {
  .template-admin .box {
    padding: 10px 0 30px;
  }
}

.template-admin .box__file {
  display: none;
}

.template-admin .box__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

@media (max-width: 1400px) {
  .template-admin .box__middle svg {
    max-width: 200px;
  }
}

.template-admin .box__text {
  margin-left: 30px;
  font-size: 20px;
  color: #002145;
}

@media (max-width: 1400px) {
  .template-admin .box__text {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .template-admin .box__text {
    margin-left: 10px;
  }
}

.template-admin .box__loadButton {
  /* right: 10px;
  bottom: 10px;
  position: absolute; */
  float: right;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 15px;
  font-size: 14px;
  background-color: #002145;
  color: #f4f7f6;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: none;
}

@media (max-width: 1400px) {
  .template-admin .box__loadButton {
    font-size: 11px;
  }
}

.template-admin .box__loadButton:hover {
  background-color: #00356e;
  color: #ffffff;
}

/*=============================
=============||03|| Template Table =========================================================================*/
.template-table {
  position: relative;
  padding: 40px 20px 20px;
  padding: 40px 20px 20px;
}

@media (max-width: 1400px) {
  .template-table {
    padding: 0px 20px 20px;
  }
}

@media (max-width: 991px) {
  .template-table {
    padding: 0px 10px 40px;
  }
}

.template-table-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media (max-width: 1024px) {
  .template-table-header {
    display: block;
    vertical-align: middle;
  }
}

.template-table-header .header-right {
  margin-bottom: 10px;
}

.template-table-cover {
  width: 100%;
  overflow-x: auto;
}

.template-table-cover table {
  width: 100%;
}

.template-table-cover table thead {
  background-color: #F5F6F7;
  border: none;
  margin-bottom: 10px;
}

.template-table-cover table thead th {
  min-width: 70px;
  font-size: 18px;
  padding: 13px 0px 8px;
  font-weight: 600;
  text-align: center;
  position: relative;
}

@media (max-width: 1400px) {
  .template-table-cover table thead th {
    font-size: 12px;
  }
}

.template-table-cover table thead th svg {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}

@media (max-width: 1400px) {
  .template-table-cover table thead th svg {
    width: 14px;
    height: 14px;
    line-height: 14px;
  }
}

.template-table-cover table input[type=checkbox], .template-table-cover table input[type=radio] {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

@media (max-width: 1400px) {
  .template-table-cover table input[type=checkbox], .template-table-cover table input[type=radio] {
    width: 15px;
    height: 15px;
    line-height: 15px;
  }
}

.template-table-cover table td {
  min-width: 70px;
  font-size: 18px;
  padding: 0px 5px;
  text-align: center;
  padding-top: 4px;
  max-width: 100px;;
}

@media (max-width: 1400px) {
  .template-table-cover table td {
    font-size: 14px;
  }
}

.template-table-cover table td input {
  padding: 0px 10px;
  text-align: center;
  margin-bottom: 0;
  border-width: 1px;
}

@media (max-width: 1400px) {
  .template-table-cover table td input {
    padding: 2px 5px !important;
  }
}

/* .template-table-cover table td:nth-child(1), .template-table-cover table td:nth-child(2), .template-table-cover table td:nth-last-child(1), .template-table-cover table td:nth-last-child(4), .template-table-cover table td:nth-last-child(5) {
  text-align: left;
  padding-left: 17px;
} */

.table-responsive{
  min-height: 600px;
}

/*=============================
=============||03|| Load Share Modal =========================================================================*/
#LoadShareModal .single__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
  /* justify-content: center; */
  -ms-flex-pack: center;
  margin-bottom: 10px;
}

#LoadShareModal .single__item .btn {
  margin-left: 10px;
  width: 120px;
  height: 40px;
  margin-bottom: 0;
}

/*=============================
=============||03|| CHATBOX PAGE =========================================================================*/
.chatbox {
  /* padding-top: 100px; */
  padding-top: 40px;
}

.chatbox__left {
  height: calc(100vh - 180px);
  position: relative;
}

@media (max-width: 1400px) {
  .chatbox__left {
    height: auto;
    margin-bottom: 30px;
  }
}

.chatbox__leftheader {
  margin-bottom: 15px;
}

.chatbox__leftheader .input-group input {
  height: 100%;
  margin-right: 15px;
}

.chatbox__body{
  margin-right: 8px;
}

.chatbox__navPills {
  background-color: #F5F6F7;
  padding: 0;
}

.chatbox__navPills li a:not(.original) {
  padding: 10px 26px;
  /* padding: 10px; */
  color: #bbbec2;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  text-transform: uppercase;
  border-radius: 0 !important;
  border-color: transparent;
}

@media (max-width: 1450px) {
  .chatbox__navPills li a {
    font-size: 13px !important;;
    padding: 10px !important;
  }
}

@media (max-width: 1200px) {
  .chatbox__navPills li a {
    font-size: 10px !important;
    padding: 5px !important;
  }
}

.chatbox__navPills li a svg {
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 5px;
  fill: #e2e4e7;
}

.chatbox__navPills li a.active {
  /* background-color: #1ed39b !important; */
  background-color: #00A2E8 !important;
  color: #ffffff !important;
  border-color: transparent;
}

.chatbox__navPills li a.active svg {
  fill: #ffffff !important;
}

.chatbox__navPills li a .counter {
  display: inline-block;
  vertical-align: middle;
  background-color: #002145;
  color: #ffffff;
  padding: 0px 5px;
  margin-left: 10px;
  border-radius: 50px;
  font-size: 80%;
}

.chatbox__switch {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 15px;
  line-height: 15px;
  margin: 0;
  margin-left: 10px;
}

.chatbox__switch input {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chatbox__switch input:checked + .slider {
  background-color: #1ed39b;
}

.chatbox__switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #1ed39b;
          box-shadow: 0 0 1px #1ed39b;
}

.chatbox__switch input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  transform: translateX(16px);
  background-color: #ffffff;
}

.chatbox__switch .slider {
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  cursor: pointer;
  background-color: #bbbec2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.chatbox__switch .slider.round {
  border-radius: 34px;
}

.chatbox__switch .slider.round:before {
  border-radius: 50%;
}

.chatbox__switch .slider::before {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  line-height: 18px;
  bottom: 0;
  left: 0;
  top: 0;
  margin: auto 0;
  background-color: #e2e4e7;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.chatbox__switch__label {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
}

@media (max-width: 1400px) {
  .chatbox__switch__label {
    font-size: 13px;
  }
}

.chatbox__tabscontent {
  /* border: 1px solid rgba(140, 144, 149, 0.32); */
  border-top: 0;
  /* padding: 10px; */
  padding: 10px 0;
  padding-bottom: 0;
  height: calc(100vh - 280px);
}

@media (max-width: 767px) {
  .chatbox__tabscontent {
    height: auto;
  }
}

.chatbox__searchField {
  border: 1px solid rgba(140, 144, 149, 0.32);
  margin-right: 10px;
  margin-bottom: 20px;
  padding: 2px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

.chatbox__searchField input {
  margin: 0;
  border: none;
  padding: 0;
  background-color: transparent;
}

.chatbox__searchField input:focus, .chatbox__searchField input:hover {
  background-color: transparent;
}

.chatbox__searchField .icon {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.chatbox__searchField .icon svg {
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.chatbox__onlineChat {
  overflow: auto;
  max-height: calc(100vh - 360px);
  padding-right: 10px;
}

.chatbox__onlineChat .single-item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
}

@media (max-width: 1400px) {
  .chatbox__onlineChat .single-item {
    margin-bottom: 5px;
  }
}

.chatbox__onlineChat .single-item .name {
  color: #002145;
  font-size: 16px;
  font-weight: 600;
}

.chatbox__onlineChat .single-item .unread {
  color: #fa7385;
}

@media (max-width: 1400px) {
  .chatbox__onlineChat .single-item .name {
    font-size: 13px;
  }
}

.chatbox__onlineChat .single-item .name:hover, .chatbox__onlineChat .single-item .name:focus {
  color: #1ed39b;
}

.chatbox__onlineChat .single-item .online-status-settings .status-icon svg {
  width: 16px;
  height: 16px;
  line-height: 16px;
  margin-right: 5px;
}

@media (max-width: 1400px) {
  .chatbox__onlineChat .single-item .online-status-settings .status-icon svg {
    width: 10px;
    height: 10px;
    line-height: 10px;
  }
}

.chatbox__onlineChat .single-item .online-status-settings .settings-icon svg {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

@media (max-width: 1400px) {
  .chatbox__onlineChat .single-item .online-status-settings .settings-icon svg {
    width: 18px;
    height: 18px;
    line-height: 18px;
  }
}

.chatbox__textBox {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .chatbox__textBox {
    margin: 0;
    margin-bottom: 20px;
  }
}

.chatbox__textBox .message__warning {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  background-color: rgba(242, 205, 0, 0.11);
  color: #f2cd00;
  font-size: 16px;
  border-radius: 0.25rem;
  padding: 15px 20px;
  margin-bottom: 15px;
}

@media (max-width: 1400px) {
  .chatbox__textBox .message__warning {
    font-size: 13px;
  }
}

@media (max-width: 1400px) {
  .chatbox__textBox .message__warning {
    padding: 10px 20px;
  }
}

.chatbox__textBox .message__warning p {
  margin-bottom: 0;
}

.chatbox__textBox .message__warning .view__link {
  color: #f2cd00;
  text-decoration: underline;
}

.chatbox__textArea {
  border: 1px solid rgba(140, 144, 149, 0.32);
  padding: 10px;
}

.chatbox__textArea__overflow {
  overflow: auto;
  height: calc(100vh - 450px);
  padding-right: 20px;
}

@media (max-width: 1400px) {
  .chatbox__textArea__overflow {
    height: calc(100vh - 430px);
  }
}

.chatbox__textArea__overflow .chatuser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.chatbox__textArea__overflow .chatuser__content {
  margin-bottom: 0px;
}

.chatbox__textArea__overflow .chatuser__photo {
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  line-height: 35px;
  min-width: 35px;
  border-radius: 50px;
  overflow: hidden;
}

.chatbox__textArea__overflow .chatuser__name {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .chatbox__textArea__overflow .chatuser__name {
    font-size: 14px;
  }
}

@media (max-width: 1400px) {
  .chatbox__textArea__overflow .chatuser__name {
    line-height: 20px;
  }
}

.chatbox__textArea__overflow .chatuser__date {
  font-weight: 400;
  margin-left: 10px;
  color: #bbbec2;
  font-size: 80%;
}

.chatbox__textArea__overflow .chatuser__message p {
  font-size: 16px;
  line-height: 24px;
  color: #bbbec2;
}

@media (max-width: 1400px) {
  .chatbox__textArea__overflow .chatuser__message p {
    font-size: 13px;
  }
}

@media (max-width: 1400px) {
  .chatbox__textArea__overflow .chatuser__message p {
    line-height: 18px;
  }
}

.chatbox__textArea__overflow .chatuser.me {
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-pack: flex-end;
  text-align: right;
}

.chatbox__textArea__overflow .chatuser.me .chatuser__photo {
  margin-right: 0;
  margin-left: 20px;
}

.chatbox__textArea__overflow .chatuser.me .chatuser__date {
  margin-left: 0px;
  margin-right: 10px;
}

.chatbox__textArea__inputbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #F8F8F8;
  color: #002145;
}

.chatbox__textArea__inputbox .form-control {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0;
  padding: 6px 20px;
  font-size: 15px;
}

@media (max-width: 1400px) {
  .chatbox__textArea__inputbox .form-control {
    font-size: 13px;
  }
}

.chatbox__textArea__inputbox .form-control:hover, .chatbox__textArea__inputbox .form-control:focus {
  background-color: transparent;
}

.chatbox__textArea__inputbox .form-control.placeholder {
  color: #bbbec2;
}

.chatbox__textArea__inputbox .form-control:-moz-placeholder {
  color: #bbbec2;
}

.chatbox__textArea__inputbox .form-control::-moz-placeholder {
  color: #bbbec2;
}

.chatbox__textArea__inputbox .form-control::-webkit-input-placeholder {
  color: #bbbec2;
}

.chatbox__latestContent {
  overflow-X: hidden;
  /* max-height: calc(100vh - 315px); */
  min-height: calc(100vh - 300px);
}

.chatbox__task {
  max-height: calc(100vh - 185px);
  position: relative;
}

@media (max-width: 767px) {
  .chatbox__task {
    max-height: auto;
    padding-top: 0px;
  }
}

.chatbox__task .task-menu {
  margin-right: 8px;
  height: calc(100% - 55px);
}

.chatbox__taskbtn {
  margin-bottom: 15px;
  text-align: right;
}

@media (max-width: 991px) {
  .chatbox__taskbtn {
    text-align: center;
  }
}

.chatbox__taskbtn .btn {
  padding: 10px 45px;
}

.chatbox__task .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.chatbox__task .nav-pills li {
  width: 50%;
}

.chatbox__task .nav-pills li svg path.fill__secondary {
  fill: #f4f7f6;
}

.chatbox__task .nav-pills li a.active svg path.fill__secondary {
  fill: #1ed39b;
}

.chatbox__task .nav-pills li a.active svg path.fill__gray200 {
  fill: #ffffff;
}

.chatbox__task .nav-pills li a.active svg path.fill__white {
  fill: #1ed39b;
}

.chatbox__taskContent {
  padding-top: 20px;
  overflow-x: auto;
  max-height: calc(100vh - 300px);
  /* max-height: calc(100vh - 280px); */
  padding-right: 10px;
}

@media (max-width: 767px) {
  .chatbox__taskContent {
    max-height: auto;
  }
}

.chatbox__taskContent .list-item {
  display: block;
  vertical-align: middle;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
  color: #002145;
}

@media (max-width: 1400px) {
  .chatbox__taskContent .list-item {
    font-size: 13px;
  }
}

.chatbox__taskContent .list-item span {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  opacity: 0.7;
  filter: alpha(opacity=70);
  float: right;
}

.chatbox__taskContent .list-item:hover {
  background-color: #f5f8ff;
}

.chatbox__taskContent .list-item h6, .chatbox__taskContent .list-item .h6 {
  font-size: 16px;
}

@media (max-width: 1400px) {
  .chatbox__taskContent .list-item h6, .chatbox__taskContent .list-item .h6 {
    font-size: 13px;
  }
}

.chatbox__taskContent .list-item strong {
  color: #bbbec2;
}

/*=============================
=============||03|| LOGIN PAGE =========================================================================*/
.login-area {
  position: relative;
}

.login-area-form {
  background-color: #f7f7f7;
  color: #002145;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          /* justify-content: space-between; */
  -ms-flex-pack: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
}

@media (max-width: 991px) {
  .login-area-form {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.login-area-form .formBox {
  /* width: 70%; */
  width: 60%;
  height: 100%;
  line-height: 100%;
  padding: 0 40px;
}

.login-area-form .w100{
  width: 100% !important;
}

@media (max-width: 991px) {
  .login-area-form .formBox {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    order: 2;
    padding: 40px 10px;
    width: 100%;
    margin: auto;
  }
}

.login-area-form .formBox__logo {
  color: #007bff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 20px;
}

@media (max-width: 1400px) {
  .login-area-form .formBox__logo {
    font-size: 18px;
  }
}

.login-area-form .formBox__name {
  color: #002145;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 1400px) {
  .login-area-form .formBox__name {
    font-size: 16px;
  }
}

.login-area-form .formBox__bottom {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  /* -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-pack: space-between; */
}

.login-area-form .formBox__bottom__ORbreak {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px;
}

.login-area-form .formBox__bottom .link__red {
  color: #B6695A;
  font-size: 16px;
}

@media (max-width: 1400px) {
  .login-area-form .formBox__bottom .link__red {
    font-size: 14px;
  }
}

.login-area-form .formBox__Other {
  text-align: center;
}

.login-area-form .formBox__OtherText {
  display: block;
  vertical-align: middle;
  position: relative;
  text-align: center;
}

.login-area-form .formBox__OtherText::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1.4px;
  line-height: 1.4px;
  background-color: #bbbec2;
  left: 0;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.login-area-form .formBox__OtherText span {
  display: inline-block;
  vertical-align: middle;
  background-color: #f7f7f7;
  position: relative;
  padding: 10px;
  z-index: 2;
}

@media (max-width: 480px) {
  .login-area-form .formBox .btn--primary {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.login-area__image {
  max-width: 40%;
  position: relative;
  padding-top: 15px;
  max-height: 400px;
  overflow-y: auto;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .login-area__image {
    text-align: center;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    order: 1;
    margin: auto;
  }
}

/*div#sliderModal {
    margin-top: 40px;
}
*/
.gsc-control-cse {
    padding: 0 !important;
}
.gsc-search-button.gsc-search-button-v2{
    color: #fff;
    font-size: 13px !important;
    font-weight: 600;
    width: 90px;
    padding: 7px;
    text-align:center;
}
.login-area__image span {
  display: inline-block;
  vertical-align: middle;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 40px solid #f4f7f6;
  border-radius: 4px;
  left: 50%;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.search-area {
  padding-top: 95px;
}

.p-t-60{
    padding-top: 60px !important;
}

.search-area__header {
  padding: 10px 0;
}

.search-area__headerToots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
  /* justify-content: space-between;
  -ms-flex-pack: space-between; */
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

@media (max-width: 767px) {
  .search-area__headerToots {
    display: block;
    vertical-align: middle;
    text-align: center;
  }
  .search-area__headerToots .search-area__files {
    margin: 15px 0;
  }
  .search-area__headerToots .btn-toolbar {
    -moz-justify-content: center !important;
    -ms-justify-content: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
    -ms-flex-pack: center !important;
  }
}

.search-area__pagination a {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 39px;
  line-height: 38px;
  border-radius: 50px;
  /* border: 1px solid #bbbec2; */
  text-align: center;
  color: #bbbec2;
}
.search-area__pagination a span{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
    -moz-justify-content: center !important;
    -ms-justify-content: center !important;
    -webkit-box-pack: center !important;
            justify-content: center !important;
    -ms-flex-pack: center !important;
}

.search-area__pagination a:hover, .search-area__pagination a.active {
  background-color: #007bff;
  color: #ffffff;
  /* border-color: currentColor; */
}

.search-area__pagination a:hover svg path, .search-area__pagination a.active svg path {
  fill: #ffffff;
}

.search-area__table {
  position: relative;
}

.search-area__table::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 20px;
  line-height: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.7)), to(transparent));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7), transparent);
  left: 0;
  bottom: 0;
}

.search-area__table table {
  width: 100%;
  table-layout: fixed;
}

.search-area__table-header {
  background-color: #f7f7f7;
}

.search-area__table-content {
  overflow-x: hidden;
  margin-top: 0px;
  border: 1px solid rgba(247, 247, 247, 0.3);
}

.search-area__table th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  color: #002145;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  .search-area__table th {
    padding: 10px;
  }
}

@media (max-width: 991px) {
  .search-area__table th {
    padding: 20px;
  }
}

@media (max-width: 1400px) {
  .search-area__table th {
    font-size: 15px;
  }
}

.search-area__table th:first-child,
.search-area__table td:first-child {
  width: 80px;
}

.search-area__table th:nth-child(2),
.search-area__table td:nth-child(2) {
  width: 200px;
}

@media (max-width: 767px) {
  .search-area__table th:nth-child(2),
  .search-area__table td:nth-child(2) {
    width: 120px;
  }
}

.search-area__table td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  font-weight: 300;
  font-size: 12px;
  color: #bbbec2;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.search-area__table td:nth-child(2) {
  font-weight: 600;
  color: #002145;
}

.search-area__table tr:nth-child(even) {
  background: #FAFAFA;
}

.entries-area {
  padding: 60px 10px 40px 10px;
}

.entries-area__content {
  background-color: #FAFAFA;
  padding: 10px 20px 10px;
}

.entries-area-pagination {
  text-align: right;
}

.entries-area-pagination a {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.entries-area-headpin {
  padding: 15px 0;
}

.entries-area-headpin .btn {
  margin-left: 10px !important;
}

.entries-area .btn {
  margin: 0;
}

.entries-area-tooltip {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
}

.entries-area-addpicture-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -moz-align-items: center;
  align-items: center;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: space-between;
}

.entries-area-addpicture-tool a {
  /* color: #002145; */
  font-weight: 600;
  padding: 1px;
}

.entries-area-addpicture-tool a:hover {
  color: #0067d6;
}

.select2-container::after {
  position: absolute;
  content: '';
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 18px;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}

.select2-container .select2-selection__rendered {
  padding: 2px 5px !important;
}

.select2-container .select2-selection__clear {
  right: 0px;
  z-index: 9;
  position: absolute;
  top: 0px;
  background-color: #ffffff;
  text-align: center;
  width: 18px;
  float: none !important;
}

.select2-results__option {
  padding-right: 20px;
  vertical-align: middle;
}

.select2-results__option:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  border: 2px solid #e9e9e9;
  border-radius: 4px;
  background-color: #fff;
  margin-right: 15px;
  vertical-align: middle;
}

.select2-results__option[aria-selected=true]:before {
  content: "\2714";
  color: #fff;
  background-color: #007bff;
  border: 0;
  display: inline-block;
  padding-left: 3px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #f5f8ff;
  color: #272727;
}

.select2-container--default .select2-selection--multiple {
  margin-bottom: 10px;
  padding-left: 18px !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #f77750;
  border-width: 2px;
}

.select2-container--default .select2-selection--multiple {
  border-width: 2px;
}

.select2-container--open .select2-dropdown--below {
  border-radius: 6px;
  -webkit-box-shadow: -4px 3px 30px 0px rgba(0, 2, 43, 0.1);
          box-shadow: -4px 3px 30px 0px rgba(0, 2, 43, 0.1);
}

.select2-selection .select2-selection--multiple:after {
  content: 'hhghgh';
}

/* select with icons badges single*/
.select-icon .select2-selection__placeholder .badge {
  display: none;
}

.select-icon .placeholder {
  display: none;
}

.select-icon .select2-results__option:before,
.select-icon .select2-results__option[aria-selected=true]:before {
  display: none !important;
  /* content: "" !important; */
}

.select-icon .select2-search--dropdown {
  display: none;
}
.cusdropdownIcon{
    position: relative;
}
.cusdropdownIcon:before{
    content: '';
    position: absolute;
    width: 30px;
    height: calc(100% + 2px);
    background-color: #fff;
    right: -2px;
    top: 0px;
    z-index: 995;
}
.cusdropdownIcon:after{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    right: 12px;
    background-image: url('../img/down-arrow.svg');
    background-size: cover;
    top: 15px;
    z-index: 999;
}

@media (min-width: 991px ){
	.chatbox__lheader{
		padding-right: 0;
        padding-left: 26px;
        display: flex;
        justify-content: space-between;
	}
    .chatbox__lheaderInput {
        display: inline-block;
        width: calc(100% - 165px);
        margin-right: 15px;
    }
    .chatbox__lheaderBox{
        display: flex;
    }
    /* .chatbox__lheaderBox .form-control{
        margin-bottom: 0px !important;
    } */
}
@media (max-width: 991px){
    .chatbox__lheaderBox .form-control{
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    .chatbox__lheaderBox .form-control#filename{
        margin-top: 10px !important;
    }
}

.chatbox__lheaderBox .inputbox{
	width: 100%;
	min-width: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .25rem;
    overflow: hidden;
}
.chatbox__lheaderBox .inputbox .form-control#list_template,
.chatbox__lheaderBox .inputbox .form-control#list_file{
    border: none !important
}
.chatbox__lheaderbutton {
    display: inline-block;
    vertical-align:top;
}
.chatbox__lheaderbutton .btn{
    padding: 11px 50px !important;
    /* padding: 10px 45px !important; */
}
/*# sourceMappingURL=style.css.map */



#feedback_btn {
  color: #ffffff;
  background-color: #cc0605;
  font-family: Arial, Verdana;
  font-weight: bold;
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  position: fixed;
  top: 80vh;
  right: -30px;
  padding: .35rem .6rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

#imageStatus{
  color: #999;
  visibility:hidden;
}
.font-icon{
    font-size: 16px;
    margin-right: 10px;
}
.font-icon-lg{
    font-size: 24px

}

.table-help a{
  color: #0069D9 !important;
}

.ui-widget-header {
    border: 1px solid #00A2E8 !important;
    background: #00A2E8 !important;
}


/* new style */
.top-0{
    top: 0 !important;
}
.left-0{
    left: 0 !important;
}
.right-0{
    right: 0 !important;
}

.gap-2{gap: 1rem;}
.gap-3{gap: 1.5rem;}

.lh-md{
    line-height: 1.5 !important;
}

.fs-sm{
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 1199px) and (min-width: 992px){
    .display-3{
        font-size: 3rem;
    }
}
@media (max-width: 991px){
    .display-3{
        font-size: 2rem;
    }
    .h1{
        font-size: 1.7rem;
    }
}
@media (min-width: 1400px){
    .custom-plans-area{
        min-height: 485px;
        height: calc(100% - 100px );
    }
}
.custom-plans-img{
    position: absolute;
    bottom: 0;
    max-width: 22vw;
    z-index: 1;
}
.custom-plans-content{
    z-index: 2;
    position: relative;
}
.btn.disabled, .btn:disabled{
    pointer-events: none;

}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform .success-icon{
    max-width: 100px;
    margin: 50px auto;
}

#msform fieldset {
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    position: relative
}

#msform fieldset:not(:first-of-type) {
    display: none
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

.progress {
    height: 6px
}

.fit-image {
    width: 100%;
    object-fit: cover
}
.msform-footer-thumbs{
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.msform-footer-thumbs .single-thumb{
    max-width: 200px;
}
.form-control::placeholder{
    font-size: 80%;
}

.list-secure .geotrust{
    --list-secure-img-height: 20px;
}
.list-secure li img{
    height: var(--list-secure-img-height, 25px);
}

@media (min-width: 991px){
  .list-secure .geotrust{
    --list-secure-img-height: 25px;
  }
  .list-secure li{
    --list-secure-img-height: 30px;
  }

}

.page-wrapper-area{
    padding-top: 10px;
    padding-bottom: 40px;
}

/* What Next Heading */
.what-next-heading{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2rem;
    min-height: var(--what-next-heading-height, 170px);
}
.what-next-heading .icon {
    position: absolute;
    right: -7%;
    top: -10%;
    max-width: 30em;
    opacity: 0.1;
    z-index: -1;
}
.what-next-heading .icon.icon--qa {
    right: auto;
    left: 2rem;
    width: 11%;
    top: 1rem;
    opacity: 0.3;
}

.what-next-heading .title{
    font-size: var(--what-next-title-size, 2em);
    color: rgba(0, 2, 43, 0.05);
    font-family: var(--ff-HighVoltage);
    text-transform: capitalize;
    margin-top: -0.1em;
}

@media( min-width: 768px) and (max-width: 1199px){
    .what-next-heading{
        --what-next-title-size: 4em;
    }
}

@media( min-width: 1199px) and (max-width: 1800px){
    .custom-plan-content-wrapper h3{
        font-size: 2.5em;
    }
    .what-next-heading{
        --what-next-title-size: 12em;
    }
}

@media( min-width: 1600px) {
    .what-next-heading{
        --what-next-title-size: 15em;
    }
}

.bg-primary-100 {
    background-color: #f2f8ff !important;
}

/* What Next Heading */
/* .what-next-heading{.what-next-heading .icon.icon--qa
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.what-next-heading .icon {
    max-width: 5em;
}
.what-next-heading .title{
    font-size: var(--what-next-title-size, 2em);
    text-transform: uppercase;
    color: rgba(0, 2, 43, 0.1);
}

@media( min-width: 768px) and (max-width: 1199px){
    .what-next-heading{
        --what-next-title-size: 4em;
    }
}

@media( min-width: 1200px) {
    .what-next-heading{
        --what-next-title-size: 6em;
    }
} */

.h-80{
  height: 70%!important;
}
