/* =========================================================
   CHEHAR CAB - CONTACT PAGE
   PREMIUM DARK DESIGN
========================================================= */

:root {

    --cc-bg: #070b12;
    --cc-bg2: #0c121d;
    --cc-card: #111925;
    --cc-card2: #151e2d;

    --cc-gold: #f5c518;
    --cc-gold2: #ffd95b;

    --cc-purple: #8b5cf6;
    --cc-pink: #ec4899;

    --cc-text: #f1f4f8;
    --cc-muted: #7d899b;

    --cc-border: rgba(255,255,255,.08);

}


/* =========================================================
   HERO
========================================================= */

.cc-contact-hero {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(245,197,24,.14),
            transparent 27%
        ),

        radial-gradient(
            circle at 15% 85%,
            rgba(139,92,246,.15),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #05080e,
            #0d1725 55%,
            #171225
        );

}


.cc-contact-hero::after {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .23;

    background-image:

        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

}


.cc-hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(3px);

    pointer-events: none;

}


.cc-glow-one {

    width: 320px;
    height: 320px;

    right: -120px;
    top: -150px;

    background:
        rgba(245,197,24,.12);

    animation:
        ccGlow 8s ease-in-out infinite;

}


.cc-glow-two {

    width: 260px;
    height: 260px;

    left: -120px;
    bottom: -150px;

    background:
        rgba(139,92,246,.13);

    animation:
        ccGlow 10s ease-in-out infinite reverse;

}


@keyframes ccGlow {

    50% {
        transform:
            translate(20px,-15px)
            scale(1.1);
    }

}


.cc-hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    padding: 70px 0;

}


.cc-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--cc-gold);

    font-size: 14px;

    font-weight: 850;

    letter-spacing: 1.6px;

}


.cc-hero-content h1 {

    margin: 13px 0;

    color: #fff;

    font-size:
        clamp(40px,6vw,62px);

    line-height: 1.03;

    font-weight: 900;

}


.cc-hero-content h1 span {

    display: block;

    background:

        linear-gradient(
            90deg,
            #f5c518,
            #ffdb5d,
            #f9a8d4
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.cc-hero-content p {

    max-width: 610px;

    margin: 0;

    color:
        rgba(255,255,255,.62);

    font-size: 12px;

    line-height: 1.8;

}


.cc-hero-buttons {

    display: flex;

    gap: 8px;

    margin-top: 21px;

}


.cc-btn {

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 17px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 850;

    transition: .3s;

}


.cc-btn-primary {

    color: #07101d;

    background:

        linear-gradient(
            90deg,
            #f5c518,
            #f59e0b
        );

    box-shadow:
        0 8px 25px
        rgba(245,197,24,.2);

}


.cc-btn-primary:hover {

    color: #07101d;

    transform:
        translateY(-2px);

}


.cc-btn-whatsapp {

    color: #fff;

    border:
        1px solid
        rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.04);

}


.cc-btn-whatsapp:hover {

    color: #fff;

    border-color: #25d366;

    background: #25d366;

}



/* =========================================================
   CONTACT CARDS
========================================================= */

.cc-contact-cards {

    position: relative;

    z-index: 5;

    padding: 40px;

    background: transparent;

}


.cc-card-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 10px;

}


.cc-contact-card {

    min-height: 145px;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 17px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 13px;

    background:

        linear-gradient(
            145deg,
            #172131,
            #101722
        );

    box-shadow:

        0 12px 35px
        rgba(0,0,0,.25);

    transition: .3s;

}


.cc-contact-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(245,197,24,.35);

    box-shadow:

        0 18px 45px
        rgba(0,0,0,.3),

        0 0 20px
        rgba(245,197,24,.05);

}


.cc-card-icon {

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: var(--cc-gold);

    background:
        rgba(245,197,24,.09);

}


.cc-card-icon.whatsapp {

    color: #25d366;

    background:
        rgba(37,211,102,.09);

}


.cc-card-icon.email {

    color: #c4b5fd;

    background:
        rgba(139,92,246,.1);

}


.cc-card-icon.location {

    color: #fb7185;

    background:
        rgba(251,113,133,.09);

}


