/*

colors
----------------------------

Dark green: #103128 (used for header and footer backgrounds & text over light backgrounds)
Cream: #f0e8c8 (used for backgrounds and text over images & dark backgrounds)
Darker Cream: #e4dec0 (used for backgrounds)

other notes
----------------------------

This css file is way bigger than it needs to be.

The way the mobile designs are done is disgusting aswell.

*/

@font-face {
    font-family: GT Pressura Mono;
    src: url(/wp-content/themes/twobeforeten-theme/assets/css/fonts/GT-Pressura-Mono.otf);
    font-weight: light;
}

@font-face {
    font-family: Bookmania;
    src: url(/wp-content/themes/twobeforeten-theme/assets/css/fonts/Bookmania-Regular.otf);
    font-weight: light;
}

/* --------------------------------- general styling --------------------------------- */

.container-fluid.full-width {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
}

a { 
    color: inherit; 
} 

.tablet-only,
.mobile-only,
.laptop-only,
.desktop-only {
    display: none; 
}
@media only screen and (min-width: 1400px) { /* desktop */
    .desktop-only { display: initial; }
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) {
    .laptop-only { display: initial; }
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    .tablet-only { display: initial; }
}
@media only screen and (max-width: 700px) { /* phone */
    .mobile-only { display: initial; }
}

.row {
    max-width: 2000px;
    margin: auto;
}

.stuck {
    position: fixed !important;
    top: 0;
    width: 100%;

    box-shadow: 0 0px 12px -2px black;

    z-index: 1;
}

.admin-bar .stuck {
    top: 32px;
}


.disabled {
    background-color: grey !important;
    color: darkgrey !important;
}

.scroll-container {
    overflow-x: auto;
}

/* ---------------- general headers ---------------- */

.general-header {
    position: relative;
}

.general-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(40%);
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    .general-header img {
        height: 330px;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .general-header img {
        height: 150px;
    }
}

.general-header-text {
    position: absolute;
    top: 0;

    height: 100%;
    width: 100%;
    display: grid;
    padding: 2em 4em;

    color: #f0e8c8;
}
@media only screen and (max-width: 700px) { /* phone */
    .general-header-text {
        padding: 1em;
    }
}

.general-header-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 120px;
    line-height: 108px;

    align-self: center;
    margin: auto;
}
@media only screen and (max-width: 700px) { /* phone */
    .general-header-text  h1 {
        font-size: 60px;
    }
}

/* ---------------- store headers ---------------- */

.store-header {
    position: relative;
}

.store-header img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(40%);
    object-position: 0 75%;
}
@media only screen and (max-width: 700px) { /* phone */
    .store-header img {
        height: 155px;
    }
}

.store-header-text {
    position: absolute;
    top: 0;

    height: 100%;
    display: grid;
    padding: 2em;

    color: #f0e8c8;
}

.store-header-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 120px;
    line-height: 108px;

    align-self: center;
    margin: auto;
}
@media only screen and (max-width: 700px) { /* phone */
    .store-header-text h1 {
        font-size: 50px;
    }
}

/* ---------------- store links ---------------- */

.store-links {
    color: #103128;
    background-color: #f0e8c8;
    padding: 2em;
    padding-top: 4em;
    text-align: left;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .store-links {
        padding: 1em;
    }
}

.store-links a {
    color: #103128;
    font-family: 'GT Pressura Mono';
    font-size: 17px;
    border: 1px solid rgba(0, 0, 0, 0);
    padding-right: 10%;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .store-links a {
        font-size: 10px;
    }
}

.store-links-block {
    width: 1310px;
    padding-left: 6em;
}
@media only screen and (max-width: 1400px) { /* laptops */
    .store-links-block {
        width: 100%;
        padding-left: 3em;
    }
    @media only screen and (max-width: 1200px) { /* tablet */
        .store-links-block {
            padding: 1em;
        }
    }
    @media only screen and (max-width: 700px) { /* phone */ 
        .store-links-block {
            padding: 0;
        }
        .store-links-block col {
            padding: 0;
        }
    }  
}

/* ---------------- modals ---------------- */

.modal {
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal-header {
    align-items: center;
    border-bottom: 0;
}

.modal-dialog {
    margin: 5em auto;
    width: 80%;
    max-width: 800px;
}

.modal-content {
    background-color: #f0e8c8;
    color: #103128;
    text-align: left;
    min-height: 575px;
}

.modal-content h2 {
    font-family: 'GT Pressura Mono';
    padding: 1em 2em;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .modal-content h2 {
        padding: 4%;
    }
} 

.modal-content hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #103128;
    width: 92%;
    opacity: 0.7;
}

.modal-title {
    background-color: #103128;
    color: #f0e8c8;

    width: 100.1%;
    padding: 1em;

    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px;
    text-align: center;
}

/* ---------------- links ---------------- */

.image-link {
    color: #f0e8c8;
    font-weight: bold !important;
    font-family: "GT Pressura Mono";
    font-size: 16px;
}
@media only screen and (max-width: 1200px) { /* tablet */
    .image-link {
        font-size: 14px;
    }
    @media only screen and (max-width: 700px) { /* phone */
        .image-link {
            font-size: 12px;
        }
    }   
}

.image-link:hover {
    color: #c3c3a8;
    text-decoration: unset;
}

.text-link {
    font-weight: bold !important;
    font-family: "GT Pressura Mono";
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0);
}

.text-link:hover {
    color: inherit;
}

.highlighted {
    text-decoration-color: #103128;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

button {
    background: none;
    border: none;
    padding: 0!important;
    cursor: pointer;
}

.generic-button-empty,
.generic-button-filled {
    font-size: 16px;
    font-family: "GT Pressura Mono";
    text-align: center;

    padding: 0.5em !important;
    margin: 3px;

    border-width: 3px;
    border-radius: 21px;
}

.generic-button-empty {
    color: #b98f55;
    border-style: solid;
    border-color: #b98f55;
}

.generic-button-filled {
    background-color: #b98f55;
    color: #f0e8c8;
}

/* ---------- blogs/posts ---------- */

.blog-text {
    width: 100%;
    position: relative;
}

.blog-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    margin-top: 0;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-text h1 {
        font-size: 20px;
        line-height: 28px;
    }
}

.blog-text h2 {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.blog-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.blog-block {
    width: 100%;
    display: flex;
    max-width: 520px;
    margin: auto;
}

.blog-block button {
    position: absolute;
    bottom: 30px;
}

.blog-block img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 0;
    float: left;
    padding: 20px 10px;
}

.page-numbers {
    padding: 1em;
    display: inline-flex;
    margin: auto;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    .page-numbers {
        position: absolute;
        right: 0;
        padding: 0;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .page-numbers {
        padding: 2em;
    }
    .page-numbers .col {
        height: auto !important;
    }
}

/* ---------- selectable boxes ---------- */

.select-box-container {
    padding: 0;
}

.select-button {
    height: 100px;
    width: 85%;
    min-width: 100px;
    margin: auto;

    border: 1px solid #103128;

    text-align: center;
    font-size: 18px;
    font-family: Bookmania;

    cursor: pointer;
}

.select-button:hover {
    background-color: #103128;
    color: #f0e8c8;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.select-button label {
    cursor: pointer;

    display: grid;
    align-items: center;

    height: 100%;
    width: 100%;
} 

.select-button input:checked + label {
    background: #103128;
    color: #f0e8c8;
} 

/* ---------- selectable images ---------- */

.select-image-container {
    padding: 0;
}

.select-image {
    cursor: pointer;
    margin: 10%;
}

.select-image:hover {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);

    -webkit-transition: all 10ms ease;
    -moz-transition: all 10ms ease;
    -o-transition: all 10ms ease;
    -ms-transition: all 10ms ease;
    transition: all 10ms ease;

}

.select-image img {
    width: 100%;
}

