.disable,
.disable>input[type="text"] {
  cursor: not-allowed;
  user-select: none;
}

:root {
  --primary-color: #f8ae1a;
  --dark-primary-color: #de9605;
  --secondary-color: #fff;
  --primary-font: "Open Sans", system-ui;
  --secondary-font: "Raleway", system-ui;
  --grey-color: #eee;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}

*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
}

p {
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul {
  padding-left: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select {
  border: none;
  outline: 0;
}

textarea {
  resize: none;
}

.disable {
  opacity: 0.5;
}

.mdtp__clock,
.mdtp__time_holder,
.mdtp__wrapper {
  background-color: #2e2e2e !important;
  color: #fff !important;
}

section.mdtp__clock_holder {
  background-color: #1e1e1e;
}

.mdtp__clock span.mdtp__clock_dot,
div.mdtp__digit.active:before {
  background-color: var(--primary-color);
}

.mdtp__clock span.mdtp__am.active,
.mdtp__clock span.mdtp__pm.active {
  color: #fafafa;
  background-color: var(--primary-color);
}

.mdtp__clock span.mdtp__am,
.mdtp__clock span.mdtp__pm {
  background: #fff;
  color: #000;
  transition: 0.3s;
}

.mdtp__clock span.mdtp__am:hover,
.mdtp__clock span.mdtp__pm:hover {
  background: #ffffffdc;
}

div.mdtp__clock .mdtp__digit:not(.digit--disabled) span:hover,
div.mdtp__digit.active span {
  background: var(--primary-color) !important;
}

.mdtp__button {
  color: var(--primary-color) !important;
}

.mdtp__wrapper {
  bottom: unset !important;
}

/* Text */

.title h2 {
  font-size: 48px;
  font-weight: 900;
  color: #101f46;
  text-transform: uppercase;
}

.title h3 {
  font-size: 35px;
  font-weight: 900;
  color: #101f46;
}

.sub-heading {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.sub-heading h5 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.text-white h2 {
  color: #fff;
}

.text-primary {
  color: var(--primary-color) !important;
}

.abstract::before {
  content: '';
  display: inline-block;
  height: 25px;
  width: 25px;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: -5px;
  z-index: -1;
}

.text p {
  font-size: 16px;
  color: #1e1e1e;
  line-height: 1.5;
}

.text li {
  font-size: 17px;
}

.text h4 {
  color: #1e1e1e;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 10px;
}


.line {
  display: inline-block;
  width: 70px;
  background: var(--primary-color);
  height: 2px;
}


@media (max-width: 768px) {

  .invalid-overlay .content {
    padding: 20px;
    height: 100%;
  }

}

.outline-btn {
  border-radius: 5px;
  color: #fff;
  line-height: 1;
  border: 1px solid transparent;
  background-color: #ffc107;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 16px;
  transition: all 500ms ease;
  padding: 10px 15px;
}

.outline-btn:hover {
  color: #fff;
  background-color: #ffd556;
  box-shadow: 0 0 20px rgb(255 213 86);
}

.outline-btn i{
  margin-left: 5px;
}