.cc-contact-card span {
    display: block;
    color: #667386;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.cc-contact-card h3 {

    margin: 5px 0;

    color: #f2f4f7;

    font-size: 16px;

    font-weight: 800;

    word-break: break-word;

}


.cc-contact-card p {

    margin: 0;

    color: #b5bcc7;

    font-size: 14px;

    line-height: 1.5;

}


.cc-contact-card a {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-top: 8px;

    color: var(--cc-gold);

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

}


.cc-contact-card a:hover {

    color: #ffe87d;

}



/* =========================================================
   MAIN CONTACT
========================================================= */

.cc-main-contact {

    padding: 70px 0;

    background: var(--cc-bg);

}


.cc-contact-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 45px;

}


.cc-section-tag {

    color: var(--cc-gold);

    font-size: 14px;

    font-weight: 850;

    letter-spacing: 1.6px;

}


.cc-contact-info h2 {

    margin: 7px 0 10px;

    color: #f2f5f8;

    font-size: 29px;

    font-weight: 900;

}


.cc-contact-info h2 strong {

    background:

        linear-gradient(
            90deg,
            #f5c518,
            #f9a8d4
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.cc-info-intro {

    max-width: 500px;

    margin: 0 0 24px;

    color: var(--cc-muted);

    font-size: 10px;

    line-height: 1.8;

}


.cc-info-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 7px;
    border: 1px solid rgb(60 32 32);
    margin: 13px;
    background: #fff;
    color: #000;
    border-radius: 30px;
}


.cc-info-icon {

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    color: var(--cc-gold);

    background:
        rgba(245,197,24,.08);

}


.cc-info-icon.whatsapp {

    color: #25d366;

    background:
        rgba(37,211,102,.08);

}


.cc-info-icon.email {

    color: #c4b5fd;

    background:
        rgba(139,92,246,.08);

}


.cc-info-icon.location {

    color: #fb7185;

    background:
        rgba(251,113,133,.08);

}


.cc-info-item span {

    display: block;

    color: #697588;

    font-size: 13px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

}


.cc-info-item a,
.cc-info-item strong {

    display: block;

    margin-top: 3px;

    color: #000;

    font-size: 20px;

    font-weight: 750;

    text-decoration: none;

}


.cc-info-item a:hover {

    color: var(--cc-gold);

}


.cc-info-item small {

    display: block;

    margin-top: 2px;

        color: #86888b
    font-size: 12px;

}



/* =========================================================
   HOURS
========================================================= */

.cc-hours-box {

    margin-top: 20px;

    padding: 15px;

    border:
        1px solid
        var(--cc-border);

    border-radius: 11px;

    background: #0d1520;

}


.cc-hours-title {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 9px;

    color: #f1f4f8;

    font-size: 10px;

}


.cc-hours-title i {

    color: var(--cc-gold);

}


.cc-hours-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 6px 0;

    border-top:
        1px solid
        rgba(255,255,255,.04);

    color: #6f7c8e;

    font-size: 14px;

}


.cc-hours-row strong {

    color: #dfe4ea;

    font-size: 14px;

}


.cc-hours-row.emergency strong {

    color: #f5c518;

}



/* =========================================================
   SOCIAL
========================================================= */

.cc-social {

    margin-top: 20px;

}


.cc-social > span {

    color: #697588;

    font-size: 14px;

    font-weight: 700;

}


.cc-social > div {

    display: flex;

    gap: 6px;

    margin-top: 8px;

}


.cc-social a {

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        #273142;

    border-radius: 7px;

    color: #8995a7;

    background: #101925;

    text-decoration: none;

    transition: .25s;

}


.cc-social a:hover {

    color: #07101d;

    border-color: var(--cc-gold);

    background: var(--cc-gold);

}



/* =========================================================
   FORM CARD
========================================================= */

.cc-form-card {

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 16px;

    background:

        linear-gradient(
            145deg,
            #151f2d,
            #0e1621
        );

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.22);

}


.cc-form-heading {

    margin-bottom: 21px;

}


.cc-form-heading span {

    color: var(--cc-gold);

    font-size: 14px;

    font-weight: 850;

    letter-spacing: 1.4px;

}


.cc-form-heading h2 {

    margin: 6px 0;

    color: #f2f4f7;

    font-size: 25px;

    font-weight: 900;

}


