File size: 2,465 Bytes
1e92f2d |
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
.book__skeleton-site-block .site__content,
.book__info-step-site-block .site__content,
.shared__site-block .site__content {
// Override the site block's padding to use the containing card's padding instead
padding: 0;
}
.shared__available-time-card {
&.is-expanded {
background: var(--color-neutral-0);
}
& .shared__time-group {
margin-right: 10px;
font-weight: normal;
&.is-selected {
border-color: var(--studio-blue-60);
border-width: 2px;
}
}
}
.shared__available-time-card-header {
display: flex;
align-items: center;
}
.shared__available-time-card-header-icon {
color: var(--color-neutral-light);
border: 1px solid var(--color-neutral-10);
border-radius: 100%;
padding: 6px;
margin-right: 12px;
}
.shared__info-illustration {
display: block;
margin: 0 auto 20px;
max-width: 300px;
}
.shared__time-group-filter {
display: flex;
align-items: center;
img {
width: 16px;
height: 16px;
margin-right: 5px;
}
}
.shared__info-link {
display: block;
margin: 0 auto;
width: auto;
text-align: center;
}
.shared__confirmation {
text-align: center;
}
.shared__confirmation-illustration {
display: block;
margin: 50px auto 20px;
max-width: 182px;
}
.shared__no-available-times-heading {
font-weight: 600;
margin-bottom: 1em;
}
.cancel__reschedule-button {
margin-right: 10px;
}
.cancel__placeholders {
.is-placeholder {
animation: pulse-light 800ms ease-in-out infinite;
background: var(--color-neutral-10);
}
.cancel__placeholder-button-container {
display: flex;
justify-content: center;
}
.cancel__placeholder-button {
height: 50px;
width: 100%;
margin-right: 10px;
@include breakpoint-deprecated( ">480px" ) {
width: 80px;
height: 40px;
}
}
}
.book__info-step-phone-input {
display: block;
@include breakpoint-deprecated( ">480px" ) {
display: flex;
}
& fieldset {
flex: 1;
margin-bottom: 0;
}
.form-phone-input__phone-number {
margin-top: 20px;
@include breakpoint-deprecated( ">480px" ) {
margin-top: 0;
margin-left: 12px;
}
}
}
.shared__appointment-info-start-session {
display: flex;
& input {
flex: 1;
}
}
.book__schedule-button,
.cancel__schedule-button,
.reschedule__schedule-button,
.cancel__confirmation-button {
margin-bottom: 40px;
}
.segmented-control {
display: inline-flex;
}
.calendar-step__explanation {
color: var(--color-text-subtle);
font-size: 0.875rem;
}
.calendar-step__webinars {
margin-top: 10px;
}
|