/* background home color 
rgba(0, 103, 108) */

.maintenance-banner {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #5ff0df;
    display: flex;
    align-items: center;      /* Vertical centering */
    justify-content: space-around;  /* Horizontal centering */
    flex-direction: column;
    min-height: 76px;         /* or height: 56px */
    color: #006b7d;
    text-align: center !important;
    padding: .85rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: .03em;
    border-bottom: 3px solid #006b7d;
    margin-top: 120px;
}

.maintenance-banner i {
    color: #0B355F;
    font-size: 1.5rem;
}

.maintenance-banner strong {
    font-weight: 600;
    font-size: 1.5rem;
    color: #0B355F;
    /* margin-right: .5rem; */
}

.maintenance-text {
    opacity: .9;
}

@media (max-width: 768px) {
    .maintenance-banner {
        font-size: .85rem;
        padding: .75rem 1rem;
    }

    .maintenance-text {
        display: block;
        margin-top: .25rem;
    }
}


body {
    /* background: url('/static/images/bg_globe&birds.jpg') no-repeat center center fixed; */
    /* background-size: cover; */
    color: #555;
    font-family: "Montserrat", sans-serif;
    padding: 0 !important;
    display: flex;
    flex-direction: column;  
}

#checkout-page.container {
    max-width: 95% !important;
}

h4,
h2 {
    line-height: 2;
}

hr {
    border: outset 1px #5ff0df;
    border-radius: 50%;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 2.1rem !important;
}

p {
    text-align: justify !important;
}

textarea {
    width: 100%;
}

a {
    transition: color .2s ease-in-out, font-weight .2s ease-in-out;
}

a:hover {
    /* font-weight: 600; */
    text-decoration: none;
}

a.js-back-link {
    color: #006b7d;
}

a.js-back-link:hover {
    font-weight: 600;
}

/* **** BUTTONS *********************************************** */

.btn {
    border-radius: 7px !important;
}

.btn-navbar {
    border: 1px solid #5ff0df;
    color: whitesmoke;
    padding: 0.6rem 1.1rem;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 400;
    width: 200px !important;
    margin: 0 0.3rem;
    transition: all 0.2s ease;
}

.btn-navbar:hover {
    background: rgba(95, 240, 223, 0.15);  /*5ff0df*/
    color: #c1f7e3;
    text-decoration: none;
}

.btn-navbar i {
    color: inherit;
    transition: inherit;
}

.btn-navbar i:hover {
    color: inherit;
    transition: inherit;
}

.btn-custom {
    width: 100%;
    /* max-width: 320px;  */
    border-radius: 8px;
    font-size: 1.1rem;
    background: #0B355F;
    color: whitesmoke;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: outset 1px #5ff0df;
    box-shadow: 0 1px 3px 0 #484a4d;    
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-custom:hover {
    background: #006b7d;
    color: white;
    /* font-weight: 600; */
}

#contact-form .btn-custom,
#subscribe-form .btn-custom {
    max-width: 100% !important;
    width: 100% !important;
}

.btn-custom-teal {
    width: 100%;
    /* max-width: 320px; */
    background: #006b7d;
    color: white;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: outset 2px aquamarine;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-custom-teal:hover {
    background: #0B355F;
    color: white;
}

.index-cta-button {
    background: #0B355F ;
    color: #c1f7e3;
    border: 1px solid #0B355F;
    min-width: 220px;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 50, 54, 0.28);
    transition: color .25s ease-in-out,background-color .25s ease-in-out,border-color .25s ease-in-out,box-shadow .25s ease-in-out;
}

.index-cta-button:hover,
.index-cta-button:active,
.index-cta-button:focus {
    background-color: #c1f7e3;
    color: #0B355F;
    font-weight: 400;
}

.btn-outline-custom {
    background: #006b7d;
    color: white !important; /* use important to override link colors for <a> elements */
    border: 1px outset #0B355F;
}

