@media screen and (max-width: 320px) and (orientation: portrait) {
    button {
    margin-left: 141px !important;
    margin-top: 24px !important;
        font-size: 12px !important;
    } 
}

@media screen and (max-width: 375px) and (orientation: portrait) {
    button {
    margin-left: 160px !important;
    margin-top: 24px !important;
    } 
}


button {
    background: #EFEDED;
    color: #183A8D;
    padding: 10px;
    font-family: arial;
    font-size: 14px;
    font-weight: bold;
    border: 0;
    border-radius: 3px;
    /*-webkit-box-shadow: -9px 9px 10px -4px rgba(0,0,0,0.26);
-moz-box-shadow: -9px 9px 10px -4px rgba(0,0,0,0.26);
box-shadow: -9px 9px 10px -4px rgba(0,0,0,0.26);*/
    position: absolute;
margin-left: 166px;
/*margin-top: 18px;*/
    margin-top: -16px;
    
}
button:hover {
    background: #183A8D;
    color: #fff;
}
button:active {
  background-color: #EB773B;
  transform: translateY(4px);
}


.printModal {
    font-family:sans-serif;
    display:flex;
    text-align:center;
    font-weight:300;
    font-size:30px;
    left:0;
    top:0;
    position:absolute;
    color: #0460B5;
    width: 100%;
    height: 100%;
    background-color:rgba(255, 255, 255, 0.91);
}

/* === Print Modal Close Button === */
.printClose {
    position:absolute;
    right:10px;
    top:10px;
}

.printClose:before {
    content: "\00D7";
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 100;
    line-height: 1px;
    padding-top: 0.5em;
    display: block;
    font-size: 2em;
    text-indent: 1px;
    overflow: hidden;
    height: 1.25em;
    width: 1.25em;
    text-align: center;
    cursor: pointer;
}

/* === Print Modal Spinner */
.printSpinner {
  margin-top: 3px;
  margin-left: -40px;
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid #0460B5;
  border-radius: 50%;
  animation: spin 0.75s infinite linear;
}
.printSpinner::before, .printSpinner::after {
  left: -2px;
  top: -2px;
  display: none;
  position: absolute;
  content: '';
  width: inherit;
  height: inherit;
  border: inherit;
  border-radius: inherit;
}

.printSpinner, .printSpinner::before, .printSpinner::after {
  display: inline-block;
  border-color: transparent;
  border-top-color: #0460B5;
  animation-duration: 1.2s;
}
.printSpinner::before {
  transform: rotate(120deg);
}
.printSpinner::after {
  transform: rotate(240deg);
}

/* Keyframes for the animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
