
/*
 ********************************************************************************************
 * checkbox
 ********************************************************************************************
 */
.checkbox-wrapper-18 .round {
    position: relative;
}

.checkbox-wrapper-18 .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    width: 28px;
    display: block;
}

.checkbox-wrapper-18 .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 8px;
    opacity: 0;
    position: absolute;
    top: 9px;
    transform: rotate(-45deg);
    width: 12px;
}

.checkbox-wrapper-18 .round input[type="checkbox"] {
    visibility: hidden;
    display: none;
    opacity: 0;
}

.checkbox-wrapper-18 .round input[type="checkbox"]:checked + label {
    background-color: #66bb6a;
    border-color: #66bb6a;
}

.checkbox-wrapper-18 .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
}



/*
 ********************************************************************************************
 * print container
 ********************************************************************************************
 */

.print_check_div{
    padding: 4px 8px 4px 8px; /*top right bottom left*/
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: flex
}
.print_block_checked-0 {
    flex: 1 1 0;
    align-self: stretch;
    padding: 16px 8px 24px 24px;
    background: #F0F8FF;
    border-radius: 16px;
    overflow: hidden;
    border: 2px #0A8DF2 solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex
}

.print_block_checked-1{
    align-self: stretch;
    color: #0071C7;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 600;
    line-height: 28px;
    word-wrap: break-word
}

.print_block_unchecked-0{
    flex: 1 1 0;
    align-self: stretch;
    padding: 16px 8px 24px 24px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px #D2D6DB solid;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex
}

.print_block_unchecked-1{
    align-self: stretch;
    color: #111927;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 600;
    line-height: 28px;
    word-wrap: break-word
}

.submitPrint{
    color: white;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word
}
.submitPrint:hover{
    cursor: pointer;
}

.closePrint{
    color: black;
    background-color: #D2D6DB;
    font-size: 14px;
    font-family: Roboto;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word
}
.closePrint:hover{
    cursor: pointer;
}