/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
  background-color: #110f17;
  color: rgba(222, 221, 221, 0.747) !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
}

/* .bg-main{
  background-color: #001B4B;
}

.bg-main-light{
  background-color: #02457A;
} */

.bg-main{
  background-color: #080514;
}

.bg-main-light{
  background-color: #110f17;
}

.complement-color{
  background-color: #211a36;
}

.other-color{
  color: #3c81ac;
  /* color: #943030; */
}

.container {
  max-width: 960px;
}

.pricing-header {
  max-width: 700px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  /* background-color: #222222; */
  color: white;
}

.text-white{
  color: rgba(255, 255, 255, 0.759),
}

.newhover:hover{
  background-color: #e2e2e2 !important;
}

.font-small{
  font-size: 10px;
}

.font-xlarge{
  font-size: 25px;
}

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

.alert-error{
  background-color: red;
  color: white;
}

.alert-success{
  background-color: green;
  color: white;
}

.icon-color{
  color: #36c5f1;
}

.text-color{
  color: #36c5f1;
}

/* Tool Kit pop up cc */
/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
  padding: 10px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}