.btn-outline-custom:hover,
.btn-outline-custom:active,
.btn-outline-custom:focus {
    background: #5ff0df;
    color: #0B355F !important;
    font-weight: 700;
}

.btn-bg-light {
    background-color: #5ff0df;
    color: #0B355F !important;
    border: inset 2px teal;
}

.border-black {
    border: 1px solid #0B355F !important;
    border-radius: 5px !important;
}

/* back to top button */
.btt-button {
    height: 42px;
    width: 42px;
    position: fixed;
    color: teal;
    bottom: 10px;
    right: 10px;
    border: medium solid #006b7d;
    background-color: #0B355F;
    border-radius: 10px !important;
}


/* *** ROWS: General Config ************************************/

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* override padding of x clase in alert messages to improve display, and avoid having close 'x' on top of message text */
.alert-dismissible .close {
    padding: .05rem !important;
    margin-right: 5px !important;
    position: relative;
    top: -10px;
    right: -15px;
}

.main-bg {
    margin: 120px 0 auto;
    flex-grow: 1 !important; /* forces content area to grow and fill remaining space between nav and footer */
    min-height: calc(100vh - 278px) !important;  /* nav + main nav + footer height */
}

.main-bg .col-9 {
    padding-left: 0;
}

/* *** NAVBAR ***************************************************/

.nav-profile-photo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* border: 1px solid whitesmoke; */
    box-shadow: 0 2px 3px 0 #001a34;
}

#topnav {
    background-color: #0B355F;
    max-height: 104px;
    width: 100%;
    padding: 0 2%;
}

#topnav .fa-user, 
#topnav .fa-arrow-right-from-bracket {
    color: whitesmoke !important;
    margin-bottom: 0;
    font-size: 1.1rem;
}

#topnav .fa-user:hover,
#topnav .fa-arrow-right-from-bracket:hover {
    color: #c1f7e3 !important;
}

/* #main-nav {
    background-color: teal;
    padding: 10px 0;
} */

#contact-form,
#subscribe-form {
    background-color: rgba(225,235,235,0.9);
    height: fit-content;
    padding: 25px 15px;
    border-radius: 25px;
    margin-bottom: 36px;
    width: inherit;
    max-width: 500px;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
  }

.header-container {
    padding-top: 120px;
    padding-bottom: 70px;
    height: calc(100vh - 206px);
    display: none;
}

.navbar {
    padding: 0 !important;
}

.navbar-dark {
    padding-left: 0;
}

.navbar-expand-lg {
    width: 100% !important;
    padding-bottom: 0; 
}

.nav-item {
    font-size: 1.1rem;
}

.nav-link {
    text-align: left;
}

.text-dark {
    color: #0B355F !important;
}

a.text-white:hover {
    color: #c1f7e3 !important;
}

.eg-font {
    font-family: "Big Shoulders Display", sans-serif;
    letter-spacing: 0.03em;
}

.logo {
    margin-top: 0;
    padding-top: 0;
    height: 5.5rem;
    width: 5.5rem;
}

/* .icon-nav {
    color: #fff;
} */

ul li {
    display: inline-block;
    max-width: fit-content;
}

/* .list-inline-item {
    padding-right: 14px;
} */

.list-inline-item p:hover,
.list-inline-item .icon-nav:hover {
    color: #c1f7e3;
    text-align: left;
}

.navbar-toggler {
    padding: .6rem .6rem;
    font-size: 1.2rem;
    border-color: rgba(255, 255, 255, .5);
}

.fa-circle-user {
    /* color: #82fae0 ; */
    color: #5ff0df; /* birds color */
    font-size: 30px !important;
}

.fa-circle-user:hover {
    color: #c1f7e3;
}

/* Footer */
.footer {
    bottom: 0;
    background-color: #0B355F;
    width: 100%;
    padding: 17px;
    position: relative;
    left: 0;
    right: 0;
    /* margin-top: 60px; */
}

