
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    height: auto;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    /* overflow-y: scroll; */
    /* overflow-x: hidden; */
    display: flex;
    flex-direction: column;
    /* background-color: #f4f4f4; */
}

/* main {
    flex: 1;
} */

header {
    color: white;
    text-align: center;
    padding: 0.6rem;
    /* width: 100vw; */
    min-height: 10vh;
}

nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    display: inline;
    font-family: 'Montserrat';
    font-weight: 500;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

main {
    padding: 2rem 0.5rem 8rem 0.5rem;
    /* width: 100vw; */
    /* width: 100%; */
    /* height: 100%; */
    min-height: 63vh;
}

.bg-color {
    /* background: #468354; */
    background: #328a45;
    /* background: #acd7ff; */
}

.brand-container {
    display: flex; flex-direction: row;
    justify-content: center;
    align-items: center;
}

.brand-container img {
    width: 8%;
    object-fit: contain; /* will ensure the aspect ratio is maintained while fitting the image within the element's box */
    height: auto;
    margin-left:10px;
}

footer {
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    /* width: 100vw; */
    box-sizing: content-box;
    /* min-height: 10vh; */
}

h1.main-brand {
    font-family:'Movement DirectThin', sans-serif;
    font-size:2.5vw;
    /* text-shadow: 0.8vw 0.6vw 0.1vw #8eac8590; */
    margin-bottom: 0.8vw;
    margin-top: 0;
}

/* .bg-color img {
    width: 8%;
    object-fit: contain; 
    height: auto;
} */


.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.slogan {
    /* font-family: sans-serif; */
    font-family: 'Montserrat', sans-serif;
    /* font-size: 48px; */
    font-size: 3vw;
    font-weight:800;
    margin-bottom: 0;
    margin-top: 0;
    text-shadow: 4px 2px #333;
    color:aliceblue
}

.slogan-container {
    padding: 0 1.5rem;
    flex-basis: 50%;
}

a {
    color: #68b8ee;
    /* text-shadow: 2px 3px #e6e6e6bb; */
    /* text-shadow: 2px 1px #57585820; */
    text-decoration: none;
}

a.arches-link {
    color: #C12027;
    text-shadow: 2px -2px #9EA090;
    font-size: calc(10px + 3vw);
}

a:hover {
    text-decoration: underline;
}

form {
    /* max-width: 300px; */
    margin: auto;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    display: block;
}

form button {
    padding: 10px 20px;
    background: #50b3a2;
    border: none;
    color: white;
    cursor: pointer;
}

form button:hover {
    background: #333;
}




/* .dictionary-entry {
    border-left: 4px solid #50b3a2;
    padding-left: 20px;
    margin: 20px 0;
} */

/* .dictionary-entry {
    font-family: "Times New Roman", Times, serif;
    border-left: 4px solid #50b3a2;
    padding-left: 20px;
    margin: 20px 0;
    line-height: 1.4;
} */

.dictionary-entry {
    font-family: Georgia, Times, serif;
    /* border-left: 4px solid #acd7ff; */
    border-left: 5px solid #328a45;
    padding: 0 20px;
    /* padding-top: 20px; */
    margin: 20px 0;
    line-height: 1.4;
    background-color: rgba(255, 255, 255, 0.8);
}


.pronunciation {
    font-family: Georgia, Times, serif; /* or any desired font */
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}


.term {
    font-size: 2rem;
    color: #333;
    margin: 10px 0;
}

.part-of-speech {
    font-style: italic;
    color: #777;
}

.definitions {
    list-style: decimal;
    margin-left: 20px;
}

.subject {
    font-style: italic;
    color: #555;
}

p.newton {
    color:#eaeaea;
}

.request-ctas {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 3rem 0;
}

div.request-ctas > div {
    position: relative; /* Set to relative to position the dropdown inside this */
    padding: 1rem 3rem 0 1rem;
    transition: all 0.3s; /* Smooth transition for hover effects */
    background-color: #e0e0e0; /* Example background color */
}

a.cta {
    text-decoration: underline; /* Subtle underline */
    color: #777; /* Muted color */
    font-weight: normal; 
    font-family: 'Roboto', sans-serif;
}

div.request-ctas a {
    padding: 0.8rem 0.75rem;
}

