
/* Navbar section */
.con{
    width: 100%;
    padding-left: 5%;
}

.navBar {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;  
}

.navBar div.logo {
    float: left;
    /*width: auto;*/
    /*height: auto;*/
    /* padding-left: 3rem; */
}

.img-logo{
    float:left;
    margin-top : -15px;
}

.navBar div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.navBar div.logo a:hover {
    color: #E52128;
}

.navBar div.main_list {
    height: 65px;
    float: right;
}

.navBar div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navBar div.main_list ul li {
    width: auto;
    height: 65px;
    padding-right: 15px;
}

.navBar div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    text-shadow: 1px 1px 4px #004aad, 0 0 5px #004aad;
    /* text-shadow: 1px 1px 2px #031b3a, 0 0 25px #083a7c, 0 0 5px #004aad; */
    width: 10px;
    font-size: 16px;
    padding: 5px 10px;
}

.navBar div.main_list ul li a:hover {
    color: #ffff;
    background-color: #033e8b;
    border-radius: 15px;
    box-shadow: 2px 2px 5px #06336e;
}

.navTrigger {
    display: none;
}

.navBar {
    padding-bottom: 0px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


@media screen and (max-width:460px) {

    .con {
        margin-top: -5px;
    }
    
    .navTrigger {
        display: block;
    }
    
    .img-logo{
        width: 80%;
        margin: -5;
    }
    
    .logo{
        padding-top: 0;
        left: 0;
    }

    .navBar div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .navBar div.show_list {
        height: auto;
        display: none;
    }

    .navBar div.main_list ul {
        flex-direction: column;
        width: 100%;
        border-radius: 15px;
        opacity: 80%;
        height: 40vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #004aad;
        /*same background color of navbar*/
        background-position: center bottom;
    }
    .navBar div.main_list ul li {
        width: 100%;
        text-align: right;
    }
    .navBar div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 16px;
    }
    .navBar div.media_button {
        display: block;
    }
}

/* Animation */
.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: 10px;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

/*.navBar div.main_list ul {*/
/*  cursor: pointer;*/
/*  margin-top:30px;*/
/*  bottom: 0;*/
/*}*/

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    box-shadow: 1px 1px 4px #004aad, 0 0 5px #004aad;

}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    /* background:linear-gradient(180deg, rgba(0,74,173,1) 35%, rgba(255, 255, 255, 0) 100%); */
    background-color: rgba(0,74,173,0.5);
    height:70px;
    width: 95%;
    left: 2%;
    border-radius:  0 0 15px 15px;
}

.affixlogo {
    padding: 0;
}

@media all and (max-width:900px){
    .myP {
        padding:2%;
        font-size: 14px;
    }
}
/* /navbar section */


body{
    font-family: 'Poppins', sans-serif;
}

.title-desc{
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    color: #106EB1;
}

.desc{
    font-size:16px;
}

.carousel-desktop{
    display: block;
}

.carousel-mobile{
    display: none;
}

@media all and (max-width:900px){
    .carousel-desktop{
        display: none;
    }

    .carousel-mobile{
        display: block;
    }

}


.btn-utama{
    background-color: #004aad;
    box-shadow: 2px 2px 4px hsl(215, 31%, 28%) ;
    border-radius:15px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 8px;
}

.btn-success{
    background-color: #0a8b60;
    box-shadow: 2px 2px 4px hsl(215, 31%, 28%) ;
    border-radius:15px;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 8px;
}

.logo-spin{
    position: absolute;
    top:12%;
    left: 15%;
    width: 80%;
}

.spinBtn{
    /* position: absolute;
    top:40%;
    left:42%; */
    background-color: #004aad;
    color: white;
    /* font-weight: bold; */
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    letter-spacing: 0.025rem;
    border-radius: 100px;
    text-align: center;
    border-color: #06336e;
    text-decoration: none;
    display: inline-block;
}

.qty_spin{
    color: #ffd753;
}

.logo-menu{
    width:50;
}

.modal-content{
    background: rgba(154, 195, 221, 1);
    color: #106EB1;
}

.modal-header, .modal-footer{
    border:none;
}

.btn-oke{
    background-color: #106EB1;
    border-radius: 25px;
    color:#fff;
}

.btn-oke:hover{
    background-color: #0c578b;
    box-shadow: 2px 2px 10px #06336e;
    color:#fff;
}

.logo-produk{
    width:100px;
}


.info{
    padding-top: 7%;
    margin-bottom: 5%;
    /* background: rgb(60,142,194);
    background: linear-gradient(180deg, rgba(60,142,194,1) 6%, rgba(146,198,232,1) 22%, rgba(255,255,255,1) 63%); */
}

.icon-langkah{
    box-shadow : 2px 2px 4px rgba(56, 59, 61, 0.562);
    border-radius: 100px;
    margin: 0 10px 10px 10px;
    width: 70px;
    height: 70px;
    padding: 0;
    background-color: #FFFF;
}

.icon-langkah:hover{
    transform: translate(0, -15px);
}

.reward{
    padding: 5%;
    margin: 0 10% 10% 10%;
    border-radius: 25px;
    background: rgba(154, 195, 221, 0.562);
}

.info-hadiah{
    font-family: 'Fredoka', sans-serif;
    color: #106EB1;
    float: right;
}

