/*!********************************************************
CORE CSS
**********************************************************/
:root {
    --webappsDarkRed: #51545e;
    --webappsYellow: #efbc5b;
    --webappsGrey: #7F7F7F;
    --webappsDarkGrey: #666666;
    --fieldColor: #51545e;
    --buttonColor: #666666;
    --sliderColor: #666666;
    --toastedLightestGray: #F1F1F1;
    --toastedOrange: #F86F04;
}
/*!********************************************************
RESETS
**********************************************************/
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #f1f1f185;
    -webkit-border-radius: 10px;
    background-color: #f1f1f1;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--toastedOrange);
    -webkit-box-shadow: inset 0 0 6px #f86e0432;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #f86e0446;
}
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    color: #fff;
    font-family: 'Open Sans';
    width: 100%;
    min-height: 100%;
    background-color: var(--webappsDarkGrey);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212529;
}
.block-code {
    border-left: 4px solid var(--webappsDarkRed);
    color: #343a40 !important;
}
.nav-header {
    border-bottom: 2px var(--webappsDarkRed) solid;
}
.site-title {
    color: var(--webappsDarkRed);
    margin: 0;
}
img {
    max-width: 100%;
}
.form-control:focus {
    box-shadow: unset;
}
/*!********************************************************
DEFAULTS
**********************************************************/
h1 {
    font-size: 2rem;
}
h2 {
    font-size: 1.2rem;
}
h3 {
    font-size: 1rem;
}
h3.alt {
    background: var(--webappsDarkRed);
}
h4 {
    font-size: 1.1rem;
}
.hide,
.d-hide {
    display: none;
}
.ck-editor__editable_inline {
    min-height: 250px;
}
.autocomplete-suggestions {
    border: 1px solid #999;
    background: #fff;
    overflow: auto;
    cursor: pointer;
}
.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-selected {
    background: #f0f0f0;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #39f;
}
.autocomplete-group {
    padding: 2px 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}
.autocomplete-no-suggestion a {
    color: #9a9a9a;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 45px;
}
.autocomplete-no-suggestion a:hover {
    text-decoration: none;
    color: #333;
    opacity: .7;
}
.fa-notification {
    font-size: 2.5rem !important;
    position: absolute;
    top: -10px;
    right: 5px;
}
.fa-rotate {
    transform: rotate(180deg);
}
.inline_loader {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    text-align: center;
}
progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    appearance: none;
    height: 0.5rem;
    overflow: hidden;
    border: 0;
    border-radius: 0.25rem;
    background-color: var(--webappsGrey);
    color: var(--webappsDarkRed);
    width: 160px;
}
progress::-moz-progress-bar {
    background-color: var(--webappsDarkRed);
}
progress::-webkit-progress-value {
    background-color: var(--webappsDarkRed);
}
::-webkit-progress-bar {
    background-color: var(--webappsGrey);
}
#toast-container>div {
    opacity: 1;
    border: 2px solid #ccc !important;
}
.boxshadow-0 {
    box-shadow: unset !important;
}
.pointer-events-none {
    pointer-events: none;
}
.form-group.input-underline .form-control {
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #a9a9a9;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.5rem;
    margin: 4px 0 0;
    padding: 0;
}
.form-group.input-underline textarea.form-control {
    border: 1px solid #dee2e6 !important;
    margin-top: 1rem !important;
    padding: 8px 12px;
}
.form-group.input-underline .underline {
    height: 4px;
    width: 0;
    position: relative;
    margin-top: -4px;
    background: var(--fieldColor);
    transition: width .3s ease-in-out;
}
.form-group.input-underline .form-control:focus+.underline {
    width: 100%;
    background: var(--fieldColor);
}
.form-group.input-underline label {
    margin: 0 0 -5px;
    padding: 0;
    display: block;
}
input.form-control[type=checkbox],
input.form-control[type=radio] {
    display: none;
    margin: 0;
}
input.form-control[type=radio]+label:before {
    border-radius: 100%;
}
input.form-control[type=checkbox]+label:before,
input.form-control[type=radio]+label:before {
    content: "";
    background: #f4f4f4;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
    margin: -2px .8rem 0 0;
    vertical-align: middle;
    cursor: pointer;
    text-align: center;
    transition: 250ms;
}
input.form-control[type=checkbox]:checked+label:before,
input.form-control[type=radio]:checked+label:before {
    background-color: var(--fieldColor);
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
input.form-control[type=checkbox]:focus+label:before,
input.form-control[type=radio]:focus+label:before {
    outline: 0;
    border-color: var(--fieldColor);
}
input.form-control[type=checkbox]:selected:disabled+label:before,
input.form-control[type=radio]:selected:disabled+label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
input.form-control[type=checkbox]+label:empty:before,
input.form-control[type=radio]+label:empty:before {
    margin-right: 0;
}
.search__input {
    width: 100%;
    padding: 14px 24px 12px;
    background-color: var(--fieldColor);
    transition: 250ms ease-in-out;
    font-size: 20px;
    line-height: 18px;
    color: #fff;
    background-color: var(--fieldColor);
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='white' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 95% center;
    border-radius: 5px;
    border: 1px solid #575756;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}
.search__input::placeholder {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus::placeholder {
    color: grey;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:focus {
    padding: 14px 0 12px;
    outline: 0;
    color: grey;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='grey' viewBox='0 0 24 24'><path d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/></svg>");
    background-position: 100% center;
}
.search-field {
    margin-right: 1rem;
}
.search-field .icon {
    height: 45px;
    width: 45px;
    cursor: pointer;
}
.search-field .input-group-text {
    border-radius: 50% !important;
    padding: 1rem 0.75rem;
}
.search-field .search {
    height: 45px;
    border-top: unset;
    border-left: unset;
    border-right: unset;
    margin-right: 1rem;
    width: 0px !important;
    opacity: 0;
    transition: all 0.5s ease;
}
.search-field .form-control:focus {
    border-color: transparent;
    box-shadow: 0 0 0 0.2rem transparent;
    border-bottom: 1px solid #ced4da;
}
.search-field .search.expanded {
    width: 300px !important;
    opacity: 1;
    transition: all 0.5s ease;
}
.search-field .fa-search {
    font-size: 20px;
}
/*!********************************************************
BUTTONS
**********************************************************/
.btn-form {
    border: 3px solid var(--buttonColor);
    color: var(--buttonColor);
    background: 0 0;
    cursor: pointer;
    padding: 20px 40px;
    margin: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.btn-form:hover {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: #fff;
    background: var(--buttonColor);
    opacity: .8;
}
.btn-burgandy {
    background-color: var(--webappsDarkRed);
    border: 2px solid var(--webappsDarkRed);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 2px 90px;
    border-radius: 0;
}
.btn-burgandy:hover {
    background-color: #fff;
    color: var(--webappsDarkRed);
    border: 2px solid var(--webappsDarkRed);
}
.btn-red {
    background-color: var(--webappsDarkRed);
    color: #fff;
    border: 2px solid var(--webappsDarkRed);
}
.btn-red:focus,
.btn-red:hover {
    color: #fff;
    background: var(--webappsDarkRed);
    border-color: var(--webappsDarkRed);
    opacity: .8;
    box-shadow: unset;
}
.btn-yellow {
    background-color: var(--webappsYellow);
    color: #fff;
    border: 2px solid var(--webappsYellow);
}
.btn-yellow:focus,
.btn-yellow:hover {
    color: #fff;
    background: var(--webappsYellow);
    border-color: var(--webappsYellow);
    opacity: .8;
    box-shadow: unset;
}
/*!********************************************************
FORM DATEPICKER/FLATPICKR
**********************************************************/
.form-control.datepicker {
    height: 38px;
    width: 100%;
    margin: 0;
}
.datepicker {
    height: 38px;
}
/*! Flatpickr */
.flatpickr-input {
    background: #fff !important;
    height: 46px;
}
.flatpickr {
    background: #fff;
}
.flatpickr input {
    background: #fff !important;
    height: auto;
}
.flatpickr a.input-button {
    text-decoration: none;
    border: 1px solid #bbb;
    padding: 4px 10px;
    border-left: 0;
    cursor: pointer;
    align-self: center;
    justify-content: center;
    line-height: 1;
}
.border-black {
    border: 2px solid #000 !important;
}
/*!********************************************************
DATATABLES
**********************************************************/
.dataTable {
    width: 100% !important;
}
.tableFilter select {
    display: inline-block;
    width: auto;
}
.dataTables_length,
.dt-buttons,
.tableFilter {
    display: inline-block;
    margin: 0 20px 8px;
}
td.dtr-control:before,
th.dtr-control:before {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    border: unset !important;
    box-shadow: unset !important;
    height: 1.1em !important;
    width: 1.1em !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
    content: '\f107';
    content: "\f107";
    line-height: 1.2em;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
    content: '\f106';
    content: "\f106";
    line-height: 1.1em;
}
div.dataTables_wrapper div.dataTables_info {
    white-space: unset;
    display: inline-block;
    margin-left: auto;
}
div.dataTables_wrapper div.dataTables_length {
    width: unset;
    display: inline-block;
    margin-right: 1.5rem;
}
div.dataTables_wrapper div.dataTables_paginate {
    float: right;
    margin-top: 8px;
}
.dt-buttons {
    float: right;
}
.dt-buttons .dt-button {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid #dc3545;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #dc3545;
}
.dt-buttons .dt-button:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}
div.dataTables_wrapper div.dataTables_length select {
    margin: 0 8px;
}
table.dataTable {
    margin-top: 0 !important;
}
.tableActionsColumn {
    width: 0;
    white-space: nowrap;
}
/*!********************************************************
RANGE SLIDER
**********************************************************/
.slidecontainer {
    width: 100%;
}
.slidecontainer .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: 0;
    opacity: .7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slidecontainer .slider:hover {
    opacity: 1;
}
.slidecontainer .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
.slidecontainer .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
/*!********************************************************
FORMS
**********************************************************/
label {
    font-size: 1rem;
    margin: 0 .5rem 1rem;
    color: #696969;
    font-weight: bold;
}
.select {
    padding: .7rem;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    width: 100%;
}
.custom-select {
    display: inline-block;
    width: auto;
}
#status_filter {
    display: inline-block;
}
#status_filter label {
    font-weight: normal;
}
.select2-wrapper {
    width: 300px;
}
.select2-results .fa {
    float: right;
    position: relative;
    line-height: 20px;
}
/*!********************************************************
AUTOCOMPLETE
**********************************************************/
.autocompleteMenuContainer {
    width: 400px;
    margin: 0;
    padding: 0;
    position: relative;
}
.ui-menu {
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: scroll;
    border: none;
}
.ui-widget.ui-widget-content {
    border: none;
}
.ui-menu-item {
    font-size: 1.3em;
    background-color: var(--webappsDarkRed);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    color: #fff;
    font-weight: normal;
    width: 100%;
    transition: .3s;
}
.ui-menu-item:hover {
    background-color: var(--webappsDarkRed);
    cursor: pointer;
}
.ui-menu .ui-menu-item-wrapper {
    padding: .3em .8em;
}
.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: none;
    background: var(--webappsDarkRed);
    font-weight: normal;
    color: #fff;
    margin: 0;
    transition: .3s;
}
/*!********************************************************
CUSTOM CHECKS AND RADIOS
**********************************************************/
/*! Radio and checkmark container */
.form-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    float: left;
}
/*! Hide the browser's default radio button */
.form-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
/*! Create a custom radio button */
.form-radio {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}
/*! Create a custom checkbox */
.form-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
/*! On mouse-over, add a grey background color */
.form-container:hover input~.form-checkmark,
.form-container:hover input~.form-radio {
    background-color: #ccc;
}
/*! When the radio button is checked, add a blue background */
.form-container input:checked~.form-checkmark,
.form-container input:checked~.form-radio {
    background-color: var(--bbRed);
}
/*! Create the indicator (the dot/circle - hidden when not checked) */
.form-checkmark:after,
.form-radio:after {
    content: "";
    position: absolute;
    display: none;
}
/*! Show the indicator (dot/circle) when checked */
.form-container input:checked~.form-checkmark:after,
.form-container input:checked~.form-radio:after {
    display: block;
}
/*! Style the indicator (dot/circle) */
.form-container .form-radio:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
/*! Style the checkmark/indicator */
.form-container .form-checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*!********************************************************
CUSTOM SEARCH AND TEXT INPUTS
**********************************************************/
.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 1rem .5rem;
    max-width: 100%;
    width: calc(100% - 2em);
    vertical-align: top;
    font-size: 1.5rem;
}
.input__field {
    position: relative;
    display: block;
    float: right;
    padding: .8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: 400;
    -webkit-appearance: none;
    appearance: none;
}
.input__field:focus {
    outline: 0;
}
.input__label {
    display: inline-block;
    margin: 0;
    padding: 0 1em;
    width: 40%;
    color: #696969;
    font-weight: bold;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}
