| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- $specializationSelectionClass: 'specialization-selection';
- .#{$specializationSelectionClass} {
- &__container {
- background: #ffffff;
- box-sizing: border-box;
- width: calc(100% - 26px);
- padding: 10px;
- display: block;
- //max-height: 800px;
- //display: flex;
- //flex-direction: column;
- //flex-wrap: wrap;
- //align-items: flex-start;
- column-count: 3;
- column-gap: 10px;
- &:before,
- &:after {
- content: '';
- display: block;
- clear: both;
- }
- }
- &__group {
- //width: calc(33.333% - 10px);
- margin: 5px 5px 5px 5px;
- display: block;
- //float: left;
- &:nth-child(3n) {
- /*width: 33.333%;
- margin-right: 0;*/
- }
- }
- &__list {
- max-height: 125px;
- overflow: hidden;
- display: block;
- &-item {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- padding: 5px;
- label {
- display: block;
- font-size: 13px;
- font-family: $fontopensans;
- }
- &--group-header {
- background: #ebebeb;
- padding: 7px 5px;
- label {
- display: block;
- font-family: $fontcuprum;
- font-size: 17px;
- }
- }
- }
- }
- &__checkbox {
- -webkit-appearance: checkbox;
- -moz-appearance: checkbox;
- appearance: checkbox;
- display: block;
- width: 13px !important;
- }
- &__checkbox-label {
- display: block;
- width: calc(100% - 13px - 5px);
- margin-left: 5px;
- }
- &__select-button {
- display: block;
- font-family: $fontcuprum;
- font-size: 17px;
- color: #fff;
- background-color: #004D7B;
- width: calc(100% - 26px);
- padding: 10px;
- cursor: pointer;
- &:hover {
- background-color: #006dae;
- }
- }
- }
|