@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
      font-family: "Arimo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-X: hidden !important;

}
img{
    max-width: 100%;
    width: 100%;
}
#bodyBoxWrap{
    background-color: #242424;
    height: 100vh;
}
.bodyBox{
    background-color: #242424;
    width: 100%;
    margin: 0 auto;
    padding: 34px 20px;
}
.headerArea{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.logoArea img{
        width: 70px;
    margin-right: 10px;
}
.currentDateBox h1{
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}
.currentDateBox #currentDate{
    color: #fff;
    font-size: 14px;
}
.currentDateBox hr{
    border: 1px solid #4e4f4e;
    width: 100%;
    margin: 15px 0px 25px;
}

.step2 h6{
    font-size: 16px;
    color: #e47373;
    line-height: 24px;
    font-weight: 300;
    margin: 0px;
    margin-bottom: 15px;
}
.step2 p{
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin: 0px;
    color: #e4e4e4 !important;
}
.step2 h5{
        font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #e4e4e4 !important;
    margin: 15px 0px 10px;
}
.step3{
    position: relative;
}
.step3 p {
    font-size: 14px;
    color: #e47373;
    line-height: 24px;
    font-weight: 300;
    margin:20px 0px;
}
.footerBtn {
    text-align: center;
}

.footerBtn a{
    display: inline-block;
    color:#fff;
    background: #0d7d0d;
    padding: 14px 70px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}
.appleSupportContent{
    position: relative;
        text-align: center;
}
.modal-content{
    background: transparent;
    padding: 0;
    border: transparent;
}
.poup1{
    position: relative;
    display: inline-block;
    margin: 0 auto;
}
.poup1 img{
    width:  auto;
}
.poup2{
    margin-top: -69px;
}
.poup2 a{
    display: inline-block;
}
.poup2 img, .icon3 img{
    width: auto;
}
.icon3{
    position: absolute;
    top: 28px;
    left: 35px;
}
.icon3 img{
     animation: blinker 1.5s linear infinite;
}
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }


#bodyBoxWrap.hidden, #bodyBoxWrap{
    display: none;
  }

  @media (max-width: 767.98px) { 

#bodyBoxWrap{
    display: block;
  }
}