@media only screen and (max-width: 575.98px){
    .off-canvas-content .buttons a:first-child {
        display: none !important;
    }
    .off-canvas-content .buttons a:last-child {
        display: flex !important;
    }
    .off-canvas-content .buttons a:last-child img {
        display: block !important;
    }
}

.autocomplete-wrapper {
    margin-bottom: 16px;
    position: relative;
}
.autocomplete-input-icon {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 20px;
}
.standard-input {
    padding: 8px 24px;
    background-color: white;
    border: 2px solid rgba(36, 49, 67, .2);
    border-radius: 100px;
    width: 100%;
    line-height: 24px;
}
.input-autocomplete {
    padding-left: 40px;
}

.pac-container {
    margin-top: 4px;
    border-radius: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.pac-container::after {
    margin-right: 12px;
}
.pac-item {
    border-top: none;
    padding: 8px;
    cursor: pointer;
}
.pac-item * {
    font-size: 14px !important;
}

.checkboxes-wrapper {
    margin-bottom: 60px; 
    display: flex; 
    flex-direction: column; 
    width: 100%;
}
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
}
.checkbox-container input[type="checkbox"] {
    appearance: none;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid #75c445;
    border-radius: 6px;
    transition: 0.2s all ease;
    position: relative;
}
.checkbox-container input[type="checkbox"]:checked {
    background-color: #75c445;
}
.checkbox-container input[type="checkbox"]::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 2px;
    left: 5px;
    opacity: 0;
    transition: opacity 0.2s;
}
.checkbox-container input[type="checkbox"]:checked::after {
    opacity: 1;
}
.checkbox-label {
    color: #243143;
    font-size: 14px;
    font-weight: 600;
}

.intro {
    padding-top: 60px;
}

@media only screen and (max-width: 812px) {
    .intro {
        padding-top: 80px;
    }

    .off-canvas.position-top {
        transform: translateY(0);
    }
}

.create-button {
    background-color: #75c445;
}
.create-button img {
    margin-left: 8px;
}

.button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.home-page .left .navbar, 
.static-page .left .navbar {
    flex-grow: 1 !important;
    min-height: 0 !important;
}
.home-page .left .navbar .menu,
.static-page .left .navbar .menu {
    height: 100% !important;
    width: 100% !important;
}
.home-page .left .navbar .menu li,
.static-page .left .navbar .menu li {
    height: 100% !important;
    width: 100% !important;
}
.home-page .left .navbar .menu li img,
.static-page .left .navbar .menu li img {
    max-height: initial !important;
    max-width: initial !important;
    height: 90% !important;
    width: auto !important;
}

.small-main-image {
    max-width: 100% !important;
    margin-bottom: 0 !important;
}

