/* signature pad */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

#yetiBrandingLogo {
    height: 20px;
    margin-right: 10px;
}

.alert-primary {
    position: fixed;
    top: 0px;
    left: 50%;
    z-index: 9999;
    border-radius: 0px;
    transform: translate(-50%, 0);
    padding: 2px 100px 2px 100px;
}

.logoutSubmitButton {
    background-color: transparent;
    color: #ffffff;
    border: none;
    text-decoration: none;
    display: inline-block;
    /* font-size: 16px; */
}

a {
    text-decoration: none;
}

a:link {
    text-decoration: none;
    /* color: #ffffff; */
}

a:visited {
    text-decoration: none;
    /* color: #ffffff !important; */
}

.card {
    box-shadow: 0 2px 4px rgba(204, 204, 204, 0.8);
    padding: 20px 40px;
}

/* upload image label/icon */
input[type="file"] {
    display: none;
}

label.uploadImageLabel {
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

#cameraPhotoCapture {
    width: 50%;
    margin-bottom: 10px;
    border: 2px solid #6c757d;
    padding: 2px;
    /* visibility: hidden; */
}

.signature-pad {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 10px;
    width: 100%;
    height: 300px;
    max-width: 700px;
    max-height: 460px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27), 0 0 40px rgba(0, 0, 0, 0.08) inset;
    border-radius: 4px;
    padding: 16px;
  }

  .signature-pad::before,
  .signature-pad::after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 40%;
    height: 10px;
    bottom: 10px;
    background: transparent;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
  }

  .signature-pad::before {
    left: 20px;
    -webkit-transform: skew(-3deg) rotate(-3deg);
            transform: skew(-3deg) rotate(-3deg);
  }

  .signature-pad::after {
    right: 20px;
    -webkit-transform: skew(3deg) rotate(3deg);
            transform: skew(3deg) rotate(3deg);
  }

  .signature-pad--body {
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: 1px solid #f4f4f4;
  }

  .signature-pad--body
  canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
  }



.zoomCursor {
    cursor: zoom-in;
}