.input__label-content span {
    font-weight: normal;
}
/*!********************************************************
GLOBAL Image Hover/Delete
**********************************************************/
.remove_item {
    position: relative;
    cursor: pointer;
}
.remove_item img {
    width: 100%;
}
.remove_item .overlay {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    transition: .5s;
    opacity: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.remove_item .overlay:hover {
    opacity: 1;
}
.remove_item .overlay i {
    font-size: 5rem;
    color: #fff;
    margin: auto;
}
.popover.confirmation .popover-header {
    background: var(--webappsDarkRed);
}
/*!* Dropzone **/
.dropzone {
    border: 2px dotted rgba(0, 0, 0, .3) !important;
}
.dropzone .dz-preview {
    width: 100% !important;
    margin: 0 !important;
}
.dropzone .dz-image {
    width: 100% !important;
    background: #d2d2d2 !important;
}
.dropzone .dz-details {
    margin-top: 6px !important;
}
.dropzone .dz-filename {
    padding-top: 15px !important;
    font-size: 1rem !important;
}
.dropzone .dz-filename span {
    background: #fff !important;
    line-height: 2.5rem !important;
    padding: 4px !important;
}
.dropzone .dz-filename span:hover {
    border: none !important;
}
.dropzone .dz-size {
    margin-top: -.7em !important;
}
.dropzone .dz-size span {
    background: #fff !important;
    padding: 4px !important;
}
.dropzone .dz-progress {
    width: 90% !important;
    margin-left: 5% !important;
    margin-right: 5% !important;
    left: 0 !important;
}
.dropzone .dz-upload {
    background: #28a745 !important;
}
.dropzone .dz-button {
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    padding-top: 5px !important;
}
/*!* jQuery Uploader **/
.ajax-file-upload-statusbar-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="37" height="37" viewBox="0 0 37 37"><g id="Group_487" data-name="Group 487" transform="translate(-339 -234)"><g id="Rectangle_52" data-name="Rectangle 52" transform="translate(339 234)" fill="none" stroke="%232f73ea" stroke-width="1"><rect width="37" height="37" rx="7" stroke="none"/><rect x="0.5" y="0.5" width="36" height="36" rx="6.5" fill="none"/></g><path id="_290132_gallery_image_photo_photography_picture_icon_1_" data-name="290132_gallery_image_photo_photography_picture_icon(1)" d="M21.4,23.514H2.943A1.943,1.943,0,0,1,1,21.571V8.943A1.943,1.943,0,0,1,2.943,7H21.4a1.943,1.943,0,0,1,1.943,1.943V21.571A1.943,1.943,0,0,1,21.4,23.514Zm.971-14.571a.972.972,0,0,0-.971-.971H2.943a.972.972,0,0,0-.971.971V21.571a.972.972,0,0,0,.971.971H21.4a.972.972,0,0,0,.971-.971ZM20.591,20.462l-3.077-3.077-1.758,1.758,1.619,1.619a.474.474,0,0,1-.671.671L9.743,14.471,3.752,20.462a.474.474,0,1,1-.671-.671l6.268-6.268a.435.435,0,0,1,.046-.07.446.446,0,0,1,.741.07l4.949,4.949,2.035-2.035a.5.5,0,0,1,.046-.07.51.51,0,0,1,.695,0,.5.5,0,0,1,.046.07l3.354,3.354a.474.474,0,1,1-.671.671ZM14.6,12.829a1.943,1.943,0,1,1,1.943-1.943A1.943,1.943,0,0,1,14.6,12.829Zm0-2.914a.971.971,0,1,0,.971.971A.972.972,0,0,0,14.6,9.914Z" transform="translate(345 237)" fill="%23525252" fill-rule="evenodd"/></g></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 37px;
    height: 37px;
}
.ajax-file-upload-statusbar,
.ajax-upload-dragdrop {
    width: 100% !important;
}
.dragdrop tr {
    cursor: move;
}
/*!********************************************************
FORM DATEPICKER/FLATPICKR
**********************************************************/
.flatpickr-input.form-control:disabled,
.flatpickr-input.form-control[readonly] {
    background-color: unset;
}
.help-block {
    font-weight: bold;
    color: #dc3545;
    font-size: .9rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 80%;
}
.select2-container .select2-selection--single {
    height: auto;
    padding: .5rem;
}
.select2-selection__choice {
    color: #000;
}
/*!********************************************************
CUSTOM ICONS
**********************************************************/
.icon {
    width: 22px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.icon-circle {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.icon-edit {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23.698" height="23.5" viewBox="0 0 23.698 23.5"><g id="_8666681_edit_icon" data-name="8666681_edit_icon" transform="translate(-1 -0.879)"><path id="Path_3" data-name="Path 3" d="M11.617,4H4.137A2.137,2.137,0,0,0,2,6.137V21.1a2.137,2.137,0,0,0,2.137,2.137H19.1A2.137,2.137,0,0,0,21.233,21.1v-7.48" transform="translate(0 0.145)" fill="none" stroke="%23707070" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><path id="Path_4" data-name="Path 4" d="M19.219,2.543a2.267,2.267,0,0,1,3.206,3.206L12.274,15.9,8,16.968l1.069-4.274Z" transform="translate(0.411 0)" fill="none" stroke="%23707070" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></svg>');
}
.icon-trash {
    background-image: url('data:image/svg+xml,<svg id="_9004673_trash_delete_bin_remove_icon" data-name="9004673_trash_delete_bin_remove_icon" xmlns="http://www.w3.org/2000/svg" width="12.059" height="13.155" viewBox="0 0 12.059 13.155"><path id="Path_5" data-name="Path 5" d="M7.577,0h-1.1A1.644,1.644,0,0,0,4.837,1.644v.548H1.548a.548.548,0,1,0,0,1.1H2.1v7.674a2.192,2.192,0,0,0,2.192,2.192H9.77a2.192,2.192,0,0,0,2.192-2.192V3.289h.548a.548.548,0,1,0,0-1.1H9.222V1.644A1.644,1.644,0,0,0,7.577,0ZM5.933,1.644A.548.548,0,0,1,6.481,1.1h1.1a.548.548,0,0,1,.548.548v.548H5.933Zm4.933,9.318a1.1,1.1,0,0,1-1.1,1.1H4.289a1.1,1.1,0,0,1-1.1-1.1V3.289h7.674Z" transform="translate(-1)" fill="%23be6868"/><path id="Path_6" data-name="Path 6" d="M11.548,9A.548.548,0,0,0,11,9.548v4.385a.548.548,0,0,0,1.1,0V9.548A.548.548,0,0,0,11.548,9Z" transform="translate(-5.519 -4.067)" fill="%23be6868"/><path id="Path_7" data-name="Path 7" d="M15,13.933a.548.548,0,1,0,1.1,0V9.548a.548.548,0,1,0-1.1,0Z" transform="translate(-7.326 -4.067)" fill="%23be6868"/><path id="Path_8" data-name="Path 8" d="M7.548,9A.548.548,0,0,0,7,9.548v4.385a.548.548,0,0,0,1.1,0V9.548A.548.548,0,0,0,7.548,9Z" transform="translate(-3.711 -4.067)" fill="%23be6868"/></svg>');
}
.icon-circle.icon-trash {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 39 39"><g id="Group_19" data-name="Group 19" transform="translate(-471 -818)"><circle id="Ellipse_16" data-name="Ellipse 16" cx="19.5" cy="19.5" r="19.5" transform="translate(471 818)" fill="%23f1f1f1"/><g id="_9004673_trash_delete_bin_remove_icon" data-name="9004673_trash_delete_bin_remove_icon" transform="translate(481.324 827.176)"><path id="Path_5" data-name="Path 5" d="M10.866,0H9.222A2.467,2.467,0,0,0,6.755,2.467v.822H1.822a.822.822,0,1,0,0,1.644h.822V16.444a3.289,3.289,0,0,0,3.289,3.289h8.222a3.289,3.289,0,0,0,3.289-3.289V4.933h.822a.822.822,0,1,0,0-1.644H13.333V2.467A2.467,2.467,0,0,0,10.866,0ZM8.4,2.467a.822.822,0,0,1,.822-.822h1.644a.822.822,0,0,1,.822.822v.822H8.4Zm7.4,13.977a1.644,1.644,0,0,1-1.644,1.644H5.933a1.644,1.644,0,0,1-1.644-1.644V4.933H15.8Z" transform="translate(-1)" fill="%23707070"/><path id="Path_6" data-name="Path 6" d="M11.822,9A.822.822,0,0,0,11,9.822V16.4a.822.822,0,0,0,1.644,0V9.822A.822.822,0,0,0,11.822,9Z" transform="translate(-2.778 -1.6)" fill="%23707070"/><path id="Path_7" data-name="Path 7" d="M15,16.4a.822.822,0,0,0,1.644,0V9.822a.822.822,0,1,0-1.644,0Z" transform="translate(-3.489 -1.6)" fill="%23707070"/><path id="Path_8" data-name="Path 8" d="M7.822,9A.822.822,0,0,0,7,9.822V16.4a.822.822,0,0,0,1.644,0V9.822A.822.822,0,0,0,7.822,9Z" transform="translate(-2.067 -1.6)" fill="%23707070"/></g></g></svg>') !important;
}
.icon-search {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23.497" height="23.496" viewBox="0 0 23.497 23.496"><g id="search" transform="translate(-1.988 -2.028)"><path id="Path_99" data-name="Path 99" d="M25.236,24.052,19.785,18.6h-.059a10.063,10.063,0,1,0-1.166,1.166s0,.042,0,.059l5.451,5.451a.866.866,0,0,0,1.224-1.224Zm-13.175-3.6a8.386,8.386,0,1,1,8.386-8.386,8.386,8.386,0,0,1-8.386,8.386Z" fill="%23707070"/></g></svg>');
}
.icon-circle.icon-search {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 39 39"><g id="Group_5" data-name="Group 5" transform="translate(0.404 0.168)"><g id="Group_4" data-name="Group 4"><rect id="Rectangle_29" data-name="Rectangle 29" width="39" height="39" rx="19.5" transform="translate(-0.404 -0.168)" fill="%23f1f1f1"/></g><g id="_8666693_search_icon" data-name="8666693_search_icon" transform="translate(12.393 12.393)"><circle id="Ellipse_13" data-name="Ellipse 13" cx="6.5" cy="6.5" r="6.5" transform="translate(0.203 0.438)" fill="none" stroke="%23707070" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><line id="Line_16" data-name="Line 16" x1="3.594" y1="3.594" transform="translate(11.278 11.278)" fill="none" stroke="%23707070" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></g></g></svg>');
}
.icon-circle.icon-settings {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="39" height="39" viewBox="0 0 39 39"><g id="Group_3" data-name="Group 3" transform="translate(0.15 0.168)"><rect id="Rectangle_29" data-name="Rectangle 29" width="39" height="39" rx="19.5" transform="translate(-0.15 -0.168)" fill="%23f1f1f1"/><g id="_8324265_ui_essential_app_filter_options_icon" data-name="8324265_ui_essential_app_filter_options_icon" transform="translate(9.914 14.045)"><ellipse id="Ellipse_10" data-name="Ellipse 10" cx="0.5" cy="1" rx="0.5" ry="1" transform="translate(2.936 -0.214)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line id="Line_8" data-name="Line 8" x2="16" transform="translate(3.936 0.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><ellipse id="Ellipse_11" data-name="Ellipse 11" cx="0.5" cy="1" rx="0.5" ry="1" transform="translate(2.936 9.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line id="Line_9" data-name="Line 9" x2="16" transform="translate(3.936 10.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><ellipse id="Ellipse_12" data-name="Ellipse 12" cx="0.5" cy="1" rx="0.5" ry="1" transform="translate(15.936 4.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line id="Line_10" data-name="Line 10" x1="16" transform="translate(-0.064 5.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line id="Line_11" data-name="Line 11" x1="3" transform="translate(-0.064 0.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line id="Line_12" data-name="Line 12" x2="3" transform="translate(16.936 5.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/><line id="Line_13" data-name="Line 13" x1="3" transform="translate(-0.064 10.786)" fill="none" stroke="%23707070" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="2"/></g></g></svg>') !important;
}
.cursor-pointer {
    cursor: pointer;
}
.btn-trash-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.btn-trash-wrapper .btn-circle.btn-trash {
    margin: 0;
    background-color: transparent;
}
.btn-trash-wrapper .btn-trash {
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 0;
    transition: all 0.3s ease-in-out;
}
.btn-trash-wrapper .btn-trash:hover {
    background-color: #e04545;
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.3);
}
.btn-trash-wrapper .btn-trash:hover>.icon-trash {
    transition: all 0.3s ease-in-out;
    filter: brightness(0) invert(1);
}
/*!********************************************************
FRONTEND CSS
**********************************************************/
:root {
    --toastedPurple: #837CC6;
    --toastedLightPurple: #BEB8FA;
    --toastedGradient: linear-gradient(180deg, #CCEBF5 0%, #CFD4F5 100%);
    --toastedOrange: #F86F04;
    --toastedGray: #707070;
    --toastedLightGray: #DBDBDB;
}
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
p {
    font-family: 'futura-pt', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 22px;
    color: black;
    white-space: pre-line;
}
.body {
    overflow-x: hidden;
    background-image: var(--toastedGradient);
}
.flex-1 {
    flex: 1 !important;
}
.btn-toasted {
    font-family: 'futura-pt', sans-serif !important;
    background-color: var(--toastedPurple);
    border: none;
    border-radius: 0px;
    margin: 0 12px;
    color: #fff !important;
    padding: 13px 35px;
    font-size: 17px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 184px;
    transition: all 0.3s ease-in-out;
}
.btn-toasted:hover {
    background-color: rgba(131, 124, 198, .4);
    color: var(--toastedPurple) !important;
}
.btn-toasted-white {
    font-family: 'futura-pt', sans-serif;
    background-color: #fff;
    border: 2px solid var(--toastedPurple);
    color: var(--toastedPurple);
    padding: 13.6px 91px;
    font-size: 19px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-width: 240px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.btn-toasted-white:hover {
    background-color: var(--toastedPurple);
    border: 2px solid var(--toastedPurple);
    color: #fff;
}
.btn-toasted-orange {
    background-color: var(--toastedOrange);
}
.btn-toasted-orange:hover {
    background-color: #fff;
    color: var(--toastedOrange);
}
.btn-toasted-arrow {
    width: 260px;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px 5px 17.5px;
}
.text-toasted-orange {
    color: var(--toastedOrange);
}
.form-toasted {
    font-family: 'futura-pt', sans-serif;
    height: 48px;
    background-color: #F7F6F6;
    border: 1px solid var(--toastedLightPurple);
    border-radius: 25px;
    color: #000;
    padding: 12px 0;
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
}
.checkbox-toasted {
    display: inline-block;
    cursor: pointer;
    transition: 250ms;
    cursor: pointer;
}
.checkbox-toasted input[type="checkbox"] {
    appearance: none;
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid var(--toastedLightPurple) !important;
    border-radius: 5px !important;
    vertical-align: middle;
    transition: 250ms;
    position: relative;
    margin-right: 13px;
}
.checkbox-toasted input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--toastedPurple);
    border-radius: 2px;
    opacity: 0;
    transition: 250ms;
}
.checkbox-toasted input[type="checkbox"]:checked::before {
    opacity: 1;
}
.checkbox-toasted label {
    font-family: 'futura-pt', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: black;
    text-wrap: break-word;
}
.radio-toasted input[type="radio"] {
    appearance: none;
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid var(--toastedLightPurple) !important;
    border-radius: 5px !important;
    vertical-align: middle;
    transition: 250ms;
    position: relative;
    margin-right: 13px;
}
.radio-toasted input[type="radio"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--toastedPurple);
    border-radius: 2px;
    opacity: 0;
    transition: 250ms;
}
.radio-toasted input[type="radio"]:checked::before {
    opacity: 1;
}
.radio-toasted label {
    font-family: 'futura-pt', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: black;
    text-wrap: break-word;
}
.upload {
    background-color: transparent;
    padding: 10px;
    border-radius: 22px;
    margin-top: 18px;
}
.ajax-upload-dragdrop {
    border: 2px dashed white;
    color: black;
    padding: 30px 10px;
    text-align: left;
    vertical-align: middle;
    text-align: center;
    border-radius: 12px;
    font-family: "Futura", sans-serif;
    font-weight: 400;
    font-size: 18px;
}
.ajax-upload-dragdrop a {
    color: black;
}
.ajax-upload-dragdrop a:hover {
    color: black;
}
.ajax-file-upload {
    all: unset;
    display: inline-block;
    vertical-align: text-top;
    margin: 0 5px;
    color: #2f73ea;
    display: none;
}
.upload-browse {
    color: #2f73ea;
}
.upload-browse:hover {
    color: #2f73ea;
    text-decoration: underline;
}
.accordion,
.checkbox label,
.radio label {
    cursor: pointer;
}
.form-textarea {
    height: 203px !important;
}
#popup_modal {
    width: 100vw !important;
    height: 100vh !important;
}
.age-confirmation-wrapper {
    background-image: url('/assets/img/age_confirmation_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-confirmation-wrapper img {
    width: 265px;
    height: auto;
}
.age-confirmation-wrapper a img {
    width: auto;
    height: auto;
}
.age-confirmation-wrapper h1 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 75px;
    font-weight: 400;
    margin: 37px 0 33px 0;
}
.age-confirmation-wrapper h3 {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: white;
    margin: 69px 0 27px 0;
}
/* START LAYOUT.FRONTEND */
/* NAVIGATION */
#main-nav {
    background-image: url('/assets/img/nav-cloud.png');
    background-size: 164vw 85vh;
    background-repeat: no-repeat;
    background-position: calc(50% - 108px) bottom !important;
    height: 230px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 66px 95px 69px;
    z-index: 10;
    position: relative;
}
#main-nav.bg-clouds {
    background-image: url('/assets/img/cloud.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: calc(50%) bottom !important;
    height: 250px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* padding: 0 66px 95px 69px; */
    z-index: 10;
    position: relative;
}
.nav-item {
    list-style: none;
}
.toasted-logo-sm {
    position: absolute;
    top: 57px;
    left: 69.5px;
}
.nav-cart-hamburger {
    top: 42px;
    right: 66px;
}
.nav-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.nav-subtitle {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 18px;
    color: var(--toastedOrange);
}
.nav-title {
    font-family: 'Shrikhand', sans-serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 70px;
    color: black;
}
.btn-close-nav {
    color: #ffffffc7;
    width: 45px;
    height: 45px;
    border: none;
    background-color: transparent;
}
.btn-close-nav img {
    width: 100%;
    height: auto;
}
.nav-offcanvas {
    background-color: #212121;
    opacity: 80%;
    height: 100% !important;
    overflow: auto;
}
.navbar-collapse {
    flex-grow: 0;
}
#main-nav.frontend {
    top: 0px;
    position: absolute;
}
.nav-offcanvas-header {
    height: 37px;
    margin: 40px 33px 37px 0 !important;
}
.nav-offcanvas-body {}
.nav-offcanvas-body a {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    font-weight: 700;
    line-height: 43px;
    text-decoration: none;
    color: white;
    padding-bottom: 41px;
}
.nav-offcanvas-socials {
    width: 151.64px;
    height: 27.16px;
    margin: 50px 0 37px 0;
}
.toasted-logo {
    transform: translateY(-5px);
}
.toasted-logo-sm {
    /* transform: translatey(-20px); */
    width: 232px;
    height: auto;
}
.hamburger {
    width: 83px;
    height: 83px;
    background-color: var(--toastedOrange);
    border-radius: 100%;
    border: none;
    margin-left: 30px;
    float: right;
}
.hamburger img {
    width: 42px;
    height: auto;
}
/* END NAVIGATION */
/* FOOTER */
footer .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-decoration: none;
    color: black;
    padding-bottom: 41px;
    transition: all 0.3s ease-in-out;
}
footer .nav-link:focus {
    color: black;
}
footer .nav-link:hover {
    color: var(--toastedOrange);
}
#footer-content {
    background-image: url('/assets/img/footer_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: auto;
    padding: 12% 5.54vw 71px 5.54vw;
    position: relative;
    z-index: 2;
}
#footer-content .col-4 {
    padding: 0;
}
#footer-content .checkbox-toasted label {
    font-family: 'futura-pt', sans-serif;
    font-size: 16px;
}
#footer-content img {
    margin-bottom: 52px;
}
#footer-content p {
    color: #AAAAAA;
    font-family: 'futura-pt', sans-serif;
    font-size: 14px;
    line-height: 26px;
}
.divider {
    height: 1px;
    width: 100%;
    background-color: var(--toastedLightPurple);
}
.divider-gray {
    height: 1px;
    width: 100%;
    background-color: #9f9f9f;
    margin: 1rem 0;
}
#footer-bottom {
    height: 12.6%;
    background-color: white;
}
#footer-bottom span {
    font-family: 'futura-pt', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #BEB8FA;
    margin: 30px 0;
}
#footer-content .footer-logo {
    width: 265px;
    height: auto;
}
#cloud-club {
    padding-left: 5.54vw;
}
#cloud-club span {
    font-family: 'Shrikhand', sans-serif;
    font-size: 25px;
    line-height: 40px;
    color: black;
    margin: 0 0 24px 0;
}
#cloud-club button {
    width: 100%;
    height: 39px;
    padding: auto 0;
    font-size: 13px;
    line-height: 16px;
}
/* END FOOTER */
/* END LAYOUT.FRONTEND */
/* START INDEX */
/* HERO */
.hero-banner {
    position: relative;
    width: 100%;
    height: 91.3vh;
    overflow: visible;
}
.heroSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.heroSlider .slick-list,
.heroSlider .slick-track {
    padding: 0 !important;
    display: flex;
    height: 100% !important;
    /* width: 100% !important; */
}
.heroSlider .slick-slide,
.heroSlider .slick-slide div:first-of-type {
    height: 100%;
}
.heroSlider {
    width: 100% !important;
}
.hero-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center !important;
    width: 100%;
    height: 100%;
}
.slider-wrapper {
    margin-left: 65px;
    transform: translateY(175px);
}
.productSlider .slick-list {
    width: 586px;
    height: auto;
    overflow: clip;
}
.slider_prev,
.slider_next {
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(255, 255, 255, 0.63);
    border: none;
    border-radius: 50px;
    margin-bottom: 40px;
}
.slider_prev i,
.slider_next i {
    font-size: 18px;
    color: black;
}
.productSlider .slick-track {
    display: flex;
}
.product-slide-wrapper {
    height: 352px;
    width: 586px;
}
.product-slide {
    width: 100%;
    height: 100%;
}
.hero-events {
    width: 520px;
    height: 77px;
    background-color: var(--toastedOrange);
    color: white;
    border-bottom-left-radius: 35px;
    z-index: 100;
}
.hero-events img {
    width: 35px;
    height: 40px;
}
.hero-events h3 {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-align: end;
    padding-left: 17px;
    color: white;
}
.hero-events span {
    font-family: 'futura-pt', sans-serif;
    font-size: 13px;
    padding-left: 17px;
}
.hero-events.header-events {
    width: 100%;
    height: 56px;
    background-color: #FF6800;
    border-radius: 0;
    text-decoration: none;
    padding: 4px 0;
}
.hero-events.header-events img {
    width: 25px;
    height: auto;
}
.hero-events.header-events h3 {
    font-size: 18px;
    line-height: 19px;
    text-align: start;
    padding-left: 4px;
}
.hero-events.header-events span {
    font-family: 'futura-pt', sans-serif;
    font-size: 11px;
    padding-left: 4px;
}
/* END HERO */
/* NEW RELEASES */
#section-new-releases {
    background-image: var(--toastedGradient);
    height: 93%;
    padding-bottom: 112px;
}
#section-new-releases h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 65px;
    margin: 155px 0 41px 0;
}
#section-new-releases a {
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#section-new-releases a:hover {
    box-shadow: -4px 4px 5px rgba(0, 0, 0, 0.135);
}
#section-new-releases .slick-slide a:hover {
    box-shadow: unset;
}
#new-releases-wrapper {
    padding: 0 3.4vw 0 3.4vw;
}
#new-releases {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
#new-releases .slick-track {
    display: flex;
}
.new-release {
    padding: 0 16px;
}
.new-release-name {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    margin: 13px 0 0 0;
}
.new-release-price {
    font-family: 'futura-pt', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 27px;
    color: black;
}
.marquee-wrapper {
    background-color: transparent;
}
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}
.heroSlider .slick-list,
.heroSlider .slick-track,
.marquee .slick-list,
.marquee .slick-track {
    height: 100%;
}
.marquee .slick-slide {
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    padding: 6.5px 0;
}
.marquee-slide {
    margin: 0 73px;
}
.toasted-marquee {
    height: 78px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    background-color: white;
    width: 100vw;
}
.dispensary-logos-marquee {
    height: auto;
    margin: 70px 0 80px 0;
}
.dispensary-logos-marquee img {
    width: 200px;
    height: auto;
    padding: 0;
}
.marquee-slide object {
    width: 215px;
    aspect-ratio: auto 215 / 60;
    height: 60px;
    padding: 0;
}
#section-stay-toasted {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.video-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.video#stay-toasted-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}
.video-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2em;
    cursor: pointer;
    z-index: 1;
}
.play-button {
    position: absolute;
    width: 30%;
    font-size: calc(5 * 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#section-stay-toasted h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 120px;
    font-weight: 400;
    line-height: 65px;
    color: white;
    -webkit-text-stroke: 1px black;
    text-shadow: -1px 1px 15px #2121214a;
}
#good-disp-banner-wrapper {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: center;
    margin: 103px 0 112px 0;
    overflow: clip;
}
#good-disp-banner {
    min-width: 105%;
    height: 100%;
    background-image: url('/assets/img/good_dispensary_banner.png');
    background-position: center;
}
#good-disp-marquee img {
    margin: 0 81px;
}
#find-toasted {
    background-image: url('/assets/img/STORE.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 843px;
    border-radius: 35px;
    padding-bottom: 22px;
    margin: 0 65px 77px 65px;
}
#homepage-blogs {
    margin: 0 13.5vw;
}
#homepage-blogs h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 65px;
    font-weight: 400;
    line-height: 65px;
    margin: 77px 0 41px 0;
}
/* END INDEX */
/* BLOG CARDS */
.featured-blog {
    width: 100%;
    height: 600px;
    position: relative;
    margin: 120px 0 53px 0;
    display: flex;
    align-items: center;
}
.featured-blog-img {
    width: 61.2%;
    height: auto;
    position: absolute;
    border-radius: 30px;
    left: 0;
}
.featured-blog-body {
    width: 48.6%;
    height: 71.5%;
    border-radius: 30px;
    background-color: white;
    margin: auto 0;
    padding: 45px 42px 42px 41px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    right: 0;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.305);
}
.row.blog-card {
    display: flex;
    flex-direction: column;
}
.blog-card-img {
    width: 100%;
    min-height: auto;
    border-radius: 30px;
}
.blog-card-body {
    width: 100%;
    min-height: 43.5%;
    border-radius: 30px;
    background-color: white;
    padding: 45px 42px 42px 41px;
    position: relative;
    top: -90px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.305);
    flex-grow: 1;
}
.blog-card-category {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 11px;
    letter-spacing: 3px;
    color: #837CC6;
}
.blog-card-title {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: black;
    text-align: start;
}
.blog-card-text p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    line-height: 32px;
    color: black;
    margin: 11px 0 20px 0;
}
.blog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    padding: 0;
    margin: 103px 0 86px 0;
}
.blog-img {
    width: 100%;
    height: 447px;
    background-image: url('/assets/img/bstock3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
}
.blog-body {
    width: 100%;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
    background-color: white;
    padding: 25px 6.8% 6.9% 6.8%;
}
.blog-title {
    font-family: 'Shrikhand', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
    color: black;
    margin: 69px 0 18px 0;
}
.blog-details p {
    font-family: 'futura-pt', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: black;
    margin-bottom: 37px;
}
.blog-text {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    line-height: 32px;
    color: black;
    white-space: pre-line;
}
#related-blogs h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 65px;
    margin-bottom: 32px;
}
/* END BLOG CARDS */
/* START MERCH */
#section-merch {
    margin: 86px 36px 50px 55px;
}
#section-merch.single-item .merch-item .merch-item-desc-wrapper {
    padding: 2rem 2rem;
    background-color: white;
    border-radius: 35px;
}
#section-merch.single-item .merch-item .merch-item-desc {
    margin-left: 1.25rem;
}
.nav-merch {
    color: black;
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 21px;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease-in-out;
}
.nav-active {
    color: var(--toastedOrange);
}
#merch-filter-select-wrapper i {
    position: absolute;
    top: 32%;
    right: 11px;
    width: 30px;
    height: 30px;
    background-color: white;
    transform: translateY(-50%);
    font-size: 17px;
    z-index: 1;
    color: var(--toastedPurple);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.merch_filter_select {
    margin-bottom: 20px;
    border-radius: 35px;
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    padding: 9px 9px 9px 29px;
}
.variant_size_select {
    border-radius: 35px;
    font-family: 'futura-pt', sans-serif;
    font-size: 18px;
    font-weight: normal;
    position: relative;
    padding: 9px 15px 9px 20px;
    border: 1px solid var(--toastedLightGray);
    color: rgb(33, 37, 41);
    background-color: #fff;
}
.variant_size_select:focus-visible {
    border: 1px solid var(--toastedLightGray);
}
.merch-item {
    margin-bottom: 41px;
    cursor: pointer;
    padding: 0 6px 0 6px;
}
.merch-item img {
    aspect-ratio: 2/3;
    object-fit: cover;
}
.merch-item h5 {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}
.merch-item span,
.merch-item p,
.merch-item .price-strikethrough,
.merch-item .discount-price {
    font-family: 'futura-pt', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
}
.merch-item .out-of-stock {
    color: var(--toastedOrange);
    display: inline-block;
    word-wrap: normal;
}
#section-merch.single-item .btn-size.is-out-of-stock {
    background-color: var(--toastedLightGray);
    cursor: not-allowed;
    position: relative;
    opacity: 0.25;
}
#section-merch .addToCart.is-out-of-stock {
    background-color: var(--toastedLightGray);
    cursor: not-allowed;
    opacity: 0.75;
}
.merch-item p {
    color: black;
}
.discount-price {
    color: var(--toastedOrange);
    margin-right: 8px;
    display: inline;
}
.price-strikethrough {
    text-decoration: line-through;
    color: #AAAAAA !important;
    display: inline;
    margin-right: 8px;
}
.btn-circle {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 39px !important;
    min-height: 39px !important;
    border: none;
    border-radius: 50%;
    margin: 0 26px;
    transition: all 0.25s ease-in;
}
.btn-circle:hover {
    background-color: #ffefef;
    box-shadow: 0 0 3px 3px rgba(108, 117, 125, 0.349);
}
.btn-collapse {
    background-color: transparent;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 24px !important;
    min-height: 24px !important;
    border: none;
    border-radius: 50%;
    margin: 0 26px;
    transition: all 0.25s ease-in;
    width: 100%;
}
.btn-collapse i:hover {
    color: var(--toastedGray);
}
#merch .merch-item {
    margin-bottom: 15px;
    padding: 10px;
}
.merch-item-wrapper {
    margin-bottom: 50px;
}
.merch-item-options .qty,
.merch-item-desc .qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--toastedLightGray);
}
.qty input[type=number]::-webkit-outer-spin-button,
.qty input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.qty input[type=number] {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}
.qty button,
.qty input[type=number] {
    background: none;
    max-height: 40px;
    border: none;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
}
.qty button {
    width: 38px;
    height: 40px;
    font-size: 16px;
    color: rgb(0, 0, 0);
}
.qty button i {
    color: rgb(0, 0, 0);
}
#merch .description {
    margin: 10px 0 20px 0;
}
#section-cart #merch {
    background-color: white;
    border-radius: 45px;
    padding: 3rem 3.5rem;
}
#merch .remove_from_cart {
    border: none !important;
    background-color: #c000003b;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
}
/* END MERCH */
/* START CAREER */
#careers {
    background-color: white;
    border-radius: 35px;
    width: 100%;
    margin-top: 71px;
    margin-bottom: 90px;
    padding: 72px 15%;
}
#careers p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
    margin-bottom: 0;
    text-align: center;
}
#careers a {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 22px;
    text-decoration: none;
    color: black;
    font-weight: 700;
    text-align: center;
}
#careers a:hover {
    text-decoration: none;
    color: var(--toastedOrange);
}
#career-dropdowns {
    width: 100%;
}
#career-dropdowns p {
    font-family: 'Shrikhand', sans-serif;
}
.career-dropdown {
    padding: 23.5px 0;
    border-bottom: 1px solid black;
}
.career-dropdown i {
    color: black;
}
.career-dropdown i:hover {
    color: rgba(0, 0, 0, 0.67);
}
.careers-collapse div {
    border: none;
    color: black;
    font-family: 'futura-pt', sans-serif;
    font-size: 18px;
}
#toasted-form {
    margin-bottom: 54px;
}
#toasted-form-header h3 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 42px;
    color: black;
}
#toasted-form-header span {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    line-height: 32px;
    color: black;
    margin: 32px 0 52px 0 !important;
}
#toasted-form .form-toasted {
    text-align: start;
    padding: 13px 31px;
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
    height: 57px;
    border-radius: 35px;
}
#toasted-form button {
    width: 100%;
    font-size: 17px;
    line-height: 19px;
    padding: 13px 35px;
    height: 46px;
}
#toasted-form label {
    font-family: 'futura-pt', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: black;
}
/* END CAREER */
/* START LOCATIONS */
#section-dispensaries p {
    white-space: normal;
}
#dispensaries-header {
    margin: 100px 0 41px 0;
}
#dispensaries h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 42px;
}
#dispensary-search {
    position: relative;
    width: 486px;
}
#dispensary-search input {
    width: 100%;
    height: 57px;
    background-color: #1f41811b;
    color: black;
    font-family: 'Avenir', sans-serif;
    font-size: 20px;
    line-height: 27px;
    border-radius: 35px;
    border: none;
    padding: 14px 50px 14px 22px;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
}
#dispensary-search input:focus {
    outline: none;
}
#dispensary-search input::placeholder {
    color: #596F8C;
}
#dispensary-search img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: #666;
}
.dispensary {
    margin-bottom: 48px;
}
.dispensary h3 {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    margin: 39px 0 11px 0;
}
.dispensary p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
    color: black;
}
.dispensary a {
    width: 277px;
    height: 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 18px;
    margin-top: 21px;
}
.dispensary-img-wrapper {
    width: 100%;
    height: 213px;
    display: flex;
    justify-content: start;
    align-items: center;
}
.dispensary-img {
    width: 317px;
    height: auto;
}
.dispensary-address {
    margin: 20px 0;
    width: 100%;
}
/* END LOCATIONS */
/* START PRODUCTS */
#section-products h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 85px;
    font-weight: 300;
    line-height: 90px;
    margin-bottom: 8px;
    text-align: left;
}
#products-header {
    border-bottom: none;
}
#products-header a {
    background-color: white;
    border-radius: 35px;
    padding: 5px 60px;
    margin: 30px 18px 0 18px;
    white-space: nowrap;
}
#xxxl-5g,
#vape-cartridges,
#pre-rolls {
    max-width: 100%;
    background-color: white;
    border-radius: 75px;
}
#xxxl-5g {
    padding: 94px 60px 156px 123px;
    margin: 62px 260px 93px 260px;
}
#vape-cartridges {
    padding: 59px 242px;
    margin: 93px 260px 93px 260px;
}
#pre-rolls {
    padding: 61px 162px 61px 121px;
    margin: 93px 260px 93px 260px;
}
#xxxl-5g-description h3 {
    width: 60%;
}
#xxxl-5g-image {
    width: 676px;
    height: auto;
}
#pre-rolls-image {
    margin-left: 15%;
}
.product-description {
    margin: 10px 0 26px 0;
}
#section-products p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
}
#section-products h3 {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    color: var(--toastedOrange);
    text-transform: uppercase;
}
#section-products h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 85px;
    font-weight: 300;
    line-height: 90px;
    margin-bottom: 8px;
    text-align: left;
}
#section-products a {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    text-decoration: none;
    color: black;
}
#products-header {
    margin: 59px 44.5px 0 44.5px;
    border-bottom: 1px solid white;
}
#products-header p,
.products-links {
    width: 51vw;
}
#products-header a {
    font-family: 'Shrikhand', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    margin: 53px 0 25px 0;
    color: black;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
