*{
    box-sizing: border-box;
}
html,body,h1,h2,h3,h4,h5,p{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}

/*QR Code Modal*/
html,body{
    background-color: #f2f2f2;
    width: 100%;
    height: 100%;
}
.qr-modal-background{
    padding-top: 50px;
    text-align: center;
}
.qr-modal{
    width: 600px;
    margin: 0 auto;
    padding-top: 20px;
    background-color: #fff;
}
.qr-title{
    width: 80%;
    background-color: #DEF7FA;
    text-align: center;
    margin: 0 auto;
}
.qr-title h3{
    color: #009CD4;
    font-size: 20px;
    padding: 10px 0;
}
.app-info{
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 20px;
}
.qr-app-img{
    display: block;
    width: 100px;
    margin: 0 auto;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
}
.app-title{
    font-size: 20px;
}
.app-description{
    color: #aaa;
    font-size: 13px;
    padding: 13px 0;
}
.description-text-area{
    display: inline-block;
    max-width: 80%;
    text-align: left;
}
.app-link{
    width: 250px;
    height: 100%;
    margin: 0 auto;
}
.app-link .app-link-btn{
    display: inline-block;
    background-color: #434343;
    color: white;
    width: 40%;
    border-radius: 5px;
    margin-bottom: 40px;
    position: relative;
}
.app-link-btn p{
    font-size: 13px;
    padding-top: 2px;
}
.ios-btn p{
    padding-left: 20px;
}
.android-btn p{
    padding-left: 23px;
}
.app-link-btn img{
    width: 20px;
    height: 20px;
    position:absolute;
    top: 1px;
    left: 18px;
}
.common-app-link{
    display: inline-block;
    background-color: #434343;
    color: white;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 40px;
    position: relative;
}
.common-app-link p{
    font-size: 13px;
    padding-top: 2px;
}
.common-app-link img{
    width: 20px;
    height: 20px;
    position:absolute;
    top: 1px;
    left: 70px;
}
.app-link-ios{
    padding-left: 20px;
}
.app-link-android{
    padding-left: 40px;
}
.qrcode{
    margin-bottom: 60px;
}
.close-btn{
    display: inline-block;
    height: 100%;
    width: 145px;
    text-align: center;
    border: 1px solid #5a5a5a;
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 5px 0;
    position: relative;
}
.close-btn i{
    color: #000;
    font-size: 20px;
    position: absolute;
    top: 8px;
    left: 45px;
}
.close-btn span{
    color: #191919;
    font-size: 15px;
    padding-left: 35px;
}
.description-text{
    table-layout: fixed;
    max-width: 80%;
}
.description-text h3, .description-text p{
    word-wrap: break-word;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .qr-modal{
        width: 90%;
    }
    .qr-title{
        width: 95%;
    }
    .qr-title h3{
        font-size: 1rem;
    }
    .app-title{
        font-size: 1rem;
    }
}