.select-image input + img {
    padding: 0;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.select-image input:checked + img {
    padding: 5%;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* --------------------------------- hamburger styling --------------------------------- */

#menuToggle
{
  display: block;
  position: relative;
  top: -50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 700px) {
    #menuToggle {
        top: 4px;
        left: 15px;
    }
}

#menuToggle a
{
  text-decoration: none;
  color: #f0e8c8;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: #e4dec0;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #f0e8c8;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #f0e8c8;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}


#menu
{
  position: absolute;
  width: 230px;
  margin: -100px 0 0 -71px;
  padding: 50px;
  padding-top: 125px;
  text-align: left;
  
  background: #103128;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
  text-transform: uppercase;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

/* --------------------------------- dropdown styling --------------------------------- */

.dropbtn {
    padding: 0.5em !important;
    padding-right: 5em !important;
    font-size: 16px;
    border: 1em;
    border-style: solid;
    border-width: 2px;
    border-color: rgba(16, 49, 40,0.1);
}

.dropdown {
    position: relative;
    display: inline-block;
    padding-right: 4em;
    padding-top: 1em;
    padding-bottom: 2em;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f0e8c8;
    min-width: 70px;
    width: 75%;
    box-shadow: 0px 8px 10px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #103128;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #e4dec0;}

.dropdown:hover .dropdown-content {display: block;}

/* --------------------------------- generic textbox styling --------------------------------- */

.genericTextBox-input{ 
    --uiFieldPlaceholderColor: var(--fieldPlaceholderColor, #767676);

    background-color: transparent;
    border-radius: 0;
    border: none;

    -webkit-appearance: none;
    -moz-appearance: none;

    font-family: inherit;
    font-size: inherit;
}

.genericTextBox-input:focus::-webkit-input-placeholder{
    color: var(--uiFieldPlaceholderColor);
}

.genericTextBox-input:focus::-moz-placeholder{
    color: var(--uiFieldPlaceholderColor);
}

.genericTextBox-textbox{
    --uiFieldBorderWidth: var(--fieldBorderWidth, 2px);
    --uiFieldPaddingRight: var(--fieldPaddingRight, 1rem);
    --uiFieldPaddingLeft: var(--fieldPaddingLeft, 1rem);   
    --uiFieldBorderColorActive: var(--fieldBorderColorActive, rgba(22, 22, 22, 1));

    display: var(--fieldDisplay, inline-flex);
    position: relative;
    font-size: var(--fieldFontSize, 15px);
    }

    .genericTextBox-input{
    box-sizing: border-box;
    width: var(--fieldWidth, 100%);
    height: var(--fieldHeight, 40px);
    padding: var(--fieldPaddingTop, 1.25rem) var(--uiFieldPaddingRight) var(--fieldPaddingBottom, .5rem) var(--uiFieldPaddingLeft);
    border-bottom: var(--uiFieldBorderWidth) solid var(--fieldBorderColor, rgba(0, 0, 0, .25));  
}

.genericTextBox-input:focus{
    outline: none;
}

.genericTextBox-input::-webkit-input-placeholder{
    opacity: 0;
    transition: opacity .2s ease-out;
}

.genericTextBox-input::-moz-placeholder{
    opacity: 0;
    transition: opacity .2s ease-out;
}

.genericTextBox-input:focus::-webkit-input-placeholder{
    opacity: 1;
    transition-delay: .2s;
}

.genericTextBox-input:focus::-moz-placeholder{
    opacity: 1;
    transition-delay: .2s;
}

.genericTextBox-label-wrapper{
    box-sizing: border-box;
    pointer-events: none;
    cursor: text;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.genericTextBox-label-wrapper::after{
    content: "";
    box-sizing: border-box;
    width: 100%;
    height: 0;
    opacity: 0;

    position: absolute;
    bottom: 0;
    left: 0;
}

.genericTextBox-input:focus ~ .genericTextBox-label-wrapper::after{
    opacity: 1;
}

.genericTextBox-label{
    position: absolute;
    left: var(--uiFieldPaddingLeft);
    top: calc(50% - .5em);

    line-height: 1;
    font-size: var(--fieldHintFontSize, inherit);

    transition: top .2s cubic-bezier(0.9, -0.15, 0.1, 1.15), opacity .2s ease-out, font-size .2s ease-out;
    will-change: bottom, opacity, font-size;
    }

    .genericTextBox-input:focus ~ .genericTextBox-label-wrapper .genericTextBox-label,
    .genericTextBox-input:not(:placeholder-shown) ~ .genericTextBox-label-wrapper .genericTextBox-label{
    --fieldHintFontSize: var(--fieldHintFontSizeFocused, .75rem);

    top: var(--fieldHintTopHover, .25rem);
}

/* effect */

.genericTextBox-style .genericTextBox-label-wrapper {
    overflow: hidden;
}

.genericTextBox-style .genericTextBox-label-wrapper::after{
    border-bottom: var(--uiFieldBorderWidth) solid var(--uiFieldBorderColorActive);
    transform: translate3d(-105%, 0, 0);
    will-change: transform, opacity;
    transition: transform .285s ease-out .2s, opacity .2s ease-out .2s;
}

.genericTextBox-style .genericTextBox-input:focus ~ .genericTextBox-label-wrapper::after{
    transform: translate3d(0, 0, 0);
    transition-delay: 0;
}

.genericTextBox-textbox {
    --fieldBorderColor: rgba(16, 49, 40,0.1);
    --fieldBorderColorActive: #103128;
}

.genericTextBox-section {
    box-sizing: border-box;
    width: 100%;
    max-width: 480px;
    padding-bottom: 5%;

    display: grid;
    grid-gap: 30px;
}

/*----- error styles ----- */

.genericTextBox-error {
    color: red;
    font-size: smaller;
    font-weight: initial;

    display: none;
}

.genericTextBox-textbox-error {
    --fieldBorderColorActive: red;
}

.genericTextBox-input-error { 
    --uiFieldPlaceholderColor: var(--fieldPlaceholderColor, red);
}

/* --------- general block --------- */

.light {
    background-color: #f0e8c8;
}

.dark {
    background-color: #e4dec0;
}

.general-block {
    color: #103128;
    padding: 2% 4% 2%;
    position: relative;
}
@media only screen and (max-width: 1200px) { /* tablets & mobile */
    .general-block {
        padding: 2% 4% 8%;
    }
}

.general-block.light {
    background-color: #f0e8c8;
}

.general-block.dark {
    background-color: #e4dec0;
}

.general-block .row {
    max-width: 2000px;
    min-height: 400px;
    margin: auto;
}
@media only screen and (max-width: 700px) { /* phone */
    .general-block .row{
        flex-direction: column-reverse !important;
    }
}

/* ------ text ------ */

.col.text {
    padding: 3%;
    display: flex;
    align-items: center;
}

.text_right .col.text {
    flex-direction: row-reverse;
}
@media only screen and (max-width: 700px) { /* phone */
    .text_right .col.text {
        flex-direction: unset;
    }
}

.general-text {
    width: 90%;
    margin: auto;
}

.general-text .center {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.general-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px; 
}
@media only screen and (max-width: 700px) { /* phone */
    .general-text h1 {
        font-size: 30px;
    }
}

.general-text h2 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 34px;
    line-height: 46px;
    padding: 1em;
    max-width: 550px !important;
}
@media only screen and (max-width: 700px) { /* phone */
    .general-text h2 {
        font-size: 24px;
    }
}

.general-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
}
@media only screen and (max-width: 700px) { /* mobile */
    .general-text p {
        height: auto;
        font-size: 14px;
    }
}

/* ------ images ------ */

@media only screen and (max-width: 700px) { /* phone */
    .general-images {
        height: 250px !important;
    }
    .general-image_one {
        margin: 0 !important;
        width: 100% !important;
    }
}

/* ------ one image ------ */

.one_images .general-images {
    height: 100%;

    display: flex;
    justify-content: center;
    margin: auto;
}

.one_images .general-image_one {
    height: 100%;
    max-height: 500px;
    width: 100%;

    object-fit: cover;
    object-position: 50% 50%;

    align-self: center;

    padding: 4%;
}
@media only screen and (max-width: 1400px) and (min-width: 701px) { /* laptops & tablets*/
    .one_images .general-image_one {
        max-height: unset;
        height: 90%;
    }
}

/* ------ two images ------ */

.two_images .general-images {
    height: 500px;
    display: flex;
    align-items: center;
}

.two_images .general-image_one {
    height: 100%;
    width: 50%;

    object-fit: cover;
    object-position: 50% 0;
}
@media only screen and (max-width: 1400px) { /* laptops, tablets & mobile */
    .two_images .general-image_one {
        width: 90%;
    }
}

.two_images .general-image_two {
    width: 40%;
    height: 75%;

    margin: 3%;

    object-fit: cover;
    object-position: 75% 0;
}
@media only screen and (max-width: 1400px) { /* laptops, tablets & mobile */
    .two_images .general-image_two {
        display: none;
    }
}

/* ------ three images ------ */

.three_images .general-images {
    height: 500px;
    position: relative;
}

.three_images .general-image_one {
    width: 40%;
    height: 75%;

    margin: 7%;
    object-fit: cover;
}
@media only screen and (max-width: 1400px) { /* laptops, tablets & mobile */
    .three_images .general-image_one {
        width: 90%;
        height: 100%;
    }
}

.three_images .general-image_two {
    width: 40%;
    height: 40%;

    margin: 3%;

    object-fit: cover;
    object-position: 75% 0;
}
@media only screen and (max-width: 1400px) { /* laptops, tablets & mobile */
    .three_images .general-image_two {
        display: none;
    }
}

.three_images .general-image_three {
    width: 40%;
    height: 40%;

    margin: 3%;

    object-fit: cover;
    object-position: 75% 0;
}
@media only screen and (max-width: 1400px) { /* laptops, tablets & mobile */
    .three_images .general-image_three {
        display: none;
    }
}

/* ------ right and left styles ------ */

.text_left .row,
.text_left .two_images .general-images {
    flex-direction: row-reverse;
}

.text_left .three_images .general-image_one {
    float: left;
}

.text_right .three_images .general-image_one {
    float: right;
}

/* ------ decal ------ */

.decal-container {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.decal-container img {  
    width: 100%;
}
@media only screen and (max-width: 1200px) { /* tablet & mobile */ 
    .decal-container img {  
        height: 100%;
        width: unset;
    }
}

/* --------------------------------- header and footer --------------------------------- */

.header {
    color: #f0e8c8;
    background-color: #103128;
    padding: 1.5em;
    height: 120px;
    font-family: "GT Pressura Mono";
    text-align: left;
    font-size: 14px;
    position: relative;
}
@media only screen and (max-width: 700px) { /* phone */
    .header {
        text-align: center;
        height: 100%;
    }
}


.header img {
    height: unset;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) {
    .header img {
        margin-left: 80%;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .header img {
        position: absolute;
        top: 8px;
        right: 10px;
        padding: 0em;
        width: 100px;
    }
}

.header .leftlinks {
    margin: 0;
    position: absolute;
    padding-left: 2%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header .rightlinks {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 4%;
}

.header .rightlinks a,
.header .leftlinks a {
    display: inline-block;
    padding: 0 1em 0;
    text-transform: uppercase;
}

.header .rightlinks p {
    font-weight: lighter;
    font-size: 12px;
}

.shopping-cart {
    width: 32px !important;
    display: inline !important;
    position: unset !important;
    transform: unset !important;
    margin: unset !important;
    filter: invert(92%) sepia(44%) saturate(218%) hue-rotate(328deg) brightness(99%) contrast(90%);
}

.footer {
    color: #f0e8c8;
    background-color: #103128;
    padding: 4em;
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-align: left;
    color: #f0e8c8;
    position: relative;
}
@media only screen and (max-width: 700px) { /* mobile */
    .footer {
        padding: 1em;
    }
}

.footer-h1 {
    letter-spacing: 0.2em;
    color: #f0e8c8;
    font-size: 18px;
}

#footer-row {
    width: 75%;
    margin-left: 0;
}
@media only screen and (max-width: 1200px) { /* tablets & phone */
    #footer-row {
        width: 100%;
    }
}

.footer-decal {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    height: 100%;
}

.header a:hover,
.footer a:hover {
    color:#f0e8c8; 
    cursor:pointer;
}

/* --------------------------------- gallery & image box styling --------------------------------- */

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 2000px;
    margin: auto;
}
@media only screen and (max-width: 700px) { /* phone */
    .gallery-container { 
        display: none; 
    }
}

.image-box-container {
    position: relative;
    width: 100%;
    margin: 1%;
    max-width: 500px;
}

.gallery-container .image-box-container {
    width: 30%;
}

.image-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-box.short {
    height: 80%;
}

.image-box.long {
    height: 120%;
}

.image-box.long.bottom {
    top: -20%;
}

.image-box.short.bottom {
    bottom: -20%;
}

.image-box::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.image-box .filter {
    filter: brightness(60%);
}

.image-box img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;

    object-fit: cover; 
    object-position: center;
}

.image-box .generic-button-empty {
    color: #f0e8c8;
    border-color: #f0e8c8;
    width: 135px;
}

.image-box-text {
    position: absolute;
    bottom: 0;
    padding: 1em;
    color: #f0e8c8;
    text-align: left;
}

.image-box-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 30px;
    line-height: 46px;
}
@media only screen and (max-width: 1200px) { /* tablet */
    .image-box-text h1 {
        font-size: 20px;
        line-height: unset;
    }
}

/* ------ mobile carousel styles ------ */

.carousel-wrapper {
    overflow: hidden;
    width: 90%;
}

.carousel-wrapper * {
    box-sizing: border-box;
}

.carousel {
    transform-style: preserve-3d;
}

.carousel-image-container {
    opacity: 0 !important;
    position: absolute;
    top:0;

    width: 100%;
    min-height: 400px;
    display: flex;
    object-fit: cover;

    margin: auto;
    padding: 1rem 4rem;

    z-index: 100;
    transition: transform .5s, opacity .5s, z-index .5s;
}

.carousel-image {
    width: 100%;
    height: 100%;
}

.carousel-image-container.initial,
.carousel-image-container.active {
    opacity: 1 !important;
    position: relative;
    z-index: 900;
}

.carousel-image-container.prev,
.carousel-image-container.next {
    z-index: 800;
}
.carousel-image-container.prev {
    transform: translateX(-100%); /* Move 'prev' item to the left */
}
.carousel-image-container.next {
    transform: translateX(100%); /* Move 'next' item to the right */
}

.carousel-button--prev,
.carousel-button--next {
    position: absolute;
    top:50%;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
    cursor: pointer; 
    z-index: 1001; /* Sit on top of everything */
}

.carousel-button--prev {
    left:0;
}
.carousel-button--next {
    right:0;
}
.carousel-button--prev::after,
.carousel-button--next::after {
    content: " ";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 54%;
    border-right: 2px solid #103128;
    border-bottom: 2px solid #103128;
    transform: translate(-50%, -50%) rotate(135deg);
}
.carousel-button--next::after {
    left: 47%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* --------------------------------- circular link styling --------------------------------- */

.circular-link {
    margin: 1%;
    display: flex;
    align-items: center;
}

.circular-link .image {
    background: #103128;
    border-radius: 50%;
    width: 200px;
    height: 200px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-link .image {
    background: #103128;
    border-radius: 50%;
    width: 200px;
    height: 200px;

    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (min-width: 1400px) { /* desktop only */
    .circular-link .our-story,
    .circular-link .buy-coffee,
    .circular-link .media {
        width: 300px;
        height: 300px;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .circular-link .image {
        width: 170px;
        height: 170px;
    }
}

.circular-link .circular-border {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 90%;
    height: 90%;
    border: 5px solid #f0e8c840;
    border-radius: 100%;
}

.circular-link img{
    width: 50%;
    opacity: 40%;
}

.circular-link h1 {
    position: absolute;
    margin: 0;

    color: #f0e8c8;
    font-weight: bold !important;
    font-family: Bookmania;
    font-size: 26px;

    max-width: 150px;
    text-align: center;
}
@media only screen and (min-width: 1400px) { /* desktop only */
    .circular-link .our-story h1 {
        font-size: 44px;
    }
}


/* --------------------------------- index page --------------------------------- */
/* ---------- header & title ---------- */

.index.decal-container {
    position: relative;
    pointer-events: unset;
    overflow: unset;
}

.index.decal-container .decal {
    position: absolute;
    pointer-events: none;
    height: 100%;
    width: auto;
    z-index: 1;
}

.index-header {
    background-color: #103128;
    color: #f0e8c8;
    padding: 1em;
}

.index-header h1 {
    text-align: center;
    font-family: Bookmania;
    font-weight: 600;
    font-size: 100px;

    padding: 2% 2% 8%;
    margin: auto;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .index-header h1  {
        font-size: 60px;
    }
} 

.index.general-header-text {
    width: 100%;
}

.index.general-header-text h1 {
    font-size: 40px;
    line-height: unset;
    max-width: 1175px;
    text-align: center;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .index.general-header-text h1  {
        font-size: 18px;
    }
} 

/* ---------- cafes section ---------- */

.index-cafes-section {
    background-color: #103128;
    display: flex;
    max-width: 1600px;
    margin: auto auto 2% auto;
}
@media only screen and (max-width: 700px) { /* phone */
    .index-cafes-section {
        flex-direction: column;
        margin: auto auto 10% auto;
    }
}

.index-cafes-section .generic-button-empty,
.index-cafes-section .generic-button-filled {
    width: 135px;
    border-radius: 22px;
}

.index-cafes-section .text {
    color: #f0e8c8;
    text-align: center;

    padding: 1em;
    width: 75%;
}
@media only screen and (max-width: 700px) { /* phone */
    .index-cafes-section .text {
        width: 100%;
        height: 425px;
    }
}


.index-cafes-section .text h1 {
    font-family: Bookmania;
    font-size: 40px;
}

.index-cafes-section .text h2 {
    font-family: "GT Pressura Mono";
    font-size: 12px;
    letter-spacing: 0.2em;
}

.index-cafes-section .carousel-button--prev::after,
.index-cafes-section .carousel-button--next::after {
    border-right: 2px solid #f0e8c8 !important;
    border-bottom: 2px solid #f0e8c8 !important;
}

.index-cafes-section .carousel-wrapper {
    width: 100%;
}

.index-cafes-section .carousel-image-container {
    flex-direction: column;
    min-height: unset;
}

.index-cafes-section .image {
    width: 35%;
    position: relative;
}
@media only screen and (max-width: 700px) { /* phone */
    .index-cafes-section .image {
        height: 300px;
        width: unset;
    }
}

.index-cafes-section .image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;

    object-fit: cover; 
    object-position: center;
}


.view-cafes-container {
    position: relative;
}

.view-cafes {
    background-color: #b98f55;
    color: #f0e8c8;

    font-size: 20px;
    text-align: center;
    font-family: "GT Pressura Mono";
    
    border-radius: 55px;
    padding: 1em !important;
    width: 200px;

    position: relative;
    top: 50px;
}
@media only screen and (max-width: 700px) { /* phone */
    .view-cafes {
        top: 320px;
        z-index: 1;
    }
}

.cafe-details {
    margin: 3% 0% !important;
}

.cafe-details .col {
    margin: 1%;
}

.cafe {
    width: 165px;
    margin: auto;
}

.cafe h1 {
    font-size: 28px !important;
}

.cafe p {
    font-size: 14px;
}


#book-a-table .modal-content {
    min-height: unset;
    padding: 4em;
    max-height: 390px;
}
@media only screen and (max-width: 700px) { /* phone */
    #book-a-table .modal-content {
        max-height: 515px;
        text-align: center;
        padding: 2em;
    }
}


#book-a-table .modal-dialog {
    max-width: 1000px;
}

#book-a-table h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 40px;
}

#book-a-table p {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 20px;
}