#products-header a:hover {
    color: var(--toastedOrange);
}
.product-description {
    margin: 22px 0 27px 0;
}
#xxxl-5g {
    margin: 140px 0 119px 0;
}
#xxxl-5g-description h3 {
    width: 60%;
}
#xxxl-5g-image {
    width: auto;
}
#vape-cartridges {
    background-color: white;
    border-radius: 75px;
    padding: 84px 112px 71px 112px;
    margin: 140px 0 119px 0;
}
#pre-rolls {
    margin: 140px 0 119px 0;
}
.product-nav img {
    aspect-ratio: 1/1;
    object-fit: cover;
}
.product-gallery img,
.product-nav img {
    aspect-ratio: 75/100;
    object-fit: cover;
}
#section-merch.single-item #product_variant_slider {
    overflow: hidden;
}
#section-merch.single-item .slick-list.draggable {
    padding: 0 !important;
    overflow: hidden;
}
#section-merch.single-item .slick-track {
    display: flex;
}
#section-merch.single-item .btn-size {
    font-family: 'futura-pt', sans-serif;
    border: 1px solid #000;
    border-radius: 35px;
    background-color: #fff;
    color: #000;
    padding: 0.5rem 1.5rem;
    margin: 0.25rem;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}
#section-merch.single-item .btn-size.active {
    background: #000;
    color: #fff;
}
#section-merch.single-item .btn-toasted {
    color: #fff !important;
    padding: 12px 35px;
    font-size: 14px !important;
    font-weight: 700;
    min-width: 184px;
    width: 75%;
    max-width: 300px;
}
#section-merch.single-item .btn-toasted:hover {
    color: var(--toastedPurple) !important;
}
#section-merch.single-item label,
#section-merch.single-item .size,
#section-merch.single-item .desc {
    font-family: 'futura-pt', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: unset !important;
    color: #9f9f9f !important;
}
#section-merch.single-item #merch .description {
    font-size: 16px !important;
    margin: 5px 0 0 0;
    line-height: 20px;
    font-weight: 300;
}
#section-merch.single-item input.form-control {
    font-family: 'futura-pt', sans-serif;
}
#section-merch.single-item .slick-dots-wrapper {
    position: relative;
    bottom: unset;
}
#section-merch.single-item .slick-dots {
    display: flex;
}
#section-merch.single-item .slick-dots li {
    list-style: none;
}
#section-merch.single-item .underline {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--toastedGray);
}
#section-merch.single-item .product-nav .slick-slide {
    padding: 10px 5px;
}
/* END PRODUCTS */
/* START COMING SOON */
.coming-soon-text {
    background-color: white;
    border-radius: 75px;
    margin: 100px 10px;
    padding: 90px 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#section-coming-soon h2 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 63px;
    font-weight: 700;
    line-height: 73px;
    color: black;
    text-align: center;
}
#section-coming-soon p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
    margin: 30px 0;
    width: 70%;
    text-align: center;
}
/* START ABOUT US */
#section-about p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
}
.about-text {
    background-color: white;
    border-radius: 75px;
    margin: 93px 0 93px 0;
    padding: 60px;
}
#about-banner-wrapper {
    overflow: hidden;
}
#about-banner {
    height: 433px;
    min-width: 2693px !important;
}
#baseballer-wrapper {
    padding: 0 86px 0 157px;
}
#camper-wrapper {
    padding: 0 152px 0 95px;
}
#camper-wrapper .about-text {
    margin-left: 86px;
}
#king-wrapper {
    padding: 0 92px 0 157px;
}
.about-image {
    width: 100%;
    height: auto;
}
.about-image.about-baseballer {
    transform: translateY(-20px);
    margin-left: 20px;
}
.about-image.about-camper {
    transform: translateY(-16%);
}
.about-image.about-king {
    transform: translateY(-75px);
}
/* END ABOUT US */
/* START EVENTS */
:root {
    --fc-border-color: #74DDD0;
}
.fc-scroller-liquid-absolute {
    overflow: visible !important;
    position: relative !important;
}
.fc-toolbar-chunk {
    display: flex;
    align-items: center;
}
.fc .fc-button {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
}
.fc-button-primary {
    background-color: white !important;
    border-color: #74DDD0 !important;
    color: black !important;
}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: #74DDD0 !important;
    border-color: #74DDD0 !important;
    color: white !important;
}
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
    box-shadow: none;
}
.fc-prev-button,
.fc-next-button {
    background-color: transparent !important;
    border: none !important;
    color: black !important;
    font-size: 28px !important;
    padding: 0 !important;
}
.fc-listMonth-button {
    padding: 0 26px !important;
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}
.fc-dayGridMonth-button {
    padding: 0 16px !important;
    border-top-right-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}
