.modal-pipedrive {
    color: #333;
    font-family: 'Helvetica', arial;
}
  
.modal-pipedrive hr {
    clear: both;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 0;
    border-top: 1px solid #aaa;
}

.modal-pipedrive p {
    margin-bottom: 20px;
}

.modal-pipedrive .btn {
    background: #428bca;
    border: #357ebd solid 1px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 8px 15px;
    text-decoration: none;
    text-align: center;
    min-width: 60px;
    position: relative;
    transition: color 0.1s ease;
}

.modal-pipedrive .btn-close {
    text-decoration: none;
      color: black;
      font-size: 32px;
      min-width: 28px;
      min-height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      display: flex;
      align-items: center;
}

.modal-pipedrive .btn-close:hover {
    color: #919191;
}
  

.modal-pipedrive.active  {
      width: 100vw;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10;
}
  

.modal-pipedrive:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}


.modal-pipedrive.active:before {
    display: block;
}

.modal-pipedrive.active .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    top: 20%;
}

.modal-pipedrive .modal-dialog {
    background: #fefefe;
    border: #333 solid 1px;
    border-radius: 5px;
    margin-left: -200px;
    position: fixed;
    left: 50%;
    top: -100%;
    z-index: 11;
    width: 360px;
    -webkit-transform: translate(0, -500%);
    -ms-transform: translate(0, -500%);
    transform: translate(0, -500%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal-pipedrive .modal-body {
    padding: 20px;
}

.modal-pipedrive .modal-header,
.modal-pipedrive .modal-footer {
    padding: 10px 20px;
}

.modal-pipedrive .modal-header {
      border-bottom: #eee solid 1px;
      display: flex;
      justify-content: space-between;
      align-items: stretch;
}

.modal-pipedrive .modal-header h2 {
    font-size: 20px;
    margin: 0;
      display: flex;
      align-items: center;
}

.modal-pipedrive .modal-footer {
    border-top: #eee solid 1px;
    text-align: right;
}