.jp-container-checkbox {
    display: inline-block;
    position: relative;
  
    font-family: "Montserrat-regular", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 19px;
    letter-spacing: 0.26px;
    color: #34495e;
    padding: 3px 0 0 29px;
    margin: 14px 10px;
}

.jp-container-checkbox.disabled{
    opacity: 0.54;
    cursor: default;
    color: #5d5b62;
}

.jp-container-checkbox input[type = "checkbox"]{
    position: absolute;
    top: 6px;
    left: 4px;
    opacity: 0;
    vertical-align: text-top;
    box-sizing: border-box;
    padding: 0;
    outline: 0;
    border: 0;
    line-height: normal;
}

.jp-container-checkbox input[type = "checkbox"]:disabled{
    cursor: default;
}

.jp-container-checkbox .jp-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #9b9a9e;
    border-radius: 3px;
    height: 18px;
    width: 18px;

}

.jp-container-checkbox input:checked ~ .jp-checkmark {
    background-color: #1371ba;
    border: 2px solid #1371ba;
}

.jp-container-checkbox .jp-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.jp-container-checkbox input:checked ~ .jp-checkmark:after {
    display: block;
}

.jp-container-checkbox .jp-checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.jp-cursor{
    cursor: default;  
}
.jp-back{
    color: blue;
    cursor: pointer;  
    outline: none; 
}