/* Dropdown styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Position right below the parent div */
    left: 0;
    z-index: 1;
    background-color: #f5f5f5; /* Light background */
    padding: 10px;
    border: 1px solid #ccc;
    width: 200px; /* You can adjust this as needed */
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}

div.request-ctas > div:hover .dropdown-content {
    display: block;
}


/* Triangle in the corner */
div.request-ctas > div::after {
    content: ""; 
    position: absolute;
    right: 0; 
    top: 0;
    width: 0;
    height: 0;
    border-left: 60px solid transparent; /* Adjust for triangle size */
    border-bottom: 60px solid #00842c; /* Triangle color */
}

.heading-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /* background-color: rgba(255, 255, 255, 0.75); */
    padding: 2vh 3vw 4vh 3vw;
}

main.home {
    background-image: url('/static/images/greens.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 0 0 8rem 0;
}

.screenshot-container {
    position: relative;
    /* width: fit-content; */
    flex-basis: 50%;
}

.screenshot-container img {
    width: 100%;
    transition: transform 0.5s ease;
}

.screenshot-container:hover img {
    transform: scale(1.1);
}

.overlay-text {
    position: relative;
    top: -50%;
    left: 30%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2vw;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.screenshot-container:hover .overlay-text {
    opacity: 1;
}

.image-gray-layer {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.0));
    height: 100%;
    min-height: 63vh;
    /* background-color: rgba(0, 0, 0, 0.6); */
    /* pointer-events: none; */
}

