/*（）*/
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-sizing: border-box;
    background-position: 0 0;
    background-color: transparent;
    border: solid 1px #fff;
    margin-bottom: 4px;
    margin-right: 10px;
}
html[dir='rtl'] input[type="checkbox"] {
    margin-left: 10px;
    margin-right:0;
}
/*  */
input[type="checkbox"]:active {
    background-position: 0 -48px;
    background-color: #138B70;
    background-image: url(../img/contact/icon-checked.png);
    background-size: 100% auto;
    border: 0;
}

/**/
input[type="checkbox"]:checked {
    background-position: 0 -48px;
    background-color: #138B70;
    background-image: url(../img/contact/icon-checked.png);
    background-size: 100% auto;
    border: 0;
}

/**/
input[type="checkbox"]:checked:active {
    background-position: 0 -48px;
    background-color: #138B70;
    background-image: url(../img/contact/icon-checked.png);
    background-size: 100% auto;
    border: 0;
}
.readText{
    width: 100%;
    display: block;
    color: white;
    font-family: Raleway, sans-serif;
    display: flex;
    align-items: center;
    margin-top: 40px;
    cursor: pointer;
}
.readText a{
    color: white;
    font-weight: 600;
}
.readText a:hover{
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .readText label{
        width: 80%;
    }
}