.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: 1s;
  transition-property: all;
  font-family: HelveticaNeue, Arial;
}
.modal.active {
  display: block;
  opacity: 1;
}
.modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 337px;
  height: 175px;
  margin-top: -105px;
  margin-left: -168px;
  padding: 24px 32px;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 6px 30px 0 rgba(80, 74, 35, 0.3), 0 1px 3px 0 rgba(84, 70, 35, 0.13), 0 0 1px 0 rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  z-index: 102;
  transition: all 1s ease-in-out;
}
.modal-default .modal-content {
  height: 180px;
}
.modal .modal-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 17px;
  font-weight: 600;
  font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  letter-spacing: -0.6px;
  text-align: center;
  color: #424241;
}
.modal .modal-text-error {
  margin-bottom: 11px;
  font-family: HelveticaNeue, Arial;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #e15951;
}
.modal .modal-text-custom {
  font-weight: 400;
}
.modal .modal-btn-group {
  position: absolute;
  bottom: 24px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  width: 273px;
}
.modal-default .modal-btn-group {
  height: auto;
}
.modal .modal-btn {
  width: auto;
  height: 38px;
  margin: 0;
  padding-top: 7px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  font-family: HelveticaNeue, Arial;
  letter-spacing: -0.3px;
  text-align: center;
  background-color: #365d6d;
  border: 1px solid #e7e6e5;
  border-radius: 3px;
  cursor: pointer;
}
.modal .modal-btn:hover {
  filter: brightness(50%);
}
.modal .modal-btn:focus {
  outline: none;
  filter: brightness(30%);
}

.notify {
  position: absolute;
  right: 0;
  top: 100px;
  width: 215px;
  height: 100px;
  background-color: white;
  transition: visibility 0s, opacity 0.5s ease-out;
  visibility: visible;
  opacity: 1;
  display: flex;
}

.notify--nonactive {
  visibility: hidden;
  opacity: 0;
  display: none;
}

.notify__text {
  width: 100%;
  text-align: center;
  font-size: 20px;
}

.notify__status {
  width: 10px;
  height: 100px;
}

.notify__status--yes {
  background: green;
}

.notify__status--no {
  background: red;
}

.modal-yes + .modal-no {
  width: 126px !important;
}

.modal-yes {
  width: 126px !important;
}