/* seed styles START */
.inpage-header {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.constrainer {
    max-width: 800px;
    margin: auto;
}

.media {
    text-align: center;
}

.media img {
    max-width: 100%;
    height: auto;
}

.media-attribution {
    font-size: 0.8rem;
    color: #777;
}

.universal-gridder {
    padding: 20px;
    background: #fff;
}

.section-header h1 {
    font-size: 1.5rem;
    color: #333;
}

.supheading {
    font-size: 1.2rem;
    color: #555;
}
/* seed styles END */

/* ABOUT START */

main.about {
    height: auto;
    padding-bottom: 4rem;
    background-color: #c5d1da;
}
main.about > section {
    width: 60vw;
    padding: 30px;
}

.open-source-section {
    background-color: #f4f9ff;
    /* padding: 30px; */
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* max-width: 800px; */
    margin: 30px auto;
    text-align: center;
}

.section-header {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-content {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.beginning-section {
    /* max-width: 800px; */
    margin: 30px auto;
    position: relative;
    overflow: hidden; /* To ensure the overlay stays within the section boundaries */
}

.beginning-image {
    background-image: url('/static/images/TA.jpeg');
    background-repeat: no-repeat;
    /* background-size: 25vh; */
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    height: auto;
    /* position: relative; */
}

/* .beginning-image img {
    max-width: 100%;
    height: auto;
} */

.overlay {
    /* position: absolute; */
    /* top: 10%;  Adjust to set the top position of the overlay */
    /* left: 10%;  Adjust to set the left position of the overlay */
    width: 80%; /* Adjust to set the width of the overlay */
    height: 80%; /* Adjust to set the height of the overlay */
    background-color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 10px; /* Optional: Adds rounded corners to the overlay */
}

.section-header {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.open-source-section p.section-content, .beginning-section p.section-content {
    font-size: 1rem;
    color: #323232;
    line-height: 1.5;
    text-align: left;
}

p.section-content a {
    color:#1469a1;
}

/* ABOUT END */

/* CONTACT BEGIN */
main.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100vh; or whatever height you want */
    background-color: #adacac;
    padding: 4rem 2rem 2rem 2rem;
}
main.contact > div {
    width: 80vw;
    border-radius: 1rem;
    padding: 4rem 3rem 3rem 3rem;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
}

div.contact-text h2 {
    text-align: center;
}
/* CONTACT END */

/* PORTFOLIO BEGIN */
main.portfolio {
    height: auto;
    /* min-height:100%; */
    padding-bottom: 4rem;
    background-color: #c5d1da;

}

main.portfolio > div {
    background-color: #f4f9ff;
    padding: 5%;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;

}

/* main.portfolio h2, main.portfolio h3 {
    text-align: center;
} */
/* Your custom styles */
.hidden { display: none; }
.carousel-a {
    /* background-color: rgb(243, 243, 243);
    box-shadow: 2px 2px 3px rgba(128, 128, 128, 0.474); */
    min-height: calc(30vh - 12px);
}
.carousel-a-item, .carousel-b-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px; /* Set the height of the carousel */
}

.carousel-a-item img, .carousel-b-image {
    max-width: 100%;   /* ensures the image is no wider than its container */
    /* ensures the image is no taller than its container */
    max-height: 100%;
    object-fit: contain; /* will ensure the aspect ratio is maintained while fitting the image within the element's box */
    height: auto;      /* optional, depending on your layout */
    width: auto;
}
.carousel-caption {
  /* position: absolute; */
  /* bottom: 0; */
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  padding: 10px;
}
/* Styles for the shrunken div */
.shrunken-carousel {
  height: 100px; /* New height after shrinking */
  transition: height 0.5s; /* Smooth transition for the height */
}
.carousel-b-container {
  display: flex;
}
.carousel-b-text {
  flex: 1;
}
.carousel-b-image {
  flex: 1;
  max-height:750px;
}

/* PORTFOLIO END */

/* BASE extras BEGIN */
:root {
    --forest-green: #228B22;
    --light-blue: #87CEEB;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --red: #dc3545;
    --orange: #FF6E1B;
    --yellow: #ffc107;
    --green: #28a745;
    --cyan: #17a2b8;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --light-orange: #FF8F28;
    --uc-gray: #7C7E7F;
    --metallic-gold: #B4975A;
    --primary: #E44C9A;
    --secondary: #005581;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #fff;
    --dark: #000;
    --uc-blue: #1295D8;
    --uc-gold: #FFB511;
    --uc-black: #4b4b4b;
    --blue: #005581;
    --light-blue: #72CDF4;
    --gold: #FFD200;
    --light-gold: #FFE552;
    --pink: #E44C9A;
    --light-pink: #FEB2E0;
    --teal: #00778b;
    --light-teal: #00A3AD;
    --gray-300: #DBD5CE;
    --white: #fff;
}
/* a.btn {
    background-color: var(--forest-green);
    overflow: hidden;
    position: relative;
    background-image: linear-gradient(to right, rgba(34, 139, 34, 0), rgba(135, 206, 235, 0));
    transition: background-image 0.75s ease-out;
    color: #fff;

}
a.btn::before {
    background-image: linear-gradient(to right, var(--light-blue), var(--forest-green));
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    z-index: -1;
}
a.btn:hover::before {
    opacity: 1;
}
a.btn:hover {
    background-image: linear-gradient(to right, rgba(34, 139, 34, 1), rgba(135, 206, 235, 1));
}
a.btn span {
    position: relative;
} */

/* a.btn2 {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    --breakpoint-xs: 0;
    --breakpoint-sm: 768px;
    --breakpoint-md: 1024px;
    --breakpoint-lg: 1280px;
    --breakpoint-xl: 1440px;
    --font-family-sans-serif: Kievit, Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-family: Kievit, Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    list-style: none;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border-radius: 0;
    background-color: --pink;
    font-weight: 700;
    letter-spacing: -0.01em;
    border: none;
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    background-position: right center;
    transition: background .15s ease-out;
    display: inline-block;
    font-size: 1.2em !important;
    color: #fff;
    background-image: linear-gradient(to right, #FFE552 0, #E44C9A 50%);
    background-repeat: repeat-x;
    line-height: 1.125rem;
    min-width: 104px;
    padding: 17px;
} */

/* BASE extras END */

/* PROBONO BEGIN */
main.probono {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100vh; or whatever height you want */
    background-color: #adacac;
    padding: 4rem 2rem 2rem 2rem;
}
main.probono > div {
    width: 80vw;
    border-radius: 1rem;
    padding: 4rem 3rem 3rem 3rem;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
}
/* PROBONO END */

main.thank-you {
    height: 80%;
}

.slick-carousel img {
    width: 100%;
    cursor: pointer;
}

.carousel-a-caption {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 3px;
    text-align: center;
}

#carousel-popup {
    background-color: #f5f5f5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}


/* PRICING BEGIN */
main.pricing {
    height: auto;
    padding-bottom: 4rem;
    background-color: #c5d1da;
    display: flex;
    flex-direction: column;
}

main.pricing > div {
    /* background-color: #DBD5CE; */
    width: 85%;
    border-radius: 1rem;
    padding: 2rem 2rem;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
}
.sku-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  .sku-table th, .sku-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    min-width: 56px;
    text-align: center;
  }
  
  .sku-table thead {
    background-color: #f2f2f2;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  
  .sku-table th {
    font-weight: bold;
  }
  
  .original-price {
    text-decoration: line-through;
    color: #777;
  }
  
  .discounted-price {
    color: #007bff; /* Or another color that indicates a discount */
    font-weight: bold;
  }
  
  .sku-table tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  main.pricing h2 {
    font-family: 'Montserrat', sans-serif;
  }

  .superscript-detail p {
    font-size: 12px;
    line-height: normal;
  }
  main.plan-matrix {
    height: auto;
    padding-bottom: 4rem;
    background-color: #c5d1da;
    display: flex;
    flex-direction: column;
  }
  main.plan-matrix > div {
    /* width: 90%; */
    border-radius: 1rem;
    padding: 4rem 3rem 3rem 3rem;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
  }
  main.plan-matrix i.fa.fa-check {
    color:#328a45;
  }

  .plan {
    display: flex;
    border: 1px solid #eee;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
    padding: 40px 14px;
    position: relative;
    background-color: #fff;
  }

  div#bundles-no-carousel {
    margin: 0 auto;
  }

  #bundles-no-carousel .plan {
    height: 100%;
    min-height: 550px;
    max-width: 283px;
    width: 18vw;
    padding: 40px 14px;
    position: relative;
    background-color: #fff;
    margin-top: 40px;
  }

  .plan.standard {
    border: 1px solid #3b78e7;
  }

  .most-popular {
    background: #e8f0fe;
    color: #3b78e7;
    font-size: 12px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: -40px;
    left: 0px;
    width: 18vw;
    max-width: 283px;
    padding: 10px 14px;
  }
  .plan .detail {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .plan .detail .plan-name {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
  }

  div.plan-name {
    padding-bottom: 14px;
  }

  .plan .detail .plan-price {
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 16px 0 22px;
  }
  div.plan-price-value span {
    font-size: 12px;
    /* color:gray; */
    color:#929292;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
  }

  div.plan-price-value a {
    color:#007bff;
    line-height: 1.6;
  }
  div.plan-price div.plan-price-clarifications span {
    
    color: #007bff;
    font-family: 'Roboto',Arial,Helvetica,sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .15px;
    line-height: normal;
    margin-bottom: 20px;
    margin-top: 5px;
    text-align: center;
  }
  div.plan-price div.plan-price-clarifications span em {
    font-style: italic;
    text-decoration: underline;
  }
  div.price-plan-value {
    color: #3b78e7;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.25px;
    line-height: 44px;
  }
  ul.features {
    border-top: 1px solid #eee;
    font-size: 14px;
    line-height: 18px;
    margin-top: 12px;
    list-style: none;
    padding-inline-start: 16px;
    display: flex;
    flex-direction: column;
    align-items: baseline !important;
  }
  ul.features li {
    text-align: left !important;
  }
  ul.features li i {
    color: #3b78e7;
    font-size: 20px;
    margin-right: 8px;
    /* display: inline-block;
    letter-spacing: normal;
    font-weight: normal;
    white-space: nowrap; */
  }
  ul.features li span {
    color: #616161;
    font: normal normal 14px 'Roboto',Arial,Helvetica,sans-serif;
    letter-spacing: .15px;
    line-height: 18px;
    text-align: left;
    word-break: break-word;
  }
  div.plan div.detail a.button.btn.btn-secondary {
    background: #fff;
    border: 1px solid #dadce0;
    color: #1a73e8;
    padding: 0 27px;
  }

  div.plan div.detail a.button.btn.btn-primary {
    background: #1a73e8;
    color: #fff;
  }
  a.button {
    align-items: center;
    border: 0;
    border-radius: 4px;
    box-shadow: none;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font: 500 14px Arial,sans-serif;
    height: 44px;
    justify-content: center;
    letter-spacing: 0;
    min-width: 100px;
    outline: 0;
    padding: 0 28px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    transition: none;
    vertical-align: inherit;
  }
  #app.bundle-carousel {
    display: none;
  }
  #bundles-no-carousel.plan-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* PRICING END */