.fc .fc-view-harness-active>.fc-view {
    position: relative;
}
#month-selector {
    position: relative;
}
#month {
    width: 192px;
    background-color: transparent;
    border: none;
    margin-left: 21px;
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 29px;
    appearance: none;
    -webkit-appearance: none;
    z-index: 100;
}
#month:focus {
    outline: none;
}
#down-arrow {
    font-size: 28px;
    color: black !important;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: -1;
}
#month option {
    font-family: Arial, sans-serif;
    font-size: 16px;
    background-color: #fff;
    color: #333;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 1rem;
}
#month option:hover {
    color: var(--toastedOrange);
    background-color: #f86e0430;
}
#calendar-wrapper {
    width: 70%;
}
#calendar thead {
    background-color: transparent !important;
    border-bottom: 15px solid transparent !important;
}
.fc-customListMonth-button {
    min-width: 75px;
}
#calendar td a {
    color: black !important;
    text-decoration: none !important;
    font-family: 'futura-pt', sans-serif;
    font-size: 20px;
    line-height: 29px;
}
.fc .fc-col-header-cell-cushion {
    display: inline-block;
    padding: 2px 5px !important;
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    text-transform: uppercase;
}
.fc .fc-daygrid-day-number {
    padding: 12px !important;
    position: relative;
    z-index: 4;
}
.fc th {
    text-align: left;
}
.fc-theme-standard .fc-scrollgrid {
    border: none;
}
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 45px;
}
.fc-dayGridMonth-view thead tr th {
    border: none !important;
    outline: none !important;
}
.fc .fc-daygrid-day-top {
    display: flex;
    flex-direction: row;
}
.fc-theme-standard td,
.fc-theme-standard th {
    border: 1px solid var(--fc-border-color);
}
.fc .fc-scrollgrid-section>* {
    border-left-width: 1px;
    border-top-width: 1px;
}
.fc-view-harness {
    height: 100% !important;
}
.fc-dayGridMonth-view tbody {
    background-color: white;
}
.fc-h-event {
    background-color: transparent;
    border: none;
}
.fc-event {
    display: flex;
    padding: 0 6px 0 13px !important;
}
.fc-event-main {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 100%;
}
.event-time {
    font-family: 'futura-pt', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    color: #8B8B8B;
    width: 100%;
}
.event-title {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    color: black;
    max-width: 100% !important;
    display: inline-block !important;
    word-wrap: break-word !important;
    white-space: normal;
}
#events-container {
    margin-bottom: 10px;
}
.fc-event-main img {
    margin-right: 7px;
    z-index: 1;
}
.event-card-body a img {
    margin-top: 0;
}
.link-hover {
    position: relative;
    cursor: pointer;
    z-index: 1000;
}
.link-hover::after {
    content: attr(data-link);
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: rgb(0, 0, 255);
    font-size: 12px;
    background-color: white;
    border: 1px solid black;
    padding: 1px 5px;
    z-index: 100;
    white-space: nowrap;
    z-index: 2000;
}
.link-hover.show-tooltip::after {
    opacity: 1;
}
.fc .fc-scroller-harness {
    overflow: visible;
}
#events-container {
    padding: 0 50px 68px 50px;
}
#event-cards-wrapper {
    width: 30%;
    padding-right: 29px;
    transition: all 0.3s ease-in-out;
}
.event-card {
    width: 100%;
    background-color: var(--toastedOrange);
    border: 1px solid var(--toastedOrange);
    border-radius: 25px;
    margin-bottom: 29px;
}
.event-card-date {
    display: flex;
    justify-content: space-between;
    padding: 12px 17px 13px 35px;
}
.event-card-date span {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 26px;
    color: white;
}
.event-card-date img {
    width: 24px;
    height: 24px;
}
.event-card-image {
    width: 100%;
    height: 281px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.event-card-body {
    padding: 37px 38px 48px 38px;
    background-color: white;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    font-family: 'futura-pt', sans-serif;
}
.event-card-body img {
    margin-top: -12px
}
.event-card-body h5 {
    font-family: 'futura-pt-bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 0;
    margin-left: 13px;
    color: var(--toastedOrange);
}
.event-card-body p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    color: black;
    margin: 0;
}
.event-card-body .locationHours {
    padding: 26px 0 19px 0;
}
.event-card-body .locationAddress {
    padding: 0;
}
.event-card-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-card-buttons a {
    flex: 1;
    padding: 15px 17px 15px 14px;
    font-size: 20px !important;
    line-height: 17px;
    height: 36px;
    margin: 0px 0 15px 0;
}
.event-card-buttons {
    margin-top: 25px;
}
#event-cards-list {
    width: 100%;
    height: 120%;
    overflow-y: scroll;
    /* hide the scrollbar */
    -ms-overflow-style: none !important;
    position: relative;
    z-index: 1;
}
#event-cards-list::-webkit-scrollbar {
    display: none;
}
#event-cards-list::after {
    content: "";
    display: block;
    height: 100px;
    width: 100%;
}
#event-cards #event-cards-list a {
    color: white !important;
}
.event-list-card {
    margin-bottom: 40px;
}
/* .event-card-list-image {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
} */
#event-cards-wrapper .event-card-list-image,
#event-cards-wrapper-single .event-card-list-image {
    border-radius: unset;
}
.event-card-list-body p {
    font-size: 17px;
    line-height: 22px;
}
.event-card-list-body {
    padding-bottom: 25px !important;
}
.event-card-list-body .locationHours {
    padding: 16px 0 19px 0;
}
.event-card-list-button a {
    background-color: var(--toastedLightPurple) !important;
    width: 180px;
    margin-top: 16px;
    padding: 9px 25px 9px 14px;
    font-size: 13px !important;
    line-height: 17px !important;
}
.event-card-list-button a text {
    color: white !important;
}
/* START LOCATIONS */
.mapTopRow {
    /* position: relative; */
    background: var(--toastedOrange);
    padding: 30px 49px 30px 160px;
    height: 149px;
    width: 100%;
}
.mapTopRowContent {
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: start;
}
.mapForm {
    width: 540px;
}
.listContainer {
    height: 100%;
    overflow-y: scroll;
}
.listContainer::-webkit-scrollbar {
    display: none;
}
.listContainer h4 {
    font-size: 22px;
    color: #fff;
    margin: 0;
    padding: 10px 20px;
    background: #292929;
    font-weight: 700;
}
a.locationLineItem {
    margin: 0 15px;
    padding: 29.5px 0 32.5px 34px;
    color: #000;
    text-decoration: none;
    background: #fff;
    transition: .3s ease-in-out;
    display: block;
    border-bottom: 1px solid #C4E8FD;
}
.locationIcon {
    width: 21.05px;
    height: auto;
    margin: 3px 8px 0 0;
}
.hoursIcon {
    width: 21.05px;
    height: 21.05px;
    margin: 3px 8px 0 0;
}
.locationIcon:hover {
    fill: white;
}
#bh-sl-user-location {
    color: #fff;
    margin: 0;
}
.formLabel {
    font-size: 25px;
    line-height: 26px !important;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.mapZipCode {
    font-size: 55px;
    line-height: 67px !important;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
#bh-sl-address {
    font-size: 30px;
    padding: 0 10px;
    margin: 0 20px;
    width: 164px;
    height: 42px;
    font-family: 'futura-pt', sans-serif;
    border: none;
}
#bh-sl-submit {
    background: none;
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
}
.locationName {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    line-height: 32px;
    display: inline-block;
    font-weight: 700
}
.locationAddress {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    line-height: 32px;
    padding: 13.5px 0 13px 0;
    display: flex;
    align-items: start;
}
.locationHours {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    line-height: 32px;
    padding: 0 0 24px 0;
    display: flex;
    align-items: start;
}
.locationDirections {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    display: inline-block;
    background: var(--darkBlue);
    padding: 5px 15px;
}
.bh-sl-container {
    box-sizing: border-box;
    color: #555;
    float: left;
    font: normal 14px/1.4 Arial, Helvetica, sans-serif;
    padding: 0 15px;
    width: 100%;
    height: 864px;
    margin: 42px 0 120px 0;
}
.bh-sl-container>* {
    box-sizing: content-box !important;
}
.bh-sl-container .bh-sl-form-container {
    clear: left;
    float: left;
    margin-top: 15px;
    width: 100%;
}
.bh-sl-container .form-input {
    float: left;
    margin-top: 3px;
    width: 100%;
}
.bh-sl-container .form-input label {
    display: block;
    font-weight: 700;
    width: 100%;
}
.bh-sl-container .form-input input,
.bh-sl-container .form-input select {
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font: normal 14px/1.4 Arial, Helvetica, sans-serif;
    margin: 15px 0;
    padding: 6px 12px;
    width: 100%;
    -webkit-border-radius: 4px;
}
.bh-sl-container .bh-sl-loading {
    background: url('/assets/img/toasted_flame_animated.svg') no-repeat;
    float: left;
    margin: 4px 0 0 10px;
    height: 16px;
    width: 16px;
}
.bh-sl-container .bh-sl-filters-container {
    clear: both;
    float: left;
    margin: 15px 0;
    width: 100%;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters {
    float: left;
    list-style: none;
    margin: 0 100px 0 0;
    padding: 0;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li {
    clear: left;
    display: block;
    float: left;
    margin: 5px 0;
    width: 100%;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li label {
    display: inline;
    vertical-align: text-bottom;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li input {
    display: block;
    float: left;
    margin-right: 8px;
}
.bh-sl-container .bh-sl-filters-container .bh-sl-filters li select {
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font: normal 14px/1.4 Arial, Helvetica, sans-serif;
    padding: 6px 12px;
    -webkit-border-radius: 4px;
}
.bh-sl-container {
    width: 100%;
    height: 850px;
}
.bh-sl-map-container {
    height: 715px;
    width: 100%;
}
#bh-sl-map {
    width: 100%;
    height: 100%;
}
.bh-sl-container .bh-sl-map-container a {
    color: #005293;
    text-decoration: none;
}
.bh-sl-container .bh-sl-map-container a:active,
.bh-sl-container .bh-sl-map-container a:focus,
.bh-sl-container .bh-sl-map-container a:hover {
    text-decoration: underline;
}
.bh-sl-container .bh-sl-loc-list {
    font-size: 14px;
    width: 100%;
    height: 864px;
    overflow-y: scroll;
    -ms-overflow-style: none !important;
    scrollbar-width: 0 !important;
    background-color: #fff;
    margin: 0 15px;
}
.bh-sl-container .bh-sl-loc-list::-webkit-scrollbar {
    display: none;
}
.bh-sl-container .bh-sl-loc-list ul {
    display: block;
    clear: left;
    float: left;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.bh-sl-container .bh-sl-loc-list ul li {
    border: 1px solid #fff;
    /* Adding this to prevent moving li elements when adding the list-focus class*/
    box-sizing: border-box;
    cursor: pointer;
}
.bh-sl-container .bh-sl-loc-list .list-label {
    background: #c00000;
    border-radius: 15px;
    color: #fff;
    display: block;
    float: left;
    font-weight: 700;
    margin: 10px 0 0 15px;
    padding: 4px 7px;
    text-align: center;
    width: auto;
    min-width: 13px;
}
.bh-sl-container .bh-sl-loc-list .list-details {
    float: left;
    margin-left: 6px;
    width: 80%;
}
.bh-sl-container .bh-sl-loc-list .list-details .list-content {
    padding: 25px 10px;
}
.bh-sl-container .bh-sl-loc-list .list-details .loc-dist {
    color: #8e8e8e;
    font-weight: 700;
    font-style: italic;
}
.bh-sl-container .bh-sl-loc-list .list-focus {
    border: 1px solid rgba(0, 82, 147, 0.4);
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-close-directions-container {
    height: 20px;
    position: relative;
    width: 100%;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-close-directions-container .bh-sl-close-icon {
    right: 6px;
    top: 0;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel {
    margin: 0 2%;
    /* Avoid issues with table-layout */
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel table {
    table-layout: auto;
    width: 100%;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel table,
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel td {
    vertical-align: middle;
    border-collapse: separate;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel td {
    padding: 1px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel .adp-placemark {
    margin: 10px 0;
    border: 1px solid #c0c0c0;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-directions-panel .adp-marker {
    padding: 3px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-noresults-title {
    font-weight: 700;
    margin: 15px;
}
.bh-sl-container .bh-sl-loc-list .bh-sl-noresults-desc {
    margin: 0 15px;
}
.bh-sl-container .loc-name {
    /* Picked up by both list and infowindows */
    font-size: 15px;
    font-weight: 700;
}
.bh-sl-container .bh-sl-pagination-container {
    clear: both;
}
.bh-sl-container .bh-sl-pagination-container ol {
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    text-align: center;
}
.bh-sl-container .bh-sl-pagination-container ol li {
    color: #005293;
    cursor: pointer;
    display: inline-block;
    font: 700 14px Arial, Helvetica, sans-serif;
    padding: 10px;
}
.bh-sl-container .bh-sl-pagination-container ol .bh-sl-current {
    color: #555;
    cursor: auto;
    text-decoration: none;
}
/* TOASTR MODAL */
.toast {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 22px;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}
/* BOOTBOX MODAL */
.bootbox.modal {
    font-family: 'Montserrat', sans-serif;
}
.bootbox.modal button {
    min-width: auto !important;
    padding: 7px 35px;
}
/* Modal window */
.bh-sl-overlay {
    background: url(overlay-bg.png) repeat;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
.bh-sl-overlay .bh-sl-modal-window {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #656565;
    position: absolute;
    left: 50%;
    margin-left: -460px;
    /* width divided by 2 */
    margin-top: 60px;
    height: 620px;
    width: 920px;
    z-index: 10010;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-map-container {
    margin-top: 50px;
    /* increase map container margin */
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-modal-content {
    float: left;
    padding: 0 1%;
    /* there's already a margin on the top of the map-container div */
    width: 98%;
}
.bh-sl-overlay .bh-sl-modal-window .bh-sl-close-icon {
    right: 22px;
    top: 13px;
}
.bh-sl-close-icon {
    cursor: pointer;
    height: 24px;
    position: absolute;
    width: 24px;
}
.bh-sl-close-icon:after,
.bh-sl-close-icon:before {
    background: #ccc;
    content: '';
    display: block;
    height: 24px;
    margin: -3px 0 0 -1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 3px;
    top: 3px;
    width: 3px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.bh-sl-close-icon:hover:after,
.bh-sl-close-icon:hover:before {
    background: #b3b3b3;
}
.bh-sl-close-icon:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.btn-directions {
    font-size: 17px;
    line-height: 22px;
    width: 269px;
}
.btn-directions:hover {
    background-color: #7f75da !important;
    color: white !important;
}
.btn-directions-arrow {
    margin-left: 19px;
}
/* END LOCATIONS */
.batch-text {
    background-color: #fff;
    border-radius: 75px;
    margin: 100px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.report-btn {
    font-size: 17px !important;
    line-height: 19px;
    padding: 13px 35px;
    height: 46px;
    min-width: unset;
}
.icon-download {
    background-image: url("data:image/svg+xml,%3csvg width='800' height='800' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath opacity='.5' d='M3 15c0 2.828 0 4.243.879 5.121C4.757 21 6.172 21 9 21h6c2.828 0 4.243 0 5.121-.879C21 19.243 21 17.828 21 15'/%3e%3cpath d='M12 3v13m0 0 4-4.375M12 16l-4-4.375'/%3e%3c/g%3e%3c/svg%3e");
    display: inline-block;
}
#section-merch #ajax_loader.d-hide {
    display: none;
}
#nav-cart-qty {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #fff;
    border: 1px solid #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
}
.growinarizona .white-box {
    background-color: white;
    border-radius: 75px;
    padding: 75px 200px;
}
.growinarizona p {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .05em;
    color: black;
}
.growinarizona h4 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 40px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: .04em;
    color: #837CC6;
}
.accordion-growinaz .accordion-item {
    border: 1px solid #000;
    border-right: 0;
    border-left: 0;
}
.accordion-growinaz .accordion-button::after {
    background-image: none;
    content: "\2b";
    font-size: 40px;
    width: unset;
    height: unset;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}
.accordion-growinaz .accordion-button:not(.collapsed)::after {
    content: "\f068";
}
.accordion-growinaz .accordion-button {
    font-family: 'Shrikhand', sans-serif;
    font-size: 25px;
    font-weight: normal;
    letter-spacing: .04em;
    line-height: 1.2;
    color: #000;
    padding: 10px 0;
}
.accordion-growinaz .accordion-button:not(.collapsed) {
    color: #000;
    background-color: unset;
    box-shadow: unset;
}
.accordion-growinaz .accordion-body {
    border-top: 1px solid #000;
}
.growinarizona li {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .05em;
    color: black;
}
.growinarizona h6 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 25px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: .04em;
    color: #000;
}
.purple-box {
    background-color: #837CC6;
    border-radius: 76px;
    padding: 20px 10px;
}
.growinarizona .purple-box h6 {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .05em;
    color: #fff;
    margin-bottom: 0;
}
.growinarizona h5 {
    font-family: 'Shrikhand', sans-serif;
    font-size: 40px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: .04em;
    color: #000;
}
.growinarizona label {
    font-family: 'futura-pt', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .05em;
    color: black;
}
.growinarizona input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
    accent-color: #BEB8FA;
    width: 25px;
    height: 25px;
    border-radius: 9px;
    border-color: #BEB8FA;
    vertical-align: text-bottom;
}
.growinarizona .form-toasted {
    padding: 12px 20px;
    text-align: left;
}
/* ******************************************************
 *  WEB > 2048px STYLING
 * ******************************************************/
@media screen and (min-width: 2600px) {
    #main-nav.bg-clouds {
        height: 340px !important;
    }
}
@media screen and (min-width: 1921px) {
    #main-nav.bg-clouds {
        height: 240px;
    }
    .hero-banner {
        margin-top: 0;
    }
    footer {
        height: 750px;
    }
    #footer-content {
        padding-top: 10%;
        height: 100%;
        align-items: center;
    }
    #xxxl-5g,
    #vape-cartridges,
    #pre-rolls {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 1400px) {
    .mapTopRow {
        padding: 30px 0 30px 60px;
    }
}
@media screen and (min-height: 1400px) and (min-width: 1921px) {
    #main-nav {
        background-size: 179vw 73vh;
        height: 300px;
        padding: 0 66px 100px 69px;
    }
}
/*  Minor header adjustment */
@media screen and (min-width: 1441px) and (max-width: 1700px) {
    #main-nav {
        background-position: calc(50% - 80px) bottom !important;
    }
}
/* ******************************************************
 *  WEB < 1920px STYLING
 * ******************************************************/
@media screen and (max-width: 1920px) and (min-height: 1081px) {
    .hero-banner {
        margin-top: 0;
    }
    #main-nav {
        background-size: 206vw 59vh;
        background-position: calc(50% - 112px) bottom !important;
        height: 296px;
        padding: 0 66px 107px 69px;
    }
}
/* ******************************************************
 *  WEB < 1600px STYLING
 * ******************************************************/
@media screen and (max-width: 1600px) {
    #section-stay-toasted {
        height: 600px;
    }
    #section-stay-toasted h2 {
        font-size: 55px;
        line-height: 55px;
    }
    #find-toasted {
        height: 843px;
        padding-bottom: 30px;
        margin: 0 0 65px 0;
        border-radius: 0;
    }
    #cloud-cub {
        padding-left: 80px;
    }
    #cloud-club .checkbox-toasted label {
        font-size: 15px;
        line-height: 19px;
        width: 80%;
    }
    #section-products h2 {
        font-size: 70px;
        line-height: 74px;
    }
    #section-products h3 {
        font-size: 20px;
        line-height: 25px;
    }
    .product-description {
        margin: 11px 0 12px 0;
    }
    #xxxl-5g-description h3 {
        width: 75%;
    }
    #vape-cartridges {
        padding: 80px 70px 71px 80px;
    }
    .growinarizona .white-box {
        padding: 75px 100px;
    }
}
/* ******************************************************
 *  WEB < 1400px STYLING
 * ******************************************************/