.card-img-top:hover{
width: 200px;
transform: translate(-10px, -10px);
}

.CTA{
    /* height: 1080px; */
}

.img-susu{
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* .lucky-spin .desc{
    margin-right: 20%;
} */

.klaim .desc{
    font-size:12px;
}

.btn-cta:link, .btn-cta:visited {
    background-color: #106EB1;
    color: white;
    /* font-weight: bold; */
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 12px;
    letter-spacing: 0.025rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    /* text-transform: uppercase; */
    display: inline-block;
  }

  .btn-cta:hover, .btn-cta:active, .btn-edit-data:hover {
    background-color: #78CBE6;
    color: #106EB1;
  }

  .btn-klaim:link, .btn-klaim:visited {
    background-color: #78CBE6;
    color: #106EB1;
    /* font-weight: bold; */
    /*margin-top: 1.5rem;*/
    padding: 0.25rem 0.5rem;
    font-size: 10px;
    font-weight:bold;
    letter-spacing: 0.025rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    /* text-transform: uppercase; */
    display: inline-block;
  }

  .btn-klaim:hover, .btn-klaim:active {
    background-color: #0c588f;
    color: #78CBE6;
  }

  .koin{
    background-color: #78CBE6;
    border-radius: 10px;
    text-decoration: none;
    float: right;
    color: #004aad;
  }

  .poin{
    /* background-color: #3C8EC2; */
    /* background: linear-gradient(176deg, #3C8EC2 30%, rgba(255,255,255,1) 70%, rgba(255,255,255,1) 100%); */
    
    width: 100%;
  }

  .referal{
    border: block;
    text-align: center;
    /* padding: 10px; */
    color: #106EB1;
    border-radius: 15px;
  }

  .referal .title-desc{
    text-align: start;
    /* font-size: 16px; */
  }

  .content-poin{
    /* position: absolute; */
    /* background-color: rgb(16,110,177); */
    background-color: #106EB1;
    opacity: 1;
    background-image: radial-gradient(#0561a3 2px, #106EB1 2px);
    background-size: 40px 40px;    
    box-shadow: 2px 2px 4px #06336e;
    color: #fff;
    border-radius: 25px;
    width: 100%;
    /* width: 80%; */
    margin: 20px;
    padding: 5%;  
    padding-top: 30px;
  }

  .content-poin p, .content-poin span{
    /* font-size: 2vw; */
    font-size: max(1.5vw, 12px);
  }

  @media all and (max-width:336px){
  .content-poin p, .content-poin span{
    /* font-size: 2vw; */
    font-size: max(1vw, 10px);
  }
  }

  .klaim-berhasil{
    color: #0a8b60;
  }
  
  .klaim-gagal{
    color: #a80e0e;
  }

  .klaim-idle{
    color: #6e6b6b;
  }

  .btn-edit-data{
    position: absolute;
    right:40px;
    background-color: #106EB1;
    border-radius: 15px;
    width: 80px;
    color: #fff;
  }

  .reward-button{
    background-color: #004aad;
    color: #fff;
    border-radius: 15px;
    margin: 0 30px 0 30px;
    padding: 5px;
    font-size: 12px;
  }

  .card-reward{
    width: 13rem;
    padding: 0.5rem;
    margin:10px;
    background: none;
    border: none;
    border-radius: 0;
  }

  .card-title{
    font-family: 'Fredoka', sans-serif;
    color: #106EB1;
  }

  @media all and (max-width:900px){
    .reward-button{
        margin: 0 5px 0 5px;
        padding: 5px;
        font-size: 10px;
    }
  }

  .auto{
    display:block;
    /* border: 1px solid red; */
    padding:5px;
    margin-top:5px;
    width:100%;
    height:700px;
    overflow:auto;
   }
    /*
   *  STYLE 2
   */
  
  #style-2::-webkit-scrollbar-track
  {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
      border-radius: 10px;
      background-color: #F5F5F5;
  }
  
  #style-2::-webkit-scrollbar
  {
      width: 12px;
      border-radius: 10px;
      background-color: #F5F5F5;
  }
  
  #style-2::-webkit-scrollbar-thumb
  {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(108, 149, 175, 0.3);
      background-color: rgba(154, 195, 221, .562);
  }

  .CTA{
    padding-top: 100px;
  }

  .social-media{
    padding: 10px 20px 0 20px;
    margin: 5px 0 5px 0;
  }

  .btn-sosmed{
    /* background-color: #106EB1; */
    color: white;
    padding: .2rem .5rem;
    font-size: 10px;
    letter-spacing: 0.025rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    /* text-transform: uppercase; */
    display: inline-block;
  }

  .dynamic_field{
    background: none;
    border: #004aad;
  }
  
  .header.spin{
    background-color: #004aad;
    color: #fff;
    border-radius: 15px;
    box-shadow: 2px 2px 10px #4f7186;
    margin-bottom: 20px;
   }

  .text-footer{
    color: #fff;
    font-size: 10px;
  }

  .footer{
    margin-top: -10px;
    background: rgb(16,110,177);
    background: linear-gradient(0deg, rgba(16,110,177,1) 33%, rgba(114,170,209,1) 77%, rgba(255,255,255,0) 100%);
  }
