File size: 1,398 Bytes
79278ec
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
61
62
63
64
65
66
.abbreviation_block {
  width: 100%;
  height: max-content;
  margin-top: 15px;
  .label {
    display: flex;
    margin-bottom: 10px;
  }

  .abbreviation_container {
    display: flex;
    justify-content: center;
    gap: 10px;
    .values {
      width: 90%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;

      .values_optiuon {
        display: flex;
        width: 100%;
        gap: 10px;
        justify-content: space-between;
        &:hover {
          cursor: pointer;
        }
        .name {
          width: 100%;
          color: var(--text-0-color);
          text-align: left;
          border-radius: 10px;
          padding: 5px;
          border: 1px solid var(--hover-bg-color);
        }

        .name.checked {
          border: 1px solid rgb(36, 44, 70);
          background-color: var(--border-0-color);
        }

        .radio {
          .with_icon_container {
            border: 1px solid var(--white-color);
            &:focus,
            &:active {
              border: 1px solid var(--white-color);
              outline: none;
            }
          }
          .input {
            &:hover {
              cursor: pointer;
            }
          }
          display: flex;
          align-items: center;
          justify-content: flex-start;
          padding-right: 20px;
        }
      }
    }
  }
}