a.request-produt-doc {
    background-color:#66bc7b; 
    color:white;
    padding:1em 1.5em;
}
a.request-produt-doc:hover{
    background-color: #56bc7b;
    color:white;
    padding:1em 1.5em;
}

/* The Modal (background) */
.docLibModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10020; /* Sit on top */
    /*padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
   
    
  }

  li.doc-title {
    font-size: 0.8em;
  }
  
  /* The Close Button */
  .docLibClose {
    color: white;
    float: right;
    font-size: 16px;
    font-weight: bold;
  }
  
  .docLibClose:hover,
  .docLibClose:focus {
    color:black;
    text-decoration: none;
    cursor: pointer;
  }
  /* Modal Header */
  .docLibModal-header {
    border-radius: 5px 5px 0 0;
    background-color: #56bc7b;
    padding: 10px 10px
  }

  .docLibModal-header-title{
    color: white;
  }
  
  /* Modal Body */
  div#docLibModal-body {
  }

  div#docLibModal-body input {
    font-family: Tahoma, sans-serif;
    font-size: 100%;
  }

  div#docLibModal-body form {
    background-color: #ECECEC;
	  padding: 30px 40px;
  }

 div#docLibModal-body input[type="email"],
input[type="text"] {
	width: 100% !important;
	display: block !important;
	box-sizing: border-box !important;
	padding: 0 10px !important;
	height: 40px !important;
	margin-bottom: 10px !important;
	border: 1px solid #CDCDCD !important;
	outline: none !important;
}

div#docLibModal-body input[type="email"]:focus,
input[type="text"]:focus {
	border: 1px solid #56bc7b !important;
	box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .13) !important;
}

div#docLibModal-body input[type="submit"],
input[type="button"] {
	background-color: #56bc7b  !important;
	color: #FFF  !important;
	padding: 10px 10px  !important;
	border: 1px solid #56bc7b  !important;
	border-radius: 3px  !important;
	outline: none  !important;
}

div#docLibModal-body input[type="submit"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="submit"]:focus {
	border: 1px solid #38ac62  !important;
  background-color: #38ac62  !important;
  cursor:pointer !important;
}


 
  /* Modal Footer */
  .docLibModal-footer {
    border-radius: 0 0 5px 5px;
    padding: 10px;
    background-color: #56bc7b;
    color: white;
  }

  .spin-loader {
    border: 10px solid #4cb472;
    border-radius: 50%;
    border-top: 10px solid #f9f9f9;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }

  /* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
   
  /* Modal Content */
  .docLibModal-content {
    position: absolute;
    background-color: #f2f2f2;
    /* background-image: url("../img/request-for-documents-form-backgroud-image.jpg"); */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 1.5s;
    top:50%;
    left:50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .hidden-label {
    position: absolute;
    height: 0;
    width: 0;
    overflow: hidden;
    visibility: hidden;
  }

 

  /* Add Animation */
  @keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 50%; opacity: 1}
  }