@font-face {
    font-family: "Montserrat";
    src: url(../fonts/Montserrat.ttf) ;
    font-weight: 100 1000;
}
body {
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #f4f4f4;
}
.intro {
    z-index: 999;
    background: #fff;
    position: absolute;
    width: 100vw;
    height: 100vh;
}
.loading {
    width: 270px;
    height: 270px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
}
table {
    width: 100%;
}
th {
    text-align: left;
}
tr td {
    padding: 10px;
}
.wrapper {
    margin: 0 auto;
    max-width: 600px;
    padding: 10px;
}
.head_row {
    display: flex;
    margin: 10px;
    font-weight: 600;
    padding: 15px 15px;
    border-radius: 50px;
}
.user_row {
    background-color: #254441;
    color: #fff;
    display: flex;
    margin: 10px;
    padding: 15px 15px;
    border-radius: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.red {
    background-color: #DB504A;
    color: #fff;
    font-weight: 500;

}
.user {
    width: calc(100% - 400px);
}
.duration {
    width: 200px;
    text-align: right;
}
.total {
    width: 200px;
    text-align: right;
}


.scale-up-center {
	-webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.fade-out {
	-webkit-animation: fade-out 2s ease-out both;
	        animation: fade-out 2s ease-out both;
}

 @-webkit-keyframes fade-out {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    50% {
        opacity: 1;
      }
    100% {
      opacity: 0;
    }
  }
  
 @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  