/* ---------- links ---------- */

.index-links {
    display: flex;
    justify-content: center;
    margin: 5%;
}
@media only screen and (max-width: 700px) { /* phone */
    .index-links {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------- instagram feed ---------- */

@media only screen and (min-width: 2000px) { /* huge monitor */
    .instagram-feed #sb_instagram #sbi_images {
        height: 400px;
        overflow: hidden;
    }

    .instagram-feed #sb_instagram #sbi_images .sbi_item.sbi_type_image {
        width: 10%;
    }

    .instagram-feed #sb_instagram #sbi_images .sbi_item.sbi_type_image .sbi_photo_wrap a {
        height: 400px !important;
    }
}

/* --------------------------------- cafes --------------------------------- */
/* ---------- locations ---------- */

.cafes-locations {
    color: #103128;
    background-color: #f0e8c8;
    padding: 2em;
    text-align: left;
}

.cafes-locations a {
    color: #103128;
    font-family: "GT Pressura Mono";
    font-weight: bold;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0);
    opacity: 0.8;
}

.cafe-locations-block {
    width: 80%;
    padding-left: 6em;   
}
@media only screen and (max-width: 1200px) { /* tablets & mobile */
    .cafe-locations-block {
        padding-left: unset;
        width: unset;  
    }
}

