*{
    font-family: "Poppins", serif;
}

*::-moz-selection { 
  color: #fff!important;
  background: #006838!important;
}

*::selection {
  color: #fff!important;
  background: #006838!important;
}

*::-webkit-selection {
  color: #fff!important;
  background: #006838!important;
}

.pageOuter
{
    width:100%;
    min-height:calc(100vh - 243px);
    /* background: rgb(255,255,255); */
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, #ffc9a5 100%);
    /* float:left; */
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 0px;
    float:left;
}

.pageCenterContents
{
    width:80%;
    max-width:1500px;
    min-height:10px;
    float:left;
}

.pageCenterTopLineOuter
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.pageCenterTopLineLogo
{
    width:220px;
    height:100px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.pageCenterTopLineLogo img
{
    width:100%;
    height:100%;
    object-fit: contain;
    object-position: center;
    position:absolute;
}

.pageCenterTopLineBorder
{
    flex:1;
    height:2px;
    background-color:#000;
    position:relative;
}

.pageCenterTopLineBorder:before
{
    content:'';
    width:8px;
    height:8px;
    position:absolute;
    left:-8px;
    top:-3px;
    border-radius:5px;
    border:2px solid #000;
}

.pageCenterBoxesOuter
{
    width:100%;
    min-height:30px;
    float:left;
    margin-top:15px;
    position:relative;
    padding-right:60px;
}

.pageCenterBoxesRightLine
{
    width:2px;
    height:100%;
    position:absolute;
    right:30px;
    top:0px;
    background-color:#000;
}

.pageCenterBoxesRightLine:before
{
    content:'';
    width:8px;
    height:8px;
    position:absolute;
    margin-left:-3px;
    bottom:-7px;
    border-radius:5px;
    border:2px solid #000;
}

.pageCenterBoxesInner
{
    width:100%;
    min-height:30px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;
}

.qrBoxOuter
{
    width:22%;
    aspect-ratio: 1;
    float:left;
    margin:70px 0px; 
    position:relative;
    margin-left:5%;
}

.qrBoxOuter img
{
    width:100%;
    height:100%;
    position:absolute;
    left:0px;
    top:0px;
}

.qrLines
{
    width:40%;
    aspect-ratio: 1;
    position:absolute;
    z-index:4;
    top:-19%;
    left:-25%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pageCenterBoxesTexts
{
    flex:1;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
    gap:35px;
}

.pageCenterBoxesTexts h1
{
    width:80%;
    font-size:35px;
    font-weight:800;
    text-align:center;
    color:#ff6600;
    line-height:45px;
    margin:0px;
}

.pageCenterBoxesTexts p
{
    width:60%;
    font-size:20px;
    text-align:center;
    font-weight:500;
    color:#014d2a;
    line-height:30px;
    margin:0px;
    color:#000;
}

.pageCenterBoxesTexts p b
{
    font-weight:800;
}

.pageCenterBoxesBtn
{
    width:250px;
    min-height:10px;
    background-color:#fff;
    text-align:center;
    font-size:18px;
    padding:8px 7px;
    font-weight:800;
    line-height:23px;
    border-radius:24px;
    padding-bottom:11px;
    color:#ff6600!important;
    position:relative;
    z-index:3;
    text-decoration: none!important;
}

.paceCenterBoxesArrow
{
    width:35%;
    min-height:10px;
    margin-left:-55%;
    position:relative;
    z-index:1;
    margin-top:-45px;
    margin-bottom:-80px;
}

.paceCenterBoxesArrow img
{
    width:100%;
    float:left;
}

.pageBottomOuter
{
    width:100%;
    min-height:10px;
    float:left;
    margin-top:65px;
    font-size:18px;
    text-align:center;
    font-weight:500;
    color:#545454;
}

@media only screen and (max-width: 1600px) 
{
    .paceCenterBoxesArrow
    {
        margin-top:-90px;
    }
}

@media only screen and (max-width: 1400px) 
{
    .pageCenterBoxesTexts h1
    {
        width:100%;
    }

    .pageCenterBoxesTexts p
    {
        width:80%;
    }
}

@media only screen and (max-width: 1300px) 
{
    .paceCenterBoxesArrow
    {
        display: none;
    }

    .pageCenterBoxesTexts h1
    {
        font-size:28px;
        line-height:38px;
    }

    .pageCenterBoxesTexts p
    {
        font-size:18px;
        line-height:28px;
    }
}

@media only screen and (max-width: 700px) 
{
    .pageOuter
    {
        padding:30px 0px;
    }

    .pageCenterContents
    {
        width:90%;
    }

    .pageCenterTopLineLogo
    {
        width:90px;
    }

    .pageCenterTopLineLogoRight
    {
        width:50px!important;
    }

    .pageCenterBoxesOuter
    {
        padding:0px;
    }

    .pageCenterBoxesRightLine
    {
        display:none;
    }

    .pageCenterBoxesInner
    {
        flex-direction: column;
    }

    .qrBoxOuter
    {
        width:50%;
        margin-top:20px;
        margin-bottom:25px;
    }

    .pageCenterBoxesTexts
    { 
        gap:25px;
    }

    .pageCenterBoxesTexts h1
    {
        width:100%;
        font-size: 20px;
        line-height: 30px;
    }

    .pageCenterBoxesTexts p
    {
        width:100%;
        font-size:16px;
    }

    .pageBottomOuter
    {
        font-size:14px;
        margin-top:35px;
    }
}



/* ============ 11. Footer ============ */
#footer {
    width: 100%;
    display: block;
    position: relative;
    margin-top: 100px;
    color: #888;
    background-color: #fafafc;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

#footer .footer-top {
    width: 100%;
    display: block;
    position: relative;
    float: left;
    min-height: 60px;
    padding: 50px 0;
}

#footer .footer-bottom {
    width: 100%;
    display: block;
    position: relative;
    float: left;
    background-color: #fff;
    padding: 25px 0;
}

