@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Nunito:wght@200;300;400;500;600;700;800;900;1000&family=Source+Sans+3:wght@900&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html { font-size: calc(.5em + 1vw); }

html,
body {
    margin: 0;
    position: relative;

    height: 100%;
    width: 100%;

    font-family: "Nunito", sans-serif;
    font-weight: 500;
    
    scroll-behavior: smooth;
    cursor: default;
}


button, input {
    appearance: none;
    outline: none;
    border: none;
    background: none;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
}



/* Loader */
.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: hsla(0, 0%, 0%, 0.2);
}
.loading-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    height: auto;
    width: auto;

    background: #fff;
    border-radius: .5rem;
}
.donut {
    width: 4rem;
    height: 4rem;

    margin: 2rem;
    
    border-radius: 50%;
    border: .5rem solid rgba(81, 81, 81, 0.3);
    border-top-color: #000;
    
    animation: spin .7s infinite linear;
  }
  
  @keyframes spin {
    to {
        transform: rotate(360deg);
    }
  }










.load {
    position: absolute;
    z-index: 500;
    height: .3rem;
    width: 100%;
}
.load div {
    height: 100%;
    width: 0;
    background: #000;
    transition: .5s ease-in-out;
}

.color-dark-grey2 {
    color: #aeaeae;
}
.color-dark-grey {
    color: #b8b8b8;
}
.color-grey {
    color: #e0e0e0;
}
.color-black {
    color: #000;
}
.color-open {
    color: #66D01C;
}
.color-closed {
    color: #bebebe;
}

.overlay {
    height: 100%;
    width: 100%;

    background: hsla(0, 0%, 0%, 0.2);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;

    display: none;
}


.alert-prompt {
    position: fixed;
    bottom: -25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;

    border-radius: .8rem .8rem 0 0;

    display: flex;
    align-items: center;

    padding: 1.2rem 1rem;

    transition: .3s ease-out;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
}

.a-p-h {
    display: flex;
    justify-content: center;
    align-items: center;
}
.a-p-h  svg {
    height: 2rem;
    width: 2rem;
    margin-right: .5rem;
}
.alert-prompt div:nth-child(2) {
    height: auto;
    width: 100%;

    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}





#confirmContainer {
    height: 100%;
    width: 100%;

    display: none;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 502;

    background: hsla(0, 0%, 30%, 0.5);
}

#confirmBox {
    height: auto;
    width: auto;
    max-width: 80%;

    padding: 1.3rem;

    background: #fff;
    border-radius: .6rem;
}

#confirmHead {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}
#confirmStc {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;

    padding: .9rem 0 1.5rem 0;
}
#confirmBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#confirmBtn button {
    padding: .6rem 2rem;

    border-radius: .7rem;
    font-size: 1.1rem;
    font-weight: 800;

    transition: .2s ease-out;
}
#confirmYes {
    background: #CFF500;
    color: #000;
    margin-left: .8rem;
}
#confirmNo {
    color: #8b8b8b;
}

#confirmYes:hover {
    filter: brightness(.8);
}
#confirmNo:hover {
    color: #000;
}





.my-location {
    transition: .1s ease-out;
}
.my-location img {
    transform: translate(-1rem, -1rem);
    height: 3rem;
    width: 3rem;
}
.my-location-popup {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #000;
}