.cc-form-heading h2 strong {

    color: var(--cc-gold);

}


.cc-form-heading p {

    margin: 0;

    color: #697588;

    font-size: 14px;

}


.cc-form-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;

}


.cc-form-group {

    margin-bottom: 12px;

}


.cc-form-group label {

    display: block;

    margin-bottom: 5px;

    color: #9aa5b5;

    font-size: 14px;

    font-weight: 700;

}


.cc-form-group label sup {

    color: #fb7185;

}


.cc-input {

    display: flex;

    align-items: center;

    min-height: 43px;

    gap: 8px;

    padding: 0 11px;

    border:
        1px solid
        #273345;

    border-radius: 7px;

    background: #0c1521;

    transition: .25s;

}


.cc-input:focus-within {

    border-color:
        rgba(245,197,24,.55);

    box-shadow:
        0 0 0 3px
        rgba(245,197,24,.05);

}


.cc-input > i {

    flex-shrink: 0;

    color: #687589;

    font-size: 10px;

}


.cc-input input,
.cc-input select,
.cc-input textarea {

    width: 100%;

    border: 0;

    outline: 0;

    color: #e8edf2;

    background: transparent;

    font-family: inherit;

    font-size: 14px;

}


.cc-input select {

    cursor: pointer;

}


.cc-input select option {

    color: #fff;

    background: #111925;

}


.cc-input textarea {

    resize: vertical;

    padding: 12px 0;

    line-height: 1.6;

}


.cc-input.textarea {

    align-items: flex-start;

}


.cc-submit {

    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 3px;

    border: 0;

    border-radius: 7px;

    color: #07101d;

    background:

        linear-gradient(
            90deg,
            #f5c518,
            #f59e0b
        );

    font-size: 14px;

    font-weight: 850;

    cursor: pointer;

    transition: .3s;

}


.cc-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(245,197,24,.18);

}


.cc-form-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin: 10px 0 0;

    color: #596577;

    font-size: 7px;

}



/* =========================================================
   QUICK BOOKING
========================================================= */

.cc-booking-section {

    padding: 65px 0;

    background: #0b111b;

}


.cc-booking-card {

    padding: 32px;

    border:
        1px solid
        rgba(245,197,24,.14);

    border-radius: 17px;

    background:

        radial-gradient(
            circle at 90% 10%,
            rgba(245,197,24,.08),
            transparent 28%
        ),

        #111a27;

}


.cc-booking-heading {

    margin-bottom: 25px;

}


.cc-booking-heading span,
.cc-corporate-content > span,
.cc-location-heading > span,
.cc-faq-heading > span {

    color: var(--cc-gold);

    font-size: 14px;

    font-weight: 850;

    letter-spacing: 1.5px;

}


.cc-booking-heading h2,
.cc-location-heading h2,
.cc-faq-heading h2 {

    margin: 6px 0;

    color: #f2f5f8;

    font-size: 28px;

    font-weight: 900;

}


.cc-booking-heading h2 strong,
.cc-location-heading h2 strong,
.cc-faq-heading h2 strong {

    color: var(--cc-gold);

}


.cc-booking-heading p {

    margin: 0;

    color: #697588;

    font-size: 14px;

}


.cc-booking-form {

    max-width: 100%;

}


.cc-booking-note {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin: 10px 0 0;

    color: #687588;

    font-size: 7px;

}



/* =========================================================
   CORPORATE
========================================================= */

.cc-corporate-section {

    padding: 60px 0;

    background: #080d15;

}


.cc-corporate-card {

    position: relative;

    min-height: 250px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 38px 45px;

    overflow: hidden;

    border:
        1px solid
        rgba(245,197,24,.18);

    border-radius: 17px;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(245,197,24,.14),
            transparent 25%
        ),

        linear-gradient(
            120deg,
            #131b2b,
            #1d1830,
            #25182d
        );

}


.cc-corporate-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

}


.cc-corporate-content h2 {

    margin: 8px 0;

    color: #fff;

    font-size: 30px;

    font-weight: 900;

}


.cc-corporate-content h2 strong {

    color: var(--cc-gold);

}


.cc-corporate-content p {

    max-width: 570px;

    margin: 0;

    color: #7e8a9b;

    font-size: 10px;

    line-height: 1.8;

}