.cafe-locations-block .row {
    overflow: hidden;
    white-space: nowrap;
    margin: unset;
}
@media only screen and (max-width: 700px) { /* phone */
    .cafe-locations-block .row {
        flex-direction: column;
    }
}

.cafe-locations-block .row .col {
    padding: 1em;
}
@media only screen and (max-width: 700px) { /* phone */
    .cafe-locations-block .row .col {
        padding: 2%;
    }
}

/* ---------- information ---------- */

.cafe-info {
    width: 100%;
}
@media only screen and (max-width: 1200px) { /* tablets & mobile */
    .cafe-info {
        padding: 2em;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .cafe-info {
        padding: 2%;
    }
    .cafe-info .row {
        flex-direction: column;
    }
}

.cafe-info .generic-button-empty,
.cafe-info .generic-button-filled {
    font-size: 18px;
    border-radius: 42px;

    margin: 2% 5% 0% 0%;
    width: 150px;
}

/* ----- information text ----- */

.cafe-info-text {
    padding: 1em;
    float: left;
}

.cafe-info-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px;
}

.cafe-info-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 23px;
    margin-bottom: 0;
}

#cafe-info-text-menu {
    padding: 1em;
}

/* ----- information images ----- */

.cafe-info-images {
    float: right;
}

.cafe-info-images img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;

    object-fit: cover; 
    object-position: center;
}
@media only screen and (max-width: 700px) { /* phone */
    .cafe-info-images img {
        padding: 5%;
    }
}

@media only screen and (max-width: 700px) { /* phone */
    #cafe-info-col-2 {
        flex-basis: unset;
        height: 300px;
    }
}

#cafe-info-col-3 {
    align-items: center;
    display: flex;
}
@media only screen and (max-width: 700px) { /* phone */
    #cafe-info-col-3 {
        display: none;
    }
}

.cafe-info-buttons input[type="radio"] { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    cursor: pointer;
    display: inline-block;
    width: 15px;
    height: 15px;
    padding: 2px;

    border: 2px solid #103128;
    border-radius: 50%;
}

.cafe-info-buttons input[type="radio"]:checked, 
.cafe-info-buttons input[type="radio"]:focus {
    background-color: #103128;
    outline: none;
    box-shadow: none;
}

#gmap_canvas {
    min-height: 575px;
}


/* ---------- booking ---------- */

.cafe-booking {
    color: #103128;
    background-color: #f0e8c8;
    padding: 8em;
    text-align: left;
    width: 100%;
}

.cafe-booking-text {
    width: 500px;
    float: left;
}

.cafe-booking-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px; 
}

.cafe-booking-text h2 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 28px;
    line-height: 46px;
}

.cafe-booking-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 23px;
}

/* --------------------------------- blog search page --------------------------------- */
/* ---------- links ---------- */

.blog-search-links {
    color: #103128;
    background-color: #f0e8c8;
    padding: 2em;
    text-align: left;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-search-links {
        padding-bottom: 1em;
    }
}

.blog-search-links a {
    color: #103128;
    font-family: "GT Pressura Mono";
    font-weight: bold;
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, 0);
    opacity: 0.8;
}

.blog-search-links-block {
    width: 1140px;
    padding-left: 6em;   
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    .blog-search-links-block {
        padding-left: 0;
        width: 100%;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-search-links-block {
        width: 50%;
        padding-left: 1em;
        line-height: unset;
    }
    .blog-search-links-block .row {
        flex-direction: column;
    }
    .blog-search-links-block .row .col {
        padding-bottom: 1em;
    }
}

/* ---------- new ---------- */

.blog-search-recent {
    color: #103128;
    background-color: #e4dec0;
    padding: 1em;
    text-align: left;
}

.blog-search-recent img {
    width: 700px;
    height: 400px;
    object-fit: cover;
    object-position: 0 33%;
    top: 3em;
    position: absolute;
}

.blog-search-recent-text {
    width: 700px;
    padding: 3em;
    padding-left: 6em;
    padding-right: 1em;
}

.blog-search-recent h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 45px;
    line-height: 50px;
}

.blog-search-recent h2 {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.1em;
}

.blog-search-recent p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
}

/* ---------- results/display ---------- */

.blog-search-results {
    background-color: #f0e8c8;
    color: #103128;
    padding: 5em;
    padding-left: 10em;
    text-align: left;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-search-results .col {
        width: 100%;
        height: 260px;

        flex-basis: unset;
        margin: 4% 0%;
    }
}

.blog.general-block .row {
    min-height: unset;
}

/* --------------------------------- blogs --------------------------------- */

/* ---------- content ---------- */

.blog-content {
    color: #103128;
    background-color: #f0e8c8;
    text-align: left;
    padding: 5em;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-content {
        padding: 2em;
    }
}

.blog-content-text {
    max-width: 1000px;
    margin: auto;
}

@media only screen and (max-width: 1200px) { /* tablets & mobile */
    .blog-content-text img {
        height: auto;
    }
}

.blog-content-text .date {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 15px;
}

.blog-content-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 45px;
    margin-bottom: -15px;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-content-text h1 {
        font-size: 30px;
    }
}

.blog-content-text h2 {
    font-family: "GT Pressura Mono";
    font-weight: bolder;
    font-size: 40px;

    padding: 1em 0;
}

.blog-content-text h4,
.blog-content-text h3 {
    font-family: "GT Pressura Mono";
    font-weight: bold;
    font-size: 30px;

    padding: 1em 0;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-content-text h4,
    .blog-content-text h3  {
        font-size: 24px;
        padding: 2% 0;
    }
}


.blog-content-text p,
.blog-content-text .wp-block-table table tbody tr td {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-align: left;

    padding: 1em 0;
}
@media only screen and (max-width: 700px) { /* phone */
    .blog-content-text p {
        padding: 2% 0;
    }
}

.blog-content-text li {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-align: left;
}

.blog-video-wrapper {
    display: flex;
    justify-content: center;
}
/* --------------------------------- media --------------------------------- */
/* ---------- sidebar ---------- */

.media-sidebar {
    color: #103128;
    text-align: left;
    padding: 5em;
    width: 400px;
    position: absolute;
}

.media-sidebar h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 34px;
    line-height: 50px;
}

/* ---------- content ---------- */

.media-content {
    color: #103128;
    background-color: #f0e8c8;
    text-align: left;
    padding: 5em;
    padding-left: 23em;
    padding-right: 5em;
}

.media-content-text {
    width: 1000px;
}

.media-content-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 45px;
    line-height: 50px;
    width: 880px;
}

.media-content-text h2 {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.1em;
}

.media-content-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
}

/* --------------------------------- contacts --------------------------------- */

/* ---------- display ---------- */

.contacts-display {
    background-color: #f0e8c8;
    color: #103128;
    padding: 5em;
    padding-left: 10em;
    text-align: left;
}

/* --------------------------------- about us --------------------------------- */

/* ---------- video ---------- */

.about-video {
    min-height: 725px;
    width: 100%;
    position: relative;
}

