/* CSS Document */
.confirmbox {
  background: rgba(0, 0, 0, 0.3);
  z-index: 99999999999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  margin: auto;
}

.confirmbox .content {
  background-color: #fff;
  position: absolute;
  box-shadow: 4px 4px 9px 0px rgba(50, 50, 50, 0.36);
}

.confirmbox .content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 21px;
  line-height: 20px;
  cursor: pointer;
  transition: transform 0.2s linear;
}

.confirmbox .content .close:hover {
  transform: scale(1.1);
}

.confirmbox .content .title {
  font-size: 18px;
  font-weight: 500;
  color: #272727;
  padding: 20px 20px 0px 20px;
}

.confirmbox .content .text {
  padding: 20px;
  font-size: 16px;
  color: #272727;
  line-height: 24px;
}

.confirmbox .content .text > input:is([type=text], [type=password]) {
  padding: 10px;
  color: #5a5a5a;
  width: 100%;
  border: solid 1px #5a5a5a;
}

.confirmbox .content .text > input:is([type=text], [type=password]):focus {
  color: #4576a8;
}

.confirmbox .content .text > label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.confirmbox .content .buttons {
  width: 100%;
  padding: 20px;
}

.confirmbox .content .buttons .btn {
  float: left;
  margin-right: 15px;
  cursor: pointer;
  font-size: 14px;
}

.confirmbox .content .buttons .btn.ok,
.confirmbox .content .buttons .btn.confirm {
  background-color: #1fb9ee;
  color: #fff;
  border-radius: 30px;
  height: 40px;
  line-height: 40px;
  padding: 0px 20px;
  transition: background-color 0.2s linear;
}

.confirmbox .content .buttons .btn.ok:hover,
.confirmbox .content .buttons .btn.confirm:hover {
  background-color: #80d8f6;
}

.confirmbox .content .buttons .btn.cancel {
  float: left;
  color: #d32222;
  font-weight: 500;
  padding: 0px;
  transition: color 0.2s linear;
}

.confirmbox .content .buttons .btn.cancel:hover {
  color: #272727;
}

@media (max-width: 1194px) {
  /* A */
}
@media (max-width: 991px) {
  /* B */
}
@media (max-width: 767px) {
  /* C */
}
@media (max-width: 479px) {
  /* D */
  .confirmbox .content {
    width: 95% !important;
  }
  .confirmbox .content .buttons .btn {
    margin: 0px;
  }
  .confirmbox .content .buttons .btn.confirm {
    float: left !important;
  }
}