| 1 |
/* ONBOARDING */ |
| 2 |
.min-vh-116 { |
| 3 |
min-height: 116vh !important; |
| 4 |
} |
| 5 |
#onboarding_container { |
| 6 |
max-width: 90%; |
| 7 |
} |
| 8 |
#onboarding_container .progressbar_container { |
| 9 |
max-width: 100%; |
| 10 |
} |
| 11 |
#onboarding_container .progressbar_container .progressbar li { |
| 12 |
width: 16.5%; |
| 13 |
} |
| 14 |
#onboarding_container .sp-original-input-container .sp-colorize-container { |
| 15 |
width: 50px !important; |
| 16 |
} |
| 17 |
#onboarding_container .tab-item[data-step="enable-support"] form { |
| 18 |
max-width: 520px; |
| 19 |
margin: 0px auto; |
| 20 |
text-align: center; |
| 21 |
} |
| 22 |
#onboarding_container .onboarding_header { |
| 23 |
margin-bottom: 25px; |
| 24 |
} |
| 25 |
#onboarding_container .onboarding_header h1 { |
| 26 |
display: inline-block; |
| 27 |
vertical-align: middle; |
| 28 |
} |
| 29 |
#onboarding_container .tab-item[data-step="import"] .pagination.simple-pagination ul { |
| 30 |
padding-bottom: 0px; |
| 31 |
} |
| 32 |
|
| 33 |
#onboarding_container .dismiss:hover, #enable-support-wrapper .dismiss:hover { |
| 34 |
cursor: pointer; |
| 35 |
} |
| 36 |
|
| 37 |
/* SUPPORT */ |
| 38 |
.support-wrap { |
| 39 |
position: fixed; |
| 40 |
bottom: 0; |
| 41 |
right: 0; |
| 42 |
/*display: none;*/ |
| 43 |
width: 170px; |
| 44 |
margin-right: 20px; |
| 45 |
margin-bottom: 90px; |
| 46 |
opacity: 0; |
| 47 |
height: 0; |
| 48 |
overflow: hidden; |
| 49 |
transition: opacity .4s; |
| 50 |
} |
| 51 |
|
| 52 |
.support-wrap .support-option { |
| 53 |
display: block; |
| 54 |
border: 1px solid #DEDEDE; |
| 55 |
cursor: pointer; |
| 56 |
} |
| 57 |
|
| 58 |
.support-wrap .support-option:first-child { |
| 59 |
border-top-left-radius: 5px; |
| 60 |
border-top-right-radius: 5px; |
| 61 |
} |
| 62 |
|
| 63 |
.support-wrap .support-option:last-child { |
| 64 |
border-top: 0; |
| 65 |
border-bottom-left-radius: 5px; |
| 66 |
border-bottom-right-radius: 5px; |
| 67 |
} |
| 68 |
|
| 69 |
.support-wrap .support-option:hover { |
| 70 |
background-color: var( --lasso-purple); |
| 71 |
color: var(--white); |
| 72 |
border-color: var(--lasso-purple) !important; |
| 73 |
transition: ease 0.25s !important; |
| 74 |
text-shadow: 0 0 1px var(--white) !important; |
| 75 |
} |
| 76 |
|
| 77 |
.support-wrap .support-option label { |
| 78 |
font-size: 15px; margin-bottom: unset; |
| 79 |
} |
| 80 |
|
| 81 |
#support-launcher { |
| 82 |
position: fixed; |
| 83 |
z-index: 2147483003; |
| 84 |
bottom: 20px; |
| 85 |
right: 20px; |
| 86 |
width: 60px; |
| 87 |
height: 60px; |
| 88 |
border-radius: 50%; |
| 89 |
background: #22BAA0; |
| 90 |
cursor: pointer; |
| 91 |
box-shadow: 0 1px 6px 0 rgb(0 0 0 / 6%), 0 2px 32px 0 rgb(0 0 0 / 16%); |
| 92 |
opacity: 0; |
| 93 |
} |
| 94 |
|
| 95 |
#support-launcher svg { |
| 96 |
font-size: 40px; |
| 97 |
color: var(--lasso-white); |
| 98 |
position: fixed; |
| 99 |
bottom: 30px; |
| 100 |
right: 30px; |
| 101 |
} |
| 102 |
|
| 103 |
#support-launcher svg.icon-close{ |
| 104 |
right: 36px; |
| 105 |
} |
| 106 |
|
| 107 |
#support-launcher svg.fa-question { |
| 108 |
right: 35px; |
| 109 |
} |
| 110 |
|
| 111 |
#support-launcher .icon-default { |
| 112 |
transition: opacity .3s, transform .3s; |
| 113 |
} |
| 114 |
|
| 115 |
#support-launcher .icon-close { |
| 116 |
transition: opacity .3s, transform .3s; |
| 117 |
transform: rotate(-180deg) scale(.5); |
| 118 |
opacity: 0; |
| 119 |
} |
| 120 |
|
| 121 |
#customer-flow-confirm .no-thanks-button { |
| 122 |
color: #979CA0 !important; |
| 123 |
} |
| 124 |
|
| 125 |
.intercom-lightweight-app .intercom-lightweight-app-launcher.intercom-launcher { |
| 126 |
display: none; |
| 127 |
} |
| 128 |
|