@media screen and (max-width: 1400px) {
    #main-nav {
        background-position: calc(50% - 92px) bottom !important;
        background-size: 236vw 71vh;
        height: 200px;
        padding: 0 66px 80px 69px;
    }
    .toasted-logo-sm {
        position: absolute;
        top: 34px;
        left: 55px;
    }
    .nav-cart-hamburger {
        top: 34px;
        right: 50px;
    }
    .nav-title {
        font-size: 45px;
        line-height: 50px;
    }
    .nav-subtitle {
        font-size: 16px;
        line-height: 17px;
    }
    .hero-banner {
        margin-top: 0px;
        height: 83.3vh;
    }
    .hamburger {
        width: 60px;
        height: 60px;
    }
    .hamburger img {
        width: 30px;
        height: auto;
    }
    .toasted-logo img {
        width: 250px;
        height: auto;
    }
    .hero-events {
        width: 369px;
    }
    .hero-events h3 {
        font-size: 20px;
    }
    .slider-wrapper {
        margin-left: 65px;
    }
    .productSlider-wrapper {
        position: relative;
        max-width: 100%;
    }
    .slick-dots-wrapper {
        height: 100px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: -73px;
        left: 0;
        z-index: 2000;
    }
    .slick-dots {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    .slick-dots {
        padding: 0;
    }
    .slick-dots li button {
        display: none;
    }
    .slick-dots li {
        list-style: none;
    }
    /* Create a custom marker using ::before */
    .slick-dots li::before {
        content: "•";
        font-size: 55px;
        color: #c4c3c3;
        transition: all 0.3s ease-in-out;
    }
    .slick-dots li.slick-active::before {
        color: white;
    }
    .productSlider .slick-list {
        width: 430px;
        overflow: clip;
    }
    .product-slide-wrapper {
        height: 273px;
    }
    #section-stay-toasted {
        height: 500px;
    }
    #section-stay-toasted h2 {
        font-size: 55px;
        line-height: 55px;
    }
    #blog .blog-card {
        margin-bottom: -25px;
    }
    .blog-card-body {
        padding: 28px 30px;
        top: -60px;
    }
    .blog-card-body span {
        font-size: 14px;
        line-height: 21px;
    }
    .blog-card-category {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 1px;
    }
    #products-header p,
    .products-links {
        width: 70vw;
    }
    #section-products h2 {
        font-size: 60px;
        line-height: 64px;
    }
    #section-products h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .product-description {
        margin: 10px 0;
    }
    #pre-rolls {
        margin: 93px 3.25vw 35px 11.25vw;
    }
}
/* ******************************************************
 *  WEB < 1200px STYLING
 * ******************************************************/
