#googleMapResult {
    width: 100vw;
    height: 100vh;
}

.navbar {
    padding: 15px 15px; 
}

.navbar img {
    height: 60px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

#totalWrap {
    margin-top: -100vh;
    position: absolute;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.5) -80%, rgba(0,0,0,0.9)100%);
    width: 100vw;
    height: 100vh;
    opacity: 1;
}

#loginBoxWrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #10101B;
    width: 45vw;
    height: fit-content;
    padding-bottom: 30px;
    border-radius: 20px;
    box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 1;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
}

#settingsTitle {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 20px;
}

#timerSettings {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#noTimer {
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 58px;
    padding-right: 58px;
    border-radius: 5px 0 0 5px;
    margin-right: -1px;
    border: 5px solid #1c2239;
    border-right: 0;
    background-color: #1c2239;
    cursor: pointer;
}

#timeLimit {
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 58px;
    padding-right: 58px;
    margin-left: -1px;
    border-radius: 0 5px 5px 0;
    border: 5px solid #1c2239;
    border-left: none;
    background-color: #10101B;
    cursor: pointer;
}

#timerSliderContainer {
    display: flex;
    flex-direction: column;
    width: 387px;
    margin: 0 auto;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
}

#sliderValue {
    margin-bottom: 15px;
}

#challengeAFriend {
    width: 387px;
    font-family: 'Poppins';
    font-size: 18px;
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: #1c2239;
    border-radius: 5px 5px 5px 5px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    margin-bottom: 20px;
}

#challengeLinkBox {
    display: flex;
    justify-content: center;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s;
}

#challengeTextContainer {
    position: relative;
}

#challengeLink {
    width: 338px;
    text-align: left;
    font-family: 'Poppins';
    font-size: 18px;
    padding: 5px;
    height: 40px;
    margin-bottom: 30px;
    border: 1px solid #1c2239;
    background-color: #ffffff;
    color: rgb(145, 145, 145);
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

#fadeOut {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 5px 5px 0px;
    width: 150px;
    height: 40px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

#copyButton {
    background-color: var(--accent);
    cursor: pointer;
    width: 38.5px;
    height: 38.5px;
    border-radius: 5px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.copyButtonIcon {
    position: absolute;
    width: 20px;
    transition: transform 0.2s ease-in-out;
}

#tickIcon {
    transform: scale(0);
    transition: transform 0.2s ease-in-out;
    filter: invert(100%);
}

#playButton {
    color: white;
    background-color: var(--accent);
    font-family: 'Poppins';
    font-size: 25px;
    border-radius: 1000px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
}

#rewardedAdContent {
    display: none;
    opacity: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

#rewardedContentTitle {
    font-size: 23px;
}

#rewardedContentSubtitle {
    margin: 0 auto;
    margin-top: 20px;
    width: 500px;
}

#buttonsWrap {
    display: flex;
    margin: 0 auto;
    margin-top: 20px;
}

#advertButton {
    background-color: var(--accent);
    padding-top: 5px;
    padding-bottom: 5px;
    width: 200px;
    font-size: 23px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

#subscribeButton {
    background-color: var(--accent);
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    font-size: 23px;
    width: 200px;
    margin-left: 10px;
    cursor: pointer;
}

@keyframes slideOutLeft {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
}
  
@keyframes slideInRight {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}
  
.slide-out-left {
    animation: slideOutLeft 0.25s forwards;
}
  
.slide-in-right {
    animation: slideInRight 0.5s forwards;
}

@media (max-width: 20em),
screen and (orientation: portrait) {
    #loginBoxWrap {
        width: 90vw;
    }

    #noTimer {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    #timeLimit {
        padding-left: 30px;
        padding-right: 30px;
    }

    #timerSliderContainer {
        width: 250px;
    }

    #challengeAFriend {
        width: 275px;
    }

    #challengeLink {
        width: 228px;
    }
}
  