input[type="checkbox"] {
	display:none;
}
input[type="checkbox"]:checked ~ .modal,
input[type="checkbox"]:checked ~ .modal-background {
	display: block;
}
.modal-background {
	width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 9998;
}
.modal {
    position: fixed;
    padding: 2rem;
    top: 10rem;
    left: 0;
    right: 0;
    bottom: 10rem;
    margin: auto;
    display: none;	
    width: 50%;
    /*height: 300px;*/ 
    background-color: #fff;
    box-sizing: border-box;
    z-index: 9999;
}
.modal > p {
	padding: 15px;
    margin: 0;
}
.modal-header {
	background-color: #f9f9f9;
    border-bottom: 1px solid #dddddd;
    box-sizing: border-box;
    height: 50px;
}
.modal-header h3 {
	margin: 0;
    box-sizing: border-box;
    padding-left: 15px;
    line-height: 50px;
    color: #4d4d4d;
    font-size: 16px;
    display: inline-block;
}
.modal-header label {
	box-sizing: border-box;
    border-left: 1px solid #dddddd;
    float: right;
    line-height: 50px;
    padding: 0 15px 0 15px;
    cursor: pointer;
}
.modal-header label:hover img {
	opacity: 0.6;
}
/* below is optional, it is just an example for the blue button */
.example-label_add {
    width: 100%;
    height: 100%;
   
    border: none;
	
}
.example-label, .example-label_add{
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    background-color: #062462;
    color: #f9f9f9;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.example-label:hover {
	background-color: #3c669f;
}

.add-button{
    display:inline-block;
    };

    .example-label_add {
        font-size: 15px;
        padding: 12px 35px;
        font-weight: 500;
        color: #fff;
        background: #da242b;
        border-radius: 5px;
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: .5s;
    }
    .example-label_add:before {
        /*  position: absolute;*/
      
        content: "";
        z-index: -1;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        border-radius: 5px;
        background: #062462;
        transform: scale(0);
        transition: .5s;
    }
    .example-label_add:hover:before {
        transform: scale(1);
    }