.cc-corporate-buttons {

    display: flex;

    gap: 8px;

    margin-top: 19px;

}


.cc-btn-dark {

    color: #07101d;

    background: var(--cc-gold);

}


.cc-btn-light {

    color: #fff;

    border:
        1px solid
        rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.04);

}


.cc-btn-light:hover {

    color: #07101d;

    background: #fff;

}


.cc-corporate-icon {

    position: relative;

    width: 160px;
    height: 160px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(245,197,24,.16);

    border-radius: 50%;

    color:
        rgba(245,197,24,.7);

    font-size: 60px;

}


.cc-corporate-icon::before {

    content: "";

    position: absolute;

    inset: 20px;

    border:
        1px solid
        rgba(245,197,24,.14);

    border-radius: 50%;

    animation:
        ccRotate 12s linear infinite;

}


@keyframes ccRotate {

    to {
        transform: rotate(360deg);
    }

}



/* =========================================================
   LOCATION
========================================================= */

.cc-location-section {

    padding: 65px 0;

    background: #f3f5f8;

}


.cc-location-heading {

    margin-bottom: 25px;

}


.cc-location-heading h2 {

    color: #0d1725;

}


.cc-location-heading p {

    max-width: 550px;

    margin: 0;

    color: #718096;

    font-size: 14px;

}


.cc-location-grid {

    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 15px;

}


.cc-location-info {

    padding: 27px;

    border:
        1px solid
        #e3e8ef;

    border-radius: 13px;

    background: #fff;

}


.cc-location-icon {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    color: #b58700;

    background:
        rgba(245,197,24,.13);

}


.cc-location-info h3 {

    margin: 14px 0 4px;

    color: #0d1725;

    font-size: 16px;

}


.cc-location-info > p {

    margin: 0;

    color: #718096;

    font-size: 14px;

}


.cc-location-details {

    margin-top: 18px;

}


.cc-location-details > div {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 0;

    border-bottom:
        1px solid
        #edf0f4;

    color: #637083;

    font-size: 14px;

}


.cc-location-details i {

    width: 18px;

    color: #c79800;

}


.cc-location-details a {

    color: #273449;

    text-decoration: none;

    font-weight: 700;

}


.cc-map-button {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 18px;

    padding: 10px 13px;

    border-radius: 7px;

    color: #07101d;

    background: var(--cc-gold);

    font-size: 14px;

    font-weight: 850;

    text-decoration: none;

}


.cc-map {

    min-height: 350px;

    overflow: hidden;

    border-radius: 13px;

    box-shadow:
        0 15px 35px
        rgba(13,27,42,.12);

}


.cc-map iframe {

    width: 100%;

    height: 100%;

    min-height: 350px;

    border: 0;

}



/* =========================================================
   FAQ
========================================================= */

.cc-faq-section {

    padding: 65px 0;

    background: #080e17;

}


.cc-faq-heading {

    margin-bottom: 24px;

}


.cc-faq-list {

    max-width: 850px;

    margin: auto;

}


.cc-faq-item {

    margin-bottom: 7px;

    overflow: hidden;

    border:
        1px solid
        #222c3a;

    border-radius: 8px;

    background: #101925;

}


.cc-faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 15px 17px;

    border: 0;

    color: #dfe5eb;

    background: transparent;

    text-align: left;

    font-size: 14px;

    font-weight: 750;

    cursor: pointer;

}


.cc-faq-question i {

    color: var(--cc-gold);

    font-size: 14px;

    transition: .3s;

}


.cc-faq-item.active
.cc-faq-question {

    color: var(--cc-gold);

}


.cc-faq-item.active
.cc-faq-question i {

    transform:
        rotate(45deg);

}


.cc-faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .35s ease;

}


.cc-faq-answer p {

    margin: 0;

    padding: 0 17px 16px;

    color: #748094;

    font-size: 14px;

    line-height: 1.8;

}


.cc-faq-answer strong {

    color: #cbd5e1;

}



/* =========================================================
   FINAL CTA
========================================================= */

.cc-final-cta {

    padding: 48px 0;

    background:

        linear-gradient(
            120deg,
            #f5c518,
            #ffd95b
        );

}


