File size: 1,020 Bytes
41a71fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
@import '@/app/globalStyles/config/mixin.scss';

.Checkbox {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.window {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    background: var(--s-inverted-c);
    border: 1px solid var(--s-primery-c);
    border-radius: 1px;
    transition: 0.5s;
}

.iconMark {
    opacity: 0;
    fill: var(--s-primery-c);
    transition: 0.5s;
}

.name {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
    color: var(--t-primery-c);
    letter-spacing: 0.04em;
    cursor: pointer;
}

.content {
    padding-top: 1px;
}

.input:checked + .name {
    .iconMark {
        opacity: 1;
    }
}

.link {
    color: var(--t-accent-c);
    text-decoration: none;
    border-bottom: 1px solid var(--s-primery-c);
    transition: 0.5s;

    &:hover {
        border-bottom: 1px solid transparent;
    }
}