.modal {
  position: fixed;
  z-index: -1;
  left: -9999999999999px;
  opacity: 0;
  top: 0;
  transition: opacity .3s ease-in;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal.visible {
  opacity: 1;
  left: 0;
  z-index: 999;
  display: flex !important;
}

.modal .modal-wrap {
  background-color: #fff;
  width: 90%;
  max-width: 800px;
}

.modal .close-modal {
  position: relative;
}

.modal .close-modal .close {
  position: absolute;
  right: 0;
  top: -15px;
  width: 20px;
  height: 20px;
  opacity: 0.3;
  content: " ";
  border: 1px solid #333;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal .close-modal .close:hover {
  opacity: 1;
}

.modal .close-modal .close:before,
.modal .close-modal .close:after {
  position: absolute;
  left: 8px;
  content: ' ';
  height: 12px;
  width: 2px;
  background-color: #333;
}

.modal .close-modal .close:before {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal .close-modal .close:after {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal .modal-header {
  background-color: #f2f2f2;
  padding: 30px 10px;
  text-align: center;
  border-radius: 100%/0 0 80px 80px;
  box-shadow: 0px 6px 0px white;
}

.modal .modal-header .light-bold-heading {
  margin: 0;
  padding: 0;
  font-weight: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal .modal-header .light-bold-heading img {
  width: 30px;
}

.modal .modal-header .light-bold-heading .bold {
  font-weight: 900;
}

.modal .modal-body {
  padding: 20px;
  max-width: 600px;
  margin: 10px auto 20px;
  height: auto;
  max-height: 600px;
  overflow-y: scroll;
}

.modal .modal-processing {
  text-align: center;
  height: 470px;
  display: none;
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal .modal-processing.visible {
  display: -ms-flexbox;
  display: flex;
}

.modal .modal-processing img {
  max-width: 100px;
}

.modal .modal-processing .mosh-loading-spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 3px solid #ccc;
  border-top-color: #000;
  animation: mosh-spinning .6s linear infinite;
}

@keyframes mosh-spinning {
  to {transform: rotate(360deg);}
}

.modal .return-link {
  margin-bottom: 20px;
}

.modal table {
  border: 1px solid #e5e5e5;
  width: 100%;
}

.modal table tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}

.modal table .deactivate-col {
  text-align: right;
}

.modal table .deactivate-col .button {
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  font-weight: 100;
}

.modal table .deactivate-col .button.disabled,
.modal table .deactivate-col .fl-module-content .cp-pricing-table .action .button.disabled:hover,
.fl-module-content .cp-pricing-table .action .modal table .deactivate-col .button.disabled:hover,
.modal table .deactivate-col .fl-module-content .cp-pricing-table .action .button.disabled:focus,
.fl-module-content .cp-pricing-table .action .modal table .deactivate-col .button.disabled:focus {
  background-color: #e5e5e5;
  pointer-events: none;
}

