/* Bootstrap Breakpoints.
---------------------------------------------------------------- */
/* Container Sizes.
---------------------------------------------------------------- */
/* Body Colors.
---------------------------------------------------------------- */
/* Text Colors.
---------------------------------------------------------------- */
/* Button Colors.
---------------------------------------------------------------- */
/* Font Awesome Checkbox and RadioButton Colors.
---------------------------------------------------------------- */
/* Divider Colors.
---------------------------------------------------------------- */
/* Header Colors.
---------------------------------------------------------------- */
/* Background */
/* Text */
/* Magnify Glass */
/* Top Section Burger */
/* Bottom Section Search */
/* Dropdown Menu Section */
/* Wait Cover */
/* Footer Colors.
---------------------------------------------------------------- */
/* Footer Top */
/* Footer Bottom */
/* Cookie Directive */
/* Modal Colors.
---------------------------------------------------------------- */
/* Modal Header */
/* Modal Close Button */
/* Modal Body */
/* Word Prompter Colors.
---------------------------------------------------------------- */
/* Word Prompter Content */
/* Word Prompter Options */
/* Word Prompter Close Button */
/* Vertical Scroll Bar Colors.
---------------------------------------------------------------- */
/* Tool Tip Colors.
---------------------------------------------------------------- */
/* Accordions.
---------------------------------------------------------------- */
/* Preview Page.
---------------------------------------------------------------- */
/* Video Controls.
---------------------------------------------------------------- */
/* Results Refine Search.
---------------------------------------------------------------- */
/* Results Pagination Bar.
---------------------------------------------------------------- */
/* Lightbox Slider.
---------------------------------------------------------------- */
/* Lightbox Manager.
---------------------------------------------------------------- */
/* This shows when the user is dragging an item from a box to another box and isn't hovering over an item. */
/* Font Face Override
---------------------------------------------------------------- */
/* @import url(https:////fonts.googleapis.com/css?family=Poppins&subset=latin); */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap");
/* Body
---------------------------------------------------------------- */
body {
  font-family: 'Segoe UI', 'Open Sans', sans-serif;
  font-size: 11pt;
  line-height: 1.4;
  background: white;
  color: #212529;
}

body a {
  color: #3b5e8d;
}

body a:hover {
  color: black;
}

body a:active {
  color: auto;
}

body a:visited {
  color: auto;
}

/* Vue
---------------------------------------------------------------- */
[v-cloak] {
  display: none;
}

/* Header
---------------------------------------------------------------- */
h1 {
  font-size: 2.55em;
}

/* Containers
---------------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .container-body {
    min-height: 300px;
  }
}

/* Forms
---------------------------------------------------------------- */
.ValidateInput {
  border-color: #cc0000;
}

.ValidateMessage {
  color: #cc0000;
  font-size: 9pt;
  font-weight: normal;
  text-align: left;
  display: none;
}

.FormGroupFirstTitle {
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 14pt;
  font-weight: bold;
}

.FormGroupTitle {
  padding-top: 15px;
  padding-bottom: 10px;
  font-size: 14pt;
  font-weight: bold;
}

@media (min-width: 768px) {
  .FormGroupFirstTitle {
    padding-top: 0;
  }
}

/* Text (added to text-* elements in Bootstrap)
---------------------------------------------------------------- */
.text-notrequired {
  font-weight: normal;
}

.text-validate {
  color: #cc0000;
  font-weight: bold;
  text-align: left;
}

.text-complete {
  color: #3b5e8d;
  font-weight: bold;
}

.text-discount {
  color: #cc0000;
}

.text-bold {
  font-weight: bold;
}

.text-justify-xs {
  text-align: justify;
}

.text-justify-xs h1, h2, h3, h4, h5, h6 {
  text-align: left;
}

@media (min-width: 768px) {
  .text-justify-xs {
    text-align: left;
  }
}

.text-fontawesome {
  font-family: "Font Awesome 5 Pro";
}

/* LinkInherit - This class will not change the style of a link.
---------------------------------------------------------------- */
.LinkInherit a {
  color: inherit;
  text-decoration: none;
}

.LinkInherit a:hover {
  color: inherit;
  text-decoration: none;
}

/* Hero (TO BE MOVED TO INDEX.COMP.CSS)
---------------------------------------------------------------- */
.hero img {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  height: auto;
}

