@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
   padding: 0px;
   margin: 0px;
   background-color: #f0523d;
}
table {
    border-spacing: 0px;
 }
 td { font-family: 'Poppins', 'Arial'; font-size: 1em; padding: 0px; }
 div { font-family: 'Poppins', 'Arial'; font-size: 1em; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; outline: none; }

 .responsive-flex {
    display: flex;
 }
 .responsive-flex-column {
    flex: 1;
 }
 @media all And (min-width: 880px) {
    .responsive-flex { flex-direction: row; }
 }
 @media all And (max-width: 880px) {
    .responsive-flex { flex-direction: column; }
 }
 .standard-button { display: inline-block; width: 150px; height: 40px; border-style: none; border-radius: 5px; background-color: #385c7e; box-sizing: border-box; -webkit-box-sizing:border-box; -moz-box-sizing: border-box; font-family: 'Poppins', 'Arial'; font-size: 1em; text-align: center; color: #ffffff; margin: 0px; padding: 0px; -webkit-appearance: none; outline: none; }
 .standard-button:hover:active:focus { opacity: .8; }
 .standard-button:disabled { cursor: default; opacity: .4; }
 .link-button { display: block; flex: 1; width: 100%; line-height: 50px; color: #000000; text-align: center; text-decoration: none; box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; }
 .link-button:hover:active:focus { opacity: .8; }
 .link-button:disabled { cursor: default; opacity: .4; }
 *::-webkit-input-placeholder { color: #a9a9a9; }
 *:-moz-placeholder { color: #e1e1e1; }
 *:-ms-input-placeholder { /* IE10+ */ color: #a9a9a9; }

  /* Material Button */
 .light-button {
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-style: none;
    border-radius: 4px;
    background-color: inherit;
    transition: transform 0.2s ease-in-out;
}
.light-button:hover {
    background-color: #e1e1e1;
}

 /* Material Text */
.material-text-container {
  position: relative;
  flex: 1;
  padding: 15px 0 0;
  border-radius: 4px 4px 0px 0px;
  background-color: transparent;
}
.material-text {
  width: 100%;
  font-size: 1em;
  font-family: 'Roboto', 'Arial';
  color: #414141;
  padding: 12px 4px 8px 4px;
  outline: none;
  box-sizing: border-box;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #414141;
  border: 0;
  border-bottom: 2px solid #eeeeee;  
}
.material-text-label {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: rgba(65,65,65,0.5);
  pointer-events: none;
}

/* Material Input */
.material-input-container {
  position: relative;
  flex: 1;
  padding: 15px 0 0;
  border-radius: 4px 4px 0px 0px;
  background-color: #f6f6f6;
}
.material-input {
  all: initial;
  width: 100%;
  height: 40px;
  border: 0;
  border-bottom: 2px solid #eeeeee;
  font-size: 1em;
  font-family: 'Roboto', 'Arial';
  color: #414141;
  opacity: 1;
  padding: 12px 4px 4px 4px;
  background-color: transparent;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
  text-align: left;
  autocomplete: off;
}
.material-input[type="date"] {
  display: block;
  align-items: left;
  text-align-last: left;
  -webkit-appearance: textfield;
}
.material-input:focus {
  border-bottom: 2px solid #414141;
  color: #414141;
}
.material-input-label {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  transition: 0.2s;
  font-size: 12px;
  color: rgba(65,65,65,0.5);
  pointer-events: none;
}
.material-input-selector {
  display: none;
  position: absolute;
  width: 100%;
  top: 58px;
  background-color: #bcc6d7;
  padding: 0px 5px 5px 5px;
  z-index: 1999;
  border-radius: 5px;
  box-sizing: border-box;
}
.material-input-link {
  position: absolute;
  top: 16px;
  right: 0px;
  height: 40px;
  width: 40px;
  padding: 12px;
  background-color: transparent;
  background-image: url('../icons/next_414141.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  border: 0;
  opacity: 1;
  transition: 0.2s;
  outline: none;
  cursor: pointer;
}
.material-input-link:hover {
  opacity: 0.7;
}

.popup-pulse {
  animation: popup-pulse 1.5s infinite;
}
@keyframes popup-pulse {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(0.75); }
  100% { filter: brightness(1); }
}