123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .support-banner-wrapper {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- margin: 1rem;
- }
- .support-banner {
- color: #fff;
- background-color: #000;
- box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
- border-radius: 0.5rem;
- padding: 0.5rem 1rem;
- margin: 0 auto;
- width: 100%;
- justify-content: space-between;
- -webkit-box-pack: justify;
- align-items: center;
- -webkit-box-align: center;
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- z-index: 100;
- }
- @media screen and (min-width: 1200px) {
- .support-banner {
- max-width: 1192px;
- }
- }
- .support-banner-left {
- width: 0;
- margin: 0;
- flex: 1 1 0%;
- -webkit-box-flex: 1;
- }
- .support-banner-right {
- display: flex;
- flex-shrink: 0;
- width: auto;
- margin-top: 0;
- order: 2;
- -webkit-box-ordinal-group: 3;
- justify-content: space-between;
- -webkit-box-pack: justify;
- align-items: center;
- -webkit-box-align: center;
- }
- .support-banner-close {
- width: 1.5rem;
- margin: 0 0 0 0.5rem;
- font-size: .875rem;
- height: 1.5rem;
- border: none;
- border-radius: 9999px;
- padding: 0;
- line-height: inherit;
- color: inherit;
- cursor: pointer;
- background-color: transparent;
- background-image: none;
- -webkit-appearance: button;
- overflow: visible;
- text-transform: none;
- display: flex;
- justify-content: center;
- -webkit-box-pack: center;
- align-items: center;
- -webkit-box-align: center;
- order: 3;
- -webkit-box-ordinal-group: 4;
- }
- .hidden {
- display: none;
- }
- @media (min-width: 700px) {
- .sm\:inline-block {
- display: inline-block;
- }
- }
- @media (min-width: 1060px) {
- .lg\:hidden {
- display: none;
- }
- .lg\:inline-block {
- display: inline-block;
- }
- }
|