.about-video iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-us-links {
    display: flex;
    justify-content: center;
    margin: 5%;
}
@media only screen and (max-width: 700px) { /* phone */
    .about-us-links {
        flex-direction: column;
        align-items: center;
    }
}

.about-us.general-block {
    padding: 2% 0% 0%;
}

/* --------------------------------- Roastery --------------------------------- */

/* ----- blends ----- */

.blends-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    width: 70%;
    max-width: 1300px;
    margin: 5% auto;
}

.blend-circle {
    width: 30%;
    margin: 1%;

    display: flex;
    justify-content: center;
}

.blend-circle img {
    width: 100%;
}


/* ---------- Blends Modal ---------- */

#blend-modal .modal-content {
    display: flex;
    flex-direction: row;
    min-height: 400px;
}
@media only screen and (max-width: 700px) { /* mobile */
    #blend-modal .modal-content {
        flex-direction: column;
    }
}

#blend-modal .modal-text {
    width: 100%;
}

#blend-modal .modal-header {
    margin: 3% 0%;
    width: 60%;
}
@media only screen and (max-width: 700px) { /* mobile */
    #blend-modal .modal-header {
        width: 100%;
    }
}

#blend-modal .modal-text-header {
    width: 50%;
    float: left;
    display: flex;
    flex-direction: column;
}

#blend-modal-icon {
    float: left;
    width: 30%;
}

#blend-modal-header {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 40px;

    float: left;
    margin: 2%
}
@media only screen and (max-width: 700px) { /* mobile */
    #blend-modal-header {
        font-size: 20px;
    }
}

#blend-modal-header-underline {
    width: 100%;
    height: 10px;
}

#blend-modal-description {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 23px;
    margin: 0% 5% 5%;
}

/* ---------- brews ---------- */

.roastery-brews-block {
    width: 80%;
    max-width: 1500px;

    margin: 2% auto;
}

/* ----- brews text ----- */

.roastery-brews-text {
    width: 700px;
    text-align: center;
    display: inline-block;
}

.roastery-brews-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px;
    padding: 1em;
}

.roastery-brews-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 23px;
}

/* ----- brews block ----- */

.roastery-brews-block button {
    font-family: Bookmania; 
    font-weight: 600; 
    font-size: 20px;
    color: #103128;
    text-align: left;
}

/* ----- brews accordion ----- */

.brewsAccordion
{
    background-color:#e4dec0 !important;
    color: #103128;
    width: 100%;
    height: 5em;
    border: 1px solid #c3c3a8;
    transition: 0.4s;
    margin-top: 1em;
    padding: 1em !important;
}

.brewsAccordion:after {
    content: '+';
    font-size: 20px;
    float: right;
    padding-right: 1em;
    font-family: Arial, Helvetica, sans-serif;
}

.brewsAccordion .active:after {
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
}

.brewsAccordionPanel {
    background-color:#f0e8c8;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.brewsAccordionPanelText {
    width: 100%;
}

.brews-accordion-image-container {
    width: 50%;
}
@media only screen and (max-width: 700px) { /* mobile */
    .brews-accordion-image-container {
        width: 100%;
    }
}

.brews-accordion-image {
    position: relative;
    height: 100%;
    margin: 1%;
}
@media only screen and (max-width: 700px) { /* mobile */
    .brews-accordion-image {
        height: 200px;
    }
}

.brews-accordion-image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;

    object-fit: cover; 
    object-position: center;
}

.roastery-brews-block-accordion .row .col {
    width: 50%;
    margin: 4% auto;
}
@media only screen and (max-width: 700px) { /* mobile */
    .roastery-brews-block-accordion .row .col {
        width: 100%;
    }
}

/* --------------------------------- Media Archive --------------------------------- */
/* ---------- results/display ---------- */

.archive-media-results {
    background-color: #e4dec0;
    color: #103128;
    padding: 5em;
    padding-left: 10em;
    text-align: left;
}

/* --------------------------------- Careers Page --------------------------------- */

.careers-links {
    display: flex;
    justify-content: center;
    margin: 5%;
}
@media only screen and (max-width: 700px) { /* phone */
    .careers-links {
        flex-direction: column;
        align-items: center;
    }
}

/* --------------------------------- Workshops Page --------------------------------- */

.book-event {
    display: flex;
    justify-content: center;
    margin: 2%;
}

.book-event button {
    background-color: #b98f55;
    color: #f0e8c8;
    font-family: "GT Pressura Mono";
    border-radius: 24px;
    text-align: left;
    height: 50px;
    width: 150px;
    padding: 1em !important;
}

.book-event span {
    float: right;
}

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

.workshops.decal-container .decal {
    width: 50%;
    padding: 10%;
}

/* ---------- events ---------- */

.events {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width: 1200px) { /* tablets & mobile */
    .events {
        flex-direction: column;
    }
}

.event {
    display: flex;
    flex-flow: row;

    width: 40%;
    height: 200px;
    margin: 3%;
}
@media only screen and (max-width: 1200px) { /* tablets & mobile */
    .event {
        width: 70%;
    }
    @media only screen and (max-width: 700px) { /* phone */
        .event {
            width: 100%;
        }
    }
}

.event-image {
    width: 50%;
    position: relative;
}

.event-image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 10px;
}

.event-text {
    width: 50%;
    margin-left: 5%;
}  

.event-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    margin-top: 0;
    text-transform: capitalize;
}   
@media only screen and (max-width: 700px) { /* phone */
    .event-text h1 {
        font-size: 16px;
        line-height: normal;
    }
}

.event-text h2 {
    font-family: "GT Pressura Mono";
    color: #d67025;
    font-size: 14px;
    text-transform: uppercase;
}

.event-text p {
    font-family: "GT Pressura Mono";
}

.event button {
    color: #b98f55;
    font-family: "GT Pressura Mono";
    text-align: center;
    font-size: 12px;

    border-radius: 24px;
    border-style: solid;
    border-width: 3px;
    border-color: #b98f55;

    padding: 1em !important;
}

.see-more-events {
    display: flex;
    justify-content: center;
    margin: 2%;
}

.see-more-events button {
    background-color: #b98f55;
    color: #f0e8c8;
    font-family: "GT Pressura Mono";
    border-radius: 24px;
    text-align: center;
    height: 50px;
    width: 200px;
    padding: 1em !important;
}

/* --------------------------------- urban farm page --------------------------------- */

.urban-farm-map img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.urban-farm.book-event {
    justify-content: left;
    margin: 0;
}

.more-blog {
    background-color: #b98f55;
    color: #f0e8c8;

    font-size: 20px;
    text-align: center;
    font-family: "GT Pressura Mono";
    
    border-radius: 42px;
    padding: 1em !important;
    width: 300px;

    position: absolute; 
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    bottom: 30px;
}


/* --------------------------------- store search page --------------------------------- */

/* ---------- results/display ---------- */

.store {
    background-color: #f0e8c8;
    color: #103128;
    padding: 6em;
    padding-top: 1em;
    text-align: left;
}

.store .store-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.store li {
    position: relative;

    list-style-type: none;
    margin-bottom: 35px;

    border-style: solid;
    border-width: 2px;
    border-color: rgba(16, 49, 40,0.1);

    width: 287px;
    height: 485px;
}
@media only screen and (max-width: 700px) { /* phone */
    .store li {
        width: 100px;
        height: 195px;
        margin: 10px auto;
    }
}

.store img {
    object-fit: cover;
    width: 100%;
    height: 65%;
}
    
.store h2 {
    font-family: Bookmania;
    height: 80px;
    padding: 4%;
}
@media only screen and (max-width: 700px) { /* phone */
    .store h2 {
        font-size: 10px;
        height: unset;
        padding: 0 4%;
    }
}

.store-title {
    padding: 1em;
}

.store-title h1 {
    font-family: Bookmania;
}
@media only screen and (max-width: 700px) { /* phone */
    .store-title h1 {
        font-size: 30px;
    }
}

.store-title p {
    font-family: "GT Pressura Mono";
}

.price {
    font-family: "GT Pressura Mono";
}
@media only screen and (max-width: 700px) { /* phone */
    .price {
        font-size: 8px;

        position: absolute;
        bottom: 7px;
        left: 0;

        width: 100%;
    }
}

#products-row {
    max-width: 1225px;
    text-align: center;
    position: relative; 
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link:hover,
a.woocommerce-LoopProduct-link.woocommerce-loop-product__link:active {
    text-decoration: none;
}

#products-notfound {
    font-family: "GT Pressura Mono";
}

.col.product {
    max-width: 33%;
}

/* --------------------------------- products page --------------------------------- */

/* ---------- directory ---------- */

.products-directory {
    color: #103128;
    background-color: #f0e8c8;
    padding: 2em;
    padding-left: 8em;
    padding-bottom: 1px;
    text-align: left;
}

.products-directory p {
    color: #103128;
    font-family: "GT Pressura Mono";
    font-weight: bold;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0);
    padding-right: 10%;
    text-transform: uppercase;
}

.products-directory span {
    opacity: 0.7;
}

/* ---------- description ---------- */