#footer .footer-bottom .copyright {
    float: left;
    text-align: left;
}

#footer .footer-bottom .footer-payment-icons {
    float: right;
    text-align: right;
}

#footer .footer-bottom .footer-payment-icons img {
    height: 22px;
    float: left;
    margin-right: 6px;
}

#footer .footer-bottom .footer-payment-icons img:last-child {
    margin: 0;
}

#footer .footer-logo {
    margin-bottom: 30px;
    max-width: 270px;
    max-height: 180px;
}

#footer .footer-logo a {
    display: block;
}

#footer .footer-logo img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
}

#footer .footer-about {
    line-height: 24px;
    margin-bottom: 20px;
}

#footer .footer-social-links {
    width: 100%;
    display: block;
    position: relative;
    float: left;
}

#footer .footer-social-links ul {
    padding: 0;
    margin: 0;
}

#footer .footer-social-links ul li {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    list-style: none;
}

#footer .footer-social-links ul li a {
    color: #888;
    font-size: 18px;
    padding: 5px;
}

#footer .footer-title {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 15px;
    position: relative;
}

#footer .nav-footer {
    padding-left: 25px;
}

#footer .nav-footer ul {
    padding: 0;
    margin: 0;
}

#footer .nav-footer ul li {
    display: block;
    width: 100%;
    position: relative;
    margin: 5px 0;
}

#footer .nav-footer ul li a {
    color: #888;
    padding: 5px 0;
    line-height: 26px;
    position: relative;
}

.widget-newsletter {
    margin-top: 45px
}

.widget-newsletter input[name='url'], .modal-newsletter input[name='url'] {
    display: none !important;
}

.newsletter {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 5px;
    font-size: 13px;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter input {
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid #e0e0e2;
    border-right: 0 !important;
    outline: none !important;
    height: 42px;
    padding: 10px 20px;
    box-shadow: none;
    border-radius: 2px 0 0 2px;
}

.newsletter .newsletter-button {
    height: 42px;
    padding: 6px 14px;
    border-radius: 0 2px 2px 0;
    line-height: 1.5;
    outline: none !important;
    font-size: 14px;
    border: 0;
    color: #fff;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
    white-space: nowrap;
}

.newsletter .newsletter-button:hover {
    opacity: 0.8;
}

.modal-newsletter .modal-dialog {
    max-width: 720px;
}

.modal-newsletter .modal-body {
    padding: 0;
}

.modal-newsletter .modal-body .close {
    display: inline-block;
    padding: 6px;
    color: #777;
    opacity: 1 !important;
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 18px;
    width: 34px;
    height: 34px;
    z-index: 2;
}

.modal-newsletter .modal-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 15px;
}

.modal-newsletter .modal-desc {
    line-height: 26px;
    text-align: center;
    margin-bottom: 20px;
    color: #6c757d;
}

.modal-newsletter .newsletter-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-newsletter .newsletter-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.modal-newsletter .newsletter-form {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 15px 30px 15px 0;
    min-height: 250px;
}

.modal-newsletter .form-input {
    height: 42px;
    line-height: 42px;
    border-radius: 0 !important;
}

