2021-10-06 06:24:26 +00:00
|
|
|
.boxselector_wrapper > div,
|
2022-07-08 00:57:36 +00:00
|
|
|
.box-selector-item {
|
2021-10-06 06:24:26 +00:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2022-08-01 04:44:56 +00:00
|
|
|
.boxselector_wrapper .boxselector_header,
|
|
|
|
.box-selector-item .boxselector_header {
|
|
|
|
font-size: 18px;
|
2021-10-06 06:24:26 +00:00
|
|
|
margin-bottom: 5px;
|
|
|
|
font-weight: bold;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boxselector_header .fa,
|
|
|
|
.fab {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2022-08-01 04:44:56 +00:00
|
|
|
.boxselector_wrapper input[type='radio'],
|
|
|
|
.box-selector-item input[type='radio'] {
|
2021-10-06 06:24:26 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-08-01 04:44:56 +00:00
|
|
|
.boxselector_wrapper label,
|
|
|
|
.box-selector-item label {
|
2022-08-10 04:12:20 +00:00
|
|
|
@apply border border-solid;
|
|
|
|
@apply bg-gray-2 border-gray-5 text-black;
|
|
|
|
@apply th-dark:bg-gray-iron-10 th-dark:border-gray-neutral-8 th-dark:text-white;
|
|
|
|
|
2021-10-06 06:24:26 +00:00
|
|
|
font-weight: normal;
|
|
|
|
font-size: 12px;
|
|
|
|
display: block;
|
2022-08-10 04:12:20 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
padding: 15px;
|
2022-07-01 01:14:22 +00:00
|
|
|
text-align: left;
|
2021-10-06 06:24:26 +00:00
|
|
|
box-shadow: var(--shadow-boxselector-color);
|
|
|
|
position: relative;
|
2022-08-10 04:12:20 +00:00
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not disabled */
|
|
|
|
.boxselector_wrapper input[type='radio']:not(:disabled) ~ label,
|
|
|
|
.box-selector-item input[type='radio']:not(:disabled) ~ label {
|
|
|
|
box-shadow: none;
|
|
|
|
cursor: pointer;
|
2021-10-06 06:24:26 +00:00
|
|
|
}
|
|
|
|
|
2022-08-10 04:12:20 +00:00
|
|
|
/* disabled */
|
2021-10-06 06:24:26 +00:00
|
|
|
.box-selector-item input:disabled + label,
|
|
|
|
.boxselector_wrapper label.boxselector_disabled {
|
2022-08-10 04:12:20 +00:00
|
|
|
@apply !bg-white;
|
|
|
|
@apply th-dark:!bg-gray-7;
|
|
|
|
@apply th-highcontrast:!bg-black;
|
|
|
|
filter: opacity(0.3) grayscale(1);
|
|
|
|
|
2021-10-06 06:24:26 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2022-08-04 23:48:08 +00:00
|
|
|
.boxselector_wrapper label.boxselector_disabled a {
|
|
|
|
cursor: pointer;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
2022-08-10 04:12:20 +00:00
|
|
|
/* checked */
|
2022-07-01 01:14:22 +00:00
|
|
|
.boxselector_wrapper input[type='radio']:checked + label,
|
|
|
|
.box-selector-item input[type='radio']:checked + label {
|
2022-08-10 04:12:20 +00:00
|
|
|
@apply bg-blue-3 border-blue-6;
|
|
|
|
@apply th-dark:bg-blue-10 th-dark:border-blue-7;
|
|
|
|
|
2022-07-01 01:14:22 +00:00
|
|
|
background-image: url(../../../assets/ico/checked.svg);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: right 15px top 15px;
|
2021-10-06 06:24:26 +00:00
|
|
|
|
2022-08-10 04:12:20 +00:00
|
|
|
border-radius: 8px;
|
|
|
|
padding: 15px;
|
|
|
|
box-shadow: none;
|
2021-10-06 06:24:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 700px) {
|
|
|
|
.boxselector_wrapper {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-10 04:12:20 +00:00
|
|
|
.box-selector-item.limited.business label,
|
|
|
|
.box-selector-item.limited.business input[type='radio']:checked + label {
|
|
|
|
@apply border-warning-7 bg-warning-1 text-black;
|
|
|
|
@apply th-dark:bg-warning-3;
|
2021-10-06 06:24:26 +00:00
|
|
|
}
|
2022-07-01 01:14:22 +00:00
|
|
|
|
|
|
|
.boxselector_img_container {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
text-align: left;
|
|
|
|
|
2022-08-10 04:12:20 +00:00
|
|
|
line-height: 90px;
|
|
|
|
margin-bottom: 0;
|
2022-07-01 01:14:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.boxselector_icon,
|
|
|
|
.boxselector_icon img {
|
2022-08-01 04:44:56 +00:00
|
|
|
font-size: 90px;
|
|
|
|
display: block;
|
2022-07-08 00:57:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.boxselector_header pr-icon {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boxselector_content {
|
|
|
|
padding-left: 20px;
|
2022-07-01 01:14:22 +00:00
|
|
|
}
|
2022-08-01 04:44:56 +00:00
|
|
|
|
|
|
|
.box-selector-item p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|