
/* Mobile-first styles for Brand Sweepstake Prelander with theming support */

/* CSS Variables for theming */
:root {
    /* Colors */
    --background-color: #ffffff;
    --primary-color: #006241; /* Default: Starbucks green */
    --primary-text-color: #ffffff;
    --secondary-color: #f7f7f7;
    --secondary-text-color: #333333;
    --border-color: #e0e0e0;
    --black-color: #000000;
    /* Border radius */
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 15px;
    --container-border-radius: var(--border-radius-medium);
    --dark-text-color: #000000;
    --light-text-color: #ffffff;
    --black-text-color: #000000;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
 
    /*
      Introduced in Internet Explorer 10.
      See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
    */
    -ms-user-select: none;
    user-select: none;
 }
/* Custom scrollbar - Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--primary-color) 70%, transparent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, transparent);
}

/* Hide scrollbar when not scrollable */
::-webkit-scrollbar-thumb:vertical:not(:hover):not(:active) {
    min-height: 30px;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--primary-color) 70%, transparent) transparent;
}
html {
    overflow-y: scroll !important ;
    color: var(--black-color)
}
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--secondary-text-color);
    background-color: var(--background-color);
    padding: 0 15px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    background-color: #ffffff; /* Always white background for containers */
    color: var(--black-text-color); /* Always dark text for readability */
    min-height: calc(100vh - 300px);
    position: relative;
    transition: all 0.3s ease;
    border-radius: var(--container-border-radius);
    overflow: hidden; /* Ensures content doesn't overflow rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid color-mix(in srgb, var(--primary-color) 80%, transparent);
    z-index: 1;
}

/* Loading container */
.loading-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.hidden,
.loading-container.hidden {
    display: none;
}

/* Hourglass Loading Animation */
.hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #888888;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z'/%3E%3C/svg%3E") no-repeat center center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z'/%3E%3C/svg%3E") no-repeat center center;
    animation: hourglass-animation 2s infinite;
}

@keyframes hourglass-animation {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}

/* Utility classes */
.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-between {
    justify-content: space-between;
}

.flex-center {
    align-items: center;
}

/* Header styles */
header {
    max-width: 600px;
    margin: 10px auto 0px;
    padding: 0px 0px;
    width: 100%;
}

/* Intro container styles */
#introContainer {
    text-align: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 30px;
}

/* Logo container styling */
.logo-container {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Date display styling */
#dateString {
    font-size: 14px;
    color: var(--secondary-text-color);
    font-style: italic;
    opacity: 0.8;
    text-align: right;
    padding: 5px 10px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#intro {
    margin-top: 15px;
    line-height: 1.5;
    font-size: 16px;
    color: var(--black-text-color);
    text-align: left;
    padding: 10px;
    background-color: #ffffff;
    border-radius: var(--border-radius-small);
}

.voucher-amount {
    text-align: center;
    /* font-size: 12px; */
    font-weight: bold;
    margin: 15px 0;
    color: var(--black-color);
}

.red {
    color: #e74c3c;
    font-weight: bold;
}

.center {
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    padding: 5px;
    margin: 0;
}

.logo img {
    width: 150px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--black-text-color);
    line-height: 1.4;
}

h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--black-text-color);
}

/* Main content area */
main {
    padding: 10px 15px;
}



/* Survey question styles */
.question {
    margin-bottom: 30px;
}

.question:not(:first-child) {
    display: none;
}

.answer {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--primary-color);
    /* border: 1px solid var(--primary-color); */
    border-radius: var(--border-radius-small);
    text-align: center;
    text-decoration: none;
    color: var(--primary-text-color);
    font-weight: 600;
    transition: all 0.2s ease;
}

.answer:hover, .answer:active {
    filter: brightness(85%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Checking container styles */
#checkingContainer {
    text-align: center;
}
#checkingContainer p {
    color: var(--black-color)
}

/* Checking screen styles */
.check {
    padding: 20px 0;
    text-align: center;
    display: none;
}

.loader {
    margin: 20px auto;
    display: block;
}

.checkItem {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 15px 0;
    animation: slideIn 0.5s ease;
    text-align: left;
    padding: 0 20px;
}

.sprite {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    flex-shrink: 0;
}

.sprite-check {
    background-image: url('../images/icons/check.png');
}

