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
|
.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;
}
}
|