footer a {
    color: #5ff0df !important;
    text-decoration: none;
    font-size: 1.1rem;
}

#subscribe-link a {
    color: #fff !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
} 

#subscribe-link {
    background-color: teal;
    padding: 0.5rem;
    display: block;
    width: 100%;
    font-weight: 600;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#subscribe-link:hover{
    background-color: aquamarine;
    color: #0B355F !important;
    font-weight: 600;
}

#subscribe-link a:hover {
    color: #0B355F !important;
} 

.icons-social {
    color: #c1f7e3;
    font-size: 1.5rem;
    padding: 15px;
    transition: all 0.15s linear;
}

.icons-social:hover {
    color: white; 
    transform: scale(1.2);
    transform: rotate(4deg);
}

/* Searchbar */

.fa-search {
    font-size: 1.5rem;
    color: #0B355F;
    margin-right: 1rem;
    margin-top: 1rem;
    background-color: white;
}

.rounded-searchbar {
    border-top-right-radius: 0 !important;
    border-top-left-radius: 50px !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 50px !important;
    height: 40px;
    padding: 0  0 0 15px;
}

.rounded-searchicon {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 50px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 50px !important;
    height: 40px;
    padding: 0  0 0 15px;
}

/* from Bulma */
.icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

/* custom backgrounds */
.bg-custom-dark {
    background-color: #0B355F;
    color: whitesmoke;
}

.bg-teal {
    background-color: rgba(0,128,128, .4);
}

.bg-custom {
    background: #0B355F !important;
}

/* custom fonts */
.text-grey {
    color: #555 !important;
}

.text-dark {
    color: #0B355F;
}

.larger-title {
    font-size: 2.8rem;
    color: #0B355F;
}

.charmonman-regular {
    font-family: "Charmonman", cursive;
    font-weight: 400;
    font-style: normal;
  }

.charmonman-title {
    font-family: "Charmonman", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4rem;
}
  
.charmonman-bold {
    font-family: "Charmonman", cursive;
    font-weight: 700;
    font-style: normal;
}

.logo-link {
    width: fit-content;
    text-align: left !important;
    padding-left: 50px;
}

.dropdown-menu {
    background-color: #c1f7e3;
    box-shadow: 0 1px 3px 0 #737577;    
}

.btt-link {
    cursor: pointer;
    position: absolute;
    display: flex;
    top: 13px;
    right: 13px;
    z-index: 999;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.remove-item {
    margin-bottom: 15px;
}

.update-link,
.remove-item {
    cursor: pointer;
}

a.update-link,
a.remove-item, 
span.btt-link:hover {
    text-decoration: none;
    font-weight: bold;
}

/* Overlays - transparencies to improve accessibility/ readibility */

.overlay-birds,
.overlay-azure-mist {
    pointer-events: none;
}

.overlay-azure-mist {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    /* background: linear-gradient(260deg,rgba(0, 103, 108, 0.75) 17%, rgba(0, 136, 143, 0.80) 100%); */
    background: rgba(237, 249, 247, 0.85);
    z-index: -1;
}

.overlay-birds {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: url('/static/images/bg_globe&birds.jpg') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

.overlay-globe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: url('/static/images/bg_landing.png') no-repeat center center fixed;
    background-size: cover;
    z-index: -2;
}

.index-top-video {
    position: absolute;
    top: 0;
    right: 0 !important;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

#index .row {
    position: relative;
    z-index: 2;
}

.overlay-light {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(255, 235, 235, 0.8);
    background-size: cover;
	z-index: -1;
}

.clean-link {
    color: #0B355F;
    font-size: 1rem; 
}

.clean-link a:hover {
    font-weight: 500;
}

#sort-selector,
.sort-select-wrapper {
    border-radius: 50px !important;
    height: 40px;
    padding: 0 15px;
}


/* Index */

#index {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 120px) ; /* nav margin-top 120px */
    padding: 60px 3%;
    /* margin-top: 120px; */
    margin-top: 190px;
}