/* Confirmation screen styles */
#confirmationContainer, #introContainer, #surveyContainer, #checkingContainer {
    text-align: center;
    padding: 20px 0;
    color: var(--black-text-color);
    background-color: #ffffff;
}

/* Milestone progress bar styles */
.milestones {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.milestone-progress {
    display: flex;
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.milestone-segments {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.milestone-segment {
    height: 100%;
    flex: 1;
    margin: 0 1px;
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
}

.milestone-segment.active {
    background-color: var(--primary-color);
}

.milestone-markers {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.milestone-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.milestone-icon {
    font-size: 24px;
    margin-bottom: 5px;
    position: relative;
}

.milestone-text {
    font-size: 12px;
    color: var(--secondary-text-color);
    white-space: nowrap;
}

/* Tooltip styles */
.milestone-marker .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.milestone-marker .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.milestone-marker:hover .tooltip {
    visibility: visible;
    opacity: 1;
}


.congrats {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.steps {
    margin: 25px 0;
}

.step {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: var(--border-radius-small);
    background-color: #ffffff;
    color: var(--black-text-color);
}

.step-number {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.step-text {
    margin-bottom: 15px;
    color: var(--black-text-color);
}

.share-button, .continue-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    text-decoration: none;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    margin: 4px 0;
    transition: all 0.2s ease;
    border: 1px solid var(--primary-color);
    text-align: center;
}

.share-button.whatsapp {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    border: 1px solid #1da851;
}

.share-button.whatsapp:hover, .share-button.whatsapp:active {
    background-color: #128C7E; /* Darker WhatsApp green */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-button.telegram {
    background-color: #2C9ED8; /* Telegram blue */
    color: white;
    border: 1px solid #0077b5;
}

.share-button.telegram:hover, .share-button.telegram:active {
    background-color: #0077b5; /* Darker Telegram blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-button.facebook {
    background-color: #1877F2; /* Facebook blue */
    color: white;
    border: 1px solid #0e5fcc;
}

.share-button.facebook:hover, .share-button.facebook:active {
    background-color: #166FE5; /* Darker Facebook blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-button.twitter {
    background-color: #000000; /* X (Twitter) black */
    color: white;
    border: 1px solid #333333;
}

.share-button.twitter:hover, .share-button.twitter:active {
    background-color: #333333; /* Darker X (Twitter) */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-button.instagram {
    background: linear-gradient(45deg, #FD5949, #D6249F, #285AEB); /* Instagram gradient */
    color: white;
    border: 1px solid #D6249F;
}

.share-button.instagram:hover, .share-button.instagram:active {
    background: linear-gradient(45deg, #D6249F, #285AEB, #FD5949); /* Shifted Instagram gradient */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.share-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.share-button img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.continue-button {
    width: 100%;
    text-align: center;
}

.continue-button:hover, .continue-button:active {
    background-color: var(--primary-color);
    filter: brightness(85%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.answer,
.share-button, .continue-button {
    border: 3px solid color-mix(in srgb, #ffffff 30%, transparent);
}


.timer {
    margin: 20px 0;
    padding: 10px;
    background-color: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    color: var(--black-color);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 12px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius-medium);
    max-width: 80%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lightbox-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--black-color);
    font-weight: 600;
}

.lightbox-close {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    border: none;
    padding: 2px 2px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    filter: brightness(85%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
}

.lang-button {
    display:none;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--secondary-text-color);
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.lang-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lang-button.active {
    background-color: var(--primary-color);
    color: var(--primary-text-color);
    border-color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Theme Switcher Styles */
.theme-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-top: 20px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-small);
    border: 1px solid var(--border-color);
    gap: 10px;
}

#brandSelect {
    padding: 8px;
    width: 100%;
    max-width: 300px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-small);
    background-color: var(--background-color);
    color: var(--secondary-text-color);
    margin-bottom: 10px;
}

/* Mode Selector */
.mode-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.mode-selector label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.mode-selector input[type="radio"] {
    margin-bottom: 5px;
}

.mode-selector span {
    font-size: 14px;
    color: var(--secondary-text-color);
    transition: color 0.2s ease;
}

.mode-selector input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: bold;
}



#leadgen-form label {
    color: var(--black-text-color)
}

hr {
    margin-bottom: 10px;
    margin-top: 10px;
    border: 1px solid var(--border-color);
}

/* Facebook-style comments for testimonials */
#testimonials {
    margin: 20px 0;
    padding: 15px;
    background-color: #f0f2f5;
    border-radius: var(--border-radius-medium);
    position: relative;
}

#testimonials:before {
    content: 'Comments';
    display: block;
    font-weight: 600;
    color: #050505;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: Helvetica, Arial, sans-serif;
    padding-bottom: 10px;
    border-bottom: 1px solid #dddfe2;
}

.testimonial {
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 12px;
    overflow: hidden;
}

/* Facebook-style reply */
.reply {
    margin-top: 8px;
    margin-left: 40px;
    position: relative;
    padding-left: 12px;
}

/* Add connecting line for reply */
.reply:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e4e6eb;
    border-radius: 2px;
}

.fb-comment-header {
    display: flex;
    align-items: flex-start;
}

.fb-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid #dddfe2;
}