.products-description {
    background-color: #f0e8c8;
    color: #103128;
    height: 100%;
}
@media only screen and (max-width: 700px) { /* phone */
    .products-description .dropdown {
        padding-right: 10px;
    }
    .products-description .dropdown h3 {
        font-size: 16px;
    }
    .products-description .dropbtn {
        padding-right: 40px !important;
    }
}

.products-description .deliverys {
    padding: 2em 0em;
}

.products-description-container {
    padding: 4em;
    padding-top: 1em;
    width: 100%;
    max-width: 2000px;
    margin: auto;

    overflow: auto;
    display: block;
}

.products-description-image {
    float: left;
    max-width: 50%;
    padding: 1em;
}
@media only screen and (max-width: 1200px) { /* tablets */
    .products-description-image {
        max-width: 100%;
        width: 100%;
    }
}

.products-description-image img {
    width: 90%;
    height: 100%;
    height: 735px;
    padding-left: 3em;
    object-fit: cover;
    object-position: 46%;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    .products-description-image img {
        height: 275px;
        width: 100%;
        padding: 0;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    .products-description-image img {
        width: 100%;
        height: unset;
        padding-left: 0;
    }
}

.products-description-text {
    float: right;
    max-width: 50%;
    min-height: 735px;
    width: 100%;
}

.products-description-text h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px;
}
@media only screen and (max-width: 700px) { /* phone */
    .products-description-text h1 {
        font-size: 30px;
    }
}

.products-description-text h2 {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 23px;
}
@media only screen and (max-width: 700px) { /* phone */
    .products-description-text h2 {
        font-size: 16px;
    }
}

.products-description-text p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 23px;
    color: #103128;
}
@media only screen and (max-width: 700px) { /* phone */
    .products-description-text p {
        font-size: 12px;
    }
}

.add-to-cart {
    font-family: "GT Pressura Mono";
    font-size: 16px;
    text-align: center;
    background-color: #103128;
    color: #f0e8c8;
    width: 250px;
    height: 55px;
}

/* ----- cart modal ----- */

#cartModal .modal-dialog {
    max-width: 500px;
}

#cart-modal-name {
    font-family: "GT Pressura Mono";
    font-size: 20px;
    padding: 1em;
}

#cart-modal-quantity {
    font-family: "GT Pressura Mono";
    font-size: 20px;
    padding: 1em;
    padding-top: 0;
}

#cart-modal-cost {
    font-family: "GT Pressura Mono";
    font-size: 20px;
    padding: 1em;
    padding-top: 0;
}

#cart-modal-cart-items {
    font-family: "GT Pressura Mono";
    font-size: 20px;
    padding: 1em;
    padding-top: 0;
}

.cart-buttons {
    padding: 1em;
}

#cart-modal-continue {
    font-family: "GT Pressura Mono";
    font-size: 16px;
    text-align: center;
    
    border-style: solid;
    border-width: 2px;
    border-color: rgba(16, 49, 40,0.1);
    background-color: #e4dec0 !important;

    width: 200px;
    height: 55px;
}
@media only screen and (max-width: 700px) { /* phone */
    #cart-modal-continue {
        margin: 1%;
    }
}

#cart-modal-checkout {
    font-family: "GT Pressura Mono";
    font-size: 16px;
    text-align: center;

    background-color: #103128 !important;
    color: #f0e8c8;

    width: 250px;
    height: 55px;
    float: right;
}
@media only screen and (max-width: 700px) { /* phone */
    #cart-modal-checkout {
        margin: 1%;
        float: unset;
    }
}


/* ----- dropdown ----- */

.products-description-text-dropdown {
    padding-top: 2%;
}

.products-dropdown {
    background-color:#e4dec0 !important;
    color: #103128;
    width: 100%;
    height: 3.5em;
    border: 1px solid #c3c3a8;
    transition: 0.4s;
    margin-top: 1em;
    padding: 1em !important;
}

#products-dropdown {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 17px;
    text-align: left;
}

.products-dropdown:after {
    content: '+';
    font-size: 20px;
    float: right;
    padding-right: 1em;
    font-family: Arial, Helvetica, sans-serif;
}

.products-dropdown .active:after {
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
}

.products-dropdown-panel {
    background-color:#f0e8c8;
    display: none;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 2em;
}

.products-dropdown-panel p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 22px;
}

/* --------------------------------- subscriptions page --------------------------------- */

.subscription {
    padding: 3em 0 0 0;
    background-color: #f0e8c8;
}
@media only screen and (max-width: 1200px) { /* tablet & phone */
    .subscription #pick-blend,
    .subscription #pick-grind,
    .subscription #pick-size,
    .subscription #delivery-frequency,
    .subscription #confirm-subscription {
        padding: 10px 20px 30px;
    }

    .subscription #pick-blend h1,
    .subscription #pick-grind h1,
    .subscription #pick-size h1,
    .subscription #delivery-frequency h1,
    .subscription #confirm-subscription h1{
        padding: 0 15px 0;
    }
}

.subscription h1 {
    font-family: Bookmania;
    text-align: center;
    color: #103128;
    padding: 1em;
}

.subscription input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* ----- get started ----- */

#get-started {
    position: relative;
    padding: 1em;
    height: 185px;
    background-color: #103128;
}

#get-started h1 {
    color: #f0e8c8;
    padding: 0;
}

#get-started .arrow-container {
    position: relative;
    background-color: #103128;
    margin: 3em;
}

#get-started .arrow,
#get-started .arrow:before {
  position: absolute;
  left: 50%;
}

#get-started .arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  margin: -20px 0 0 -20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-left: none;
  border-top: none;
  border-right: 2px #f0e8c8 solid;
  border-bottom: 2px #f0e8c8 solid;
}

#get-started .arrow:before {
  content: '';
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 1px #e4dec0 solid;
  border-bottom: 1px #e4dec0 solid;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: arrow;
}
  
@keyframes arrow {
    0% {opacity: 1;}
    100% {
        opacity: 0;
        transform: translate(-10px, -10px);
    }
}

#get-started .decal {
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    height: 100%;
}

/* ----- progress sticky header ----- */

#progress {
    background-color: #f0e8c8;
    border-top: #c3c3a8 solid;
    border-bottom: #c3c3a8 solid;
    padding: 1em;
}
@media only screen and (max-width: 700px) { /* phones */
    #progress {
        display: none;
    }
}

#progress .row {
    width: 850px;
    margin: auto;
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    #progress .row {
        width: 650px;
    }
}


#progress .row .right-arrow {
    border-right: 3px #c3c3a8 solid; 
    border-bottom: 3px #c3c3a8 solid;
    height: 45px;
    width: 45px;
    transform: rotate(-45deg);
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    #progress .row .right-arrow {
        height: 30px;
        width: 30px;
    }
}


#progress .row .col h2 {
    font-size: 18px;
    padding-left: 2em;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    #progress .row .col h2 {
        font-size: 14px;
    }
}


/* ----- pick blend ----- */

#pick-blend {
    padding: 100px 1em 75px;
    background-color: #e4dec0;
}

#pick-blend .row {
    padding-top: 2em;
    width: 95%;

    min-width: 1000px;
}


/* ----- pick grind ----- */

#pick-grind {
    display: none;
    padding: 75px 1em 75px;
}

#pick-grind .row {
    padding-top: 2em;
    width: 70%;
    max-width: 1500px;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablets */
    #pick-grind .row {
       width: 400px;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    #pick-grind .row {
        width: 200px;
    }
}


/* ----- pick size ----- */

#pick-size {
    display: none;
    padding: 75px 1em 75px;
    background-color: #e4dec0;
}

#pick-size .row {
    padding-top: 2em;
    width: 60%;
    max-width: 1300px;
}

#pick-size .select-button label {
    font-size: 24px;
}

/* ----- delivery frequency ----- */

#delivery-frequency {
    display: none;
    padding: 75px 1em 75px;
}

#delivery-frequency .row {
    padding-top: 2em;
    width: 60%;
    max-width: 1300px;
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) { /* laptop & tablets */
    #delivery-frequency .row {
        width: 400px;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    #delivery-frequency .row {
        width: 150px;
    }
}

#delivery-frequency .select-button label {
    font-size: 24px;
}

/* ----- confirm subscription ----- */

#confirm-subscription {
    display: none;
    padding: 75px 1em 75px;
    background-color: #e4dec0;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    #confirm-subscription .helper {
        display: grid;
        height: 100%;
    }
    #confirm-subscription #selected-blend-image {
        align-self: center;
        height: 80%;
    }
}

#confirm-subscription h2 {
    font-size: 20px;
}
@media only screen and (max-width: 1200px) { /* tablets & phone */
    #confirm-subscription h2 {
        font-size: 14px;
    }
}

#confirm-subscription .row {
    padding-top: 2em;
    width: 1000px;
}
@media only screen and (max-width: 1200px) { /* tablets & phone */
    #confirm-subscription .row {
        width: 100%;
    }
    @media only screen and (max-width: 700px) { /* phone */
        #confirm-subscription .row {
            max-width: 400px;
        }
    }
}

#confirm-subscription .summary {
    border: 1px solid #103128;
    padding: 0
}