/* MODAL start */
.simple-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(36,49,67,0.45);
    justify-content: center;
    align-items: flex-end;
    transition: background 0.2s;
    justify-content: center;
    align-items: center;
}
.simple-modal.show {
    display: flex;
    animation: modal-fade-in-bg 0.12s;
}
@keyframes modal-fade-in-bg {
    from { background: rgba(36,49,67,0); }
    to   { background: rgba(36,49,67,0.45);}
}
.simple-modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(36,49,67,0.18);
    padding: 32px 24px 24px 24px;
    width: 100%;
    max-width: 520px;
    margin-bottom: 0;
    animation: modal-slide-up 0.15s forwards;
    position: relative;
}
@keyframes modal-slide-up {
    from { transform: translateY(-80px); opacity: 0;}
    to   { transform: translateY(0); opacity: 1;}
}
.simple-modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 2rem;
    color: #243143;
    cursor: pointer;
    font-weight: 300;
    transition: color 0.15s;
    z-index: 2;
}
.simple-modal-close:hover { color: #e74c3c; }
@media (max-width: 600px) {
    .simple-modal {
        padding: 0 12px;
    }
    .simple-modal-content { 
        max-width: 98vw; 
        padding: 32px 14px 16px;
    }
}

.simple-modal-content h2 {
    margin-bottom: 20px;
    margin-right: 30px;
    margin-left: 30px;
    text-align: center;
}
.simple-modal-content p {
    margin-bottom: 12px;
    text-align: center;
    font-size: 17px;
}
.simple-modal-content input {
    margin-bottom: 12px;
    margin-top: 12px;
}
.simple-modal-content button {
    margin-bottom: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: 200ms;
}
.simple-modal-content button:hover {
    opacity: 0.7;
}
.simple-modal-content .simple-modal__footer-text {
    font-size: 13px;
    padding: 0 30px;
    text-align: center;
    display: block;
}
.hide-modal-step {
    display: none;
}

@keyframes modal-pop-big {
    from { transform: scale(0.5); opacity: 0;}
    to   { transform: scale(1); opacity: 1;}
}
.progress-modal .progress-modal__content {
    padding: 50px 40px 32px;
    animation: modal-pop-big 0.15s forwards;
    max-width: initial !important;
    width: 600px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.progress-modal .progress-modal__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}
.progress-modal .progress-modal__description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}
.progress-modal__progress {
    height: 8px;
    width: 100%;
    border-radius: 6px;
    background-color: #E0E0E0;
    margin-bottom: 42px;
}
.progress-modal__title-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
#lottie-container {
    max-width: 140px;
    position: absolute;
    right: -15px;
    top: -45px;
}

@keyframes progress-bar-gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.progress-modal__progress-bar {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(to right, #D7F8C3, #75C445);
    transition: 150ms;
    background-size: 200% 100%;
    animation: progress-bar-gradient-move 1.5s linear infinite;
}
.progress-modal__list-item {
    display: flex;
    align-items: center;
    margin-bottom: 34px;
}

@keyframes pulsate-scale {
    0% { transform: scale(1); }
    15% { transform: scale(1.12); }
    30% { transform: scale(1); }
    100% { transform: scale(1); }
}
.progress-modal__item-number {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    min-height: 60px;
    border-radius: 100%;
    background-color: #E0E0E0;
    font-size: 20px;
}
.progress-modal__item-number--progress {
    animation: pulsate-scale 1.8s infinite ease-out;
}
.progress-modal__item-number--done {
    background-color: #75C445;
    color: white;
    animation: none !important;
}
.progress-modal__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 20px;
}
.progress-modal__item-title {
    font-weight: 600;
    margin-bottom: 8px !important;
    font-size: 20px !important;
}
.progress-modal__item-description {
    font-size: 16px;
    color: #666666;
}

@media (max-width: 600px) {
    .progress-modal__content {
        padding: 40px 24px 0px !important;
    }
    .progress-modal__item-number {
        min-width: 50px;
        min-height: 50px;
        font-size: 18px;
    }
    .progress-modal__item-title {
        text-align: left !important;
        font-size: 18px !important;
    }
    .progress-modal__item-content {
        margin-left: 14px;
    }
    #lottie-container {
        max-width: 100px;
        right: -20px;
        top: -25px;
    }
    .progress-modal__title {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    .progress-modal__description {
        font-size: 16px !important;
    }
}
@media (max-width: 400px) {
    #lottie-container {
        display: none;
    }
    .progress-modal__title {
        text-align: center !important;
    }
    .progress-modal__title-wrapper {
        align-items: center;
    }
}


/* MODAL end */

button.btn {
    margin-bottom: 12px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: 200ms;
    display: flex;
    align-items: center;
}
button.btn:hover {
    opacity: 0.7;
}


/* LOADER start */
.button-loader {
  width: 20px;
  padding: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  --_m: 
    conic-gradient(#0000 10%,#000),
    linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
          mask: var(--_m);
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {to{transform: rotate(1turn)}}
/* LOADER end */

#create-store-button .button-loader {
    margin-left: 8px;
}