.mcc-root,
.mcc-root * {
box-sizing: border-box;
}
.mcc-root[hidden],
.mcc-reopen[hidden] {
display: none !important;
}
.mcc-root [hidden] {
display: none !important;
}
.mcc-root {
--mcc-orange: #fa5a00;
--mcc-black: #151923;
--mcc-muted: #666c76;
--mcc-line: #e6e8ec;
--mcc-soft: #f6f7f9;
position: fixed;
inset: 0;
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
padding: 18px;
font-family: Poppins, Arial, Helvetica, sans-serif;
color: var(--mcc-black);
}
.mcc-position-center {
align-items: center;
justify-content: center;
}
.mcc-position-center-bottom {
align-items: flex-end;
justify-content: center;
padding-bottom: max(18px, env(safe-area-inset-bottom));
}
.mcc-position-bottom-left {
align-items: flex-end;
justify-content: flex-start;
padding-bottom: max(18px, env(safe-area-inset-bottom));
}
.mcc-position-bottom-right {
align-items: flex-end;
justify-content: flex-end;
padding-bottom: max(18px, env(safe-area-inset-bottom));
}
.mcc-backdrop {
position: absolute;
inset: 0;
background: rgba(17, 25, 34, .46);
backdrop-filter: blur(2px);
}
.mcc-panel {
position: relative;
width: min(390px, 100%);
max-height: calc(100vh - 36px);
overflow: auto;
border: 1px solid rgba(230, 232, 236, .95);
border-radius: 8px;
background: #fff;
padding: 20px;
box-shadow: 0 28px 80px rgba(15, 20, 30, .28);
}
.mcc-root.is-customizing .mcc-panel {
width: min(560px, 100%);
padding: 24px;
}
.mcc-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 18px;
}
.mcc-logo {
width: auto;
max-width: 150px;
max-height: 46px;
object-fit: contain;
}
.mcc-logo-text {
color: var(--mcc-orange);
font-size: 22px;
font-weight: 900;
letter-spacing: 0;
}
.mcc-head span {
border: 1px solid rgba(250, 90, 0, .24);
border-radius: 6px;
background: #fff7f1;
color: var(--mcc-orange);
font-size: 12px;
line-height: 1;
font-weight: 900;
padding: 8px 10px;
}
.mcc-panel h2 {
margin: 0 0 10px;
color: var(--mcc-black);
font-size: 22px;
line-height: 1.12;
font-weight: 900;
letter-spacing: 0;
}
.mcc-root.is-customizing .mcc-panel h2 {
font-size: 24px;
}
.mcc-panel p {
margin: 0;
color: var(--mcc-muted);
font-size: 14px;
line-height: 1.55;
font-weight: 500;
}
.mcc-privacy-signal {
margin-top: 10px !important;
border: 1px solid rgba(21, 25, 35, .12);
border-radius: 7px;
background: var(--mcc-soft);
padding: 10px 12px;
font-size: 12px !important;
font-weight: 700 !important;
}
.mcc-choices {
display: grid;
gap: 10px;
margin-top: 18px;
}
.mcc-choice {
display: grid;
grid-template-columns: 1fr auto;
gap: 14px;
align-items: center;
border: 1px solid var(--mcc-line);
border-radius: 8px;
background: var(--mcc-soft);
padding: 14px;
}
.mcc-choice strong {
display: block;
margin-bottom: 4px;
font-size: 14px;
line-height: 1.2;
font-weight: 900;
}
.mcc-choice p,
.mcc-choice small {
display: block;
color: var(--mcc-muted);
font-size: 12px;
line-height: 1.4;
font-weight: 600;
}
.mcc-choice small {
margin-top: 7px;
color: #7b828d;
overflow-wrap: anywhere;
}
.mcc-cookie-details {
display: grid;
gap: 6px;
margin: 10px 0 0;
padding: 0;
list-style: none;
}
.mcc-cookie-details li {
display: grid;
grid-template-columns: minmax(62px, auto) 1fr;
gap: 8px;
align-items: start;
color: var(--mcc-muted);
font-size: 11px;
line-height: 1.35;
font-weight: 600;
}
.mcc-cookie-details span {
color: var(--mcc-black);
font-weight: 900;
overflow-wrap: anywhere;
}
.mcc-cookie-details em {
display: block;
margin-top: 2px;
color: #6f7682;
font-style: normal;
font-weight: 800;
}
.mcc-switch {
position: relative;
display: inline-flex;
width: 48px;
height: 28px;
flex: 0 0 auto;
}
.mcc-switch input {
position: absolute;
opacity: 0;
}
.mcc-switch span {
position: absolute;
inset: 0;
border-radius: 999px;
background: #d9dde4;
cursor: pointer;
transition: background .16s ease;
}
.mcc-switch span:after {
content: "";
position: absolute;
left: 4px;
top: 4px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
box-shadow: 0 3px 8px rgba(15, 20, 30, .18);
transition: transform .16s ease;
}
.mcc-switch input:checked + span {
background: var(--mcc-orange);
}
.mcc-switch input:checked + span:after {
transform: translateX(20px);
}
.mcc-switch input:disabled + span {
cursor: not-allowed;
opacity: .72;
}
.mcc-actions {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
margin-top: 20px;
}
.mcc-root.is-customizing .mcc-actions {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mcc-button,
.mcc-inline-open {
min-height: 44px;
border: 1px solid var(--mcc-orange);
border-radius: 7px;
background: #fff;
color: var(--mcc-orange);
font: 900 13px/1 Poppins, Arial, sans-serif;
text-align: center;
padding: 0 14px;
cursor: pointer;
transition: background .16s ease, color .16s ease, transform .16s ease;
}
.mcc-button:hover,
.mcc-inline-open:hover {
background: var(--mcc-orange);
color: #fff;
transform: translateY(-1px);
}
.mcc-button-primary {
background: var(--mcc-orange);
color: #fff;
}
.mcc-button-deny {
border-color: var(--mcc-black);
background: var(--mcc-black);
color: #fff;
}
.mcc-button-primary:hover {
background: #151923;
border-color: #151923;
}
.mcc-button-deny:hover {
background: #fff;
color: var(--mcc-black);
border-color: var(--mcc-black);
}
.mcc-policy {
display: inline-flex;
margin-top: 14px;
color: var(--mcc-muted);
font-size: 12px;
font-weight: 800;
text-decoration: underline;
text-underline-offset: 3px;
}
.mcc-reopen[data-mcc-reopen] {
position: fixed !important;
left: auto !important;
right: 25px !important;
top: auto !important;
bottom: calc(150px + env(safe-area-inset-bottom)) !important
z-index: 2147483000 !important;
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
width: 44px !important;
height: 44px !important;
min-width: 44px !important;
min-height: 44px !important;
border: 1px solid rgba(21, 25, 35, .14) !important;
border-radius: 50% !important;
background-color: #fff !important;
background-image: none !important;
color: #11151d !important;
box-shadow: 0 8px 26px rgba(15, 20, 30, .18) !important;
cursor: pointer !important;
padding: 0 !important;
margin: 0 !important;
opacity: 1 !important;
transform: none;
transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mcc-reopen[data-mcc-reopen]:before {
content: "" !important;
display: block !important;
width: 32px !important;
height: 32px !important;
background-color: #11151d !important;
-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.7 12.8a8.7 8.7 0 1 1-9.5-9.5 4.5 4.5 0 0 0 5.5 5.5 4.4 4.4 0 0 0 4 4Z' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='8.2' cy='9' r='1.15' fill='black'/%3E%3Ccircle cx='12.2' cy='14.2' r='1.15' fill='black'/%3E%3Ccircle cx='7.8' cy='16.2' r='.95' fill='black'/%3E%3C/svg%3E") center / contain no-repeat !important;
mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.7 12.8a8.7 8.7 0 1 1-9.5-9.5 4.5 4.5 0 0 0 5.5 5.5 4.4 4.4 0 0 0 4 4Z' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='8.2' cy='9' r='1.15' fill='black'/%3E%3Ccircle cx='12.2' cy='14.2' r='1.15' fill='black'/%3E%3Ccircle cx='7.8' cy='16.2' r='.95' fill='black'/%3E%3C/svg%3E") center / contain no-repeat !important;
}
.mcc-reopen[data-mcc-reopen]:hover,
.mcc-reopen[data-mcc-reopen]:focus-visible {
border-color: rgba(21, 25, 35, .28) !important;
box-shadow: 0 10px 30px rgba(15, 20, 30, .24) !important;
transform: translateY(-2px);
outline: none !important;
}
.mcc-reopen-icon {
display: none !important;
}
.mcc-reopen[data-mcc-reopen][hidden] {
display: none !important;
}
.mcc-inline-open {
display: inline-flex;
align-items: center;
justify-content: center;
}
@media (max-width: 480px) {
.mcc-panel {
padding: 20px 16px;
}
.mcc-actions,
.mcc-root.is-customizing .mcc-actions {
grid-template-columns: 1fr;
}
}