@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

body{
  font-family: 'Montserrat', sans-serif  !important;
  word-break: break-word;
}

.text-title{
  font-weight: 500;
  font-size: 35px;
  line-height: 43px;
  text-transform: uppercase;
}
.text-display{
  font-weight: 500;
  font-size: 25px;
  line-height: 178.4%;
}
.text-form-title{
  font-weight: normal;
  font-size: 30px;
  line-height: 37px;
}
.text-button{
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
}
.text-50{
  font-size: 50px;
  line-height: 61px;
}
.text-35{
  font-size: 35px;
  line-height: 40px;
}
.text-30{
  font-size: 30px;
  line-height: 37px;
}
.text-20{
  font-size: 20px;
  line-height: 24px;
}
.text-25{
  font-size: 25px;
  line-height: 30px;
}
.text-15{
  font-size:15px;
  line-height: 18px;
}
.text-13{
  font-size: 13px;
  line-height: 16px;
}
.text-12{
  font-size: 12px;
  line-height: 14px;
}
.text-10{
  font-size: 10px;
  line-height: 15px;
}
.text-8 {
  font-size: 8px;
  line-height: 10px;
}

.text-align-last-center{
  text-align-last: center;
}
.cta-outline{
  border: 2px solid #FFFBFB;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  &:hover{
    background-color: #1E2B2F;
    border: 2px solid transparent;
  }
}
.cta-solid-orange{
  background-color: #E98234;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
  &:hover{
    background-color: #D98234;
  }
}
.bg-blockchain{
  background: linear-gradient(180deg, rgba(61, 63, 63, 0) 53.9%, #08090B 97.52%), linear-gradient(177.63deg, #08090B 10.26%, rgba(16, 18, 19, 0.02) 94.38%), url(../assets/blockchain.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-active{
  background: linear-gradient(90deg, #D7EEFF 2.34%, #FFDECC 98.76%);
}
.bg-active-hover:hover{
  background: linear-gradient(90deg, rgba(219, 240, 255, 0.6) 2.34%, rgba(255, 228, 214,0.6) 98.76%);
}
.box-shadow-nav{
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.box-shadow-nav-top{
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
}
.box-shadow-footer{
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.25);
}
.box-shadow-hover:hover {
  box-shadow: 1px 1px 13px 0 rgba(191, 140, 99, 0.5);
}


.css-1csacx4{
  background-image: linear-gradient(90deg, #D7EEFF 2.34%, #FFDECC 98.76%) !important;
  height: 9px !important;
}
button.disabled {
  opacity: 0.65; 
  cursor: not-allowed;
}
button.loading{
  opacity: 0.65; 
  cursor: progress;
}
nav{
  .active{
    position: absolute;
    bottom: 0;
    width: calc(100% - 2rem);
    height: 5px;
    background: linear-gradient(90deg, #D7EEFF 2.34%, #FFDECC 98.76%);
    border-radius: 5px;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .mini-menu-active{
    background: linear-gradient(90deg, #D7EEFF 2.34%, #FFDECC 98.76%);
  }
}
.w-45prs{
  width:100%;
  @media (min-width: 640px) {
    width:47%;
  }
  @media (min-width: 1280px) { 
    width: 45%;
  }
}

.w-45p{
  width:100%;
  @media (min-width: 768px) {
    width:47%;
  }
  @media (min-width: 1280px) { 
    width: 45%;
  }
}

html { overflow-y: scroll; }

::-webkit-scrollbar {
  width:5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #E98234; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #D98234; 
}
iframe{
  flex-grow: 1;
}
.identicon{
  canvas{
    width: 25px;
    height: 25px;
  }

}

/* Checkbox style */


:root{
  --tw-bg-opacity    : 1;
  --orange-400       : #f6ad55;
  --orange-500       : rgba(233, 130, 52, var(--tw-bg-opacity));
  --orange-600       : rgba(217, 130, 52, var(--tw-bg-opacity));
  --gray-200         : rgba(229, 231, 235, var(--tw-bg-opacity)); 
  --disable-gray     : hsl(0deg 0% 60%);
  --page-background  : white;
}

.custom-checkbox {
  user-select  : none;
}

.custom-checkbox input {
  position  : absolute;
  opacity   : 0%;
  z-index   : -1;
}

.custom-checkbox label {
  cursor  : pointer;

  display      : flex;
  align-items  : center;

  padding-left  : 25px;
  margin-bottom: 0px;
}

/* ::before for checkbox frame */
.custom-checkbox label::before {
  content  : ' ';

  position  : absolute;

  height  : 18px;
  width   : 18px;

  transform  : translate(-25px, 0px);

  border         : 2px solid lightgray;
  border-radius  : 2px;

  transition  : all 0.1s ease-out;
}

/* ::after for checkbox OK symbol inside the frame */
.custom-checkbox label::after {
  content  : ' ';

  position  : absolute;

  height  : 6px;
  width   : 10px;

  transform  : translate(-21px, -1px) rotate(-45deg);
}

/* Checked (enabled) */
.custom-checkbox input:not(:disabled):checked+label::before {
  background-color  : var(--orange-500);
  border-color      : var(--orange-500);
}

.custom-checkbox input:checked+label::after {
  border-bottom  : 3px solid var(--page-background);
  border-left    : 3px solid var(--page-background);
}

/* Active, Hover (enabled) */
.custom-checkbox input:not(:disabled)+label:hover::before,
.custom-checkbox input:not(:disabled)+label:active:before {
  border-color  : var(--orange-500);
}

/* Focus border */
.custom-checkbox input:focus+label::before {
  box-shadow  : 0 0 0px 2px var(--page-background), 0 0 0px 4px var(--orange-600);
}

/* Disabled */
.custom-checkbox input:disabled+label {
  color  : var(--disable-gray);
}

/* Checked (disabled) */
.custom-checkbox input:disabled:checked+label::after {
  border-bottom  : 3px solid var(--disable-gray);
  border-left    : 3px solid var(--disable-gray);
}

/* Custom progress bar active styling, no steps */
.progress-active-text {
  color: white;
  padding: 5px;
  text-align: right;
  font-size: 1rem;
}

.progress-active {
  // animation: progress-active 1s ease-in-out;
  background: linear-gradient(90deg,var(--orange-500),var(--orange-500),var(--orange-500),var(--orange-400),var(--orange-500),var(--orange-500),var(--orange-500));
  background-size: 300% 100%;
  animation: progress-animation 2s linear infinite;
}

@keyframes progress-animation {
  0% { background-position: 100% }
  100% { background-position: 0% }
}

/* Custom progress bar styling with steps */
.progress-step-bar {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.progress-bar-step {
  list-style: none;
  position: relative;
  text-align: center;
  flex: 1 1 auto;
  position: relative;
}

.progress-bar-step{
  display: flex;
  justify-content: end;
  &::before {
    content: '';
    position: absolute;
    top: 50%;
    height: 3px;
    width: 100%;
    transform: translateY(50%);
    z-index: -1;
    background: linear-gradient(to left, var(--gray-200) 50%, #E98234 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 200ms ease-in-out;
  }
  &:first-child{
    flex-grow: 0;
    &::before {
      content: none;
    }
  }
}
.progress-bar-step .step-circle {
  background-color: var(--gray-200);
  color: var(--text-normal);
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  line-height: 1rem;
  display: inline-flex;
  transform-origin: center;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  box-shadow: inset 0 0 0 1px white;
}
.step-circle {
  transition: background-color 250ms ease;
  transform: translateY(17.5%);
}
.progress-bar-step .step-label {
  color: var(--text-normal);
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}
.progress-bar-step .step-label-subtitle {
  display: block;
}
.progress-bar-step.completed .step-circle {
  background-color: var(--orange-500);
  border: 1px solid var(--orange-500);
  box-shadow: inset 0 0 0 1px white;
}
.progress-bar-step.current .step-circle {
  background-color: var(--orange-500);
  border: 1px solid var(--orange-500);
  box-shadow: inset 0 0 0 1px white;
}
.progress-bar-step.completed::before,
.progress-bar-step.current::before,
.progress-bar-step.has-error::before {
  background-position: left bottom;
}

/* HistorySidebar */
.hs-max-width {
  max-width: 75%;;
}