
.wrapper{
    width: 100%;
    background-color: #e9ecf3;
    min-height: 100vh;
    overflow: hidden;
}


.pageContentHolder{
    width: 90%;
    margin: 0 auto;
    direction: rtl;
    position: relative;
    box-sizing: border-box;
    padding-top:90px;
    padding-bottom: 90px;
    max-width: 500px;
}

.pageContentHeader{
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    
}

.pageContentBody{
    min-height: 400px;
    position: relative;
}

.pageContentHeaderTitle{
    overflow: hidden;
    width: 100%;
    color: var(--darkGrey2);
    font-size: 16px;
    font-weight: 800;
}

.pageContentHeaderTitle::before{
    content: "";
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background-image: url("../assets/appIcon.svg");
    background-color: var(--deepPurple);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.pageContentHeaderText{
    overflow: hidden;
    width: 100%;
    display: block;
    color: var(--darkGrey2);
    font-size: 14px;
    font-weight: 400;
    padding-top: 10px;
}

.pageContentHeaderText a{
    display: inline-block;
    color: #0200FF;
    font-weight: 800;
}

/* main card */
.pageContentBody{
    background: #ffffff;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(17,24,39,.06);
    padding: 14px;
}

/* sections */
.androidSec{
    width: 100%;
    box-sizing: border-box;
}

.androidLogoHolder{
    display: block;
    width: 100%;
    cursor: default;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 16px;
    box-sizing: border-box;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.androidLogoHolder:last-child{
    margin-bottom: 0;
}

.androidLogoHolderTitle{
    font-size: 16px;
    font-weight: 900;
    display: block;
    color: #111827;
    margin-bottom: 12px;
}

.androidLogoHolderText{
    display: block;
    clear: both;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    padding-bottom: 8px;
    line-height: 1.9;
}

.androidLogoHolderText a{
    display: inline;
    color: #2959F4;
    font-weight: 900;
    text-decoration: none;
}

/* store / web app buttons */
.appLogoHolder{
    display: inline-block;
    width: 138px;
    height: 48px;
    vertical-align: top;
    position: relative;
    background-color: #fff;
    border-radius: 14px;
    margin-bottom: 6px;
    margin-left: 10px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: .15s ease;
}

.appLogoHolder:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.appLogoHolder:last-child{
    margin-left: 0;
}

.appLogoHolder img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px 10px;
    box-sizing: border-box;
}

.webAppBtn{
    font-size: 12px;
    text-align: center;
    font-weight: 800;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 46px;
    color: #111827;
}

.webAppBtn span::before{
    content: "";
    height: 14px;
    width: 14px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    background-image: url("../assets/appIcon.svg");
    background-color: var(--deepPurple);
    padding: 6px;
    border-radius: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}