.fb-comment-content {
    flex: 1;
    font-family: Helvetica, Arial, sans-serif;
}

.fb-comment-name {
    font-weight: 600;
    color: #385898;
    margin-bottom: 4px;
    font-size: 13px;
}

.fb-comment-text {
    font-size: 13px;
    line-height: 1.4;
    color: #1c1e21;
    margin-bottom: 8px;
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 8px 12px;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.fb-comment-actions {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #65676b;
    padding-left: 12px;
    margin-top: 2px;
}

.fb-like-button {
    background: none;
    border: none;
    color: #65676b;
    font-weight: 600;
    font-size: 12px;
    padding: 0;
    margin-right: 8px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fb-like-button:hover {
    color: #385898;
    text-decoration: underline;
}

.fb-like-button.fb-liked {
    color: #1877f2;
}

.fb-like-count {
    margin-right: 12px;
    color: #65676b;
    transition: transform 0.2s ease;
}

.fb-comment-time {
    color: #65676b;
    position: relative;
}

.fb-comment-time:before {
    content: '·';
    margin: 0 4px;
    display: inline-block;
}

/* Add Facebook-like thumbs up icon */
.fb-like-button:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('../images/icons/thumbs-up.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.2s ease;
}

.fb-like-button.fb-liked:before {
    filter: grayscale(0) opacity(1);
    filter: brightness(0) saturate(100%) invert(40%) sepia(57%) saturate(2259%) hue-rotate(203deg) brightness(97%) contrast(96%);
}




/* Common styles for all testimonial images */
.testimonial-image {
    background-image: url('../images/testimonials/jp/sprite.webp');
    background-repeat: no-repeat;
    display: inline-block;
  }
  
  /* Individual testimonial image positions */
  .testimonial-image-1 {
    background-position: 0px 0px;
    width: 200px;
    height: 200px;
  }
  
  .testimonial-image-2 {
    background-position: -200px 0px;
    width: 200px;
    height: 200px;
  }
  
  .testimonial-image-3 {
    background-position: -400px 0px;
    width: 200px;
    height: 200px;
  }
  
  .testimonial-image-4 {
    background-position: 0px -200px;
    width: 200px;
    height: 200px;
  }
  
  .testimonial-image-5 {
    background-position: -200px -200px;
    width: 200px;
    height: 200px;
  }
  
  .testimonial-image-6 {
    background-position: -400px -200px;
    width: 200px;
    height: 200px;
  }
/* Mobile optimizations */
@media (max-width: 480px) {
    .container {
        padding: 12px;
    }
    
    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    .answer {
        padding: 12px;
    }


    #introContainer {
        margin-bottom: 0px;
        padding:15px 0;
    }
    
    
}
@media (max-width: 420px) {
    
    h1 {
        font-size: 20px;
    }
    
    h2 {
        font-size: 18px;
    }
    
}


@media (max-width: 340px) {
    #dateString {
        display: none !important;
    }
}

/* Mobile optimizations */
@media (max-width: 320px) {
    .container {
        padding: 8px;
    }
    
    h1 {
        font-size: 18px;
    }
    
    h2 {
        font-size: 14px;
    }
    
    .answer {
        padding: 12px;
    }

    #introContainer {
        margin-bottom: 0px;
        padding: 15px 0;
    }


    #surveyContainer {
        padding: 5px 0;
    }



}/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
}

.lightbox-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 5px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid color-mix(in srgb, var(--primary-color) 80%, transparent);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #333;
}

.lightbox-iframe {
    width: 100%;
    height: 70vh;
    border: none;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    font-size: 14px;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8);
}
