@charset "utf-8";
/* CSS Document */

html
{
    font-size: 16px;
    scroll-behavior: smooth;
}

*
{
    box-sizing: border-box;
    margin: 0;
}

body {font-size: 1rem;}

header, main, footer, section, article {display: block;}

img, video {vertical-align: top;}

p
{
    line-height: 1em;
    margin-bottom: 1em;
}

/***** Utility Classes *****/
.display-block {display: block;}

.display-inline-block {display: inline-block;}

.display-flex {display: flex;}

.display-none {display: none;}

.clearfix::after
{
    clear: both;
    content: "";
    display: block;
}

.hidden
{
    position: fixed;
    left: -9999px;
    top: -9999px;
}

.full-width {width: 100%;}

.full-height {height: 100%;}

.height-zero {height: 0px;}

.block-width
{
    max-width: 1300px;
    width: 94%;
}

.overflow-hide {overflow: hidden;}

.overflow-x-hide {overflow-x: hidden;}

.overflow-y-hide {overflow-y: hidden;}

.pos-absolute {position: absolute;}

.pos-relative {position: relative;}

.pos-fixed {position: fixed;}

.transform-translate-xy-center
{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.transform-translate-x-center
{
    left: 50%;
    transform: translateX(-50%)
}

.transform-translate-y-center
{
    top: 50%;
    transform: translateY(-50%)
}

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

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

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

/*This is a CSS trick used for flex box in order to right align a single or group of flex item(s) at the end
of the flex-order. This is needed because multiple flex items on the main axis are treated as a group.*/
.flex-item-right-align {margin-left: auto;}

.justify-center {justify-content: center;}

.justify-start {justify-content: flex-start;}

.justify-end {justify-content: flex-end;}

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

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

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

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

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

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

.align-self-center {align-self: center;}

.order-1 {order: 1;}

.order-2 {order: 2;}

.order-3 {order: 3;}

.order-4 {order: 4;}

.order-5 {order: 5;}

.order-6 {order: 6;}

.block-gap {gap: 2.5rem;}

.section-gap {gap: 1.5rem;}

.component-gap {gap: 0.25rem;}

.mar-none {margin: 0;}

.mar-auto {margin: auto;}

.mar-l-r-auto {margin: 0 auto}

.mar-b-none {margin-bottom: 0;}

.block-mar-t-b {margin: 1.5rem 0 1.5rem 0;}

.block-mar-b {margin-bottom: 2rem;}

.sec-mar-b {margin-bottom: 2rem;}

.pad-none {padding: 0;}

.block-pad {padding: 2rem 1rem;}

.block-pad-t-b {padding: 1.5rem 0 1.5rem 0;}

.sec-pad {padding: 0.8em;}

.bg-color-unset {background-color: unset;}

.bg-color-white {background-color: #ffffff;}

.bg-color-beige {background-color: #F4ECDA;}

.bg-color-turquoise {background-color: #439292;}

.color-white {color: #ffffff;}

.color-black {color: #000000;}

.color-turquoise {color: #439292;}

.text-align-center {text-align: center;}

.text-align-justify {text-align: justify;}

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

.text-align-right {text-align: right;}

.text-decoration-none {text-decoration: none;}

.font-family-fjalla-one {font-family: "Fjalla One", sans-serif;}

.font-family-roboto-condensed {font-family: "Roboto Condensed", sans-serif;}

.font-family-poppins {font-family: "Poppins", sans-serif;}

.font-style-normal {font-style: normal;}

.font-style-italic {font-style: italic;}

.font-style-unset {font-style: unset;}

.font-weight-200 {font-weight: 200;}

.font-weight-300 {font-weight: 300;} 

.font-weight-400 {font-weight: 400;}

.font-weight-500 {font-weight: 500;}

.font-weight-600 {font-weight: 600;}

.font-weight-700 {font-weight: 700;}

.line-height-xs {line-height: 0.5em}

.line-height-sml {line-height: 0.75em}

.line-height-med {line-height: 1em}

.line-height-lrg {line-height: 1.25em}

.line-height-xl {line-height: 1.5em}

.line-height-xxl {line-height: 1.75em}
/***** END Utility Classes *****/

.sos-logo
{
    max-width: 400px;
    min-width: 200px;
    width: 50%;
}

.info-wrapper {gap: 0.8em}

.hours {font-size: clamp(1.5em, 4vw, 3em);}

.address
{
    font-size: clamp(1.2em, 1.5vw, 2.4em);
    gap: 0.4em;
}

.divider {height: 3px;}

.h2-menu {font-size: 3em;}

.h3-menu
{
    font-size: 2.2em;
}

.h3-menu-mar-b {margin-bottom: 0.25em;}

.item-note {font-size: 1.3em;}

.item-desc, .menu-note {font-size: 1.5em;}

.toppings {font-size: 1.6em;}

.addons-wrapper
{
    border: 3px solid #439292;
    max-width: 700px;
}