#confirm-subscription .summary-box {
    border: 1px solid #103128;
    padding: 2% 4%;

    width: 50%;
    float: left;

    white-space: nowrap;
    overflow: hidden;
}

#confirm-subscription .summary-box-full {
    border: 1px solid #103128;
    padding: 2% 4%;

    width: 50%;
    float: left;
}

#confirm-subscription .summary-box-full {
    width: 100%;
}

#confirm-subscription .summary-box-full .row {
    width: 80%;
    padding: 0;
    margin-left: 0;
    align-items: center;
}
@media only screen and (max-width: 1200px) { /* tablet & phone */
    #confirm-subscription .summary-box-full .row {
        width: 100%;
    }
}

#selected-blend-image {
    height: 100%;
    margin: auto;
    padding: 3%;
    display: block;
}
@media only screen and (max-width: 700px) { /* phone */
    #selected-blend-image {
        display: none;
    }
}

#subscription-blend,
#subscription-grind,
#subscription-size,
#subscription-frequency {
    font-weight: 700;
    text-align: left;
}

#subscription-total {
    width: 40%;
    float: left;
    padding: 0 0 10px 0 !important;

    font-weight: 700;
    text-align: left;
} 

#charge-frequency {
    width: 50%;
    float: left;

    font-size: 20px;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    #charge-frequency {
        font-size: 14px;
    }
}
@media only screen and (max-width: 700px) { /* phone */
    #charge-frequency {
        width: 100%;
        font-size: 18px;
    }
}

/* --------------------------------- cart page --------------------------------- */

/* ---------- cart list ---------- */

.cart-list {
    color: #103128;
    background-color: #f0e8c8;
    padding: 8em;
    padding-top: 2em;
    padding-bottom: 10em;
    position: relative;
    text-align: left;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */ 
    .cart-list {
        padding: 3em 3em 10em 3em;
    }
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-list {
        padding: 1em 1em 7em 1em;
    }
}

.cart-list h1 {
    font-family: Bookmania;
    font-weight: 600;
    font-size: 44px;
    line-height: 46px;
    padding-bottom: 1em;
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-list h1 {
        font-size: 30px;
        padding: 0em 1em;
    }
}

.cart-list h2 {
    font-family: 'GT Pressura Mono';
}

.cart-list hr {
    margin: 20px 0px;
    border-top: 1px solid #1031281a;
    width: 100%;
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-list hr{
        margin: 10px 0px;
    }
}

.cart-list-headers {
    width: 430px;
    float: right;

    color: #103128;
    font-family: "GT Pressura Mono";
    font-weight: bold;
    font-size: 18px;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    .cart-list-headers {
        width: 330px;
    }
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-list-headers {
        width: 52%;
        font-size: 8px;
        min-width: 150px;
        max-width: 200px;
    }
}

.cart-block {
    height: 200px;
    margin: 60px 0;
    position: relative;
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-block {
        height: 95px;
        margin: 8px 0;
    }
}

.cart-product-info {
    display: inline-flex;
    flex-direction: column;
    text-align: left;

    font-family: "GT Pressura Mono";
    font-size: 16px;
    line-height: 23px;
    
    padding: 1em;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    .cart-product-info {
        left: 45px;
    }
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-product-info {
        font-size: 10px;
        line-height: 8px;
    }
}

.cart-purchase-info {
    width: 400px;
    position: absolute;
    right: 15px;

    color: #103128;
    font-family: "GT Pressura Mono";
    font-weight: bold;
    font-size: 16px;
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */ 
    .cart-purchase-info {
        width: 300px;
    }
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-purchase-info {
        width: 43%;
        padding: 6px;
        font-size: 8px;
        min-width: 120px;
        max-width: 170px;
    }
}

#cart-price {
    position: absolute;
    left: 0;
}

#cart-quantity {
    position: absolute;
    left: 55%;
    bottom: -35px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 0;
    width: 133px;
}
@media only screen and (max-width: 700px) { /* mobile */
    #cart-quantity {
        width: 50px;
        bottom: -11px;
    }
    #cart-quantity .dropbtn {
        padding: 4px !important;
        padding-right: 30px !important;
        font-size: 8px;
    }
    #cart-quantity .dropdown-content {
        min-width: 40px;
    }
    #cart-quantity .dropdown-content a {
        padding: 6px;
    }
}

.cart-total {
    position: absolute;
    right: 0;
}

#cart-image img {
    height: 100%;
    width: 180px;
    padding: 1em;

    object-fit: cover;
    float: left;
}
@media only screen and (max-width: 700px) { /* mobile */
    #cart-image img {
        width: 25%;
        padding: 7px;
    }
}

.cart-list-info {
    text-align: right;
}

.cart-list-info h2 {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 23px;
}

.cart-list-info p {
    font-family: "GT Pressura Mono";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 23px;
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-list-info p {
        font-size: 12px;
    }
}


.cart-list-buttons {
    float: right;
}

.cart-list-buttons button {
    margin: 2em;
    margin-right: 0;
    font-family: "GT Pressura Mono";
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}
@media only screen and (max-width: 700px) { /* mobile */
    .cart-list-buttons button  {
        font-size: 12px;
    }
}

.cart-list-buttons a:hover {
    text-decoration: none;
}

#cart-list-continue {
    background-color: #f0e8c8 !important;
    width: 250px;
    height: 55px;
    border-style: solid;
    border-width: 2px;
    border-color: #103128 ;
}
@media only screen and (max-width: 700px) { /* mobile */
    #cart-list-continue {
        width: 110px;
    }
}

#cart-list-checkout {
    background-color: #103128 !important;
    color: #f0e8c8;
    width: 150px;
    height: 55px;
}
@media only screen and (max-width: 700px) { /* mobile */
    #cart-list-checkout {
        width: 80px;
    }
}

.remove-from-cart {
    font-weight: bold !important;
    font-family: "GT Pressura Mono";
    text-align: left;
    font-size: 17px;
    border: 1px solid rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 700px) { /* mobile */
    .remove-from-cart {
        font-size: 10px;
    }
}

/* --------------------------------- checkout page --------------------------------- */

/* ---------- checkout products ---------- */

.checkout-header {
    background-color: #f0e8c8;
}

.checkout-header a {
    position: absolute;
    top: 60px;
    padding-left: 10em;
    font-weight: bolder;
    z-index: 1;
}
@media only screen and (max-width: 1400px) and (min-width: 1200px) { /* laptop */
    .checkout-header a {
        padding-left: 5em;
    }
}
@media only screen and (max-width: 1200px) and (min-width: 701px) { /* tablet */
    .checkout-header a {
        padding-left: 2em;
    }
}
@media only screen and (max-width: 700px) { /* mobile */
    .checkout-header a {
        top: 60px;
        padding: 2em;
        z-index: 2;
    }
}

.checkout-header a:hover {
    text-decoration: none;
}


.checkout-header img {
    width: 120px;
    height: auto;
}

.checkout-body {
    position: absolute;
    background-color: #f0e8c8;
    color: #103128;
    padding: 10em;
    padding-top: 17em;
    width: 50%;
    height: 1245px;
    float: left;
}

.checkout-body p {
    font-family: "GT Pressura Mono";
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: left;
}

.checkout-body hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #1031281a;
    width: 100%;
}

.checkout-title-info { 
    padding-bottom: 30px; 
}

.checkout-title-info-price,
#delivery-fee-block-fee {
    float: right;
}

.checkout-title-info-title,
#delivery-fee-block-title {
    float: left;
}

#checkout-body-total {
    position: absolute;
    top: 150px;
    font-weight: bold;
}

/* ---------- checkout payment ---------- */


.woocommerce-additional-fields,
table.shop_table.woocommerce-checkout-review-order-table,
.col-2,
.woocommerce-billing-fields h3,
#order_review_heading,
#payment div.payment_box::before,
.woocommerce-customer-details--phone,
.woocommerce-customer-details--email,
.woocommerce-customer-details,
.woocommerce-info {
    display: none !important;
}

form.checkout.woocommerce-checkout {
    position: absolute;
    right: 0;
    width: 50%;
    height: 1245px;
    padding: 4em;
    padding-left: 8em;
    padding-right: 8em;
    top: -5px;
    background: white;
}

.woocommerce-billing-fields,
span.woocommerce-input-wrapper,
.stripe-card-group,
li.wc_payment_method.payment_method_stripe label {
    width: 100%
}

div#order_review {
    padding: 1.3em;
}

.col-1 {
    max-width: 100%;
    width: 100% !important;
}

#billing_company_field,
#billing_city_field,
#billing_phone_field,
#billing_country_field,
#billing_state_field,
#billing_email_field,
#billing_first_name_field,
#billing_last_name_field,
#billing_postcode_field  {
    float: left;
    width: 50%;
    overflow: visible;
    clear: none;
}

#billing_country_field > .woocommerce-input-wrapper {
    margin: 2%;
}

#billing_address_1_field {
    margin-bottom: 0;
    padding-bottom: 0;
}

#billing_address_2_field {
    padding-top: 0;
    margin-top: 0;
}

