* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    font-style: normal;
}

.parent-modal-container{
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: 999999;
    background-color: #03424f7d;
}

/*      Commom classes   */

.m-auto {
    margin: auto;
}
.mt-auto{
  margin-top: auto !important;
}

.m-width {
    max-width: 85rem;
}

.relative{
    position: relative;
}

.pointer{
    cursor: pointer;
}

.fixed-bottom {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #fff;
    left: 0;
    right: 0;
    z-index: 11;
}

.fixed-header {
    /* position: fixed; */
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
}

/*      Authorization screen ( first screen ) */

.authorization-main-div {
    padding: 0 2rem;
}

.company-logo {
    padding: 1rem 0;
    margin: auto;
}

.company-logo>img {
    width: 10rem;
}

.content {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    padding: 1rem 0;
}

.left-content {
    padding-top: 3rem;
}

.left-content h1 {
    color: #33475B;
    font-size: 55px;
    font-weight: 700;
    line-height: 78.02px;
    margin-bottom: 1rem;
}

.left-content p {
    color: #33475B;
    font-size: 25px;
    font-weight: 400;
    line-height: 40px;
}

.right-side-content{
    display: flex;
    justify-content: end;
}

.right-side-content img {
    width: 30rem;
}

.authorization-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(263.43deg, rgba(10, 160, 191, 0.2) 0.37%, rgba(0, 0, 0, 0) 48.78%), linear-gradient(96.51deg, #0AA0BF 2.85%, rgba(6, 179, 75, 0.2) 223.16%);
    border: 2px solid #7FD1DE;
    box-shadow: 0px 3px 10px 5px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    padding: 1rem 2rem;
}

.authorization-main-container div:nth-child(2) {
    padding: 2rem 5rem;
    margin-bottom: 3rem;
    margin-top: 5px;
    box-shadow: 0px 3px 10px 8px rgba(0, 0, 0, 0.06);
}

.authorization-container>img {
    width: 2rem;
}

.authorization-container h5 {
    font-size: 25px;
    color: #fff;
}

.description {
    font-size: 20px;
    margin-bottom: 1rem;
}

.authorize-btn {
    background: #FF725E;
    padding: 12px 45px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border: none;
    text-decoration: none;
}

/*      Business Id Screen (Second Screen)  */

.business-id-main-div {
    max-width: 50rem;
    max-height: 24rem;
    overflow: auto;
}

.header {
    padding: 7px 2rem;
    display: flex;
    align-items: center;
    background: linear-gradient(263.43deg, rgba(10, 160, 191, 0.2) 0.37%, rgba(0, 0, 0, 0) 48.78%), linear-gradient(96.51deg, #0AA0BF 2.85%, rgba(6, 179, 75, 0.2) 223.16%);
}

.header span {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.header>img {
    width: 2.4rem;
}

.business-id-txt {
    border-bottom: 2px solid #efeeef;
    padding: 1rem 2rem;
    margin-top: 2.3rem;
}

.business-id-txt p {
    padding-top: 1rem;
    font-size: 25px;
    font-weight: 500;
    color: #222C36;
    margin-bottom: 0rem;
}

.business-id-content {
    padding: 2rem;
    margin-bottom: 4rem;
}

.portal-id-txt {
    color: #516F90;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.waba-id-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 15rem;
}

.waba-id-desc {
    color: #516F90;
    font-size: 20px;
    font-weight: 500;
}

.waba-id-input {
    font-size: 13px;
    width: 15rem;
    padding: 8px;
    background: #F5F8FA;
    border: 1px solid #CBD6E2;
    border-radius: 4px;
    margin-top: 10px;
}

.auth-token-div{
    margin-top: 1.6rem;
}

.submit-btn{
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    background-color: #2C3E50;
    padding: 10px 25px;
    margin-top: 2rem;
}

.footer{
    border-top: 2px solid #f0f0f0;
    padding: 1.3rem 2rem;
} 

.footer > p{
    font-family: 'Montserrat';
    font-style: normal;
    font-size: 21px;

}
.footer > p > a > span{
    color: #5BBBA7;
}

.footer > p > span{
    color: #5BBBA7;
}

.tooltip-div:hover .tooltipspan{
    display: inherit !important;
}

.tooltipspan{
    display: none;
    position: absolute;
    right: -159px;
    color: #fff;
    background: #516F90;
    font-size: 14px;
    padding: 5px;
    border-radius: 6px;
    top: -12px;
    width: 8rem;
}

.tooltipspan>img{
    position: absolute;
    left: -14px;
    top: 15px;
}

.information-icon{
    cursor: pointer;
}

/*      Popup screen     */

.popup-screen-main-div3{
    padding: 2rem;
}

.popup-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem !important;
}

.sticky-header{
    position: sticky;
    top: 0;
}

.close-icon{
    width: 1rem !important;
}

.pop-up-content{
    padding: 2rem;
    background-color: #fff;
}

.pop-up-content p{
    font-size: 20px;
    color: #000;
}

.screenshot{
    margin-top: 1.5rem;
    width: 100%;
    height: 20rem;
}

/*          User Details         */

.business-admin-id{
    margin: 1.7rem 0 1.8rem 2rem;
}

.user-content{
    margin-left: 2rem;
}

.user-table{
    max-width: 40rem;
    border: 1px solid #D0D5D8;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.user-table th{
    font-size: 16px;
    font-weight: 600;
    color: #516F90 !important;
    line-height: 35px;
}

.user-table td{
    font-size: 16px;
    font-weight: 600;
    color: #516F90 !important;
    line-height: 35px;
}

.optin-text{
    font-size: 16px;
    font-weight: 600;
    color: #516F90 !important;
}

.user-table-div{
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 25%);
    align-items: center;
    padding: 15px 0;
}

.selected-user{         /* Use this class on selected user*/
    background-color: #E5F5F8;
}

.border{
    border-bottom: 1px solid #D0D5D8;
}

.phone-number-txt{
    margin-bottom: .6rem !important;
}

.user-1{
    font-size: 16px;
    font-weight: 600;
    color: #516F90;
    line-height: 20px;
}

.space-bottom{
    margin-bottom: 6rem;
}

/*      Successful popup Modal     */

.modal-main-div {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
}

.modal-container {
    width: 31rem;
    /* height: 20rem; */
    display: grid;
    /* grid-template-rows: 66% 1fr;
    background-color: #fff; */
    border-radius: 6px;
    z-index: 999;
    box-shadow: 1px 1px 5px grey;
    background-color: #fff;
}

.install-container {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    background: linear-gradient(263.43deg, rgba(10, 160, 191, 0.2) 0.37%, rgba(0, 0, 0, 0) 48.78%), linear-gradient(96.49deg, #0AA0BF 2.84%, rgba(6, 179, 75, 0.2) 100%);
    border-radius: 6px;
}

.Ballon{
    margin: auto;
    width: 8rem;
}

.install-container.BillingPayment {
    height: 12rem !important;
}

.BillingPay {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    width: 25rem;
}

.btn-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.btn-container p{
    color: #000;
}

.btn-container a{
    color: #fff;
    text-decoration: none;
    background-color: #FF725E;
    padding: 9px 28px;
    border-radius: 4px;
    margin-top: 1.6rem;
}

.form-group{
    margin-bottom: 10px;
}

.navbar-brand{
    text-decoration: none;
}