

.ap-input-icon svg {
    fill: white;
}

::placeholder {
    color: #979797;
    opacity: 1; /* Firefox */
  }
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #f51d46;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

.container {
    max-width: 375px;
}


.element::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0;
    height: 0;
}

.element::-webkit-scrollbar {
    -webkit-appearance: none;
}

#parent{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#child{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}

body {
    margin: 0px;
    padding: 0px;
    background-color: black;
    /* color: white; */
    -webkit-overflow-scrolling: touch;
}

#main {
    background-color: black;
    height: 100vh;
    width: 100vw;
}

#clock {
    margin-top: 15px;
    height: auto;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#image-container {
    width: 100%;
    max-height: 200px;
}

img {
    border-radius: 12px;
}

#day {
    margin-top: 30px;
    height: auto;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#date {
    position: relative;
    margin-top: 30px;
    height: auto;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#location {
    position: relative;
    height: auto;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#nextPrayerName {
    position: relative;
    margin-top: 10px;
    height: auto;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#nextPrayerTime {
    position: relative;
    margin-top: -15px;
    margin-bottom: -15px;
    height: auto;
    color: yellow;
    font-size: 50pt;
    font-weight: 200;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#timeRemaining {
    position: relative;
    height: auto;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

table {
    position: relative;
    color: white;
    margin-top: 10px;
    width: 100%;
    border: 5px;
    vertical-align: middle;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif

    
}

.prayTime {
    text-align: right;
}

td{
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: middle;
    border-color: white;

}

.active {
    background-color: rgb(19, 19, 19);
    border-radius: 12px;
    padding: 5px;
}


/* card */
.flip-card {
    perspective: 1000px;
    width: 100%;
    height: 100%;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .flip-card-front {
            background-color: #bbb;
            color: black;
        }

        .flip-card-back {
            background-color: #2980b9;
            transform: rotateY(180deg);
        }



.lainnya {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.btn.primary {
    background-color: #f96400 ;
    color: #ffffff;
}
.btn.secondary {
    background-color: transparent ;
    border: 2px white;
    color: #ffffff;
}

.input {
    z-index: 1000 !important;
}