/*Colors*/
.text-orange {
  color: #fa8c16;
}
.bg-orange {
  background-color: #fa8c16;
}

.text-purple {
  color: #eb2f96;
}

.bg-purple {
  background-color: #eb2f96;
}

.bg-google-blue {
  background-color: #0789c6;
}

.text-google-blue {
  color: #0789c6;
}

.btn-google-blue {
  color: #fff;
  background-color: #0789c6;
  border-color: #0789c6;
}

.btn-red {
  color: #fff;
  background-color: #be1e2d;
  border-color: #be1e2d;
}

.text-twitter {
  color: #1da1f2;
}

.bg-twitter {
  background-color: #1da1f2;
}
.text-linkedin {
  color: #0077b5;
}
.bg-linkedin {
  background-color: #0077b5;
}
.text-facebook {
  color: #3b5998;
}
.bg-facebook {
  background-color: #3b5998;
}
.text-youtube {
  color: #ff0000;
}
.bg-youtube {
  background-color: #ff0000;
}
.text-instagram {
  color: #833ab4;
}
.bg-instagram {
  background-color: #833ab4;
}

.table td,
.table th {
  font-weight: 400;
}
.bootbox-alert{
  z-index: 9999;
}

/* vertical divider*/
.grid-divider {
  position: relative;
}
.grid-divider > :after {
  content: "";
  background-color: rgb(213, 214, 216);
  position: absolute;
  top: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .grid-divider > :after {
    width: 100%;
    height: 1px;
    left: 0;
    top: -4px;
  }
}
@media (min-width: 768px) {
  .grid-divider > :after {
    width: 1px;
    height: auto;
    left: -1px;
  }
}
