1
2// inline confirmation message
3.inline__confirm {
4  position: absolute;
5  top: 0;
6  transform: translateY(-103%);
7  width: 100%;
8  height: 100%;
9  z-index: 5;
10  background: $background-04;
11  color: $primary-light;
12  padding: 2em 2em 1.55em 2em;
13  overflow: hidden;
14  @include fastTransition-all;
15  &.active {
16    transform: translateY(0);
17    @include fastTransition-all;
18  }
19}
20
21// Power confirmation buttons
22.inline__confirm-buttons {
23  @media (min-width: 900px) {
24    position: absolute;
25    right: 0;
26    top: 50%;
27    transform: translateY(-50%);
28  }
29  .btn {
30    min-width: 100px!important;
31  }
32}