@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,500;0,600;0,800;1,200;1,400;1,600&display=swap');

* {
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}
  
body {
    margin: 0px;
    font-size: 14px;
    max-width: 500px;
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 15px 0;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.input {
    all: unset;
    padding: 15px;
    border-radius: 15px;
}

.underline-text-href {
    text-decoration: underline;
}

.main-page {
    height: 100vh;
    flex-direction: column;
    display: flex;
    background: url('../src/grid\ 2.png');
    background-color: #31333C;
}

.main-page--title {
    position: relative;
    width: 100%;
    padding: 20px;
    text-align: center;
    margin-top: 25px;

}

.main-page--title > a {
    position: absolute;
    left: 20px;

}

.main-page--title > span {
    color: #FDFDFD;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 21.488px;
    letter-spacing: -0.13px;
    text-transform: uppercase;
}


.main-page--map-preview {
    border: 12px solid #292B30;
    background: #292B30;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 34px 10px 0 10px;
    width: 95%;
    border-radius: 10px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);


}

.main-page--map-preview-cont {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    

}

.main-page--map-preview-cont--magnifier {
    padding: 16px;
    border-radius: 4px;
    background: rgba(41, 43, 48, 0.40);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 2vh;
    right: 10vw;
}

.main-page--map-preview--button {
    margin-top: 32px;
    display: flex;
    border-radius: 4px;
    background: var(--bg-23-gradients-light-blue-blue, linear-gradient(103deg, #38FEFF 8.33%, #7A95F8 91.7%));
    display: inline-flex;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.main-page--map-preview--button > a {
    margin-left: 8px;
    color: #31333C;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: 21.488px;
    letter-spacing: -0.065px;
    text-transform: uppercase;

}

.main-page--txt {
    margin-left: 14px;
    display: flex;
    margin-top: 38px;
    margin-bottom: 26px;
    position: fixed;
    bottom: 0;
}

.main-page--txt--first {
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 14px */
    letter-spacing: 0.25px;
    text-transform: uppercase;
        
}

.main-page--txt--second {
    display: flex;
    align-items: flex-end;
    color: #FFF;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 14px */
    letter-spacing: 0.25px;
    text-transform: uppercase;
    margin-left: 8px;
}

.map-viewer {
    width: 100%;
    height: 50vh;
    border-radius: 5px;
    overflow: scroll;
}
.map-viewer > img {
    height: 100%;
}

::-webkit-scrollbar {
    width: 0;
}

.bt-zoom-cont {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
}
.zoom-bt {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    margin: 10px;
    cursor: pointer;
}
.zoom-bt > img {
    width: 30px;
}