@media (max-width: 1200px) {
    .product-link {
        display: flex;
        justify-content: center;
    }
    .mapTopRow {
        padding: 30px;
    }
    .mapForm {
        margin: 0 auto;
    }
    .formLabel {
        font-size: 20px;
        line-height: 21px;
    }
    .mapZipCode {
        font-size: 40px;
        line-height: 52px;
    }
    #bh-sl-address {
        font-size: 20px;
        padding: 0 6px;
        margin: 0 20px;
        width: 164px;
        height: 32px;
        font-family: 'futura-pt', sans-serif;
    }
    #bh-sl-submit,
    #bh-sl-submit img {
        width: 40px;
        height: 40px;
    }
    #blogs-wrapper {
        margin-top: 40px
    }
    #main-nav .bg-clouds {
        height: 210px;
    }
    .toasted-logo-sm {
        position: absolute;
        top: 34px;
        left: 55px;
    }
    .nav-cart-hamburger {
        top: 34px;
        right: 50px;
    }
    .nav-title {
        font-size: 45px;
        line-height: 50px;
    }
    .nav-subtitle {
        font-size: 16px;
        line-height: 17px;
    }
    #find-toasted {
        height: 600px;
    }
    #cloud-club span {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 8px 0;
        padding: 0 30px;
    }
    #cloud-club .form-toasted {
        height: 38px;
        padding: 10px 0;
        font-size: 16px;
    }
    #cloud-club .checkbox-toasted label {
        font-size: 15px;
        line-height: 19px;
        width: 100%;
    }
    footer .nav-link {
        font-size: 14px;
        line-height: 19px;
        padding-bottom: 20px;
    }
    #footer-content {
        padding-top: 16%;
        /* height: 481px; */
    }
    #footer-content img {
        transform: scale(0.8);
        margin-bottom: 30px;
    }
    #events-container {
        padding: 60px 50px 68px 50px;
    }
    #calendar-wrapper,
    #calendar .fc-col-header,
    #calendar .fc-daygrid-body,
    #calendar .fc-scrollgrid-sync-table {
        width: 100% !important;
    }
    #calendar td a {
        color: black !important;
        text-decoration: none !important;
        font-family: 'futura-pt', sans-serif;
        font-size: 16px;
        line-height: 23px;
    }
    .event-time {
        font-size: 14px;
        line-height: 16px;
    }
    .event-title {
        font-family: 'futura-pt', sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 17px;
    }
    #calendar .fc-daygrid-day-number {
        padding: 2px 8px !important;
    }
    #calendar .fc-daygrid-day-events {
        padding: 2px 4px !important;
    }
    .fc-event {
        padding: 0 !important;
    }
    .blog-card-category {
        font-size: 12px;
        line-height: 18px;
    }
    .blog-title {
        font-size: 36px;
        line-height: 40px;
        margin: 20px 0 16px 0;
    }
    .blog-details p {
        margin-bottom: 0;
    }
    #blog-wrapper {
        max-width: 93%;
    }
    #section-products h2 {
        font-size: 50px;
        line-height: 54px;
        text-align: center;
        margin-top: 25px;
    }
    #section-products h3 {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
    }
    #section-products a {
        margin-top: 16px;
    }
    .product-description {
        margin: 4px 0 6px 0;
    }
    .product-description p {
        text-align: center;
        min-width: 100% !important;
    }
    .btn-to-top {
        width: 60px;
        height: 60px;
    }
    #pre-rolls {
        margin: 75px 0 75px 0;
        padding: 94px 60px 156px 60px;
    }
    #xxxl-5g {
        margin: 75px 0 75px 0;
        padding: 94px 60px 156px 60px;
    }
    #vape-cartridges {
        padding: 94px 60px 156px 60px;
        margin: 75px 0 75px 0;
    }
    #section-about p {
        font-size: 18px;
        line-height: 25px;
    }
    .about-text {
        padding: 30px;
        margin: 36px 0;
        border-radius: 35px;
    }
    #pre-rolls-image {
        margin-left: 0;
    }
    .nav-merch {
        font-size: 20px;
        font-weight: 700;
        line-height: 21px;
    }
    .growinarizona .purple-box h6 {
        font-size: 16px;
    }
    .growinarizona p,
    .growinarizona li {
        font-size: 18px;
    }
    .growinarizona h4 {
        font-size: 32px;
    }
    .accordion-growinaz .accordion-button,
    .accordion-growinaz .accordion-button::after {
        font-size: 18px;
    }
    .growinarizona h6 {
        font-size: 20px;
    }
    .growinarizona h5 {
        font-size: 30px;
    }
    .growinarizona label {
        font-size: 18px;
    }
    .growinarizona input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    .growinarizona .white-box {
        padding: 50px 50px;
        border-radius: 50px;
    }
}
@media (min-width: 1024px) {
    .bh-sl-container .bh-sl-map {
        width: 70%;
    }
}
/* ******************************************************
 *  MOBILE STYLING
 * ******************************************************/