.modal-newsletter .has-error {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

.modal-newsletter .form-input:focus {
    border-color: #cfcfcf;
}

.modal-newsletter .btn {
    padding: 10px 30px !important;
    display: block;
    width: 100%;
    line-height: 22px;
    border-radius: 0 !important;
    color: #fff !important;
    border: 0 !important;
    white-space: nowrap;
    margin-top: 10px;
}

.modal-newsletter .btn:hover {
    opacity: 0.9;
}

.modal-newsletter .modal-newsletter-inputs {
    position: relative;
}

.modal-newsletter .text-close {
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-decoration: underline;
    color: #6c757d;
}

.modal-newsletter .text-close:hover {
    color: #555;
}

.modal-newsletter .modal-content {
    border-radius: 0;
}

.modal-newsletter .icon-newsletter {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 56px;
}

.modal-newsletter .newsletter-title {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

.modal-newsletter .modal-newsletter-response {
    min-height: 25px;
}

.modal-newsletter .modal-newsletter-response p {
    margin-bottom: 0 !important;
}

.form-logout {
    display: block;
    margin: 4px
}

.btn-logout {
    display: block;
    width: 100%;
    background-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 4px 15px;
    line-height: 24px;
    color: #606060 !important;
    white-space: nowrap;
    text-align: left
}

.btn-logout:hover {
    background-color: #f5f5f5 !important
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9AA2AA !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #9AA2AA !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #9AA2AA !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9AA2AA !important;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #9AA2AA !important;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: #9AA2AA !important;
}

.pagination {
    width: 100%;
    display: block;
    position: relative;
    float: left;
    text-align: center;
}

.pagination li {
    display: inline-block;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 40px;

    border: 1px solid #eaeaf1;
    color: #63636a;

    text-align: center;
    -moz-transition: all .2s ease-in-out 0s;
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    width: auto;


    border-radius: 2px !important;
    margin-bottom: 3px;
}

.pagination .active a {
    color: #fff !important;
}

.pagination .prev a {
    line-height: 34px;
}

.pagination .next a {
    line-height: 34px;
}

.pagination .page-first a {
    line-height: 34px;
}

.pagination .page-last a {
    line-height: 34px;
}

.pagination li a:hover, .pagination li a:focus, .pagination li a:active {
    color: #fff
}

.cursor-pointer {
    cursor: pointer;
}

.no-records-found {
    text-align: center;
    padding: 20px 0;
    color: #888;
}

.contact-map-container {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
}

.contact-map-container iframe {
    display: block;
    float: left;
    width: 100%;
    height: 360px;
}

.rss-item {
    display: table;
    width: 100%
}

.rss-item .left {
    display: table-cell;
    width: 250px
}

.rss-item .right {
    display: table-cell
}

.rss-item .right p {
    word-break: break-all
}

.input-file-label {
    color: #fff !important;
    border-radius: 1px !important;
    padding: 0.4em 0.6em !important;
    font-size: 12px !important;
}

.swal-modal {
    max-width: 400px;
}

.swal-icon {
    width: 60px;
    height: 60px;
}

.swal-icon--warning__body {
    height: 28px;
}

.swal-button {
    border-radius: 3px !important;
    padding: 8px 22px !important;
}

.swal-button:focus {
    box-shadow: none !important;
}

.swal-text {
    font-size: 14px !important;
}

.swal-button--danger {
    background-color: #17a2b8 !important;
}

.btn-file-upload {
    position: relative;
    color: #fff !important;
    font-size: 13px !important;
    padding: 4px 16px !important;
    overflow: hidden !important;
    margin-right: 15px;

}

.btn-file-upload-cover {
    margin-right: 5px !important;
}

.btn-file-upload input {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    background-color: transparent;
    color: transparent;
    cursor: pointer;
}

.btn-file-upload-start-selling {
    padding: 10px 26px !important;
}

.bn-container {
    display: flex;
    width: 100%;
    justify-content: center;
}

.bn-container-mb {
    display: none;
}

.scrollup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    color: #fff !important;
    z-index: 999999;
}

.scrollup i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: center;
    background-color: #222;
    border-radius: 0.1875rem;
    z-index: 999999
}

.error-404 {
    min-height: 600px;
    width: 100%;
    text-align: center;
    padding-top: 100px
}

.error-404 h1 {
    font-size: 60px;
    margin-bottom: 10px;
    font-weight: 600;
}

.error-404 h2 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 600;
}

.error-404 p {
    color: #888;
}

.error-404 .btn {
    margin-top: 30px;
}

.cookies-warning {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 375px;
    max-width: 100%;
    padding: 35px 25px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 12px rgb(0 0 0 / 14%);
    z-index: 9999999;
}

.cookies-warning .text {
    width: 100%;
    margin-bottom: 20px;
    line-height: 26px;
    color: #333;
}