.cc-final-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.cc-final-inner > div:first-child {

    max-width: 650px;

}


.cc-final-inner span {

    color: #725900;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1.4px;

}


.cc-final-inner h2 {

    margin: 6px 0;

    color: #07101d;

    font-size: 29px;

    font-weight: 900;

}


.cc-final-inner h2 strong {

    color: #fff;

}


.cc-final-inner p {

    margin: 0;

    color: #725900;

    font-size: 14px;

}


.cc-final-buttons {

    display: flex;

    gap: 7px;

}


.cc-final-call,
.cc-final-whatsapp {

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 15px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 850;

    transition: .25s;

}


.cc-final-call {

    color: #fff;

    background: #07101d;

}


.cc-final-whatsapp {

    color: #fff;

    background: #25d366;

}


.cc-final-call:hover,
.cc-final-whatsapp:hover {

    color: #fff;

    transform:
        translateY(-2px);

}



/* =========================================================
   FLOATING BUTTONS
========================================================= */

.cc-floating {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 999;

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.cc-floating a {

    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    box-shadow:
        0 7px 25px
        rgba(0,0,0,.28);

    transition: .25s;

}


.cc-float-call {

    background: #111c2b;

    border:
        1px solid
        rgba(245,197,24,.4);

    color: var(--cc-gold) !important;

}


.cc-float-whatsapp {

    background: #25d366;

}


.cc-floating a:hover {

    transform:
        scale(1.08);

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1050px) {

    .cc-card-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

    .cc-contact-layout {

        grid-template-columns: 1fr;

    }

    .cc-location-grid {

        grid-template-columns: 1fr;

    }

}


@media(max-width:768px) {

    .cc-contact-hero {

        min-height: 350px;

    }

    .cc-hero-content {

        padding: 55px 0;

    }

    .cc-hero-content h1 {

        font-size: 42px;

    }

    .cc-card-grid {

        grid-template-columns: 1fr;

    }

    .cc-main-contact,
    .cc-booking-section,
    .cc-corporate-section,
    .cc-location-section,
    .cc-faq-section {

        padding: 48px 0;

    }

    .cc-form-grid {

        grid-template-columns: 1fr;

        gap: 0;

    }

    .cc-corporate-card {

        padding: 30px 22px;

    }

    .cc-corporate-icon {

        display: none;

    }

    .cc-final-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


@media(max-width:520px) {

    .cc-form-card,
    .cc-booking-card {

        padding: 20px 16px;

    }

    .cc-hero-buttons,
    .cc-corporate-buttons,
    .cc-final-buttons {

        flex-wrap: wrap;

    }

    .cc-btn,
    .cc-final-call,
    .cc-final-whatsapp {

        flex: 1;

    }

    .cc-location-info {

        padding: 20px;

    }

    .cc-floating {

        right: 12px;

        bottom: 12px;

    }

}


.cc-alert {

    position: fixed;

    top: 90px;

    right: 25px;

    z-index: 9999;

    width: 360px;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 16px;

    border-radius: 12px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.3);

    animation:
        ccAlertIn .4s ease;

}


.cc-alert.success {

    color: #d1fae5;

    border:
        1px solid
        rgba(34,197,94,.25);

    background:
        linear-gradient(
            135deg,
            #10251b,
            #0d1915
        );

}


.cc-alert.error {

    color: #fee2e2;

    border:
        1px solid
        rgba(239,68,68,.25);

    background:
        linear-gradient(
            135deg,
            #291517,
            #171011
        );

}


.cc-alert-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #07101d;

    background: #f5c518;

    font-weight: 900;

}


.cc-alert strong {

    display: block;

    font-size: 11px;

}


.cc-alert p {

    margin: 4px 0 0;

    color: #9aa6b5;

    font-size: 8px;

    line-height: 1.6;

}


.cc-alert button {

    margin-left: auto;

    border: 0;

    color: #8995a7;

    background: transparent;

    font-size: 20px;

    cursor: pointer;

}


@keyframes ccAlertIn {

    from {

        opacity: 0;

        transform:
            translateX(40px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


@media(max-width:500px) {

    .cc-alert {

        left: 15px;

        right: 15px;

        width: auto;

    }

}