paper-dialog.custom-popup {
  box-sizing: border-box;
  position: absolute;
  bottom: 28px;
  width: 100%;
  height: 58%;
  left: initial;
  padding: 20px 40px 30px 90px;
  min-height: 430px;
  box-shadow: initial;
  margin: initial;
  max-width: none !important;
  max-height: none !important;
  line-height: initial;
}
@media (max-width: 1204px) {
  paper-dialog.custom-popup {
    padding: 20px 40px 30px 40px;
  }
}

.popup-main-container {
  position: relative;
  height: 100%;
  margin: initial;
  padding: initial;
  display: flex;
  overflow: auto;
  flex-direction: column;
  justify-content: space-between;
}

.popup-header {
  display: flex;
  justify-content: flex-end;
  height: 20px;
}

.close-icon {
  height: 15px;
  cursor: pointer;
  color: #8e8e8e;
}

.popup-dec {
  display: flex;
  min-height: 300px;
  margin-bottom: 30px;
  height: 100%;
}

.left-cont {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.right-cont {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-img {
  max-width: 600px;
  max-height: 400px;
  width: 85%;
  height: 100%;
}

.btn-holder {
  display: flex;
}

.previous-btn {
  color: #cc0000;
  height: 38px;
  width: 129px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
  position: relative;
}

.previous-btn:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.red-icon-right {
  height: 20px;
  color: #c00;
}

.next-btn {
  display: flex;
  height: 38px;
  width: 129px;
  border-radius: 20px;
  background-color: #cc0000;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: relative;
  border: none;
}

.next-btn::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

.step-num {
  color: #dbdbdb;
  font-family: Roboto;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 28px;
}

.step-title {
  color: #555555;
  font-family: Roboto;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 18px;
}

.step-desc {
  color: #555555;
  font-family: Roboto;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 30px;
  height: 135px;
}

.popup-title {
  color: #000000;
  font-family: Roboto;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 55px;
}

::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 5px;
  height: 7px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #ccc;
}