/* ORDER BEGIN */
#orderApp button {
    background-color: var(--button-color);
    color: var(--button-text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    min-width: -webkit-fill-available;
    min-height: 40px;
}
#orderApp button.disabled, #orderApp button.disabled:hover, #orderApp button.disabled:focus {
    background-color: #8ebff3;
    cursor: not-allowed;
}

#orderApp a {
    text-decoration: none;
    color: #333;
}

#orderApp button:hover, #orderApp button:focus {
    background-color: #3b77e7b4;
}

#orderApp {
    --primary-color: #3b78e7; /* Primary brand color */
    --text-color: #333; /* Dark color for text */
    --background-color: #f8f8f8; /* Light background color */
    --button-color: #3b78e7; /* Button color */
    --button-text-color: white; /* Button text color */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* height:auto; */
    min-height: 63vh;
    font-family: 'Montserrat', Helvetica, sans-serif;
    /* background-color: #eef6ff;
    box-shadow: 6px 7px 12px rgb(167, 167, 167, 0.7); */
}

#orderApp > div {
    flex-direction: column;
}
div.order-flow-plan-select div {
    margin-left: 24px;
}

div.order-flow-plan-select h2 {
    text-align: center;
}
div.order-progress-panel {
    /* margin-right: 20px; */
    padding: 0 3% 2% 3%;
    /* border-left: 6px solid #d6e8f1; */
    max-width: 40vw;
    flex-basis: 25%;
    margin-left: 6px;
    background-color: #eef6ff;
    box-shadow: 6px 7px 12px rgb(167, 167, 167, 0.7);
    /* background-color: #eef6ff; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

div.order-progress-panel .progress-subtotals {
    flex-basis: 20%;
}

div.order-plan span {
    font-size: min(3vw, 24px);
}
div.order-flow {
    padding: 0 7% 0 5%;
    background-color: #eef6ff;
    box-shadow: 6px 7px 12px rgb(167, 167, 167, 0.7);
    flex-basis:66%;
}

.order-plan {
    border-top: 1px solid #979797;
    cursor: pointer;
    padding: 10px;
    box-sizing: border-box;
    transition: background-color 0.5s ease; /* Transition effect for background color */
    opacity: 0; /* Start with invisible for fade-in effect */
    animation: fadeIn 0.5s ease forwards; /* Animation for fade-in */
}
.order-plan-link {
    text-decoration: none;
    color: inherit;
    flex-basis: 70%; /* Adjust this for responsiveness */
}
.order-plan-link:hover {
    text-decoration: none; /* Removes underline on hover */
}

