.woo-user-refunds-content{
    color: #222222;
    font-family: "Montserrat", Sans-serif;
    width: 100%;
}

.woo-user-refunds-content h1{
    color: #222222;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.2;
    margin: 25px 0 30px;
}

.woo-user-refunds-notice{
    background-color: #f1f7dd;
    border-radius: 7px;
    color: #5d7832;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 20px;
}

@media only screen and (max-width:767px){
    .woo-user-refunds-content h1{
        font-size: 24px;
        margin: 20px 0 24px;
    }
}

/* CHECKBOX STYLE */
input[type="checkbox"]{
    display: inline-block;
    border: .125rem solid;
    border-color: #bebebe !important;
    border-radius: .1875rem;
    width: 1.4375rem;
    height: 1.4375rem;
    position: relative;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    margin-right: .8125rem;
    transition: all .3s;
    cursor: pointer
}

input[type="checkbox"]:checked {
    border-color: #212227 !important;
}

input[type="checkbox"]::before{
    content: " ";
    display: block;
    height: .75rem;
    width: .375rem;
    background-color: transparent;
    position: absolute;
    top: .125rem;
    left: .4375rem;
    border-bottom: 3px solid #212227;
    border-right: 3px solid #212227;
    opacity: 0;
    transition: opacity .2s;
    transform: rotate(45deg)
}

input[type="checkbox"]:checked::before {
    opacity: 1;
}