.hero_header {
  color: #ffffff;
  text-align: center;
  margin: 0;
  letter-spacing: 4px;
}

/* Buttons
---------------------------------------------------------------- */
.Button, .ButtonPrimary, .ButtonPrimaryWait, .ButtonPrimaryReverse, .ButtonPrimaryReverseWait, .ButtonModal {
  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;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  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;
  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, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .Button, .ButtonPrimary, .ButtonPrimaryWait, .ButtonPrimaryReverse, .ButtonPrimaryReverseWait, .ButtonModal {
    -webkit-transition: none;
    transition: none;
  }
}

.Button:hover, .ButtonPrimary:hover, .ButtonPrimaryWait:hover, .ButtonPrimaryReverse:hover, .ButtonPrimaryReverseWait:hover, .ButtonModal:hover, .btn:focus {
  text-decoration: none;
}

.Button:focus, .ButtonPrimary:focus, .ButtonPrimaryWait:focus, .ButtonPrimaryReverse:focus, .ButtonPrimaryReverseWait:focus, .ButtonModal:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.Button.disabled, .disabled.ButtonPrimary, .disabled.ButtonPrimaryWait, .disabled.ButtonPrimaryReverse, .disabled.ButtonPrimaryReverseWait, .disabled.ButtonModal, .btn:disabled {
  opacity: 0.65;
}

.Button:not(:disabled):not(.disabled), .ButtonPrimary:not(:disabled):not(.disabled), .ButtonPrimaryWait:not(:disabled):not(.disabled), .ButtonPrimaryReverse:not(:disabled):not(.disabled), .ButtonPrimaryReverseWait:not(:disabled):not(.disabled), .ButtonModal:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.Button.disabled, a.disabled.ButtonPrimary, a.disabled.ButtonPrimaryWait, a.disabled.ButtonPrimaryReverse, a.disabled.ButtonPrimaryReverseWait, a.disabled.ButtonModal,
fieldset:disabled a.Button,
fieldset:disabled a.ButtonPrimary,
fieldset:disabled a.ButtonPrimaryWait,
fieldset:disabled a.ButtonPrimaryReverse,
fieldset:disabled a.ButtonPrimaryReverseWait,
fieldset:disabled a.ButtonModal {
  pointer-events: none;
}

.ButtonPrimary {
  border-color: #adadad;
  background: #212529;
  color: white;
}

.ButtonPrimary:hover {
  background: #e6e6e6;
  color: #212529;
}

.ButtonPrimary:active {
  background: #e6e6e6;
  color: #212529;
}

.ButtonPrimary:focus {
  border-color: #adadad;
  background: #212529;
  color: white;
}

.ButtonPrimaryWait {
  border-color: #adadad;
  background: #212529;
  color: white;
}

.ButtonPrimaryReverse {
  border-color: #adadad;
  color: #212529;
  background: white;
}

.ButtonPrimaryReverse:hover {
  color: #e6e6e6;
  background: #212529;
}

.ButtonPrimaryReverse:active {
  color: #e6e6e6;
  background: #212529;
}

.ButtonPrimaryReverse:focus {
  border-color: #adadad;
  color: #212529;
  background: white;
}

.ButtonPrimaryReverseWait {
  border-color: #adadad;
  color: #212529;
  background: white;
}

.ButtonModal {
  border-color: #adadad;
  background: #e6e6e6;
  color: #212529;
}

.ButtonModal:hover {
  background: #212529;
  color: white;
}

.ButtonModal:active {
  background: #212529;
  color: white;
}

.ButtonModal:focus {
  border-color: #adadad;
  background: #e6e6e6;
  color: #212529;
}

/* Divs acting as Tables
---------------------------------------------------------------- */
.display-table {
  display: table;
  table-layout: auto;
}

.display-row {
  display: table-row;
}

.display-cell-top {
  display: table-cell;
}

.display-cell-middle {
  display: table-cell;
  vertical-align: middle;
}

.display-cell-bottom {
  display: table-cell;
  vertical-align: bottom;
}

/* Font Awesome Social Icons
---------------------------------------------------------------- */
.social-icon {
  margin: 0 5px 5px 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 40px !important;
  color: #555;
  text-shadow: none;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  float: left;
  text-align: center;
  border: 1px solid #AAA;
}

