2023-07-31 21:24:41 +00:00
|
|
|
.confirmModal {
|
|
|
|
background: #fff;
|
|
|
|
min-height: 550px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
min-height: 710px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmModalTitle {
|
|
|
|
font-size: 26px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: 700;
|
|
|
|
color: #141414;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmModalActions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmModalButton {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin-right: 12px;
|
|
|
|
font-weight: 700;
|
|
|
|
margin-top: 32px;
|
|
|
|
padding: 1.6rem !important;
|
|
|
|
border: 1px solid black;
|
|
|
|
|
|
|
|
&:hover {
|
2023-08-13 15:51:02 +00:00
|
|
|
background-color: rgb(0 0 0 / 8%);
|
2023-07-31 21:24:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.confirmModalButtonPrimary {
|
|
|
|
margin-right: 0;
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
&:hover {
|
2023-08-13 15:51:02 +00:00
|
|
|
background-color: rgb(0 0 0 / 60%);
|
2023-07-31 21:24:41 +00:00
|
|
|
}
|
|
|
|
}
|