/*
body {
  background-color: #6D5959;
}

body * {
  font-family: 'Montserrat' sans-serif;
}

button {
  background-color: #93E1D8;
  border: none;
  display: block;
  margin: 35px auto;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
}

.wrap {
  width: 100%;
  margin: 0 auto;
}
*/

.mat-label {
  display: block;
  font-size: 30px;
  transform: translateY(60px);
  color: #b1dbc3;
  transition: all 0.5s;
  text-align: center;
}

.mat-input {
  position: relative;
  background: transparent;
  width: 100%;
  border: none;
  outline: none;
  padding: 8px 0;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  color: #00aa44;
}

.mat-div {
  /* padding: 30px 0 0 0; */
  position: relative;
}

.mat-div:after, .mat-div:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #b1dbc3; 
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}

.mat-div::after {
  background-color: #00aa44;
  transform: scaleX(0);
}

.is-active::after {
  transform: scaleX(1);
}

.is-active .mat-label {
  color: #00aa44;
}

.is-completed .mat-label {
  font-size: 25px;
  transform: translateY(0);
}

/*
html,body{background-color:#2b2a2a;}

.container {
  width: 200px;
  height: 100%;
  margin: 0 auto 0;
}
*/

.pulse-button {

  position: fixed;
  width: 100px;
  height: 100px;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  left: 50%;
  border: none;
  box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
  border-radius: 50%;
  /* background-color: #e84c3d; */
  background-size:cover;
  background-repeat: no-repeat;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse-pulse {
  color:red; 
  position:fixed; 
  top: 50%;
  left: 50%;
  transform: translateY(-45%) translateX(-50%);
}

/*
.pulse-button:hover 
{
  -webkit-animation: none;-moz-animation: none;-ms-animation: none;animation: none;
}
*/

.loading{
  position: fixed;
  opacity:.7;
  left: 0px;
  top: 60px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgb(249,249,249);
  display:none;
}


@-webkit-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-moz-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@-ms-keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);}}

.survei-error {
    color: red;
    font-weight: bold;
}

input[type="radio"] {
    width: 15px;
    height: 15px;
}