/*
   CSS styling examples for the Vaadin app.
   Visit https://vaadin.com/docs/flow/theme/theming-overview.html and
   https://vaadin.com/themes/lumo for more information.
*/
html {
    font-size: 16px;
    --lumo-font-family: "PT Sans", "Roboto", Verdana, sans-serif;
}

body {
    background: whitesmoke;
}

a[selected]{
    border-bottom-style: solid;
    border-bottom-width: thin;
}

vaadin-tab{
    font-size: 13.5px;
    color: black;
    background: white;
    font-family: Arial, Helvetica, sans-serif;
}

vaadin-tab[selected] {
    font-size: 15px;
    color: white;
    background: steelblue;
    font-family: Arial, Helvetica, sans-serif;
}

vaadin-tab:hover{
    background: lightgray;
}

vaadin-dialog-overlay {
    z-index: 999;
}

.guest-background {
    background: url("images/guest-background.jpg");
    background-repeat: repeat;
    background-position: top;
    background-size: contain;
    overflow-x: hidden;
    height: 100%;
}

/* The following are used in HeaderComponent */
.header-container {
    width: 100%;
    height: 64px;
    background: #FFF;
    position: relative;
    box-shadow: var(--lumo-box-shadow-xs);
}

.header-left {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-middle {
    margin: 0px 10px;
    flex-grow: 0;
    display: flex;
    align-items: center;
    height: 64px;
    cursor: pointer;
}

.header-logo {
    height: 50px;
}

.header-right {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-toggle {
    height: 100%;
    align-items: center;
    display: none;
    position: absolute;
    left: 0;
}

.header-toggle-button {
    border-style: solid;
    border-radius: 50%;
    border-width: 1px;
    color: #000;
}

.header-link {
    font-size: 9.2pt;
    margin-left: 20px;
    margin-right: 20px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Karla', sans-serif;
}

.header-link:hover {
    text-decoration: none;
}

.footer-icons {
    margin-top: 8px;
}

.footer-icon {
    height: 33px;
    margin-left: 4px;
    margin-right: 4px;
    transition: all .2s ease-in-out;
}

.footer-icon:hover {
    transform: scale(1.1);
}

/* The following are used in FooterComponent */
.footer-container {
    width: 100%;
    background: linear-gradient(45deg, #2d4059, #415c80);
    color: #FFF;
    flex-wrap: wrap;
}

.footer-link-container{
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
    height: 40px;
}

.footer-link {
    color: #FFF;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Open Sans", sans-serif;
    height: fit-content;
    cursor: pointer;
}

.footer-link:hover {
    border-bottom-style: solid;
    border-bottom-width: thin;
    border-bottom-color: white;
    color: white;
}

.footer-copyright {
    margin-top: 5px;
    font-size: 14px;
    white-space: nowrap;
    background: #ffb400;
    height: 40px;
    text-align: center;
    align-content: center;
    flex-wrap: wrap;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-version {
    font-size: 10px;
}

.banner-container {
    width: 100%;
}

.account-container {
    background: #a569bd;
    min-height: 150px;
    width: 100%;
}

.account-name {
    font-weight: 600;
    text-align: center;
    color: #fff;
}

.account-photo {
    margin-top: 10px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: #fff 2px solid;
    background: orange;
}

.guest-navigation-container {
    background: #5DADE2;
}

.guest-navigation-drawer {
    background: #3399FF;
}

.guest-footer {
    background: #3366CC;
}

.guest-container {
    width: 100%;
}

.home-banner-container {
    width: 100%;
    height: 300px;
    background: springgreen;
}

.home-products-container {
    width: 100%;
}

.degic-guest-home-container {
    width: 100%;
    background: #FFF;
    height: 400px;
}

.guest-map-container {
    width: 100%;
    height: 300px;
    padding: 16px;
    box-sizing: border-box;
}

.guest-contact-details-container {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background: #103F6E;
    margin: 16px 16px 0px 16px;
}

.guest-contact-us-button {
    width: 300px;
    background: #103F6E;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
    font-size: 11pt;
}

.guest-contact-details-image-container {
    width: 100%;
    text-align: center;
    margin: 15px 0px;
}

.guest-contact-details-icons {
    margin-right: 10px;
    align-self: center;
    color: #4E6D8E;
}

.guest-contact-details-info {
    color: white;
    margin: 0px;
}

.guest-feedback-container {
    width: 100%;
    padding: 16px 16px 0px 16px;
    box-sizing: border-box;
}

.guest-contact-detail-link {
    color: #FFF;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Open Sans", sans-serif;
    height: fit-content;
    cursor: pointer;
}

.guest-contact-detail-link:hover {
    color: #ffb400;
}

.guest-link-container {
    border-top-style: solid;
    color: white;
    margin-top: 20px;
    border-top-width: 1px;
}

.guest-link-content-container {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    flex-wrap: wrap;
    height: 40px;
}

.home-footer-container {
    width: 100%;
}

/* The following are used in AdminOrientationEditView */
.orientation-iFrame {
    width: 100%;
    height: 400px;
    margin: 15px 0px;
    border: 1px;
    border-style: solid;
    border-color: black;
}

/* The following are used in DegicComponent*/
.degic-page {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 1100px);
    background: white;
    margin: 15px 0px;
}

.degic-container-title {
    text-align: center;
    font-size: 18px;
}

.degic-container-description {
    font-size: 14px;
    width: 100%;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-overflow: ellipsis;
    height: 340px;
}

.degic-container-text {
    font-size: 14px;
    margin: 4px;
    margin-left: 8%;
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.degic-image {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.degic-label-center {
    text-align: center;
    font-weight: 600;
    text-decoration: underline;
}

.degic-label {
    width: 100%;
    font-size: 14px;
}

.degic-container-back {
    margin: 5px;
    width: 100%;
}

/* The following are used in GuestAboutUsView */
.guest-about-container {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 1100px);
    background: white;
    margin: 15px 0;
}

.guest-about-title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    font-family: Garamond;
    color: white;
}

.guest-about-content {
    color: white;
}

.guest-about-content-container {
    padding: 16px;
    box-sizing: border-box;
    background: #2d4059;
}

.guest-about-image-container {
    padding: 16px;
    box-sizing: border-box;
    background: #fff;
}

.guest-about-image {
    width: 100%;
    height: 100%;
}

/* The following are used in GuestAnnouncementAndNewsView */

.guest-announcement-main-title {
    text-align: center;
    font-family: Helvetica;
    font-size: 15pt;
    font-weight: 600;
}

.guest-announcements-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.guest-announcement-content-container {
    height: 417px;
    box-sizing: border-box;
    perspective: 1000px;
    width: 550px;
}

.guest-announcement-content-container-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.6s;
      transform-style: preserve-3d;
}

.guest-announcement-content-container-front {
    position: absolute;
    background: #FFF;
    padding: 5px 5px;
    width: 100%;
    height: 100%;
    box-shadow: var(--lumo-box-shadow-xs);
    box-sizing: border-box;
    transition: transform .2s;
     -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
}

.guest-announcement-content-container-back {
    position: absolute;
    background: #FFF;
    padding: 25px;
    width: 100%;
    height: 100%;
    box-shadow: var(--lumo-box-shadow-xs);
    box-sizing: border-box;
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
       backface-visibility: hidden;
       overflow: auto;
}

.guest-announcement-content-container:hover .guest-announcement-content-container-inner {
      transform: rotateY(180deg);
}

.guest-announcement-info-title {
    font-weight: 600;
    font-size: 14.5pt;
    border-bottom: black;
    border-bottom-style: solid;
    border-bottom-width: thin;
}

.guest-announcement-info {
    text-align: justify;
    margin-top: 2px;
    font-size: 11pt;
    font-family: 'Karla', sans-serif;
}

.announcement-button-back {
    position: fixed;
    color: white;
    margin-top: 5px;
    margin-left: 5px;
    background: #ff4b4b;
    border-radius: 100%;
    cursor: pointer;
    z-index: 999;
}

/* Added Padding in Outlet Search fields */

/* The following are used in GuestHomeView */
.guest-home-container {
    display: flex;
    width: min(100%, 1100px);
    text-align: center;
    justify-content: center;
    background: white;
    margin: 15px 0px;
    padding: 5px;
}

.guest-home-component-container-one {
    width: 60%;
    margin: 5px;
    transition: transform .2s;
}

.guest-home-component-container-two {
    width: 38%;
    max-height: 500px;
    margin: 5px;
    overflow: hidden;
}

.guest-home-component-container-three {
    width: 49%;
    margin: 5px;
    transition: transform .2s;
}

.guest-home-component-container-four {
    width: 49%;
    margin: 5px;
    transition: transform .2s;
}

.guest-home-component-container-two-inside {
    width: 100%;
    height: 245px;
    margin-bottom: 10px;
    transition: transform .2s;
}

.guest-home-component-container-three-inside {
    width: 100%;
    height: 350px;
}

.guest-home-component-container-four-inside {
    width: 100%;
    height: 350px;
}

.overlay-container{
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 50%;
  right: 0;
  background-color: rgba(6, 6, 32, 0.6);
  overflow: hidden;
  width: 0%;
  height: 0%;
  transition: .5s ease;
  opacity: 0;
  border-bottom: none;
}

.guest-home-component-container-two-inside:hover .overlay-container {
    top: -0.7%;
    left: -0.5%;
    border-style: solid;
    border-color: #fff;
    opacity: 0.6;
    width: 100%;
      height: 100%;
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(0.85);
}

.guest-home-component-container-one:hover .caption-container-title,
.guest-home-component-container-three:hover .caption-container-title{
    width: auto;
    z-index: 2;
    top: 35%;

}

.guest-home-component-container-two-inside:hover .home-product-image-carousel,
.guest-home-component-container-two-inside:hover .home-about-us-image {
    filter: blur(1.5px);
}

.guest-home-component-container-two-inside:hover .caption-container{
    background: none;
    z-index: 2;
    top: 50%;
}

.guest-home-component-container-one:hover, .guest-home-component-container-three:hover, .guest-home-component-container-four:hover{
     transform: scale(1.01);
}

.home-banner-image-carousel {
    transition: .2s ease;
    display: block;
    max-width: max-content;
    max-height: 500px;
    width: auto;
    height: auto;
}

.home-product-image-carousel {
    display: block;
    max-height: 245px;
    width: 100%;
    height: max-content;
}

.home-about-us-image{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.component-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.caption {
    font-family: Georgia, serif;
    font-size: 30px;
    color: #fff;
}

.sub-caption {
    font-style: italic;
    font-family: Georgia, serif;
    font-size: 22px;
    color: #fff;
    border-top: 1px solid white;
    align-self: center;
    width: auto;
    padding: 2px;
}

.caption-container{
    transition: .5s ease;
    background: rgba(6, 6, 32, 0.6);
    position: absolute;
    top: 47%;
    left: 50.3%;
    transform: translate(-50%, -50%);
}

.caption-container-title{
    transition: .5s ease;
    background: rgba(6, 6, 32, 0.6);
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button-prev {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 5%;
    transform: translate(0%, -50%);
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    background: rgba(40, 40, 40, 0.3);
}

.button-next {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 5%;
    transform: translate(0%, -50%);
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    background: rgba(40, 40, 40, 0.3);
}

.button-proceed {
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    width: 220px;
    height: 50px;
    color: white;
    outline: none;
    cursor: pointer;
    background: none;
    transition: .5s;
    font-size: 13.5pt;
    font-family: 'Karla', sans-serif;
    font-weight: bold;
    border-radius: 5px;
    border-color: #fff;
    border-style: solid;
    border-width: 3px;
    box-shadow: 4px 4px 4px 4px rgba(0.2, 0.2, 0.2, 0.2);
    position: absolute;
    bottom: 0;
    border-width: 2px;
    background: rgba(40, 40, 40, 0.3);
}

.home-buttons-container{
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    transform: translate(0%, -50%);
    justify-content: center;
}

.home-buttons {
    width: 45%;
    height: 100%;
    margin-left: 5px;
    color: white;
    outline: none;
    cursor: pointer;
    background: none;
    transition: .5s;
    font-size: 13.5pt;
    font-family: 'Karla', sans-serif;
    font-weight: bold;
    border-radius: 5px;
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    box-shadow: 4px 4px 4px 4px rgba(0.2, 0.2, 0.2, 0.2);
}

.home-buttons:hover, .button-proceed:hover {
    background-color: white;
    color: black;
    font-size: 18px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .header-icons {
        display: none;
    }

    .header-toggle {
        display: flex;
    }

    .header-left {
        display: none;
    }

    .header-right {
        display: none;
    }

    .degic-container-description {
        font-size: 14px;
    }

    .home-banner-image-carousel, .home-product-image-carousel {
        width: 100%;
    }

    .guest-home-component-container-one, .guest-home-component-container-two,
        .guest-home-component-container-three, .guest-home-component-container-three-inside,
        .guest-home-component-container-four {
        width: 100%;
        height: auto;
    }

    .button-proceed {
        width: 150px;
        height: 50px;
    }

    .home-buttons-container {
        width: 100%;
        height: 50px;
        font-size: 15px;
        justify-content: center;
        padding-left: 0;
    }

    .home-buttons {
        height: 50px;
        font-size: 15px;
    }

    .guest-announcements-container {
        margin: 15px 15px;
    }

    .guest-announcement-content-container {
        height: 218px;
        width: 100%;
    }

    .guest-announcement-info {
        font-size: 10.4pt;
    }

    .guest-announcement-info-title {
        font-size: 11.5pt;
    }

    .guest-background {
        overflow-x: hidden;
        overflow-y: unset;
        height: auto;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .guest-about-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .degic-guest-home-container {
        width: 50%;
    }

    .guest-feedback-container {
        width: 50%;
    }

    .guest-contact-details-container {
        width: 47%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .guest-about-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .degic-guest-home-container {
        width: 50%;
    }

    .guest-feedback-container {
        width: 50%;
    }

    .guest-contact-details-container {
        width: 47%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .guest-about-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .degic-guest-home-container {
        width: 50%;
    }

    .guest-feedback-container {
        width: 50%;
    }

    .guest-contact-details-container {
        width: 47%;
    }
}

.faqs-container {
    width: 100%;
    background: white;
    margin-top: 32px; /* to fix irregular height of navigation */
    box-sizing: border-box;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .faqs-container {
        width: 1100px;
    }
}


.home-banner {
    display: flex;
}

.product-slider {
    display: flex;
}

.layout-button {
    margin: 0 auto;
}

.button-home {
    background: #11172B;
    color: #6382BA;
}

.hr {
    width: 8%;
    border-color : black;
    margin: 0 auto;
}

.about-section {
    width: 100%;
}

.about-left-section {
    width: 50%;
    float: left;
}

.hr-about {
    width: 16%;
    border-color : black;
    margin: 0 auto;
}

.about-right-section {
    width: 50%;
    float: left;
}

.about-image {
    display: flex;
}
.contact-section {
    width: 100%;
}

.contact-right-section{
    width: 50%;
    float: left;
}

.hr-contact {
    width: 16%;
    border-color : black;
    margin: 0 auto;
}

.contact-image {
    display: flex;
    margin: auto 0;
}

.contact-left-section {
    width: 50%;
    float: left;
}

.select-map-location {
    position: relative;
}

.select-map-location::after {
    width: 10px;
    height: 10px;
    display: block;
    content: ' ';
    top: 50%;
    left: 50%;
    position: absolute;
    background: red;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.outlet-search-container {
    background: white;
}

.outlet-dialog {
    display: flex;
    flex-wrap: wrap;
    width: 800px;
    background: white;
    overflow: hidden;
    margin-top: 20px;
}

.outlet-name {
    padding-top: 35px;
    text-align: center;
    font-size: 18pt;
    font-weight: 600;
    font-family: Verdana;
    margin-bottom: 10px;
}

.outlet-subTitle {
    font-size: 10pt;
    font-weight: 600;
    font-family: sans-serif;
}

.outlet-photo {
    max-width: 300px;
    height: auto;
}

.outlet-left-container {
    padding: 5px;
    width: 49%;
}

.outlet-right-container {
    padding: 5px;
    width: 48.5%;
}

.outlet-info-container {
    margin-bottom: 8px;
}

.outlet-label-info {
    width: 100%;
    font-weight: 600;
    font-family: Trebuchet MS;
    font-size: 11pt;
}

.outlet-value-info {
    width: 100%;
    text-align: right;
    font-family: Trebuchet MS;
    font-size: 11pt;
}

.outlet-button-back {
    position: fixed;
    color: white;
    background: steelblue;
    border-radius: 100%;
    cursor: pointer;
    z-index: 999;
}

.outlet-map-container {
    width: 100%;
}

.outlet-contact-details-container {
    width: 100%;
}

.outlet-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.outlet-content-container {
    background: #FFF;
    padding: 12px;
    width: 32%;
    height: auto;
    margin: 5px;
    box-shadow: var(--lumo-box-shadow-xs);
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
    font-size: 10.5pt;
}

.outlet-nav {
    align-items: center;
    width: 100%;
    justify-content: center;
    margin: 10px;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
     .outlet-name {
        font-size: 15pt;
     }
      .outlet-photo {
        width: 100%;
     }
     .outlet-left-container {
         padding: 0px;
        width: 100%;
    }

    .outlet-right-container {
        padding: 0px;
        width: 100%;
    }
    .outlet-dialog {
        width: auto;
    }
    .outlet-content-container {
        width: 100%;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
     .outlet-map-container {
       width: 50%;
     }
     .outlet-contact-details-container {
       width: 50%;
     }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
     .outlet-map-container {
       width: 50%;
     }
     .outlet-contact-details-container {
       width: 50%;
     }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
     .outlet-map-container {
       width: 50%;
     }
     .outlet-contact-details-container {
       width: 50%;
     }
}

/* The following are used in GuestProductsView */

.categories-container {
    position: fixed;
    margin-top: 1px;
    z-index: 1;
}

.products-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-top: 80px;
}

/* The following are used in ProductComponent */
.product-container {
    margin: 8px;
    background-color: transparent;
    width: 300px;
    height: 410px;
    perspective: 1000px;
}

.product-container-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.product-container-front {
    position: absolute;
    background: #FFF;
    padding: 11px;
    width: 100%;
    height: 100%;
    box-shadow: var(--lumo-box-shadow-xs);
    box-sizing: border-box;
    transition: transform .2s;
     -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
}

.product-container-back {
    position: absolute;
    background: #FFF;
    padding: 12px;
    width: 100%;
    height: 100%;
    box-shadow: var(--lumo-box-shadow-xs);
    box-sizing: border-box;
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   overflow: auto;
   background-image: url("images/product-info-background.png");
   background-size: cover;
}

.product-container:hover .product-container-inner {
      transform: rotateY(180deg);
}



.product-name {
    text-align: center;
    font-size: 13pt;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.product-description {
overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    height: 40px;
    font-size: 12.5px;
    color: dimgray;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    font-family: 'Karla', sans-serif;
}

.product-more-info {
    display: flex;
    justify-content: center;
}

.product-photo {
    margin-top: 15px;
    width: 100%;
}

/** For Product Information **/

.product-info-title {
    font-size: 9.5pt;
    background: #415c80;
    color: white;
    padding: 0px 3px;
    font-family: "Open Sans", sans-serif;
}

.product-info {
    padding: 0px 3px;
    font-size: 9.4pt;
    text-align: justify;
    margin-top: 2px;
    font-family: 'Karla', sans-serif;
}

.product-info-nutrition-container {
    width: 100%;
    border-bottom-style: solid;
    border-bottom-width: thin;
}

.product-info-nutrition-name {
    font-weight: 700;
    font-size: 9pt;
    font-family: 'Karla', sans-serif;
}

.product-info-nutrition-value {
    font-size: 9pt;
    text-align: end;
    font-family: 'Karla', sans-serif;
}

.product-info-nutrition-label {
    font-weight: 600;
    font-size: 9pt;
    font-family: 'Karla', sans-serif;
}


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .product-container {
        width: 325px;
        height: 435px;
    }

    .product-container:active {
        pointer-events: fill;
    }

    .product-container:active .product-container-inner {
          transform: rotateY(0deg);
    }

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}

.retailer-application-nav-container {
    background: currentColor;
    align-items: center;
    width: 100%;
    box-shadow: var(--lumo-box-shadow-xs);
}

.retailer-application-drawer-toggle {
    color: #FFF;
}

.retailer-application-drawer-container {
    background: cadetblue;
    height: 100%;
    padding: 16px 0px;
    box-sizing: border-box;
}

.retailer-application-drawer-link-container {
    margin-top: 8px;
    padding: 0px 16px;
}

.retailer-application-drawer-link-container:hover {
    color: white;
}

.retailer-application-drawer-selected {
    background: #ffc000;
}

.retailer-application-drawer-link {
    color: #FFF;
}

.retailer-application-drawer-link:hover {
    text-decoration: none;
}

.retailer-account-container {
    flex-direction: column;
    background: #D5F5E3;
    min-height: 150px;
    width: 100%;
}

.retailer-content-container {
    background: #FFF;
}

.retailer-application-content-container {
    width: min(100%, 1100px);
    padding: 16px;
    box-sizing: border-box;
    align-self: center;
}

.retailer-application-review-container {
    width: 100%;
    padding: 5px 16px 16px 16px;
    box-sizing: border-box;
    box-shadow: var(--lumo-box-shadow-xs);
    border-style: double;
    margin: 10px 0px;
    border-color: black;
}

.retailer-application-review-title {
    font-weight: bold;
    font-size: 16pt;
    margin: 5px 0px 10px 0px;
    font-family: Century Gothic;
    padding: 0px 10px 0px 0px;
}

.retailer-application-review-label {
    font-family: Lato, sans-serif;
    font-size: 11pt;
    font-weight: bold;
}

.retailer-application-review-value {
    font-family: Lato, sans-serif;
    font-size: 11pt;
    margin-bottom: 8px;
}

.retailer-application-content-title {
    font-size: 18px;
    font-weight: 600;
}

.retailer-application-dataPrivacy-title {
    color: #124486;
    font-weight: 700;
    font-family: 'Karla', sans-serif;
    font-size: 13pt;
}

/* The following are used in RetailerRegistrationPage */
.retailer-registration {
    width: 100%;
    height: 100%;
    background: white;
}

.retailer-registration-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    justify-content: center;
    font-size: var(--lumo-font-size-s);
}

.retailer-registration-content-container {
    max-width: 1000px;
}

.retailer-registration-container vaadin-checkbox-group,
    .retailer-registration-container vaadin-radio-group {
    font-size: var(--lumo-font-size-s);
}

.retailer-application-content-container vaadin-upload {
    border: none;
    padding: 0;
}

.retailer-registration-container vaadin-button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-right: 1rem;
}

.retailer-application-image {
    margin-top: 10px;
    max-width: 360px;
    height: auto;
}

.retailer-registration-notification-container {
    text-align: center;
    align-items: center;
}

.retailer-registration-store-hours {
    width: 100%;
}

.retailer-application-background {
    /* The image used */
    background-image: url("images/retailer/retailer-app-background.jpg");
    /* Center and scale the image nicely */
    height: 100%;
    overflow: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .retailer-registration-container vaadin-button {
        display: block;
        width: 100%;
    }
    .retailer-application-image {
        width: inherit;
        height: auto;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}

.retailer-landing-background {
    background: url("images/retailer/login.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.retailer-nav-container {
    background: salmon;
}

.retailer-nav-title {
    color: #fff;
}

.retailer-nav-toggle {
    color: #fff;
}

.retailer-drawer-container {
    background: #FFF;
    height: 100%;
}

.retailer-tabs{
    font-size: 13.5px;
    color: black;
    background: transparent;
    font-family: Arial, Helvetica, sans-serif;
}

.retailer-tabs-selected{
    font-size: 15px;
    color: #fff;
    background: salmon;
    font-family: Arial, Helvetica, sans-serif;
}

.retailer-tabs:hover{
    background: lightgray;
}

.retailer-site-account-container {
    flex-direction: column;
    background: #315f72;
    min-height: 150px;
    width: 100%;
}

.retailer-account-name {
    color: #fff;
}

.retailer-content-container {
    background: #FFF;
    height: 100%;
    overflow: auto;
}

.orientation-container{
    margin: 3px;
    box-shadow: 2px 2px 7px 1px rgba(0,0,0.2,0.2);
    box-sizing: border-box;
    padding: 10px;
}

.exam-container {
    margin: 2px 3px;
    box-shadow: 0px 1px 2px 1px rgba(0,0,0.2,0.2);
    box-sizing: border-box;
    padding: 10px;
}

.orientation-title{
    font-size: 19px;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.orientation-view-title{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.orientation-instruction{
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: dimgray;
    margin-left: 10px;
    margin-right: 10px;
}

.orientation-synopsis{
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: dimgray;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-left: 10px;
    margin-right: 10px;
}

.orientation-view-synopsis{
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    color: black;
    margin: 10px 0px;
    font-family: Arial, Helvetica, sans-serif;
}

.orientation-button{
    background-color: green;
    color: white;
    height: 30px;
    font-size: 14px;
}

.exam-button {
    background-color: green;
    color: white;
    font-size: 14px;
}

.orientation-video-container{
    align-self: center;
}

.retailer-orientation-media {
    width: 100%;
    height: 360px;
}

.retailer-exam-background {
    background-image: url("images/exam-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.retailer-exam-page {
    display: flex;
    flex-wrap: wrap;
    width: min(100%, 700px);
    margin: 15px 0px;
    justify-content: center;
}

.retailer-exam-container{
    width: 100%;
    padding: 10px 15px;
    margin: 5px 10px;
    box-shadow: var(--lumo-box-shadow-xs);
    background: white;
}

.retailer-exam-content-container {
    padding: 10px 15px;
    margin: 10px;
    box-shadow: var(--lumo-box-shadow-xs);
    background: white;
}

.retailer-exam-tab-container{
    margin: 5px 10px 0px 10px;
    box-shadow: var(--lumo-box-shadow-xs);
    background: white;
    font-family: Arial, Helvetica, sans-serif;
     color: black;
}

.retailer-exam-tab-selected {
    font-size: 16px;
    color: #fff;
    background: steelblue;
    font-family: Arial, Helvetica, sans-serif;
}

.retailer-exam-tab {
    font-size: 16px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.retailer-exam-tab:hover {
    color: black;
    background: lightgray;
}

.retailer-exam-header {
    background-image: url("images/exam-header.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    height: 100px;
    width: 100%;
    padding: 10px;
    margin: 5px 10px;
    box-shadow: var(--lumo-box-shadow-xs);
}

.retailer-exam-first-title{
    font-size: 16pt;
    font-family: century gothic;
    font-weight: 500;
    margin-bottom: 10px;
}

.retailer-exam-title {
    font-family: Century Gothic;
    font-size: 30pt;
    font-weight: 500;
}

.retailer-exam-instruksyon {
    color: red;
    font-size: 10.5pt;
    font-family: Arial, Helvetica, sans-serif;
}

.retailer-exam-info {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11pt;
}

.retailer-exam-instruksyon:before{
    content: " *";
}

.retailer-exam-question{
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 8px;
}

.retailer-exam-question::after{
    content: " *";
    color: red;
}

.retailer-exam-points {
    width: 20%;
    font-size: 8pt;
    text-align: end;
    color: gray;
}

.retailer-exam-choices{
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.retailer-exam-button{
    width: 100%;
    cursor: pointer;
    font-weight: 500;
}

.retailer-exam-result-container {
    background: white;
    width: 50%;
    padding: 20px;
    box-shadow: var(--lumo-box-shadow-xs);
    margin: 0px 20px;
}

.retailer-exam-result-title {
    font-size: 18pt;
    font-family: century gothic;
    font-weight: 500;
    text-align: center;
}

.retailer-exam-rersult-label {
    width: 50%;
    font-size: 11pt;
    font-family: Century Gothic;
}

.retailer-exam-rersult-value {
    width: 100%;
    font-size: 11pt;
    text-align: end;
    font-family: Century Gothic;
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 600px) {
     .orientation-video-container{
        width: 100%;
        height: 270px;
     }

     .retailer-exam-result-container {
        width: auto;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
     .orientation-video-container{
        width: 100%;
        height: 270px;
     }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
     .orientation-video-container{
        width: 640px;
        height: 360px;
     }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
     .orientation-video-container{
        width: 640px;
        height: 360px;
     }
}


/* GuestRetailerView */
.guest-retailer-page-title {
    width: 100%;
    background: #FFF;
    text-align: center;
    font-size: 21px;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
    box-shadow: var(--lumo-box-shadow-xs);
    font-family: Lato, sans-serif;
}

.guest-retailership-announcement-container {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: var(--lumo-box-shadow-xs);
}

.guest-retailership-announcement-date {
    text-align: center;
}

.guest-retailership-announcement-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: Lato, sans-serif;
}

.guest-retailership-buttons {
    width: 100%;
    cursor: pointer;
}

.guest-retailership-buttons:hover {
    background: steelblue;
    color: white;
}

.guest-retailership-content-container {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: var(--lumo-box-shadow-xs);
}

.guest-retailership-overview-text {
    font-size: 14pt;
    font-family: Lato, sans-serif;
}

.guest-retailership-title {
    margin-bottom: 10px;
    font-family: Lato, sans-serif;
    font-size: 18px;
    background: steelblue;
    color: white;
    padding: 5px 10px;
}

.guest-retailership-value {
    margin: 0px 0px 2px 0px;
    font-family: Lato, sans-serif;
    font-size: 11pt;
    padding: 0px 10px;
}

.guest-retailership-navigation {
    width: 100%;
    box-shadow: var(--lumo-box-shadow-xs);
}

.guest-retailership-content-container {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: var(--lumo-box-shadow-xs);
}

.guest-retailer-dialog-button {
    background-color: green;
    color: white;
    align-self: center;
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .guest-retailership-navigation {
        width: 50%;
    }
    .guest-retailership-announcement-container {
        width: 50%;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .guest-retailership-navigation {
        width: 50%;
    }
    .guest-retailership-announcement-container {
        width: 50%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .guest-retailership-navigation {
        width: 50%;
    }
    .guest-retailership-announcement-container {
        width: 50%;
    }
}