.order-plan-link:hover .order-plan, .order-plan-link:focus .order-plan {
    /* Low-saturation light blue */
    /* background-color: #e0f7ff; */
    /* background-color: #328a45; */
    background-color: #328a452f;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* .order-plan-link:nth-child(1) .order-plan { animation-delay: 0s; }
.order-plan-link:nth-child(2) .order-plan { animation-delay: 0.2s; }
.order-plan-link:nth-child(3) .order-plan { animation-delay: 0.4s; }
.order-plan-link:nth-child(4) .order-plan { animation-delay: 0.6s; } */

main.order {
    /* height: auto;
    padding-bottom: 4rem;
    background-color: #deedf9;
    display: flex;
    flex-direction: column; */
    padding: 2vh 2vw 6vh 2vw;
    background-color: #d6e8f1;
    /* box-shadow: 10px 5px 5px black; */
}

.checkmark {
    color: green;
    margin-left: 10px;
    /* font-size: 20px; */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-plan-link:hover .checkmark, .order-plan-link:focus .checkmark {
    opacity: 1; /* Fade in on hover or focus */
}

div.order-summary {
    flex-basis:100%;
    flex-direction: column;
    background-color: #eef6ff;
    padding: 2% 5%;
    box-shadow: 6px 7px 12px rgb(167, 167, 167, 0.7);
    /* align-self: baseline; */
}
div.order-summary-sections {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

div.order-summary-sections > div {
    padding: 0 2%;
}

.order-summary .card-body {
    padding: 20px;
    flex-basis: 55%;
}

.order-summary .collect-info {
    padding: 20px;
    flex-basis: 25%;
}

.order-summary ul {
    padding-left: 20px; /* For proper list alignment */
}

.subtotal {
    font-weight: bold;
    color: #333; /* Adjust color as needed */
    margin-top: 20px; /* Spacing before subtotal */
}

.order-summary button {
    margin-top: 20px; /* Spacing before button */
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 34px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(86px);
  }

/* Move text to the left when checked */
/* input:checked + .slider .slider-text {
    transform: translateX(calc(-50% - 86px));
} */
  
  .slider-text {
    position: absolute;
    width: 100%;
    color: white;
    text-align: center;
    line-height: 34px;
    font-size: 14px;
    transition: transform 0.4s linear;
    left: 50%; /* Centering text */
    transform: translateX(-50%); /* Centering text */
}
  
  /* input:checked + .slider .slider-text {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.4s linear;
  } */

  .savings-alert {
    color: #4CAF50; /* Green color for positive alert */
    font-weight: bold;
    background-color: #e8f5e9; /* Light green background */
    border: 1px solid #c8e6c9; /* Slightly darker green border */
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    margin-left: 12px;
    display: inline-block;
}

.savings-alert span {
    display: block; /* Make each piece of information appear on a new line */
}

.savings-icon {
    color: #4CAF50; /* Green color */
    margin-right: 5px;
    vertical-align: middle;
}
  

/* ORDER END */




@media (max-width: 1000px) {
    h1.main-brand {
        font-size: 4.5vw;
    }
    .brand-container img {
        width: 20%;
        object-fit: contain; /* will ensure the aspect ratio is maintained while fitting the image within the element's box */
        height: auto;
        margin-left:10px;
    }
    nav a {
        color: white;
        padding: 7px 6px;
        text-decoration: none;
        text-align: center;
        display: inline;
        font-size: 3.5vw;
        font-family: 'Montserrat';
        font-weight: 500;
    }
    nav span {
        font-size: 3.5vw;
        font-size: 3.5vw;
        font-family: 'Montserrat';
        font-weight: 500;
    }
    .slogan {
        font-size: 5.5vw !important;
        margin-top: 10px;
        text-shadow: 2px 1px #333;
    }
    a.arches-link {
        text-shadow: 1px -1px #9EA090;
        font-size: calc(10px + 4.5vw);
    }
    .slogan-container {
        padding: 0 0 0 0 !important;
        flex-basis: 100%;
    }
    .screenshot-container {
        position: relative;
        /* width: fit-content; */
        flex-basis: 100%;
    }
    .heading-container {
        display: flex;
        flex-direction: column !important;
        justify-content: space-evenly;
        /* background-color: rgba(255, 255, 255, 0.75); */
        padding: 12px !important;
    }
    .overlay-text {
        position: absolute !important;
        top: 55% !important;
        left: 50% !important;
        opacity: 1 !important;
        font-size: 4vw !important;
    }
    .dictionary-entry {
        /* margin-top: 20px; */
        display: none;
    }
    .btn-apply-now {
        padding: 10px 20px;
        font-size: 1rem;
    }
    header, footer {
        width: auto;
    }
    main.contact, main.contact > div {
        width: auto !important;
    }
    /* pricing begin */
    #app.bundle-carousel {
        display: block;
      }
    #bundles-no-carousel.plan-options {
        display: none;
    }

    ul.features li span {
        color: #616161;
        font: normal normal 14px 'Roboto',Arial,Helvetica,sans-serif;
        letter-spacing: .15px;
        line-height: 18px;
        text-align: left;
        font-size: 3vw;
      }

    .sku-table {
        font-size: 2.5vw;
        margin-left: -1rem;
        /* margin-right: -2rem; */
      }

      main.plan-matrix > div {
        /* width: 90%; */
        border-radius: 1rem;
        padding: 0;

      }
      main.plan-matrix table.sku-table {
        margin-left: 0;
      }
      table span > i {
        font-size:3.5vw;
      }

    /* pricing end */

    /*  */
}