
@-webkit-keyframes progressFill {
    from { background-position: right bottom;}
    to { background-position: left bottom;}
    }
    @-moz-keyframes progressFill {
    from {background-position: right bottom;}
    to { background-position: left bottom;}
    }
    @keyframes progressFill {
    from { background-position: right bottom;}
    to { background-position: left bottom;}
    }
    
    .jp-button-container.ghost::before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #28262c;
    position: relative;
    top: 5px;
    }
    
    .jp-button-container.ghost:hover::before {
    background-color: #5d5b62;
    }
    
    .jp-button-container.ghost.disabled::before {
    background-color: #edeff1;
    }
    
    .jp-button-container .jp-button{
    cursor: pointer;
    outline: 0;
    margin: 10px 10px 10px 0;
    }
    
    .jp-button-container .jp-button.primary{
    border-radius: 3px;
    border: none;
    font-size: 14px;
    font-family: "Montserrat-bold", Arial, Helvetica, sans-serif;
    line-height: 20px;
    letter-spacing: 2px;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #094d93;
    padding: 14px;
    max-width: 300px;
    width: 100%;
    }
    .jp-button-container .jp-button.primary:hover{
    background-color:#1371ba;
    }
    
    .jp-button-container .jp-button.primary:disabled{
    cursor: not-allowed; 
    color:#fff;
    background-color:#b5cadf;
    
    }
    
    .jp-button-container .jp-button.primary.is-loading {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 50%, transparent 20%);
    background-size: 200% 100%;
    background-color: #094d93;
    background-position: right bottom;
    cursor: not-allowed; 
    animation: progressFill 4s -.1s ease-in-out infinite; 
    }
    
    
    /* SECONDARY BUTTON */
    .jp-button-container .jp-button.secondary{
    border-radius: 3px;
    border: none;
    font-size: 14px;
    font-family: "Montserrat-bold";
    line-height: 20px;
    letter-spacing: 2px;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #28262c;
    max-width: 300px;
    width: 100%;
    padding: 14px;
    }
    .jp-button-container .jp-button.secondary:hover{
    background-color:#5d5b62;
    }
    
    .jp-button-container .jp-button.secondary:disabled{
    cursor: not-allowed; 
    background-color: #bfbec0;
    color:#fff;
    }
    
    .jp-button-container .jp-button.secondary.is-loading {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2) 50%, transparent 20%);
    background-size: 200% 100%;
    background-color: #28262c;
    background-position: right bottom;
    cursor: not-allowed; 
    animation: progressFill 4s -.1s ease-in-out infinite; 
    }
    
    /* TERTIARY BUTTON */
    .jp-button-container .jp-button.tertiary {
    border: 1px solid #094d93;
    border-radius: 3px;
    font-size: 14px;
    font-family: "Montserrat-Medium";
    line-height: 20px;
    letter-spacing: 2px;
    font-style: normal;
    font-stretch: normal;
    text-align: center;
    color: #094d93;
    text-transform: none;
    background-color: #ffffff;
    max-height: 32px;
    max-width: 300px;
    width: 100%;
    padding: 6px;
    }
    
    .jp-button-container .jp-button.tertiary:hover{
    border-radius: 3px;
    border: 1px solid #1371ba;
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
    color:#1371ba;
    }
    
    .jp-button-container .jp-button.tertiary:disabled{
    cursor: not-allowed; 
    text-align: center;
    text-transform: none;
    opacity: 0.3;
    border-radius: 3px;
    border: solid 1px #094d93;
    background-color: #f8f4f4;
    color: #094d93;
    font-family: "Montserrat-Medium";
    }
    
    /* QUATERNARY BUTTON */
    .jp-button-container .jp-button.quaternary{
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 22px;
    letter-spacing: 2px;
    text-align: center;
    color: #094d93;
    text-transform: uppercase;
    padding: 12px;
    background: none;
    border: none;
    }
    
    .jp-button-container .jp-button.quaternary:hover{
    color: #1371ba;
    }
    
    .jp-button-container .jp-button.quaternary:disabled{
    opacity: 0.3;
    cursor: not-allowed; 
    }
    
    /* GHOST BUTTON */
    .jp-button-container .jp-button.ghost {
    font-family: "Montserrat-Bold", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 20px;
    letter-spacing: 2px;
    text-align: center;
    color: #094d93;
    padding: 12px;
    background: none;
    border: none;
    margin-left: 4px;
    }
    
    .jp-button-container .jp-button.ghost:hover {
    color: #1371ba;
    }
    
    .jp-button-container .jp-button.ghost:disabled {
    color: #005aab;
    opacity: 0.23;
    cursor: not-allowed; 
    }