@import url("https://fonts.googleapis.com/css?family=Nunito:700");

* {
    box-sizing: border-box;
}

html,
body {
    font-family: "Nunito", Helvetica;
    line-height: 1.5;
}

body {
    margin: 0;
}

section {
    position: fixed;
    display: block;
    align-items: center;
    height: 100%;
    width: 100%;
    background: #ffffff;
}

.p-3 {
    padding: 0px 5px!important;
}

.col-3 {
    width: 33.3333333333%;
}

.curve {
    position: relative;
    width: 840px;
    height: 200%;
    float: right;
    top: -110px;
    right: -25px;
}

.bg-wave {
    width: 100%;
    height: 100%;
    top: -130px;
    right: 0px;
    transform: rotate(360deg);
    transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.tiny-ball {
    position: fixed;
    bottom: 30px;
    right: 200px;
    
    background-repeat: no-repeat;
    background-size: 100%;
    width: 80px;
    height: 80px;
    z-index: 31;
    transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
    float: right;
}

.logo-bapenda-putih {
    position: absolute;
    top: 13%;
    right: 185px;

    background-repeat: no-repeat;
    background-size: 100%;
    width: 320px;
    height: 320px;
    z-index: 31;
    transition: all .5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.launcher-wrapper {
    position: absolute;
    padding: 0 20px;
    width: 440px;
    top: 390px;
    left: 50px;
    z-index: 7;
}

.launcher-wrapper h1, .launcher-wrapper h4 {
    margin: revert;
    line-height: revert;
    font-size: inherit;
}

.launcher-wrapper h1 {
    font-size: 30px;
}

.launcher-wrapper h4 {
    font-style: italic;
    color: #7f7f7f;
}

.launcher-button {
    display: flex;
    flex-direction: row;
    margin: 35px -5px 0px;
}

a.btn {
    display: block;
    padding: 20px 25px;
    border-top: solid 1px #bebebe;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    text-transform: capitalize;
    box-shadow: #949494 0px 7px 5px -5px;
}

.btn-primary {
    background-image: linear-gradient(90deg, #6c38cd, #7197d2);
}

.btn-warning {
    background-image: linear-gradient(90deg, #fe7648, #fe5353);
}

.launcher-app-preview {
    position: absolute;
    width: 400px;
    top: 100px;
    left: 55px;
}

.bottom-navigation-wrapper {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: solid 1px #d6d6d6;
}

.bottom-navigation-wrapper > ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
}

.bottom-navigation-wrapper > ul > li {
  width: 33.33333333333%;
  text-align: center;
}

.bottom-navigation-wrapper > ul > li > a {
  padding: 15px 0px;
  display: block;
  text-decoration: none;
  color: #575757;
}

.bottom-navigation-wrapper > ul > li.active > a {
  color: #344777;
  font-weight: bold;
}

.bottom-navigation-wrapper > ul > li > a:hover {
  color: #000;
}

.modal-masking .modal-content {
    position: fixed;
    border: none;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
    background-color: #fff0;
}
  
.spinner {
    height: 60px;
    width: 60px;
    -webkit-animation: rotation 0.6s infinite linear;
    -moz-animation: rotation 0.6s infinite linear;
    -o-animation: rotation 0.6s infinite linear;
    animation: rotation 0.6s infinite linear;
    border-left: 6px solid rgb(190 190 190);
    border-right: 6px solid rgb(190 190 190);
    border-bottom: 6px solid rgb(190 190 190);
    border-top: 6px solid rgb(52 71 119);
    border-radius: 100%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}

@-webkit-keyframes rotation {
    from {
      -webkit-transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(359deg);
    }
}
@-moz-keyframes rotation {
    from {
      -moz-transform: rotate(0deg);
    }
    to {
      -moz-transform: rotate(359deg);
    }
}
@-o-keyframes rotation {
    from {
      -o-transform: rotate(0deg);
    }
    to {
      -o-transform: rotate(359deg);
    }
}
@keyframes rotation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
}

.modal-dialog {
    max-width: 100%!important;
}

/*VERSI MOBILE*/
@media screen and (max-width: 798px) {
    section {
        overflow: auto;
    }

    .curve {
        width: 100%;
        height: 215px;
        top: 0px;
        left: 0px;
        position: absolute;
        border-radius: 0px 0px 225px 0px;
        background-image: linear-gradient(131deg, #6c3dcd, #7095d1);
        box-shadow: #bab4b4 0px 5px 10px 2px;
        z-index: 5;
    }

    .bg-wave {
        top: -44px;
        right: -290px;
        transform: rotate(356deg);
        display: none;
    }

    .logo-bapenda-putih {
        top: 25px;
        left: 10px;
        width: 165px;
        height: 165px;
    }

    .tiny-ball {
        position: absolute;
        top: 25px;
        right: 30px;
        width: 35px;
        height: 35px;
    }

    .launcher-wrapper {
        position: relative;
        padding: 0 20px;
        width: 100%;
        top: 275px;
        left: 0px;
        z-index: 7;
    }

    a.btn {
        padding: 20px 15px;
        font-size: 14px;
    }

    .white-elipse {
        top: 215px;
        left: -20px;
        background: #fff;
        position: absolute;
        width: 200px;
        height: 305px;
        border-radius: 50% 0px;
        z-index: 6;
        box-shadow: #bdb9c2 0px 20px 10px -12px inset;
    }

    .mask-elipse {
        top: 215px;
        left: -100px;
        background: #fff;
        background-image: linear-gradient(131deg, #6d53ce, #6d60ce);
        position: absolute;
        width: 250px;
        height: 120px;
        z-index: 5;
    }

    .mask-elipse-shadow {
        top: 300px;
        left: 150px;
        background: #fff;
        position: absolute;
        width: 140px;
        height: 93px;
        z-index: 6;
        box-shadow: #bab4b4 0px 17px 10px -10px inset;
        display: none;
    }

    .launcher-app-preview {
        position: relative;
        width: 80%;
        top: 330px;
        left: 0px;
        margin: auto;
        padding-bottom: 50px;
    }
}