.op-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 9999;
}

.op-popup--hidden {
  display: none;
}

.op-popup__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 640px;
  height: 530px;
  max-width: 90%;
  padding: 25px;
}

.op-popup__close {
	font-family: Arial;
	font-weight: bold;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.op-popup__content {
  float: left;
  width: 100%;
  height: calc(100% - 150px);
  padding: 10px;
  border: 1px solid #000;
  overflow: auto;
}

.op-popup__content a {
  color: #001e50;
  text-decoration: underline;
}

.op-popup__header {
  height: 50px;
  line-height: 50px;
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 400;
}

.op-popup__actions {
  width: 100%;
  height: 50px;
  margin-top: 25px;
  float: left;
}

.op-popup__button {
	background-color: #95390E;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	float: right;
	cursor: pointer;
	user-select: none;
	border-radius: 4px;
	padding: 10px 20px;
}

.op-popup__button--disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
@media only screen and (max-width: 768px) {
  .op-popup__close {
    top: 25px;
    right: 25px;
    width: 30px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    background-color: transparent;
    color: #000;
    font-size: 30px;
  }

  .op-popup__container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .op-popup__content {
    width: 100%;
  }

  .op-popup__header {
    font-size: 20px;
  }

  .op-popup__button {
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .op-popup__content {
    padding: 20px;
  }
}
