html {
  overflow-y: scroll;
  scroll-snap-type: y proximity;
}

html,
body {
  font-family: "Inter";
  display: flex;
  margin: 0;
  flex-direction: column;
  background-color: #ffffff;
  background-attachment: fixed;
  background-size: cover;
  letter-spacing: 0.5px;
  color: #797a8c;
  min-height: 100vh;
  line-height: 28px;
  font-size: 18px;
}

.text-color {
  color: #797a8c;
}

.container {
  max-width: 1440px;
}

.half-max-width {
  max-width: 650px;
}

.access-width {
  max-width: 1000px;
}

/* font */

h1,
h2,
h3,
h4 {
  font-family: "Inter";
  letter-spacing: 1px;
}

.h5light {
  font-family: "Inter";
  letter-spacing: 0.5px;
  font-size: 19px;
}

h5,
h6 {
  font-family: "Inter";
  letter-spacing: 0.5px;
}

h1 {
  font-size: 84px;
}

h2 {
  font-size: 60px;
}

h3 {
  font-size: 42px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 19px;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
.text-btn {
  color: #494a56;
}

.text-white {
  color: #ffffff;
}

.text-grey {
  color: #e3e3e3;
}

.bg-almost-white {
  background-color: #fafafa;
}

/* border magic */

.border-2 {
  border-width: 2px !important;
}

.border-4 {
  border-width: 4px !important;
}

.fixed-header {
  background: white;
  position: sticky;
  top: 0;
  box-shadow: 0 1px 1px;
}

/* fancy horizontal rules with headings */

.separator {
  color: #444;
  display: flex;
  align-items: center;
  text-align: center;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #aaa;
}

.separator::before {
  margin-right: 0.25em;
}

.separator::after {
  margin-left: 0.25em;
}

/* Alert */

.alert {
  margin-bottom: 0;
}

/* Navbar */

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

.nav-item:active {
  text-decoration: underline;
}

.nav-item:hover {
  text-decoration: underline;
  cursor: pointer;
}

.nav {
  background-color: transparent;
}

.navbar-light .navbar-toggler-icon {
  color: white !important;
}

.fa {
  transform: scale(1.2, 1);
}

hr.order {
  border-top: 2px solid black;
  padding: 0;
}

.noPad {
  padding: 0;
}

.modal-body .close {
  font-size: 40px;
  padding-left: 75vw;
}

.modal-dialog {
  top: 15vh;
  height: auto;
  background-color: transparent !important;
  border: none;
  margin: auto;
}

.modal-body,
.modal-content {
  height: auto;
  background-color: transparent !important;
  border: none;
}

/* Two factor auth special css classes */
.modal-content.two-factor {
  height: auto;
  border: 1px solid #000;
  background-color: white !important;
}

.btn-2fa-primary {
  background: #ffffff;
  border: 1px solid #616161;
  border-radius: 5px;
  text-transform: none !important;
  color: #616161;
}

.btn-2fa-secondary {
  background: #616161;
  border: 1px solid #616161;
  border-radius: 5px;
  text-transform: none !important;
  color: #ffffff;
}

.btn-2fa-danger {
  background: #ffffff;
  border: 1px solid #e35353;
  border-radius: 5px;
  text-transform: none !important;
  color: #e35353;
}

.btn-2fa-danger:hover {
  background: #e35353;
  border: 1px solid #e35353;
  border-radius: 5px;
  text-transform: none !important;
  color: #ffffff;
}

.btn-2fa-secondary:hover {
  color: #ffffff;
  background: #494a56;
}

.btn-2fa-secondary.with-icon {
  display: flex;
  align-items: center;
}

.btn-2fa-primary.with-icon {
  display: flex;
  align-items: center;
}

.disable-two-factor-text {
  color: #e35353;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.disable-two-factor-text:hover {
  color: #e35353 !important;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  filter: brightness(60%);
}

.video-modal {
  position: fixed;
  display: none;
  padding: 20px;
  z-index: 100;
  width: 60vw;
  height: 40vh;
  left: 20vw;
  background: #000;
  top: 20vh;
  border-radius: 3px;
  transition: all 0.5s ease-in;
}

.modal {
  background-color: rgb(73, 75, 86, 0.9);
}

.text-lightGrey {
  color: lightgray !important;
}

.text-black {
  color: black !important;
}

.text-blue {
  color: blue;
}

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

.chat-bubble {
  max-height: 50px;
  width: auto;
}

.logo-width {
  width: 400px;
}

/* login */

.over-lay-login {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  background-size: cover;
  background-position: center;
  padding-top: 5%;
  padding-bottom: 5%;
  position: absolute;
  z-index: 99;
  position: fixed;
}

.btn {
  text-transform: uppercase;
}

.btn-border {
  border-radius: 25px;
  min-width: 110px;
  line-height: 16px;
  padding: 11px 23px;
}

.btn a {
  width: 110px;
  font-size: 16px;
  padding: 11px 23px;
}

.btn-border a:hover {
  text-decoration: none !important;
}

.btn-light a:hover {
  color: black;
}

.btn-dark {
  background-color: #494a56;
}

.bg-transparent {
  background-color: transparent;
}

.border-none {
  border: none;
}

/* background colours */

.bg-lgrey {
  background-color: #f7f7f7;
  padding: 50px;
}

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: #494a56;
}