@media (max-width: 992px) {
    #main-nav.frontend.has-alert {
        top: 35px;
    }
    #section-new-releases {
        padding-bottom: 12px !important;
    }
    .dispensary-logos-marquee {
        height: auto;
        margin: 10px 0 10px 0;
    }
    #section-new-releases h2 {
        font-size: 36px;
        line-height: 41px;
        margin: 220px 0 41px 0;
        padding: 0 15px;
    }
    .productSlider-wrapper .slick-dots-wrapper {
        bottom: -75px;
    }
    .mapTopRow {
        padding: 25px 0;
    }
    .bh-sl-container .bh-sl-loc-list {
        margin: 0;
    }
    .bh-sl-container {
        height: 100%;
    }
    #bh-sl-map {
        float: left;
        height: 530px;
        width: 100%;
    }
    a.locationLineItem {
        padding: 20px 10px;
        color: #000;
        text-decoration: none;
        background: #fff;
        transition: .3s ease-in-out;
        display: block;
        border-bottom: 1px solid #C4E8FD;
    }
    .locationAddress,
    .locationHours {
        padding: 8px 0 18px 0;
    }
    .toasted-logo-sm {
        position: absolute;
        top: 17px;
        left: 14px;
        width: 160px;
        height: 35px;
    }
    .nav-cart-hamburger {
        top: 17px;
        right: 14px;
    }
    .hamburger {
        width: 44px;
        height: 44px;
    }
    .hamburger img {
        width: 20.5px;
        height: auto;
        margin-bottom: 3px;
    }
    .nav-title {
        font-size: 35px;
        line-height: 47px;
    }
    .nav-subtitle {
        font-size: 16px;
        line-height: 17px;
    }
    .slider-wrapper {
        margin-left: 40px;
    }
    .mb-negative-55 {
        margin-bottom: -55px;
    }
    #footer-content {
        padding-top: 14%;
        /* height: 400px; */
    }
    #cloud-club span {
        font-size: 15px;
        margin: 0 0 4px 0;
        padding: 0;
    }
    #cloud-club .form-toasted {
        height: 36px;
        padding: 8px 0;
        font-size: 12px;
        padding: 0;
    }
    #footer-content img {
        transform: scale(0.6);
    }
    .blog-card-category {
        font-size: 11px;
        line-height: 16px;
    }
    .blog-card-title {
        font-size: 18px;
        line-height: 21px;
    }
    #careers {
        background-color: white;
        border-radius: 63px;
        width: 100%;
        margin-top: 15px;
        margin-bottom: 61px;
        padding: 23px 15%;
    }
    .career-dropdown i {
        font-size: 28px;
        line-height: 28px;
        font-weight: 700;
    }
    #products-header p,
    .products-links {
        width: 90vw;
    }
    #section-contact .form-toasted {
        padding: 11px 25px;
        font-size: 15px;
    }
    #section-contact button {
        height: 46px;
    }
    #section-dispensaries {
        margin-top: 16px;
    }
    .locationHours,
    .locationAddress {
        font-size: 17px;
        line-height: 25px;
    }
    /* Height auto caused this to have 0px height, causing the loader to clip the mapTopRow */
    .bh-sl-map-container {
        height: 530px;
    }
    .mapTopRow {
        margin: 0;
        padding: 25px 19px 25px 31px;
    }
    a.locationLineItem {
        margin: 0;
        padding: 40px 10vw;
    }
    .btn-directions {
        height: 37px;
    }
    .locationAddress {
        padding: 8px 0;
    }
    #zip-code-wrapper {
        width: 100%;
    }
    #dispensaries {
        margin-top: -60px !important;
    }
    #dispensaries-header {
        margin-top: 0;
    }
    #dispensaries-header h2 {
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 21px;
        text-align: center;
    }
    #dispensary-search {
        max-width: 130%;
        ;
    }
    .dispensary {
        margin-bottom: 26px;
        height: 100%;
    }
    .dispensary h3 {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 0;
        margin-bottom: 4px;
    }
    .dispensary p {
        font-size: 15px;
        line-height: 22px;
    }
    .dispensary a {
        min-width: 100%;
        text-align: center;
        padding: 0;
        font-size: 12px;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .dispensary a img {
        margin-left: 8px;
    }
    .dispensary-address {
        margin: 6px 0;
    }
    .productSlider-wrapper {
        max-width: 432px;
    }
    .product-slide-wrapper {
        max-width: unset !important;
        height: 273px;
    }
    #baseballer-wrapper,
    #camper-wrapper,
    #king-wrapper {
        padding: 0 35px;
    }
    #camper-wrapper .about-text {
        margin-left: 0px;
    }
    .about-image {
        width: 300px;
    }
    .about-image.about-baseballer {
        transform: translateY(-115px);
        margin-left: 0;
    }
    .about-image.about-camper {
        transform: translateY(-135px);
    }
    .about-image.about-king {
        transform: translateY(-40px);
    }
    .about-text {
        margin-top: -72px;
    }
    #section-about {
        margin-top: 10%;
    }
}
@media (min-width: 768px) {
    .bh-sl-container .form-input label {
        display: inline-block;
        width: auto;
    }
    .bh-sl-container .form-input {
        width: auto;
    }
    .bh-sl-container .form-input input,
    .bh-sl-container .form-input select {
        width: auto;
        margin: 0 15px 0 10px;
    }
    #merch-filter-select-wrapper {
        display: none;
    }
    .cart-total p {
        font-size: 20px;
        font-weight: 500;
    }
}
@media (max-width: 768px) {
    #main-nav.frontend.has-alert {
        top: 56px;
    }
    .toasted-logo {
        transform: unset;
    }
    #main-nav.bg-clouds {
        height: 130px !important;
    }
    #baseballer-wrapper,
    #camper-wrapper,
    #king-wrapper {
        padding: 0 25px;
    }
    .blog-card-body {
        border-radius: 15px;
    }
    .blog-card-img {
        border-radius: 15px;
    }
    .nav-title-wrapper {
        transform: translateY(30px);
    }
    #homepage-blogs h2 {
        font-size: 36px;
    }
    footer .nav-link {
        font-size: 14px;
        line-height: 14px;
        padding-bottom: 8px;
        padding-bottom: 14px;
        padding-top: 10px;
        letter-spacing: 2px;
    }
    #footer-content {
        background-position-x: calc(50% - 173px) !important;
        /* height: 604px; */
        padding: 24% 5.5vw 15px 5.5vw;
    }
    #footer-content img {
        transform: scale(0.6);
        margin-bottom: 0;
    }
    #footer-content .footer-logo {
        width: 475px;
        height: auto;
        max-width: initial;
    }
    #footer-bottom {
        background-color: white;
    }
    #cloud-club {
        padding: 0;
    }
    #events-container {
        padding: 30px 25px;
    }
    #calendar-wrapper,
    #calendar .fc-col-header,
    #calendar .fc-daygrid-body,
    #calendar .fc-scrollgrid-sync-table {
        width: 100% !important;
    }
    #calendar td a {
        color: black !important;
        text-decoration: none !important;
        font-family: 'futura-pt', sans-serif;
        font-size: 14px;
        line-height: 16px;
    }
    #calendar .fc-daygrid-day-number {
        padding: 2px 4px !important;
    }
    #calendar .fc-daygrid-day-events {
        padding: 2px 4px !important;
    }
    .fc-event {
        padding: 2px 4px !important;
    }
    .event-time,
    .event-title {
        display: none !important;
    }
    .fc-event-main p img {
        width: 17px;
        height: auto;
    }
    #event-cards-wrapper {
        width: 100%;
        padding: 0;
        margin-bottom: 40px;
    }
    .event-card-buttons {
        justify-content: space-evenly;
    }
    .fc .fc-toolbar.fc-header-toolbar {
        margin-bottom: 20px;
    }
    .fc .fc-button {
        font-size: 14px;
        line-height: 22px;
    }
    .fc-prev-button,
    .fc-next-button {
        background-color: transparent !important;
        border: none !important;
        color: black !important;
        font-size: 14px !important;
        padding: 0 !important;
    }
    .fc-listMonth-button {
        padding: 2px 18px !important;
        border-top-left-radius: 8px !important;
        border-bottom-left-radius: 8px !important;
    }
    .fc-dayGridMonth-button {
        padding: 0 12px !important;
        border-top-right-radius: 8px !important;
        border-bottom-right-radius: 8px !important;
    }
    #month {
        width: 120px;
        margin-left: 18px;
        font-size: 16px;
        font-weight: 700;
        line-height: 18px;
    }
    #down-arrow {
        font-size: 14px;
    }
    .fc-theme-standard td,
    .fc-theme-standard th {
        border: 2px solid var(--fc-border-color);
    }
    .fc-button-primary {
        border: 2px solid var(--fc-border-color);
    }
    .blog-card-category {
        font-size: 12px;
        line-height: 18px;
    }
    .blog-title {
        font-size: 24px;
        line-height: 27px;
        margin: 20px 0 5px 0;
        width: 80%;
    }
    .blog-details p {
        margin-bottom: 0;
    }
    .blog-text {
        font-size: 18px;
        line-height: 24px;
        margin-top: 4px;
    }
    #blog .blog-card {
        margin-bottom: -45px;
    }
    .blog-card-body {
        top: -60px;
    }
    #careers {
        background-color: white;
        border-radius: 63px;
        width: 100%;
        margin-top: 15px;
        margin-bottom: 61px;
        padding: 23px 15%;
    }
    #careers p {
        margin-bottom: 0px;
    }
    #career-dropdowns {
        margin-top: 12px;
    }
    #career-dropdowns div:last-of-type {
        border-bottom: 0px !important;
    }
    #toasted-form .form-toasted {
        font-size: 15px
    }
    #toasted-form-header span {
        font-family: 'futura-pt', sans-serif;
        font-size: 22px;
        line-height: 32px;
        color: black;
        margin: 11px 0 24px 0 !important;
    }
    #toasted-form .checkbox-toasted {
        display: flex !important;
        align-items: center;
        margin-bottom: 12px;
    }
    #toasted-form .checkbox-toasted label {
        margin-bottom: 0;
    }
    #toasted-form .checkbox-toasted input[type="checkbox"] {
        min-width: 30px;
        min-height: 30px;
        width: 30px;
        height: 30px;
    }
    #pre-rolls {
        margin: 75px 7vw 75px 7vw;
        border-radius: 35px;
        padding: 48px 20px;
    }
    #vape-cartridges {
        padding: 48px 20px;
        margin: 75px 7vw 75px 7vw;
        border-radius: 35px;
    }
    #xxxl-5g {
        margin: 75px 7vw 75px 7vw;
        border-radius: 35px;
        padding: 48px 20px;
    }
    #pre-rolls-image {
        margin-left: 0;
    }
    .products-links {
        margin-top: 25px;
    }
    #products-header {
        margin-top: 0;
    }
    #products-header a {
        font-size: 25px;
        line-height: 32px;
        margin: 0 0 12px 0;
        width: 100%;
        text-align: center;
    }
    #about-banner-wrapper {
        background-image: url('/assets/img/CANDYLAND.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 70vw;
        height: 70vw;
        margin: 0 15vw;
    }
    #about-banner {
        display: none;
    }
    #homepage-blogs h2 {
        margin-top: 0;
    }
    .nav-offcanvas-body a {
        font-size: 28px;
    }
    #cloud-club span {
        font-size: 18px;
        margin: 15px 0 5px 0;
        padding: 0;
    }
    #cloud-club .form-toasted {
        height: 36px;
        padding: 10px 0;
        font-size: 16px;
        padding: 0;
    }
    #cloud-club .checkbox-toasted label {
        font-family: "futura-pt", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 26px;
        width: fit-content;
    }
    #section-merch {
        margin: 25px 50px 0 50px;
    }
    #merch-filter-links {
        display: none !important;
    }
    .merch-item {
        margin-bottom: 29px;
        cursor: pointer;
        padding: 0 3px 0 3px;
    }
    .merch-item h5 {
        font-family: 'futura-pt-bold', sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 18px;
    }
    .merch-item p,
    .merch-item .discount-price,
    .merch-item .price,
    .merch-item .price-strikethrough,
    .merch-item .out-of-stock {
        font-family: 'futura-pt', sans-serif;
        font-size: 16px !important;
        font-weight: 400;
        line-height: 18px;
    }
    .merch-item p.price-strikethrough {
        margin-right: 8px;
    }
    .coming-soon-text {
        margin: 70px 10px;
        padding: 50px 50px;
    }
    #section-coming-soon h2 {
        font-size: 40px;
        line-height: 45px;
    }
    #section-coming-soon p {
        font-size: 18px;
        line-height: 28px;
        margin: 20px 0;
        width: 90%;
    }
    .growinarizona p,
    .growinarizona li {
        font-size: 16px;
    }
    .growinarizona h4 {
        font-size: 26px;
    }
    .accordion-growinaz .accordion-button,
    .accordion-growinaz .accordion-button::after {
        font-size: 16px;
    }
    .growinarizona h6 {
        font-size: 16px;
    }
}
@media screen and (max-width: 640px) {
    #main-nav.frontend.has-alert {
        top: 0px;
    }
    #main-nav {
        position: relative !important;
        background-image: none !important;
        background-color: white;
        height: 115px;
        padding: 0 15px 0 30px !important;
    }
    #footer-content .footer-logo {
        padding: 70px 0 20px 0;
        max-width: 100%;
    }
    #main-nav.bg-clouds {
        height: 65px !important;
    }
    .nav-title-wrapper {
        transform: translateY(5px);
    }
    .fc-customListMonth-button {
        min-width: 55px;
    }
    .navbar.offcanvas-navbar {
        padding: 0;
    }
    .toasted-logo img {
        width: 37.2vw;
    }
    .hamburger {
        width: 44px;
        height: 44px;
    }
    .hamburger img {
        width: 20.5px;
        height: auto;
        margin-bottom: 3px;
    }
    .hero-banner {
        height: 450px;
        position: relative;
        margin: -34px 0 0 0;
    }
    .age-confirmation-wrapper h1 {
        font-size: 35px;
        line-height: 47px;
        font-weight: 400;
        margin: 37px 0 33px 0;
        width: auto;
    }
    .age-confirmation-wrapper h3 {
        font-family: 'futura-pt-bold', sans-serif;
        font-size: 25px;
        font-weight: 700;
        color: white;
        margin: 32px 0 27px 0;
    }
    .marquee-wrapper {
        margin-top: 0;
    }
    #section-career {
        width: 95%;
    }
    #section-stay-toasted {
        height: 310px;
    }
    #section-stay-toasted h2 {
        font-size: 35px;
        line-height: 35px;
    }
    #homepage-blogs {
        margin: 0 24px;
    }
    #footer-content {
        background-position-x: calc(50% - 178px) !important;
        /* height: 604px; */
        padding: 27% 5.5vw 15px 5.5vw;
    }
    #footer-content a img {
        transform: scale(1);
        margin-bottom: 0;
    }
    #footer-bottom {
        background-color: white;
    }
    .productSlider .slick-list {
        width: 100vw;
        overflow: clip;
    }
    .slider-wrapper {
        margin-left: 20px;
    }
    .product-slide-wrapper {
        height: auto;
    }
    .product-slide {
        width: 100%;
        height: auto;
    }
    .checkbox-toasted {
        padding: 0 10px;
    }
    #cloud-club .checkbox-toasted label {
        font-family: "futura-pt", sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 26px;
        width: fit-content;
    }
    #careers {
        background-color: white;
        border-radius: 63px;
        width: 100%;
        margin-top: 15px;
        margin-bottom: 53px;
        padding: 15px 8%;
    }
    #career-dropdowns div:last-of-type {
        border-bottom: 0px !important;
    }
    #careers p+a {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0px;
    }
    .career-dropdown {
        padding: 14.5px 0;
        margin: 0 2px;
    }
    #toasted-form {
        margin-bottom: 0;
    }
    #toasted-form-header h3 {
        font-size: 35px;
        line-height: 42px;
    }
    #toasted-form-header span {
        font-family: 'futura-pt', sans-serif;
        font-size: 15px;
        line-height: 22px;
        color: black;
        margin: 8px 0 22px 0 !important;
    }
    #section-products h2 {
        font-size: 45px;
        line-height: 50px;
        text-align: center;
        margin-top: 25px;
    }
    #section-products h3 {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
    }
    #section-products button {
        margin-top: 18px;
    }
    .product-description {
        margin: 4px 0 6px 0;
    }
    .product-description p {
        font-size: 15px;
        line-height: 22px;
        text-align: center;
        min-width: 100% !important;
    }
    #section-about {
        margin-top: 30%;
    }
    #section-about p {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 0.5px;
    }
    #main-nav.bg-clouds.nav-has-subtitle {
        background-image: url('/assets/img/cloud.png') !important;
        height: 140px !important;
        padding: 0 15px 0 30px !important;
        background-color: unset !important;
    }
    .fc .fc-col-header-cell-cushion {
        font-size: 14px;
    }
    .fc-theme-standard td,
    .fc-theme-standard th {
        border: 1px solid var(--fc-border-color);
    }
    #calendar thead {
        border-bottom: 10px solid transparent !important;
    }
    .fc .fc-button {
        border-radius: 0.25em;
        font-size: 14px;
        line-height: 14px;
        padding: 4px 10px;
    }
    #section-merch.single-item button {
        width: 30px;
        height: 35px;
        font-size: 13px;
    }
    #section-merch.single-item input {
        width: 45px;
        height: 35px;
        font-size: 13px;
    }
    #section-merch.single-item i {
        font-size: 12px;
    }
    #section-merch.single-item .btn-toasted {
        margin: 0 0 0 6px !important;
        padding: 6px 20px !important;
        min-width: auto !important;
        width: auto !important;
        font-size: 12px !important;
    }
    #section-merch.single-item .merch-item .merch-item-desc {
        margin-left: 0;
        padding: 0;
    }
    #section-merch.single-item .merch-item .merch-item-desc-wrapper {
        padding: 1.5rem 1rem;
    }
    #merch .merch-item {
        padding: 3px;
        margin-bottom: 5px;
    }
}
@media (max-width: 576px) {
    #find-toasted {
        background-image: url('/assets/img/mobilefindusbanner.png');
        padding-bottom: 8px;
        background-position: bottom;
    }
    #find-toasted .btn-toasted-white {
        padding: 6.6px 85px;
        font-size: 17px;
    }
    .hero-banner {
        height: 800px;
    }
    .slider-wrapper {
        margin-left: 10px;
    }
    #section-products p {
        font-size: 18px;
        line-height: 1.3;
    }
    #bh-sl-user-location {
        align-items: flex-start !important;
    }
    #zip-code-wrapper {
        align-items: flex-start !important;
    }
    .zip-code-input {
        justify-content: flex-start !important;
    }
    #bh-sl-address {
        width: 115px;
        height: 27px;
        font-size: 14px;
        line-height: 27px;
    }
    .bh-sl-submit {
        width: 35px;
        height: 35px;
    }
    .listContainer {
        border-left: 8px solid var(--btnPill);
    }
    #bh-sl-address {
        margin: 0 20px 0 0;
    }
    a.locationLineItem {
        padding: 15px 5px;
    }
    .locationName,
    .locationAddress,
    .locationHours {
        font-size: 16px;
        line-height: 26px;
    }
    .locationAddress {
        padding: 6px 0 6px 0;
    }
    .locationHours {
        padding: 6px 0 12px 0;
    }
    .btn-directions {
        font-size: 14px !important;
        line-height: 19px !important;
        width: 235px;
    }
    .btn-directions img {
        width: 22px;
        height: auto;
        margin-left: 11px;
    }
    .mapTopRow {
        height: 149px;
    }
    .mapZipCode {
        font-size: 38px;
        line-height: 38px !important;
    }
    a.locationLineItem {
        margin: 0;
        padding: 26px 0 29.5px 29px;
    }
    #dispensaries-header {
        padding: 0;
        margin-bottom: 22px;
    }
    #dispensary-search {
        max-width: 100%;
        width: 100%;
    }
    #dispensary-search input {
        font-size: 16px !important;
        line-height: 24px !important;
        padding: 8px 50px 8px 22px;
        height: 46px;
    }
    #dispensary-search img {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        width: 25px;
        height: 25px;
        color: #666;
    }
    .dispensary button {
        min-width: 100%;
        text-align: center;
        padding: 0;
        font-size: 12px !important;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .growinarizona .white-box {
        padding: 50px 20px;
    }
    .growinarizona h4 {
        font-size: 24px;
    }
    .growinarizona label {
        font-size: 16px;
    }
}
@media screen and (max-width: 496px) {
    #main-nav.bg-clouds.nav-has-subtitle {
        height: 156px !important;
        background-position: calc(50% + 12px) !important;
    }
    .dispensary-img-wrapper {
        height: unset;
        margin-top: 15px;
    }
    .hero-banner {
        height: 733px;
        position: relative;
        margin: -34px 0 0 0;
    }
    .nav-title-wrapper {
        transform: translateY(15px);
    }
    .toasted-logo-sm {
        width: 140px;
        height: 30px;
    }
    #footer-content {
        background-position-x: calc(50% - 174px) !important;
        padding: 27% 5.5vw 15px 5.5vw;
    }
    .slider-wrapper {
        margin-left: 0px;
    }
    .product-slide-body h5 {
        font-size: 12px;
        line-height: 15px;
    }
    .blog-title {
        font-size: 20px;
        line-height: 27px;
        margin: 20px 0 5px 0;
        width: 90%;
    }
    .blog-body {
        padding: 25px 7.8% 11% 7.8%;
    }
    .blog-img {
        height: 300px;
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }
    #toasted-form-header h3 {
        font-size: 28px;
        line-height: 42px;
    }
    .btn-to-top {
        margin-left: 0 !important;
        margin-right: 12px !important;
    }
    #about-banner-wrapper {
        background-image: url('/assets/img/CANDYLAND.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100vw;
        height: 100vw;
        margin: 0;
    }
    .report-btn {
        font-size: 12px !important;
        line-height: 19px;
        padding: 13px 20px;
        height: 46px;
        min-width: unset;
    }
}
@media screen and (max-width: 420px) {
    #main-nav.bg-clouds {
        height: 65px !important;
    }
    #main-nav.bg-clouds.nav-has-subtitle {
        height: 150px !important;
    }
    .nav-title-wrapper {
        transform: translateY(18px);
    }
    .nav-title-wrapper h1 {
        min-width: 100%;
        text-align: center;
    }
    .hero-banner {
        height: 733px;
        position: relative;
        margin: -34px 0 0 0;
    }
    .product-slide-wrapper {}
    #zip-code-wrapper {
        align-items: flex-start !important;
        flex-direction: column;
    }
    .zip-code-input {
        margin-top: 10px;
    }
    #footer-content {
        background-position-x: calc(50% - 410px) !important;
        padding: 50% 5.5vw 15px 5.5vw;
    }
    #section-merch {
        margin: 25px 27px 0 27px;
    }
    .fc .fc-col-header-cell-cushion {
        font-size: 12px;
    }
    .coming-soon-text {
        margin: 70px 10px;
        padding: 50px 30px;
    }
    #section-coming-soon h2 {
        font-size: 32px;
        line-height: 36px;
    }
    #section-coming-soon p {
        font-size: 16px;
        line-height: 20px;
        margin: 20px 0;
        width: 90%;
    }
    #section-coming-soon .btn-toasted.btn-toasted-arrow {
        width: 200px;
        font-size: 12px !important;
        padding: 5px 20px 5px 17.5px;
    }
}
/* ******************************************************
 *  Tablet portrait
 * ******************************************************/