.cookies-warning .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}

.cookies-warning p {
    margin-bottom: 0;
}

/*Spinner*/
.load-more-spinner {
    display: none;
}

.spinner {
    margin: 0 auto;
    width: 70px;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 15px;
    margin-top: 15px;
}

.spinner > div {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

/* ::selection {
    color: #fff;
}

::-moz-selection {
    color: #fff;
} */

.is-invalid {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

.is-recaptcha-invalid > div {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

.custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

.product-variations .is-invalid {
    border: 2px solid rgba(220, 53, 69, 0.40) !important;
}

.product-variations .is-recaptcha-invalid > div {
    border: 0.1rem solid rgba(220, 53, 69, 0.40) !important;
}

.product-variations .custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
    border: 0.1rem solid rgba(220, 53, 69, 0.40) !important;
}

.was-validated .form-control:valid, .form-control.is-valid {
    background-image: none !important;
}

.input-small {
    position: absolute;
    color: #888;
}

form label.error {
    color: #d43f3a;
    display: none !important;
}

form input.error {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

form textarea.error {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

form select.error {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

.select2.error {
    border: 1px solid rgba(220, 53, 69, 0.40) !important;
}

.display-none {
    display: none;
}

.pretty.p-default input:checked ~ .state label::after {
    background-color: #555 !important;
}

.custom-control .custom-control-label {
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
}

.custom-control-label::before, .custom-control-label::after {
    width: 1.125rem;
    height: 1.125rem;
    top: .1rem;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: none !important;
}

.custom-radio {
    padding-left: 28px !important;
}

.custom-radio .custom-control-label::before, .custom-radio .custom-control-label::after {
    width: 20px !important;
    height: 20px !important;
    top: .1rem;
    left: -28px !important;
}

.custom-checkbox {
    padding-left: 1.6rem;
}

.custom-checkbox .custom-control-label::before {
    border-color: #d7dbdf;
    border: 0.09375rem solid #d6d6d6;
    border-radius: .125rem !important;
    left: -1.6rem;
}

.custom-checkbox .custom-control-label::after {
    left: -1.6rem;
    background-size: 10px 10px;
}

.custom-checkbox-with-label .custom-control-label::before, .custom-checkbox-with-label .custom-control-label::after {
    top: 2px !important;
}

.custom-radio .custom-control-label::before {
    border: 0.09375rem solid #d6d6d6;
}

.custom-file-input:focus ~ .custom-file-label {
    border-color: transparent !important;
    box-shadow: none !important;
}

.custom-file-label
{
    position:relative;
    z-index: 9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-file-input
{
    position:absolute;
    z-index: 1;
    top:0px;
    left:0px;
    opacity: 0;
}   

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: #d7dbdf !important;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    background-color: #dee2e6 !important;
    border-color: #d7dbdf !important;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-control-validate-error .custom-control-label::before {
    border-width: 0.09375rem;
    border-color: rgba(220, 53, 69, 0.60) !important;
}

.custom-control-validate-error .custom-control-input:focus ~ .custom-control-label::before {
    border-width: 0.09375rem;
    border-color: rgba(220, 53, 69, 0.60) !important;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: none !important
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: transparent;
    border-color: #d7dbdf;
}

.mfp-counter {
    display: none !important;
}

.slide-in-150s {
    animation-duration: 0.15s;
    animation-name: slidein;
}

.circle-loader {
    margin-bottom: 3.5em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left-color: #5cb85c;
    animation: loader-spin 1.2s infinite linear;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em
}

.load-complete {
    -webkit-animation: none;
    animation: none;
    border-color: #5cb85c;
    transition: border 500ms ease-out
}

.checkmark {
    display: none
}

.checkmark.draw:after {
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg)
}

.checkmark:after {
    opacity: 1;
    height: 3.5em;
    width: 1.75em;
    transform-origin: left top;
    border-right: 3px solid #5cb85c;
    border-top: 3px solid #5cb85c;
    content: '';
    left: 1.75em;
    top: 3.5em;
    position: absolute
}

.link-blue {
    color: #4286f4 !important;
}

.tox-tinymce {
    border-radius: 0.1875rem !important;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes checkmark {
    0% {
        height: 0;
        width: 0;
        opacity: 1
    }
    20% {
        height: 0;
        width: 1.75em;
        opacity: 1
    }
    40% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
    100% {
        height: 3.5em;
        width: 1.75em;
        opacity: 1
    }
}

.error-circle {
    margin-bottom: 3.5em;
    border: 1px solid #dc3545;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border-radius: 50%;
    width: 7em;
    height: 7em;
    line-height: 7em;
    color: #dc3545
}

.error-circle i {
    font-size: 30px
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}

.tox-promotion {
    display: none;
}

a:active, a:focus, a:hover {
    color: var(--vr-color-main);
}

.btn-custom, .modal-newsletter .btn, .newsletter-button {
    background-color: var(--vr-color-main);
    border-color: var(--vr-color-main)
}

.btn-block {
    background-color: var(--vr-color-main)
}

.btn-outline {
    border: 1px solidvar(--vr-color-main);
    color: var(--vr-color-main)
}

.btn-outline:hover {
    background-color: var(--vr-color-main) !important
}

.btn-filter-products-mobile {
    border: 1px solidvar(--vr-color-main);
    background-color: var(--vr-color-main)
}

.form-control:focus {
    border-color: var(--vr-color-main)
}

.link {
    color: var(--vr-color-main) !important
}

.link-color {
    color: var(--vr-color-main)
}

.top-search-bar .btn-search {
    background-color: var(--vr-color-main)
}

.nav-top .nav-top-right .nav li a:active, .nav-top .nav-top-right .nav li a:focus, .nav-top .nav-top-right .nav li a:hover {
    color: var(--vr-color-main)
}

.nav-top .nav-top-right .nav li .btn-sell-now {
    background-color: var(--vr-color-main) !important
}

.nav-main .navbar > .navbar-nav > .nav-item:hover .nav-link:before {
    background-color: var(--vr-color-main)
}

.li-favorites a i {
    color: var(--vr-color-main)
}

.product-share ul li a:hover {
    color: var(--vr-color-main)
}

.pricing-card:after {
    background-color: var(--vr-color-main)
}

.selected-card {
    -webkit-box-shadow: 0 3px 0 0 var(--vr-color-main);
    box-shadow: 0 3px 0 0 var(--vr-color-main)
}

.selected-card .btn-pricing-button {
    background-color: var(--vr-color-main)
}

.profile-buttons .social ul li a:hover {
    background-color: var(--vr-color-main);
    border-color: var(--vr-color-main)
}

.btn-product-promote {
    background-color: var(--vr-color-main)
}

.contact-social ul li a:hover {
    background-color: var(--vr-color-main);
    border-color: var(--vr-color-main)
}

.price-slider .ui-slider-horizontal .ui-slider-handle {
    background: var(--vr-color-main)
}

.price-slider .ui-slider-range {
    background: var(--vr-color-main)
}

.p-social-media a:hover {
    color: var(--vr-color-main)
}

.blog-content .blog-categories .active a {
    background-color: var(--vr-color-main)
}

.nav-payout-accounts .active, .nav-payout-accounts .show > .nav-link {
    background-color: var(--vr-color-main) !important
}

.pagination .active a {
    border: 1px solid var(--vr-color-main) !important;
    background-color: var(--vr-color-main) !important
}

.pagination li a:active, .pagination li a:focus, .pagination li a:hover {
    background-color: var(--vr-color-main);
    border: 1px solidvar(--vr-color-main)
}

.spinner > div {
    background-color: var(--vr-color-main)
}

/* ::selection {
    background: var(--vr-color-main) !important
}

::-moz-selection {
    background: var(--vr-color-main) !important
} */

.cookies-warning a {
    color: var(--vr-color-main)
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--vr-color-main)
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--vr-color-main);
    background-color: var(--vr-color-main)
}

.custom-control-variation .custom-control-input:checked ~ .custom-control-label {
    border-color: var(--vr-color-main) !important
}

.btn-wishlist .icon-heart {
    color: var(--vr-color-main)
}

.product-item-options .item-option .icon-heart {
    color: var(--vr-color-main)
}

.mega-menu .menu-subcategories ul li .link-view-all:hover {
    border-color: var(--vr-color-main) !important
}

.custom-select:focus {
    border-color: var(--vr-color-main)
}

.all-help-topics a {
    color: var(--vr-color-main)
}

.mds-scrollbar {
    overflow-y: scroll;
    scrollbar-color: #d6dce6 #fff;
    scrollbar-width: thin;
}

.mds-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.mds-scrollbar::-webkit-scrollbar-track {
    background: #ffffff;
}

.mds-scrollbar::-webkit-scrollbar-thumb {
    background: #d6dce6;
    border-radius: 5px;
}

.mds-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #d6dce6;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fcfcfc;
}

.modalGradiendBg
{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(255 174 138) 100%);
}

.corporateModalTopImageOuter
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.corporateModalTopImageOuter img
{
    height:80px;
    float:left;
}

.corporateModalTitleOuter
{
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #3d3d3d;
    float: left;
    font-weight: 600;
    margin-top: 14px;
    line-height: 31px;
}

.corporateModalButtonsOuter
{
    width:100%;
    min-height:10px;
    float:left;
    margin-top:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.corporateModalButtonGreen
{
    min-width:10px;
    height:44px;
    background-color:#1baa68;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0px 15px;
    border-radius:4px;
    font-weight:500;
    font-size:13px;
    cursor:pointer;
}

.corporateModalButtonWhite
{
    min-width:10px;
    height:44px;
    background-color:#fff;
    color:#1baa68;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0px 15px;
    border-radius:4px;
    font-weight:500;
    font-size:13px;
    cursor:pointer;
}

.corporateModalBottomTexts
{
    width:100%;
    text-align:center;
    font-size:13px;
    color:#333;
    margin-top:30px;
    float:left;
    margin-bottom:15px;
}

.corporateFormInputs * label
{
    font-size:11px;
    font-weight:600;
    text-transform: uppercase;
    opacity: 0.8;
}

.corporateFormInputs * label span
{
    font-size:14px;
    font-weight:400;
    text-transform:none;
}

.corporateFormInputs * label span a
{
    color:#1baa68;
    font-weight:600;
}

.corporateFormInputs * input[type=text]
{
    height:42px;
    font-size:13px;
}

.corporateFormInputs * select
{
    height:42px;
    font-size:13px;
}

.modal 
{
    overflow-y:auto;
}

.agreementModalContents
{
    width:100%;
    min-height:10px;
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    gap:15px;
}

.agreementModalButtons
{
    width:250px;
    min-height:10px;
    float:left;
}

.agreementModalRight
{
    flex:1;
    min-height:10px;
    float:left;
}

.agreementModalRight h3
{
    font-size:20px;
    margin:0px;
    margin-bottom:20px;
    font-weight:600;
}

.agreementModalButton
{
    width:100%;
    min-height:10px;
    float:left;
    background-color:#f5f5f5;
    padding:10px 13px;
    margin-bottom:10px;
    font-size:13px;
    font-weight:500;
    color:#333;
    line-height:23px;
    border-radius:4px;
    cursor:pointer;
}

.agreementModalButtonSelect
{
    background-color: #1baa68;
    color:#fff;
}

.customFooterOuter
{
    width:100%;
    min-height:10px;
    float:left;
    background-color:#ffc9a5;
    padding:0px;
}

.customFooterInner
{
    width:100%;
    min-height:10px;
    float:left;
    padding:10px 0px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap: wrap;
    gap:10px;
    margin-bottom:10px;
}

.customFooterBtn
{
    min-width:10px;
    min-height:10px;
    float:left;
    font-size:12px;
    font-weight:500;
    background-color:#ff6600;
    padding:9px 12px;
    padding-bottom:10px;
    border-radius:6px;
    color:#fff!important;
    text-decoration: none!important;
    cursor:pointer;
}

.customFooterText
{
    flex:1;
    min-height:10px;
    float:left;
    font-size:12px;
    font-weight:500;
    color:#ae3700;
}

.customFooterSocial
{
    width:30px;
    height:30px;
    background-color:orange;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footerMiniBtn
{
    min-width:10px;
    min-height:10px;
    float:left;
    font-size:12px;
    font-weight:400;
    color:#333!important;
    text-decoration: none!important;
    margin-bottom:-10px;
    opacity: 0.7;
    transition: 0.3s ease all;
    cursor:pointer;
    margin:0px 5px;
}

.footerMiniBtn:hover
{
    color:#014d2a;
    opacity: 1;
}

@media only screen and (max-width: 700px) 
{
    .agreementModalContents
    {
        flex-direction: column;
    }

    .agreementModalButtons
    {
        width:100%;
    }

    .agreementModalRight
    {
        width:100%;
    }

    .customFooterText
    {
        flex:auto;
        width:100%;
        text-align: center;
    }
}

.contractPageOuter
{
    width:100%;
    min-height:100vh;
    background-color:#fff;
    float:left;
    padding:50px 0px;
    position:relative;
}

.contractPageOuter:after
{
    content:'';
    width:100%;
    height:300px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(164, 233, 200) 100%);
    position:absolute;
    left:0px;
    bottom:0px;
    z-index:1;
}

.contractPageInner
{
    width: 100%;
    min-height:100vh;
    float:left;
    position:relative;
    z-index:4;
    padding:20px;
}

.contractPageInner h3
{
    width:100%;
    font-size:25px;
    text-align: center;
    margin-bottom:30px;
}

.contractToplineBorder
{
    width:80%;
    height:2px;
    background-color:#333;
    position:absolute;
    top:0px;
    left:0px;
}

.contractToplineBorder:before
{
    content:"";
    width:8px;
    height:8px;
    position:absolute;
    left:-8px;
    top:-3px;
    border:2px solid #333;
    border-radius: 4px;
}

.contractToplineBorder2
{
    width:2px;
    height:80%;
    background-color:#333;
    position:absolute;
    bottom:0px;
    right:0px;
}

.contractToplineBorder2:before
{
    content:"";
    width:8px;
    height:8px;
    position:absolute;
    left:-3px;
    top:-8px;
    border:2px solid #333;
    border-radius: 4px;
}

@media only screen and (max-width: 700px) 
{
    .contractPageOuter
    {
        padding:10px 0px;
    }

    .contractToplineBorder
    {
        display:none;
    }

    .contractToplineBorder2
    {
        display:none;
    }
}

/* 02.10.2025 */

.menuOuter
{
    width:100%;
    min-height:10px;
    float:left;
}

.menuInner
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    padding:20px 0px;
}

.menuLogoOuter
{
    width:200px;
    height:60px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.menuLogoOuter img
{
    width:100%;
    height:60px;
    object-fit:contain;
    object-position:center;
}

.menuContentsOuter
{
    flex:1;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:20px;
}

.menuContentsOuter:last-child
{
    justify-content:flex-start;
}

.menuContentsOuter a
{
    font-size:15px;
    font-weight:500;
    color:#6c6c6c;
    text-decoration:none!important;
    transition:0.3s ease all;
}

.menuContentsOuter a:hover
{
    color:#ff6600!important;
}

.customPageInner
{
    width:100%;
    min-height:10px;
    float:left;
}

.customPageInner img
{
    width:100%;
    float:left;
}

.customPageInner h5
{
    width:100%;
    float:left;
    font-size:13px;
    font-weight:400;
    letter-spacing:2px;
    color:#333;
    font-weight:500;
    margin:0px;
    margin-top:25px;
    margin-bottom:5px;
    color:#ff6600;
}

.customPageInner h3
{
    width:100%;
    float:left;
    font-weight:500;
    margin:0px;
    font-size:30px;
    font-weight:500;
    color:#333;
    margin-bottom:15px;
}

.customPageInner h4
{
    width:100%;
    float:left;
    font-weight:500;
    margin:0px;
    font-size:20px;
    font-weight:500;
    color:#333;
    margin-bottom:15px;
}

 .mh10p10
{
    min-height:10px;
    padding:0px 10px;
}

.formOuter
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    gap:15px;
}

.formBoxOuter
{
    flex:1;
    min-height:10px;
    background-color:#fff;
    float:left;
    border:1px solid #dfdfdfff;
    border-radius:4px;
}

.formBoxOuter .form-group label
{
    font-size:11px;
    font-weight:500;
    letter-spacing:0.3px;
    text-transform:uppercase;
    opacity: 0.7;
}

.formBoxOuter .form-group input
{
    height:45px;
}

.formBoxOuter .form-group textarea
{
    height:145px;
    resize:none;
}

.formBoxOuter .form-group select
{
    height:45px;
}

.formBoxOuter .fileuploader label
{
    height:45px;
    line-height:30px;
    background-color:#fff!important;
    color:#333;
    border:1px solid #c9c9c9ff!important;
}

.formBoxContents
{
    width:100%;
    min-height:10px;
    padding:15px;
    float:left;
}

.formBoxTitle
{
    width:100%;
    min-height:10px;
    float:left;
    font-size:14px;
    font-weight:500;
    color:#333;
    padding:17px 25px;
    border-bottom:1px solid #dfdfdfff;
}

.formBoxContentsBottom
{
    width:100%;
    min-height:10px;
    float:left;
    font-size:14px;
    font-weight:500;
    color:#333;
    padding:10px 25px;
    border-top:1px solid #dfdfdfff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.formBoxContentBottomText
{
    flex:1;
    float:left;
}

.formBoxContentsBottom button
{
    flex:1;
    background-color:#ff6600;
    color:#fff;
    height:45px;
    border:0px!important;
    outline:0px!important;
    border-radius:4px;
}

.formRightOuter
{
    width:330px;
    min-height:20px;
    background-color:#fff;
    float:left;
    border:1px solid #dfdfdfff;
    border-radius:4px;
    padding:15px;
}

.mobileMenuBtnOuter
{
    flex:1;
    display:none;
    align-items:flex-end;
    justify-content:flex-end;
}

.mobileMenuBtn
{
    width:40px;
    height:40px;
    border:1px solid #ff6600;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#ff6600;
    padding-top:1px;
}

.mobileMenuOuter
{
    width:100%;
    height:100%;
    position:fixed;
    left:0px;
    top:0px;
    z-index:99;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, #ffc9a5 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    float:left;
}

.menuContentOuter
{
    width:100%;
    flex:1;
    float:left;
    overflow:auto;
    padding:20px;
}

.menuContentOuter a
{
    width: 100%;
    float: left;
    padding: 13px;
    text-align: center;
    font-size: 20px;
    color: #333;
    font-weight: 500;
    text-decoration:none;
}

.formBoxRightOuter
{
    width:440px;
    min-height:10px;
    float:left;
    background-color:#fff;
    border:1px solid #dfdfdfff;
    padding:15px;
    border-radius:4px;
}

.formBoxRightBox
{
    width:100%;
    min-height:10px;
    float:left;
    background-color:#f9f9f9;
    padding:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:4px;
    margin-bottom:15px;
    gap:13px;
}

.formBoxRightBoxIcon
{
    width:90px;
    height:90px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
}

.formBoxRightBoxIcon img
{
    width:90px;
    height:90px;
    object-fit:contain;
    object-position:center;
}

.formBoxRightBoxContents
{
    flex:1;
    min-height:10px;
    float:left;
}

.formBoxRightBoxContents h3
{
    width:100%;
    font-size:16px;
    font-weight:600;
    color:#333;
    margin-bottom:7px;
    letter-spacing:0.5px;
    margin:0px;
    margin-bottom:10px;
}

.formBoxRightBoxContents h4
{
    width:100%;
    font-size:14px;
    font-weight:600;
    color:#ff6600;
    letter-spacing:0.5px;
    margin:0px;
    margin-bottom:5px;
}

.formBoxRightBoxContents h5
{
    width:100%;
    font-size:14px;
    line-height:22px;
    font-weight:500;
    color:#333;
    letter-spacing:0.5px;
    margin:0px;
}

.formBoxRightBoxContents p
{
    width:100%;
    font-size:13px;
    font-weight:400;
    color:#333;
    margin:0px;
}

.formBoxRightBoxAppOuter
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.formBoxRightBoxAppButtons
{
    width:150px;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:12px;
}

.formBoxRightBoxAppButton
{
    width:100%;
    height:43px;
    background-color:#000;
    float:left;
    border-radius:6px;
}

.formBoxRightBoxAppButton img
{
    width:100%;
    height:43px;
    object-fit:contain;
    object-position:center;
}

.formBoxRightBoxQr
{
    width:90px;
    height:90px;
    float:left;
}

.formBoxRightBoxQr img
{
    width:90px;
    height:90px;
    float:left;
    object-fit:contain;
    object-position:center;
}

.formBoxRightBoxContent
{
    flex:1;
    min-height:10px;
    float:left;
    font-size:13px;
    font-weight:600;
    color:#333;
    line-height:20px;
}

.contactPageOuter
{
    width:100%;
    min-height:10px;
    float:left;
}

.contactPageTitle
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    margin-bottom:40px;
}

.contactPageTitle h6
{
    width:100%;
    float:left;
    font-size:15px;
    font-weight:500;
    color:#ff6600;
    text-align:center;
    letter-spacing:1px;
    margin:0px;
    margin-bottom:7px;
}

.contactPageTitle h1
{
    width:100%;
    float:left;
    font-size:35px;
    font-weight:700;
    color:#333;
    text-align:center;
    letter-spacing:3px;
    margin:0px;
    font-family: "Bebas Neue", sans-serif;
}

.contactPageIcon
{
    width:40px;
    height:40px;
    background-color:#ff6600;
    border-radius:4px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:16px;
}

.contractBtn
{
    width:100%;
    height:45px;
    background-color:#ff6600;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
    margin-top:25px;
    border-radius:4px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footerCardsOuter
{
    width:100%;
    min-height:10px;
    float:left;
    background-color: #ffc9a5;
}

.footerCardsInner
{
    width:100%;
    min-height:10px;
    float:left;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.footerCardsInner img
{
    width:300px;
    max-width:100%!important;
    float:left
}

@media only screen and (max-width: 700px) 
{
    .menuContentsOuter
    {
        display:none;
    }
    
    .mobileMenuBtnOuter
    {
        display:flex;
    }

    .formBoxContentsBottom
    {
        flex-direction: column;
    }

    .formBoxContentsBottom button
    {
        flex:auto;
        width:100%;
        height:45px;
    }

    .menuLogoOuter img
    {
        object-position: center left;
    }

    .formOuter
    {
        flex-direction: column-reverse;
    }

    .formBoxRightOuter
    {
        width:100%;
    }
}

/* 02.10.2025 */