.input-text,
.country_to_state,
span.select2-selection.select2-selection--single {
    height: 40px;
    font-family: 'Roboto', sans-serif;
    color: #103128;
    font-size: 1.2rem;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-radius: 0.2rem;
    background-color: white;
    border: 1px solid rgb(16, 49, 40, 0.2);
    display: block;
    transition: all 0.3s;
}

span#select2-billing_state-container,
span#select2-billing_country-container {
    line-height: normal;
    padding: 0;
    position: absolute;
    top: 12px;
}

.woocommerce-checkout-payment img {
    width: 50px;
    margin: 5px !important;
    float: right;
}

.woocommerce-notices-wrapper {
    position: fixed;
    bottom: 0;
    width: 50%;
    background-color: #e4dec0;
    padding-left: 13em;
    padding-right: 13em;
}

.woocommerce-message {
    background-color: #e4dec0;
}

.wc-stripe-elements-field {
    font-family: 'Roboto', sans-serif;
    color: #103128;
    background-color: white;
    border: 1px solid rgb(16, 49, 40, 0.2);
    width: 100%;
}

button#place_order {
    background-color: #103128 !important;
    color: white;
    height: 55px;
    margin: 2em;
    width: 150px;
}

.woocommerce-NoticeGroup,
.stripe-source-errors,
.woocommerce-error {
    position: fixed;
    bottom: 0px;
    left: 0%;
    width: 50%;
    background-color: #f0e8c8;
}

.woocommerce-message {
    margin: 0;
}

.woocommerce-order {
    position: absolute;
    right: 4%;
    top: 100px;
    width: 40%;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    padding: 0;
}

form#pwgc-redeem-form {
    position: absolute;
    right: 155px;
}

.woocommerce-privacy-policy-text p {
    padding: 1em;
}


/* --------------------------------- Login, Reigister & Edit Account Modals --------------------------------- */

#registerForm,
#loginForm {
    margin: auto;
    width: 80%;
    padding: 5%;

    background-color: #e4dec0;
}

/* ----- login modal ------ */

#login-modal .modal-dialog {
    max-width: 500px;
    width: 80%;
}

#login-modal .modal-content {
    height: 500px;
}

#loginForm .login-username input,
#loginForm .login-password input  {
    width: 100%;
    border-style: unset;
} 

#loginForm #wp-submit {
    font-family: "GT Pressura Mono";
    text-align: center;

    background-color: #103128 !important;
    color: #f0e8c8;

    height: 40px;
    padding: 0 8% 0; 
    border-style: unset;
}

/* ----- register modal ------ */

#create-account-modal .modal-dialog {
    max-width: 600px;
    width: 80%;
}

#create-account-modal .modal-content {
    height: 650px;
}

#registerForm button {
    font-family: "GT Pressura Mono";
    font-size: 18px;
    text-align: center;

    background-color: #103128 !important;
    color: #f0e8c8;

    height: 50px;
}

/* ----- edit account modal ------ */

.subscriptions-scroll {
    width: 95%;
    margin: 0 auto 3%;

    overflow-y: auto;
}

.subscriptions-scroll hr {
    width: 98%;
}

.subscription-block {
    height: 150px;
    position: relative;
}

.subscription-image,
.subscription-info {
    float: left;
    padding: 1em;
    height: inherit;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .subscription-image,
    .subscription-info {
        padding: 2%;
        width: 50%;
        font-size: 11px;
    }
} 

.subscription-image img {
    height: 100%;
}

#account-settings {
    text-align: left;
    width: 95%;
    margin: auto auto 2%;
}

.unsubscribe,
#openChangePassword,
#deleteAccount {
    font-weight: bold !important;
    font-family: "GT Pressura Mono";
    font-size: 17px;
    border: 1px solid rgba(0, 0, 0, 0);

    display: block;
}
@media only screen and (max-width: 700px) { /* phone */ 
    .unsubscribe {
        font-size: 11px;
    }
} 

/* ----- change password modal ------ */

#change-password-modal .modal-dialog {
    max-width: 500px;
    width: 80%;
}

#change-password-modal .modal-content {
    height: fit-content;
    min-height: 490px;
}

#change-password-form {
    width: 75%;
    margin: 6% auto;
}

#changePassword {
    font-family: "GT Pressura Mono";
    text-align: center;

    background-color: #103128 !important;
    color: #f0e8c8;

    height: 40px;
    padding: 0 8% 0; 
    border-style: unset;
}


/* --------------------------------- laptop styling --------------------------------- */

@media only screen and (max-width: 1400px) and (min-width: 1200px) {

/* --------------------------------- Contact us, Blog and Media laptop styling --------------------------------- */

#recent-blog-image,
.blog-search-recent-text {
    width: 600px;
}

.blog-search-results,
.contacts-display {
    padding-left: 5em;
}

/* --------------------------------- Shop laptop styling --------------------------------- */

.store img {
    width: 282px;
}

#products-row {
    max-width: 100%;
}

.products-description-container{
    padding: 1em;
}

.products-directory {
    padding-left: 5em;
}

.cart-block {
    margin-top: 40px;
    margin-bottom: 40px;
}

.dropdown {
    padding-right: 2em;
}

form.checkout.woocommerce-checkout {
    padding: 4em;
}

.checkout-body {
    padding: 5em;
    padding-top: 17em;
}

}

/* --------------------------------- tablet styling --------------------------------- */

@media only screen and (max-width: 1200px) and (min-width: 701px) {

/* --------------------------------- Contact us, Blog and Media tablet styling --------------------------------- */

.archive-media-results,
.contacts-display { 
    padding: 2em;
}


.archive-media-results br,
.contacts-display br {
    display: none;
}

/* --------------------------------- Shop tablet styling --------------------------------- */

.store {
    padding: 1em;
}

.store li {
    width: 193px;
    height: 375px;
}

.store img {
    height: 220px;
    width: 189px;
}

.store .woocommerce-loop-product__title {
    font-size: 20px;
}

.products-description-container {
    padding: 3em;
}

.products-description-text {
    max-width: 100%;
}

.products-directory {
    padding: 1em;
    padding-left: 3em;
}

.checkout-body {
    padding: 2em;
    padding-top: 17em;
    height: 1870px;
}

form.checkout.woocommerce-checkout {
    padding: 0;
    top: 50px;
}

form#pwgc-redeem-form {
    position: relative;
    margin-left: 180px;
}

#pwgc-redeem-gift-card-number {
    width: 135px;
}

#billing_company_field, 
#billing_city_field, 
#billing_phone_field, 
#billing_country_field, 
#billing_state_field, 
#billing_email_field, 
#billing_first_name_field, 
#billing_last_name_field, 
#billing_postcode_field,
.form-row.form-row-first,
.form-row.form-row-last {
    width: 100% !important;
}

}
/* --------------------------------- mobile phone styling --------------------------------- */

@media only screen and (max-width: 700px) {
.mobile-only {display: initial;}

/* --------------------------------- Contact us, Blog and Media mobile styling --------------------------------- */

.media-sidebar,
.archive-media-results br,
.contacts-display br,
#recent-blog-image-col {
    display: none;
}

.archive-media-results,
.media-content,
.contacts-display {
    padding: 1em;
}

.media-content-text,
.media-content-text {
    width: 100%;
}

/* --------------------------------- Shop mobile styling --------------------------------- */

.col.product {
    max-width: 100%;
}

.add-to-cart,
.cart-list-buttons {
    width: 100%;
}

.store-search-description,
.store,
.products-dropdown-panel {
    padding: 1em;

}

.store-search-description-text {
    text-align: center;
    padding-left: 1em;
}

.products-description-text {
    max-width: 100%;
}

.products-description-container,
.products-directory {
    padding: 2em;
}

.cart-list-buttons a {
    float: right;
}

.cart-product-info {
    left: unset;
    padding: unset;
}

.cart-product-info p {
    width: 115px;
}

.checkout-header {
    height: 0;
}



.checkout-body {
    position: relative;
    width: 100%;
    padding: 2em;
    padding-top: 12em;
    padding-bottom: 8em;
    margin-bottom: 2em;
    height: auto;
    z-index: 1;
}

#checkout-body-total {
    top: unset;
    bottom: 40px;
}

form.checkout.woocommerce-checkout {
    position: relative;
    width: 100%;
    height: 0;
    padding: 2em;
}

#billing_company_field, 
#billing_city_field, 
#billing_phone_field, 
#billing_country_field, 
#billing_state_field, 
#billing_email_field, 
#billing_first_name_field, 
#billing_last_name_field, 
#billing_postcode_field,
.form-row.form-row-first,
.form-row.form-row-last {
    width: 100% !important;
}

.woocommerce-NoticeGroup,
.stripe-source-errors {
    position: fixed;
    left: unset;
    right: 0;
    width: 100%;
    z-index: 10;
}

.woocommerce-error {
    background-color: #f0e8c8;
    bottom: -30px;
    width: 100%;
}

form#pwgc-redeem-form {
    position: relative;
    right: unset;
    padding-left: 2em;
}

}