<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.btn {
    border-radius: 20px;
    border:1px solid #3a3a3a;
    padding:12px 20px;
    background: #323131;
    color:#fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}
.btn.red {
    border:2px solid #c30d19;
}
.btn.form {
    background: #c30d19;
    border: none;
}
.btn:hover {
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}
.btn.form:hover {
    background: #9b0000;
}

.inp_t {
    border:none;
    border-bottom: 1px solid #E2E6EA;
    box-sizing: border-box;
    border-radius: 2px;
    color: #000;
    width: 100%;
    padding:15px 12px;
    font-size:14px;
    font-family: 'Play', sans-serif;
    transition: border ease-in-out 0.15s;
    -webkit-appearance: none;
    outline:none;
}
.inp_t:hover {
    border-bottom:1px solid #c7c9ca;
}
.inp_t:focus {
    border-bottom: 1px solid #494949;
}
.info_remove{
    color: black;
}
.link.outline {
    display: inline;
    color: #c30d19;
    border: 1px solid #c30d19;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 20px;
}
/*-------------------------------------radio-------------------------------------------*/

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #E40512;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*-------------------------------------checkbox-------------------------------------------*/

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    background: #fff;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #E40512;
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="checkbox"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

</pre></body></html>