@media screen and (min-width: 768px) and (max-width: 1400px) and (min-height: 1042px) {
    .hero-banner {
        height: 63.3vh;
        margin: 0;
    }
}
@media screen and (min-width: 1240px) and (max-width: 1600px) and (min-height: 992px) {
    #main-nav {
        background-position: calc(50% - 69px) bottom !important;
        background-size: 184vw 76vh;
        height: 215px;
        padding: 0 66px 90px 69px;
    }
    .hero-banner {
        height: 83.3vh;
        margin: 0;
    }
}
@media screen and (min-width: 1240px) and (max-width: 1600px) and (min-height: 1240px) {
    .hero-banner {
        height: 83.3vh;
        margin: 0;
    }
}
@media screen and (max-width: 1400px) and (min-height: 900px) {
    #main-nav.bg-clouds {
        height: 190px;
    }
}
/* ******************************************************
 *  Mobile specific
 * ******************************************************/
@media screen and (min-width: 900px) and (max-width: 3840px) and (min-height: 601px) and (max-height: 860px) {
    #main-nav {
        background-size: 184vw 85vh;
    }
}
@media screen and (max-width: 992px) and (min-height: 992px) {
    #main-nav {
        background-position: calc(50% - 72px) bottom !important;
        background-size: 210vw 49vh;
        height: 150px;
        padding: 0 66px 70px 69px;
    }
    .productSlider .slick-list {
        width: 100vw;
        overflow: clip;
    }
}
@media screen and (max-width: 768px) and (min-height: 1400px) {
    .hero-banner {
        height: 89.3vh;
        margin: 0;
    }
}
@media screen and (min-width: 992px) and (max-height: 528px) {
    .nav-title-wrapper {
        transform: translateY(38px);
    }
}
@media screen and (max-width: 496px) and (max-height: 1100px) {
    .hero-banner {
        height: 580px;
        margin: 0;
    }
}
@media screen and (max-width: 496px) and (max-height: 545px) {
    .hero-banner {
        height: 340px;
        margin: 0;
    }
}