.divided-screens .instructions-table {
  font-family: 'Maven Pro', sans-serif !important;
  -moz-osx-font-smoothing: grayscale;
  color: #526b84;
  width: 25%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
}

.divided-screens .instructions-table .steps-heading {
  font-size: 10px;
  letter-spacing: .2px;
  text-transform: uppercase;
  opacity: .7;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 5px;
}

.divided-screens .instructions-table .steps_list {
  display: block;
  list-style-type: none;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-title {
  font-size: 13px;
  position: relative;
  padding-left: 5px;
  font-weight: 700;
  margin-bottom: 7px;
  margin-top: 1rem;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0 8px 15px;
  min-height: 40px;
  margin-bottom: 5px;
  border-radius: 5px;
  list-style-type: none;
  font-size: 13px;
  background: #f3f3f3b7;
  position: relative;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 18px;
  position: relative;
  width: 100%;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-data .steps-text {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  top: 4px;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-data .steps-command {
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  margin-top: 0;
  display: block;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  height: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  color: #555;
  line-height: 18px;
  top: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 85%;
  overflow: hidden;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 12px;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action .steps-dot {
  background: #354765;
  width: 13px;
  height: 13px;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action .steps-dot .steps-try {
  position: absolute;
  background: #404E56;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10px;
  padding: 4px 7px;
  font-size: 9px;
  font-weight: 700;
  border-radius: 2px;
  top: -32px;
  -webkit-animation: tryMe 2s ease infinite;
          animation: tryMe 2s ease infinite;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action .steps-dot .steps-try::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-color: #354765 transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0;
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action .steps-dot.is-pulsed {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 0 #909504;
          box-shadow: 0 0 0 0 #909504;
  -webkit-animation: pulse 0.9s cubic-bezier(0.17, 0.67, 0.92, 0.62) infinite;
          animation: pulse 0.9s cubic-bezier(0.17, 0.67, 0.92, 0.62) infinite;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action .steps-dot.is-pulsed::after {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  border-radius: 100px;
  -webkit-box-shadow: 0 0 0 0 #909508;
          box-shadow: 0 0 0 0 #909508;
  z-index: -1;
  -webkit-animation: tryMe 1.7s cubic-bezier(0.62, 0.2, 0.86, 0.53) infinite;
          animation: tryMe 1.7s cubic-bezier(0.62, 0.2, 0.86, 0.53) infinite;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item .steps-action .checked {
  position: absolute;
  width: 11px;
  height: 10px;
  top: 0;
  margin-top: 3px;
  background-image: url("../image/checked.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.divided-screens .instructions-table .steps_list .steps-section .steps-items .steps-item.is-active {
  background-color: #6bc4e8;
  color: #fff;
  cursor: pointer;
}

@-webkit-keyframes tryMe {
  0% {
    top: -32px;
  }
  50% {
    top: -29px;
  }
  100% {
    top: -32px;
  }
}

@keyframes tryMe {
  0% {
    top: -32px;
  }
  50% {
    top: -29px;
  }
  100% {
    top: -32px;
  }
}

@-webkit-keyframes pulse {
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(27, 83, 143, 0.4);
            box-shadow: 0 0 0 0 rgba(27, 83, 143, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(27, 83, 143, 0.1);
            box-shadow: 0 0 0 10px rgba(27, 83, 143, 0.1);
  }
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 #f6deb7;
            box-shadow: 0 0 0 0 #f6deb7;
  }
}

@keyframes pulse {
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(27, 83, 143, 0.4);
            box-shadow: 0 0 0 0 rgba(27, 83, 143, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(27, 83, 143, 0.1);
            box-shadow: 0 0 0 10px rgba(27, 83, 143, 0.1);
  }
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 #f6deb7;
            box-shadow: 0 0 0 0 #f6deb7;
  }
}
/*# sourceMappingURL=instructions.css.map */