.bg-lgblue {
  background-color: #edf1f7;
}
.change-color {
  color: white;
}

/* activation */

.act-class {
  background-color: rgb(73, 75, 86, 0.9);
}

/* remove astrisk from forms */

.asteriskField {
  display: none;
}


.bg-nav,
.bg-clouds {
  background-repeat: no-repeat;
  background-position: 15% 45%;
  background-attachment: fixed;
  height: 200px;
}

.bg-nav {
  height: 60px;
}

@media only screen and (max-width: 420px) {
  .instant-h4 {
    font-size: 20px;
  }
}

.alert {
  text-align: center;
  border-radius: 0;
}

.btn a {
  font-size: 16px;
}

.btn-pos {
  padding-left: 90vw !important;
  position: absolute;
  top: 0;
  height: 50px;
}

a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1200px) {
  .thank-you {
    height: 300px;
  }
}
@media only screen and (min-width: 381px) and (max-width: 740px) {
  h2 {
    font-size: 42px;
  }
}

@media only screen and (max-width: 380px) {
  .ts-small-screens {
    height: 500px;
    background-position: 90%;
  }
  .change-color {
    font-size: 1.2rem;
  }
  .bg-nav {
    background: linear-gradient(#757686, #a5a9c0);
  }
  h2 {
    font-size: 40px;
  }
  .bg-clouds {
    background-size: inherit !important;
  }
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (min-width: 381px) and (max-width: 600px) {
  .change-color {
    font-size: 1.2rem;
  }
  .ts-small-screens {
    height: 400px;
    background-position: 90%;
  }
  .padding-extra {
    padding-top: 10%;
  }
  .bg-inst {
    height: 600px;
  }
}

.cir {
  text-align: center;
  display: table;
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.circle-white,
.circle,
.circle-solid {
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.circle-solid {
  background-color: black;
}

.circle {
  background-color: transparent;
  border: 1px solid black;
}

.circle-white {
  background-color: white;
  border: 1px solid black;
}

td,
th {
  text-align: center;
}

#id_phone_no_0 {
  width: 100% !important;
}

.border-highlight {
  border: green 4px solid;
}

.footer-border {
  border-left: solid white 1px;
  padding-left: 50px;
}

@media only screen and (max-width: 768px) {
  .footer-border {
    padding-left: 1.5rem;
    border: 0;
  }
  .change-color {
    font-size: 1.5rem;
  }
  .ts-small-screens {
    height: 440px !important;
    background-position: 90% bottom;
  }
  .modal-dialog {
    top: 5vh;
    height: auto;
    background-color: transparent !important;
    border: none;
    margin: auto;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
  .padding-extra {
    padding-top: 120px;
  }
  .nav-circles {
    padding-top: 10%;
  }
  .modal-dialog.two-factor {
    max-width: 600px;
  }
}

/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {
  .padding-extra {
    padding-top: 120px;
  }
  .nav-circles {
    padding-top: 10%;
  }
  .modal-dialog.two-factor {
    max-width: 700px;
  }
}

@media only screen and (min-width: 992px) {
  .nav-circles {
    padding-top: 10%;
  }
  .padding-extra {
    padding-top: 85px;
  }
  .bg-lgrey {
    padding-top: 75px;
  }
  .modal-dialog.two-factor {
    max-width: 900px;
  }
}

@media only screen and (min-width: 1200px) {
  .modal-dialog.two-factor {
    max-width: 1000px;
  }
}
