/* @import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@100;200;300;400;500;600;700;800;900&display=swap'); */

@font-face {
    font-family: 'Recoleta';
    font-style: normal;
    src: url(./Recoleta-Bold.ttf) format('truetype');
}

@font-face {
    font-family: 'Urbanist';
    font-style: normal;
    src: url(./Urbanist-VariableFont_wght.ttf) format('truetype');
}

@font-face {
    font-family: 'AvertaCY';
    font-style: normal;
    src: url(./AvertaCY-Regular.ttf) format('truetype');
}

body {
    font-family: 'AvertaCY', sans-serif;
    /* background-color: #f5f5f5; */
    margin: 0;
    padding: 0;
    overflow: hidden;
}
* {
    box-sizing: border-box;
}
.row {
    width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.padding-10 {
    padding: 10px;
}
.padding-5 {
    padding: 5px;
}
.mr-10 {
    margin-right: 10px;
}
.div-50 {
    width: 50%;
}
.d-flex {
    display: flex;
}
.w-100 {
    width: 100%;
}
.text-center {
    text-align: center;
}
.m-0 {
    margin: 0 !important;
}
.font-700 {
    font-weight: 700;
}
.font-400 {
    font-weight: 400;
}
a {
    text-decoration: unset;
    color: #0e99d2;
}
.text-red {
    color: #ef3333;
}
.padding-bottom-10 {
    padding-bottom: 10px;
}
.padding-right-10 {
    padding-right: 10px;
}
.font-size-12 {
    font-size: 12px !important;
}
.items-center {
    align-items: center;
}
.text-right {
    text-align: right;
}
.active {
    color: #0e99d2;
    font-weight: 600;
}

/********************************************/

.button {
    width: 100%;
    border: none;
    color: #ffffff;
    background: #0e99d2;
    padding: 14px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Urbanist';
    font-style: normal;
    border-radius: 4px;
    line-height: 19px;
    /* margin-bottom: 0.5em; */
}

.display-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.marginTop2r {
    margin-top: 2rem;
}

.heading {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    margin: 0;
    margin-bottom: 0.5em;
    color: #474b50;
}

a {
    color: #0e99d2;
    text-decoration: none;
}

input {
    color: #ccd3d9;
    background: #ffffff;
    border: 1px solid #eeeeee;
    font-family: 'Urbanist';
    font-style: normal;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    width: 100%;
}

input::placeholder {
    color: #ccd3d9;
}

button.danger {
    background: #ef3333;
}

span.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(174, 174, 174, 0.7);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

@keyframes flickerAnimation {
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  @-o-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  @-moz-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  @-webkit-keyframes flickerAnimation{
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
  }
  .animate-flicker {
     -webkit-animation: flickerAnimation 1.4s infinite;
     -moz-animation: flickerAnimation 1.4s infinite;
     -o-animation: flickerAnimation 1.4s infinite;
      animation: flickerAnimation 1.4s infinite;
  }

:root {
    --primary-text-color: #1f2937;
    --secondary-text-color: #6b7280;
    --primary-bg-color: #1671D9;
    --secondary-bg-color: #ffc107;
}