/* imports */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* Global */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  background: #FFFFFF;
  color: #010101;
}

button {
  cursor: pointer;
}

@-webkit-keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

span.ovrtm-spinner {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 100%;
  border-top: 2px solid #FFC815;
  border-bottom: 2px solid #FFC815;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  -webkit-animation: spinner-rotate 2s linear infinite;
  animation: spinner-rotate 2s linear infinite;
}

/* Framework */
.ovrtm-wrapper {
  background: #1D1D1D;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 -20px;
  position: relative;
  flex-wrap: wrap;
  flex-direction: row;
}

.row-reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  margin: 0;
  padding: 20px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.column-fh {
  height: 100vh;
}

/* Vertical Alignment */
.valign-top {
  align-items: flex-start;
}

.valign-bottom {
  align-items: flex-end;
}

.valign-center {
  align-items: center;
}

.valign-stretch {
  align-items: stretch;
}

/* Horizontal Alignment */
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

/* Typography */
.title {
  font-size: 40px;
  font-weight: 600;
  line-height: 140%;
}

.subtitle {
  font-size: 32px;
  font-weight: 600;
  line-height: 140%;
}

.heading,
.input-group > label {
  font-size: 17px;
  font-weight: 600;
  line-height: 140%;
}

/* Buttons */
a:not(.btn):visited {
  color: inherit;
}

.btn > svg {
  margin-left: 15px;
  margin-right: 0;
  -webkit-transition: all ease 350ms;
  -o-transition: all ease 350ms;
  transition: all ease 350ms;
}

.btn > span {
  margin-left: 0;
  -webkit-transition: all ease 350ms;
  -o-transition: all ease 350ms;
  transition: all ease 350ms;
}

.btn:not(.btn-square):hover > svg {
  margin-left: 5px;
  margin-right: 5px;
}

.btn:not(.btn-square):hover > span {
  margin-left: 5px;
}

.ig-submit > button {
  width: 100%;
  justify-content: center;
}

.btn {
  height: 50px;
  display: flex;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  justify-content: space-between;
  padding: 7.5px 15px;
  text-decoration: none;
}

.btn-black {
  background-color: #010101;
  color: #FCFCFC;
}

.btn-yellow {
  background-color: #FFC815;
  color: #010101;
}

.btn-red {
  background: #EC3D3D;
  color: #fcfcfc;
}

.btn-grey {
  background-color: #ececec;
  color: #010101;
}

.btn-plain-text {
  background: transparent;
  border: none;
  outline: none !important;
  padding: 0;
  font-weight: 400;
  font-family: 'Urbanist';
}
