:host {
    width: 100%;
    /* display: none; */
}

.overlay {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
}

.flex-r {
    display: flex;
    flex-direction: row;
}

.flex-c {
    display: flex;
    flex-direction: column;
}

.space-around {
    justify-content: space-around;
}

.space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.modal-cont {
    width: 90%;
    height: 89%;
    z-index: 2005;
    margin: 2% 5%;
}

.container {
    z-index: 2005;
    height: 100%;
    padding: 5px 30px;
    background-color: #FEFEFE;
    border-radius: 2px;
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
}

.header {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 75px;
    margin: 10px;
}

.title {
    height: 28px;
    color: #1899C4;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 300;
    margin-left: 30px;
}

.horizontal-divider {
    box-sizing: border-box;
    height: 1px;
    width: 100%;
    border: 1px solid #EFEEEE;
    margin: 5px;
}

.main {
    height: calc(100% - 180px);
    justify-content: space-between;
}

.cent {
    justify-content: center;
}

.step {
    margin: 10px;
    align-items: center;
    justify-content: space-between;
}

.step.large {
    width: 55%;
}
.step.normal {
    width: 40%;
    height: 100%;
}

.step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F1F1F1;
    position: absolute;
    top: 10%;
    left: 10%;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-weight: bold;
    line-height: 40px;
}

.step .step-number-border {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #FFFFFF;
    margin: 20px 0px;
    position: relative;
    border: solid #F1F1F1;
}

.step .step-img {
    width: 100%;
}

.low-img{
  width: 0%;
  opacity: 0;
    transition: 
      width 0.5s 1s,
      opacity 0.5s 1s;
}

.high-img{
  width: 100%;
  opacity: 1;
    transition:
      width 0.5s 1s,
      opacity 0.5s 1s;
}

#low{
  width: 100%;
  opacity: 1;
}

#high{
  width: 0%;
  opacity: 0;
}

.step .step-desc {
    color: #63666A;
    font-family: Roboto;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin: 5px;
    width: 50%;
}

.or-label {
    justify-content: center;
    height: 100%;
}

.footer {
    width: 100%;
    height: 75px;
    align-items: center;
}

.close-btn {
    padding: 10px;
    cursor: pointer;
    color: #FFF;
    background: #C00;
    border: 1px solid #C00;
    border-radius: 4px;
    width: 72px;
}