/*!********************************************************
CORE CSS
**********************************************************/
:root {
    --webappsDarkRed: #51545e;
    --webappsYellow: #efbc5b;
    --webappsGrey: #7F7F7F;
    --webappsDarkGrey: #666666;
    --fieldColor: #51545e;
    --buttonColor: #666666;
    --sliderColor: #666666;
}
@font-face {
    font-family: 'Cubao Free Variable';
    src: url("/assets/fonts/Cubao_Free_Regular.otf") format("opentype");
}
@font-face {
    font-family: 'Eraser';
    src: url("/assets/fonts/EraserRegular.ttf") format("truetype");
}
@font-face {
    font-family: 'Phosphate';
    src: url("/assets/fonts/PhosphateSolid.ttf") format("truetype");
}
@font-face {
    font-family: 'PhosphateInline';
    src: url("/assets/fonts/PhosphateInline.ttf") format("truetype");
}
/*!********************************************************
RESETS
**********************************************************/
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, .3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #074880;
    -webkit-box-shadow: inset 0 0 6px rgba(7, 72, 128, .5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(7, 72, 128, .1);
}
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;
}
.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);
}
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;
}
/*!********************************************************
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%;
}
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 25px;
    background: #d3d3d3;
    outline: 0;
    opacity: .7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
.slider:hover {
    opacity: 1;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--sliderColor);
    cursor: pointer;
}
.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,
.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;
}
/*!********************************************************
FRONTEND CSS
**********************************************************/
:root {
    --table-color: white;
    --table-bg: rgba(0, 0, 0, 0.05);
    --table-border-color: #666;
}
.table,
.table td,
.table th,
.table tr {
    background-color: var(--table-bg);
    color: var(--table-color);
}
.table {
    border: 3px solid var(--table-border-color);
}
.cart-item-name h2 {
    font-weight: 700;
}
.navbar {
    height: 70px;
    background-color: #FF6B3C;
    border-radius: 35px;
    margin-top: 120px;
    margin-bottom: 50px;
    padding-left: 45px;
    padding-right: 45px;
}
.navbar-collapse {
    flex-grow: unset;
}
.nav-link {
    color: #FFF;
    font-family: 'Cubao Free Variable';
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.btn-find .fa-magnifying-glass {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.header-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -40%);
}
.section-home-1 {
    background-image: url('/assets/img/SECTION-01.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.all-product-img {
    margin-top: -300px;
    padding: 0 12%;
    margin-bottom: 200px;
}
.section-home-2 {
    background-color: #B1E804;
}
.section-home-3 {
    background-color: #00F0FF;
}
.section-home-4 {
    background-color: #FF9900;
}
.section-home-2 p,
.section-home-3 p,
.section-home-4 p {
    color: #FFF;
    text-align: center;
    text-shadow: 0px 3px 35px rgba(1, 46, 60, 0.50);
    font-family: 'Cubao Free Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.section-home-5 {
    background-color: #00C2FF;
}
.section-home-5 h2 {
    color: #FFF;
    text-align: center;
    font-family: 'Cubao Free Variable';
    font-size: 74px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 80px;
    margin-bottom: 60px;
}
.section-home-5 .slider-area-bg {
    background-color: #00A3D7;
    padding: 38px 0;
}
.section-home-5 .slider-bg {
    background-image: url('/assets/img/Transparency.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 60px;
}
.section-home-5 .slide-bg {
    margin: 25px;
    border-radius: 22px;
    background: #F3F3F3;
    box-shadow: 7px 7px 2px 0px rgba(0, 0, 0, 0.25);
    padding: 20px 30px 10px 30px;
    min-height: 440px;
}
.section-home-5 .slide-bg .img-box {
    min-height: 195px;
    align-items: flex-end;
    display: flex;
}
.section-home-5 .slide-bg h3 {
    color: #4B7422;
    text-align: center;
    font-family: Cubao Free Variable;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}
.section-home-5 .slide-bg p {
    color: #4B7422;
    text-align: center;
    font-family: Arial;
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.section-home-5 .slick-next:before,
.section-home-5 .slick-prev:before {
    color: #FF0074;
    font-size: 50px;
}
.section-home-5 .slick-prev {
    left: -45px;
}
.section-home-5 .slick-next {
    right: -15px;
}
.home-social {
    margin-top: 85px;
    padding-bottom: 73px;
}
.home-footer {
    height: 100px;
    background-color: #EC4F13;
}
.btn-find {
    padding: 8px 40px;
    flex-shrink: 0;
    border-radius: 32px;
    background: #00C2FF;
    color: #FFF;
    font-family: 'Cubao Free Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.btn-find:hover {
    background: #00C2FF;
    color: #FFF;
}
.section-products-1 {
    background: radial-gradient(50% 50.00% at 50% 50.00%, #73DCFF 0%, #60FF84 100%);
    padding-bottom: 95px;
}
.section-products-1 h2 {
    margin-top: 72px;
    color: #00F0FF;
    font-family: 'Cubao Free Variable';
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}
.section-products-1 .product-title-container {
    padding: 0 250px;
}
.section-products-1 .products-title {
    border-radius: 22px;
    background: #FF6433;
}
.product-footer {
    background-color: #D20011;
    padding: 45px 0 20px 0;
}
.product-footer img {
    max-width: 160px;
}
.product-footer .social img {
    max-width: 17px;
}
.section-learn-1 {
    background-color: #A8E4B6;
}
.learn-footer {
    background-color: #EC4F13;
    padding: 45px 0 20px 0;
}
.learn-footer img {
    max-width: 160px;
}
.learn-footer .social img {
    max-width: 17px;
}
.product {
    padding: 100px 0;
}
.product-img img {
    max-width: 220px;
    width: 100%;
}
.product h2 {
    font-family: 'Cubao Free Variable';
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.product h3 {
    font-family: 'Cubao Free Variable';
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -15px;
}
.product h6 {
    font-family: 'Phosphate';
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.product h6 span {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.product h5 {
    color: #FFF;
    font-family: 'Phosphate';
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.product .fa-check {
    color: #ffffff;
    font-size: 20px;
    vertical-align: text-bottom;
}
.btn-product {
    color: #FFF;
    font-family: 'Cubao Free Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 20px;
}
.product-link {
    color: #000;
    font-family: 'Phosphate';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: uppercase;
}
.qty {
    width: 117px;
    height: 44px;
    border-radius: 90px;
}
.qty input {
    color: #FFF;
    font-family: Cubao Free Variable;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: unset;
}
.product p {
    color: #000;
    font-family: 'Phosphate';
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}
.grape {
    background: linear-gradient(180deg, #DFF98C 0%, #E0B4F5 69.79%);
}
.grape h2,
.grape h3 {
    color: #C4FF46;
    text-shadow: -2px 2px 2px #5A2FBF, -2px 2px 2px #5A2FBF, 2px -2px 0px #5A2FBF, 2px -1px 0 #5A2FBF;
}
.grape h6 {
    color: #5A2FBF;
}
.grape .qty,
.grape .qty input,
.grape .bg-product,
.grape .product-select,
.grape .btn-product {
    background-color: #5A2FBF;
}
.guava {
    background: linear-gradient(180deg, #E1B5F6 0%, #EAA0BA 22.26%, #DAAFBB 60.05%, #CABDBD 83.86%, #C0C7BE 89.21%, #B5D1BF 96.80%, #A8DDC0 100%);
}
.guava h2,
.guava h3 {
    color: #E3206C;
    text-shadow: -2px 2px 2px #22A1C2, -2px 2px 2px #22A1C2, 2px -2px 0px #22A1C2, 2px -1px 0 #22A1C2;
}
.guava h6 {
    color: #fff;
}
.guava .qty,
.guava .qty input,
.guava .bg-product,
.guava .btn-product {
    background-color: #E3206C;
}
.guava .product-select {
    background-color: #F69489;
}
.punch {
    background: linear-gradient(180deg, #A8DDC0 0%, #86FDD5 45.31%, #F3C671 100%);
}
.punch h2,
.punch h3 {
    color: #1CCF94;
    text-shadow: -2px 2px 2px #CB0D4C, -2px 2px 2px #CB0D4C, 2px -2px 0px #CB0D4C, 2px -1px 0 #CB0D4C;
}
.punch h3 {
    font-size: 28px;
    margin-top: -10px;
}
.punch h6 {
    color: #CB0D4C;
}
.punch .qty,
.punch .qty input,
.punch .bg-product,
.punch .btn-product {
    background-color: #1CCF94;
}
.punch .product-select {
    background-color: #008458;
}
.mango {
    background: linear-gradient(180deg, #F2C670 0%, #FF8184 100%);
}
.mango h2,
.mango h3 {
    color: #FFBB35;
    text-shadow: -2px 2px 2px #C42D09, -2px 2px 2px #C42D09, 2px -2px 0px #C42D09, 2px -1px 0 #C42D09;
}
.mango h6 {
    color: #00745F;
}
.mango .qty,
.mango .qty input,
.mango .bg-product,
.mango .btn-product {
    background-color: #FFBB35;
}
.mango .product-select {
    background-color: #008458;
}
.apple {
    background: linear-gradient(180deg, #FF8184 0%, #E5283F 100%);
}
.apple h2,
.apple h3 {
    color: #D1D547;
    text-shadow: -2px 2px 2px #CB0E4D, -2px 2px 2px #CB0E4D, 2px -2px 0px #CB0E4D, 2px -1px 0 #CB0E4D;
}
.apple h6 {
    color: #fff;
}
.apple .qty,
.apple .qty input,
.apple .bg-product,
.apple .btn-product {
    background-color: #D20011;
}
.apple .product-select {
    background-color: #F15444;
}
.product .subscription-container {
    position: relative;
    padding: 10px 35px 10px 10px;
    border-radius: 15px;
    min-height: 41px;
}
.product .subscription {
    display: inline;
    font-family: 'PhosphateInline';
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
    padding-left: 5px;
}
.product .subscription.price {
    font-family: 'Phosphate';
}
.product .subscription span {
    color: rgba(255, 255, 255, 0.67);
    font-family: 'Phosphate';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
}
.product .clickable {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    border-radius: 4px;
    transition: all ease .5s;
    z-index: 10;
}
.product input[name="myradio"]:checked+.clickable {
    border-color: transparent;
    box-shadow: 0px 0px 6px 2px transparent;
}
.product-select {
    border-radius: 20px;
    border: 3px solid #FFF;
    color: #fff;
    display: block;
    width: 100%;
    padding: 13px 22px;
    font-family: 'Phosphate';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 20px;
}