  /* open-sans-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/Open_Sans/open-sans-v35-latin/open-sans-v35-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* open-sans-italic - latin */
  @font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../assets/fonts/Open_Sans/open-sans-v35-latin/open-sans-v35-latin-italic.woff2') format('woff2');
  }

  /* open-sans-600 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/Open_Sans/open-sans-v35-latin/open-sans-v35-latin-600.woff2') format('woff2');
  }
  
  /* comic-neue-700italic - latin */
  @font-face {
    font-display: swap;
    font-family: 'Comic Neue';
    font-style: italic;
    font-weight: 700;
    src: url('../assets/fonts/Comic/comic-neue-v8-latin/comic-neue-v8-latin-700italic.woff2') format('woff2');
  }

* {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans';
    box-sizing: border-box;
}

.body {
    background-color: #961917;
    /*background-color: green;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #FFFFFF;

    /* biar posisi container ditengah */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.title img {
    width: 100px; 
    height: 100px; 
    /* margin-top: 14vh; */
}

.title p {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    margin-top: 1.3vh;
}

form input {
    color: #FFFFFF;
}

form input::placeholder {
    color: rgba(255, 255, 255,0.5);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

/* form input:focus { */
    /* outline: none; */
    /* text-align: center; */
/* } */

form #nama:focus, form #phoneNum:focus, form #email:focus {
  outline: none;
}

form #nama, #phoneNum, #email {
    width: 255px;
    height: 25px;
    border: none;
    background-color: #961917;
    border-bottom: 2px solid #FFFFFF;
    text-align: center;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
}

input:focus::-moz-placeholder {
 opacity: 0;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
}

input:focus:-moz-placeholder {
 opacity: 0;
}


form #nama {
    margin-top: 1vh;
}

form #phoneNum {
    margin-top: 3vh;
}

form #email {
    margin-top: 3vh;
    /* margin-bottom: 20px; */
}

.lang {
  text-decoration: none;
  font-weight: lighter;
  color: rgb(206, 206, 206);
  padding: 10px;
}

.langChosen {
  text-decoration: none;
  font-weight: bold;
  color: #FFFFFF;
  padding: 10px;
}

.vl {
  border-left: 1px solid white;
  height: 10px;
}

.flex {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 25px;
}

.w-100 {
  width: 100%;
}

.checkTnCPrivacyContainer {
    width: 292px;
    margin: 3vh auto 3vh;
    display: flex;
    flex-direction: row;
    text-align: left;
}

.checkTnCPrivacyContainer #checkTncPrivacy {
    width: 20px;
    height: 20px;

    /* background-color: wheat; */
}

.checkTnCPrivacyContainer #labelTnCPrivacy {
    color: #FFFFFF; 
    font-weight: 400;
    width: 255px;
    font-size: 12px;
    margin-left: 15px;
}

#labelTnCPrivacy a, i {
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
}

#labelTnCPrivacy a:visited {
    color: #FFFFFF;
}

#btnSubmit {
    width: 220px;
    height: 40px;
    border-radius: 75px;
    color: #961917;
	background-color: white;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}

#alert {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 300px; 
    /* height: 70px; */
    font-size: 14px;
}

/* REMOVE ARROWS/SPINNERS */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;

    width: 10%;
    height: 10%;

    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    margin: auto;
    padding: 20px 5px;
  }

  .modal-content .titleModal {
    color: #333333;
    display: flex; 
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 10px;

    font-size: 20px;
    font-weight: 800;

    /* background-color: wheat;  */
  }

  .modal-content button {
    width: 150px;
    margin: 15px auto 0px;
    border: none;
    border-radius: 15px;
    background-color: #961917;
    color: #FFFFFF;
    padding: 10px 0;

    font-size: 12px;
    font-weight: 400;
  }

  .modal-content iframe {
    height: 50vh;
  }
  
  /* The Close Button */
  .close {
    color: #961917;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    /* float: right; */
    font-size: 34px;
    font-weight: bold;
    margin-top: -15px;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }





  .modal2 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 5; /* Sit on top */
    padding-top: 15px;
    /* left: 0; */
    /* top: 0; */
    /* width: 80%; */
    /* height: 20%; */
    width: 300px;
    height: 160px;
    /* background-color: rgb(0,0,0); Fallback color */
    /* background-color: rgba(0,0,0,0.4); Black w/ opacity */

    background-color: white;
    border-radius: 15px;
    border: 1px solid rgba(2, 2, 2, 0.5);

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  /* Modal Content */
  .modal-content2 {
    /* background-color: #fefefe; */
    /* background-color: wheat; */
    /* margin: 0 auto; */
    padding: 20px;
    /* border: 1px solid #888; */
    text-align: center;
    margin-bottom: 10px;
  }

  .modal-content2 img{
    position: absolute; 
    left: 0; 
    right: 0; 
    margin: auto; 
    top: -70px;
  }
  
  /* The Close Button */
  .close2 {
    color: #EE3942;
    border: 1px solid #EE3942; 
    /* float: right; */
    float: initial;
    font-weight: bold;
    /* width: 100px; */
    margin: 0 auto;
    width: 85%;
    padding: 10px;
    font-size: 12px;
    border-radius: 75px;
  }
  
  .close2:hover,
  .close2:focus {
    text-decoration: none;
    cursor: pointer;
  }

  .bgPopup {
      background-color: #000000;
      opacity: 35%;
      width: 100%;
      height: 200vh;
      z-index: 3;
      position: fixed;
      display: none;
  }