.social-icon:hover {
  border-color: transparent;
}

.social-icon i {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  line-height: 40px;
  position: relative;
}

.social-icon i:last-child {
  color: #FFF !important;
}

.social-icon:hover i:first-child {
  margin-top: -40px;
}

.social-icon-lg {
  margin: 0 5px 5px 0;
  width: 60px;
  height: 60px;
  font-size: 30px;
  line-height: 60px !important;
  color: #555;
  text-shadow: none;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  float: left;
  text-align: center;
  border: 1px solid #AAA;
}

.social-icon-lg:hover {
  border-color: transparent;
}

.social-icon-lg i {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  line-height: 60px;
  position: relative;
}

.social-icon-lg i:last-child {
  color: #FFF !important;
}

.social-icon-lg:hover i:first-child {
  margin-top: -60px;
}

.social-icon-sm {
  margin: 0 5px 5px 0;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 30px !important;
  color: #555;
  text-shadow: none;
  border-radius: 3px;
  overflow: hidden;
  display: block;
  float: left;
  text-align: center;
  border: 1px solid #AAA;
}

.social-icon-sm:hover {
  border-color: transparent;
}

.social-icon-sm i {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  line-height: 30px;
  position: relative;
}

.social-icon-sm i:last-child {
  color: #FFF !important;
}

.social-icon-sm:hover i:first-child {
  margin-top: -30px;
}

si-border {
  border: 1px solid #AAA !important;
}

.si-border-round {
  border-radius: 50%;
}

.si-dark-round {
  border-radius: 50%;
}

.si-gray-round {
  border-radius: 50%;
}

.si-gray {
  background: #f3f3f3;
  border: 0;
}

.si-dark {
  background-color: #333;
  border: 0 !important;
  color: #fff !important;
}

.si-colored-facebook,
.si-facebook:hover {
  background-color: #3B5998 !important;
}

.si-colored-twitter,
.si-twitter:hover {
  background-color: #00ACEE !important;
}

.si-colored-google-plus,
.si-g-plus:hover {
  background-color: #DD4B39 !important;
}

.si-colored-skype,
.si-skype:hover {
  background-color: #00AFF0 !important;
}

.si-linkedin:hover,
.si-colored-linkedin {
  background-color: #0E76A8 !important;
}

.si-pin:hover,
.si-colored-pinterest {
  background-color: #C8232C !important;
}

.si-rss:hover,
.si-colored-rss {
  background-color: #EE802F !important;
}

.si-pinterest:hover,
.si-colored-pinterest {
  background-color: #C8232C !important;
}

.si-tumblr:hover,
.si-colored-tumblr {
  background-color: #34526F !important;
}

.si-vimeo:hover,
.si-colored-vimeo {
  background-color: #86C9EF !important;
}

.si-digg:hover,
.si-colored-digg {
  background-color: #191919 !important;
}

.si-instagram:hover, .si-colored-instagram {
  /*	background-color: #3F729B !important; */
  background: #f09433;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.si-flickr:hover,
.si-colored-flickr {
  background-color: #FF0084 !important;
}

.si-paypal:hover,
.si-colored-paypal {
  background-color: #00588B !important;
}

.si-yahoo:hover,
.si-colored-yahoo {
  background-color: #720E9E !important;
}

.si-android:hover,
.si-colored-andriod {
  background-color: #A4C639 !important;
}

.si-appstore:hover,
.si-colored-apple {
  background-color: #000 !important;
}

.si-dropbox:hover {
  background-color: #3D9AE8 !important;
}

.si-dribbble:hover,
.si-colored-dribbble {
  background-color: #EA4C89 !important;
}

.si-soundcloud:hover,
.si-colored-soundcoloud {
  background-color: #F70 !important;
}

.si-xing:hover,
.si-colored-xing {
  background-color: #126567 !important;
}

.si-phone:hover,
.si-colored-phone {
  background-color: #444 !important;
}

.si-behance:hover,
.si-colored-behance {
  background-color: #053eff !important;
}

.si-github:hover,
.si-colored-github {
  background-color: #171515 !important;
}

.si-stumbleupon:hover,
.si-colored-stumbleupon {
  background-color: #F74425 !important;
}

.si-email:hover,
.si-colored-email {
  background-color: #6567A5 !important;
}

.si-wordpress:hover,
.si-colored-wordpress {
  background-color: #1E8CBE !important;
}

.social-shortcodes .left-heading {
  font-size: 30px;
  text-transform: uppercase;
}

.social-icons:after,
.social-icons:before > .divide10:after,
.social-icons .divide10:before {
  display: table;
  content: "";
  width: 100%;
  clear: both;
}

/* Font Awesome: Remove the Original Arrow from the Dropdowns
---------------------------------------------------------------- */
select.input-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  /* No standardized syntax available and no ie-friendly solution available. */
}