#index .eg-font {
    font-family: "Big Shoulders Display", sans-serif;
    font-weight: 500;
    font-size: 5rem !important;
    letter-spacing: 0.03em;
}

#index h1 {
    line-height: 1.2 !important;
}

#index .w-edna {
    font-family: "Charmonman", cursive;
    font-weight: 500;
    margin-left: 15rem;
    font-size: 2.5rem;
    color: #c1f7e3;
    margin-top: -30px;
}

#index h3 {
    font-size: 1.3rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    max-width: 55%;
    margin-top: 40px;
    line-height: 1.3 !important;
}

#index .cta {
    max-width: 80%;
    margin-top: 7rem;
}

#index .footer {
    bottom: 0;
    background-color: #0B355F;
    width: 100%;
    padding: 17px;
    position: relative;
    left: 0;
    right: 0;
    margin-top: auto;
}


/* service card */

#individual-services .card {
    margin: 15px 30px;
}

#individual-services .card {
    border-radius: 20px !important;
    border: inset 3px #006b7d;
}

#individual-services .card-body {
    border-radius: 0;
    border-top: solid 2px #0B355F;
    background-color: #0B355F;
    color: white;
    height: 100px !important;
    /* Flexbox centering */
    display: flex;
    align-items: center;
    justify-content: center;
}

#individual-services .card-body h3 {
    color: whitesmoke;
    font-family: "Big Shoulders Display" !important;
    letter-spacing: 0.03em;
    font-size: 1.5rem;
    font-weight: 600;
}

#individual-services .card-body > p {
    font-size: 1.2rem;
    padding: 0.5rem 35px;
}

#individual-services .card-img-top {
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

span.vertical-line {
    font-size: 2rem;
}

#individual-services .card-footer {
    background-color: #cfd7df !important;
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 17px;
    border: inset 3px teal;
}


/* Companies */

#companies h2,
#subscribe-page h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-left: 20px;
}


/* Django Messages */

.messages {
    position: fixed; 
    top: 120px;        
    right: -50px;       
    z-index: 9999;     
    width: fit-content;  
    padding: 0;     
    margin-right: 7%;
}

.alert {
    background-color: whitesmoke;
    color: #006b7d;
    border-radius: 8px;
    padding: .75rem 1rem !important;
    /* margin: 0 50px 0 0; */
    position: fixed;
    right: 20px;
}


/* Services & Details Pages */

#pack-details,
#individual-services {
    padding: 0 7%;
}

.table-wrapper td,
.table-wrapper th {
    min-width: 100px !important;
}

.img-details {
    border-radius: 25px !important;
}


/* BAG */

.img-bag {
    border-radius: 25px !important;
}

/* Keep table headers on BAG template visible on all screens */
.table thead {
    display: table-header-group;
}

/* not to get confused with .qty_input for JS */
.qty-input {
    min-width: 52px !important;
    width: 52px !important;
    max-width: 52px !important;
    text-align: center;
}

#bag-grand-total {
    font-family: "Big Shoulders Display", sans-serif;
    letter-spacing: 0.03em;
    color: whitesmoke;
    font-size: 2rem;
}

/* make update/delete icons display properly, avoid overlapping */
#cart-update {
    min-width: 120px !important;
}


/* Stripe Styling */

.StripeElement,
.stripe-style-input {
  box-sizing: border-box;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid gray;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus,
.stripe-style-input:focus,
.stripe-style-input:active {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.stripe-style-input::placeholder {
    color: #aab7c4;
}

.fieldset-label {
    position: relative;
    right: .5rem;
}

#payment-form .form-control,
#card-element {
    color: #000;
    border: 1px solid #000;
    border-radius: 5px;
}


/* About */
#about a {
    font-weight: 600;
    color: #0B355F;
}



