
/***************************************************************************/
/** Modal **/
/***************************************************************************/
.pn-modal.fade .modal-dialog {
  -webkit-transform: translate(0, -75%);
  -moz-transform: translate(0, -75%);
  -ms-transform: translate(0, -75%);
  -o-transform: translate(0, -75%);
  transform: translate(0, -75%);
}

.pn-modal.fade.in .modal-dialog {
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pn-modal .modal-dialog {
  width: 802px;
  top: 50%;
  margin: auto;
}

.pn-modal .modal-content {
  padding: 98px 80px;
  border-radius: 0;
  box-shadow: none;
  border: solid 1px #d2d4da;
}

.pn-modal .modal-content.modal-pesquisa-nps {
  padding: 40px;
}

.pn-modal .modal-header {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 20px;
  height: 20px;
  border-bottom: 0;
  padding: 0;
}

.pn-modal .modal-pesquisa-nps .modal-header {
  top: 10px;
  right: 10px;
}

.pn-modal .modal-header button {
  font-size: 20px;
  color: #5a5b5f;
  opacity: 1;
}

.pn-modal .modal-header button:hover {
  opacity: 1;
}

.pn-modal .modal-body {
  padding: 0;
  width: 100%;
}

/**  Modal Background**/
.modal-backdrop.in {
  background: #a7a8ac;
  opacity: 0.3;
  z-index: -1;
}

/** Modal Aviso **/
.pn-modal.modal-aviso .modal-dialog {
    width: 720px;
}

.pn-modal.modal-aviso .modal-content {
    width: 722px;
    padding: 40px 40px;
}

.pn-modal.modal-aviso .modal-header {
    top: 10px;
    right: 10px;
}

.pn-modal.modal-aviso .modal-body img {
    height: auto;
    max-width: 100%;
    max-height: 480px;
}

/** Checkbox Modal **/
.pn-modal .checkbox-container {
    font-size: 14px;
    font-weight: 400;
    display: block;
    position: relative;
    margin-top: 15px;
    margin-bottom: 0px;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Checkbox Modal - Hide the browser's default checkbox */
.pn-modal .checkbox-container .checkbox-view {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Checkbox Modal - Custom checkbox */
.pn-modal .checkbox-container .custom-checkbox {
    width: 15px;
    height: 15px;
    display: block;
    border: 1px solid #a7a8ac;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    left: 0;
}

/* Checkbox Modal - Create the checkmark/indicator (hidden when not checked) */
.pn-modal .checkbox-container .custom-checkbox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Checkbox Modal - Show the checkmark when checked */
.pn-modal .checkbox-container input:checked ~ .custom-checkbox:after {
    display: block;
}

/* Checkbox Modal - Style the checkmark/indicator */
.pn-modal .checkbox-container .custom-checkbox:after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #4D4E53;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}