select.input-dropdown::-ms-expand {
  display: none;
}

select.input-dropdown:hover {
  cursor: pointer;
}

select + i.far {
  float: right;
  margin-top: -33px;
  margin-right: 5px;
  /* This is so when you click on the chevron, your click actually goes on the dropdown menu. */
  pointer-events: none;
  /* Everything after this is just to cover up the original arrow */
  /* for browsers that don't support the syntax used above. */
  background-color: #fff;
  padding-right: 5px;
  font-size: 22px;
}

.input-dropdown {
  padding: 0px 16px;
  border-radius: 0;
}

/* Vertical Spacing Dividers
---------------------------------------------------------------- */
.divide0 {
  width: 100%;
  height: 0px;
}

.divide2 {
  width: 100%;
  height: 2px;
}

.divide3 {
  width: 100%;
  height: 3px;
}

.divide5 {
  width: 100%;
  height: 5px;
}

.divide10 {
  width: 100%;
  height: 10px;
}

.divide15 {
  width: 100%;
  height: 15px;
}

.divide20 {
  width: 100%;
  height: 20px;
}

.divide25 {
  width: 100%;
  height: 25px;
}

.divide30 {
  width: 100%;
  height: 30px;
}

.divide35 {
  width: 100%;
  height: 35px;
}

.divide40 {
  width: 100%;
  height: 40px;
}

.divide45 {
  width: 100%;
  height: 40px;
}

.divide50 {
  width: 100%;
  height: 50px;
}

.divide55 {
  width: 100%;
  height: 55px;
}

.divide60 {
  width: 100%;
  height: 60px;
}

.divide65 {
  width: 100%;
  height: 65px;
}

.divide70 {
  width: 100%;
  height: 70px;
}

.divide75 {
  width: 100%;
  height: 75px;
}

.divide80 {
  width: 100%;
  height: 80px;
}

.divide85 {
  width: 100%;
  height: 85px;
}

/* Margins
---------------------------------------------------------------- */
.margin10 {
  margin-bottom: 10px;
}

.margin20 {
  margin-bottom: 20px;
}

.margin30 {
  margin-bottom: 30px;
}

.margin40 {
  margin-bottom: 40px;
}

/* Paddings
---------------------------------------------------------------- */
.no-padding {
  padding: 0px;
}

/* Box Shadows
---------------------------------------------------------------- */
.shadown-1 {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.shadown-1:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadown-2 {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.shadown-3 {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.shadown-4 {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.shadown-5 {
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
          box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

/* Images used in Modals
---------------------------------------------------------------- */
.msgItemImg {
  margin: 0 5px 3px 0;
}

/* Clear Bootstrap settings
---------------------------------------------------------------- */
.ClearBootstrapFont {
  line-height: normal;
}

.ClearBootstrapLabel {
  margin: 0;
  font-weight: normal;
}

.ClearBootstrapRadio {
  margin: 0;
  line-height: normal;
}

.ClearBootstrapCheckbox {
  margin: 0;
  line-height: normal;
}

.ClearBootstrapImg {
  vertical-align: baseline;
}

/* WaitCover Loading Animation
---------------------------------------------------------------- */
.loading {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.circle {
  background-color: #fff;
  border-radius: 50%;
  margin: 3px;
  height: 10px;
  width: 10px;
  -webkit-animation: jump 0.8s ease-in infinite;
          animation: jump 0.8s ease-in infinite;
  opacity: 1;
}

.circle:nth-of-type(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.circle:nth-of-type(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/* Twensoft Demo
---------------------------------------------------------------- */
.twensoft-comments {
  color: #cc0000;
}