@media (max-width: 1199.99px) {
    #index .cta {
        max-width: 100%;
    }
}


/* fixed top navbar only on medium and up */
/* @media (min-width: 992px) {
    .fixed-top-desktop-only {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 9999;
    }

    #index {
        padding: 60px 3%;
    }
} */


@media (min-width: 576px) {
    
    #bag.container, 
    #bag.container-sm {
        max-width: 98%;
    }

}


@media (max-width: 991.99px) {
    
    nav .dropdown-menu {
        left: -80px !important;   
    }

    .logo {
        height: 5rem;
        width: 5rem;
        margin-left: 0;
    }

    #index {
        padding: 60px 3%;
    }

    #index h1 {
        font-size: 4rem;
        padding-left: 6%;
    }

    #index h3 {
        padding-left: 6%;
        max-width: 85%;
    }

    .main-bg {
        margin: 70px 0 auto;
        flex-grow: 1 !important; /* forces content area to grow and fill remaining space between nav and footer */
        min-height: calc(100vh - 257px) !important;  /* nav + main nav + footer height */
    }

    /* col with order list w. details */
    #profile .col-lg-8 {
        padding-left: 15px; /* returns value to default, to match information div */
        padding-top: 60px;
    }

    header ul {
        padding-left: 0 !important;
    }

    .nav-link {
        padding: 0;
    }

}


@media (max-width: 767px) {

    .btn-custom,
    .btn-custom-teal {
        width: 100% !important; 
        max-width: 100% !important; 
    }

    .index-cta-button {
        margin-left: 2rem;
    }  

    #checkout-page {
        padding-left: 0;
        padding-right: 0;
    }

    .table tbody tr {
        display: block;
        margin-bottom: 1rem;
    }

    .table td {
        display: block;
        width: 100%;
        text-align: left;
        position: relative;
        padding-left: 1rem;
        border: none;
    }

    /* Add header labels above each cell using the data-label attribute */
    .table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    /* Optional class to force display as a block on small screens */
    .d-sm-table-cell {
        display: block !important;
    }

    /* Hide table header on small screens */
    .table thead {
        display: none;
    }
}


@media (max-width: 575px) { /* Extra small devices */
    
    body {
        padding-left: 15px;
        padding-right: 15px;
    }

    .eg-title {
        font-size: 2.5rem;
    }

    .logo {
        height: 4.5rem;
        width: 4.5rem;
        margin-left: 0;
    }

    #index {
        padding: 60px 7% !important;
    }

    #index h1 {
        font-size: 3rem;
    }

    .index-cta-button {
        margin-left: 0rem;
    }  

    .col-9 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #pack-details,
    #individual-services {
        padding: 0 4%;
    }

    #pack-details .col-12,
    #individual-services .col-12 {
        padding-left: 0;
        padding-right: 0;
    }

    #individual-services .card-body > p {
        font-size: 1.2rem;
        padding: 5px 12px;
    }
    
    .font-xs-small {
      font-size: 2.5rem;
    }
}


@media (max-width: 476px) {

    .w-edna {
        margin-left: 2rem !important;
    }
    
    /* to override the 15px and allow more vv */
    #individual-services .card {
        margin: 0;
    }

    #companies,
    #subscribe-page {
        padding-right: 0;
        padding-left: 0;
    }
}


@media (max-width: 321px) {
    .logo {
        height: 4rem;
        width: 4rem;
        margin-left: 0;
    }
	
    .navbar-toggler {
        margin-right: 15px !important;
        margin-left: auto !important;
    }

    .index-cta-button {
        min-width: 100%;
        font-size: 1rem;
    }

    #index h1 {
        font-size: 2.5rem;
        padding-left: 0;
    }

    #pack-details, 
    #individual-services {
        padding-left: 12px;
        padding-right: 12px;
    }
}