#divSyncAPP .dialogContent, #sync-app-wrapper{
    background-color: var(--aui-pale-background) !important;
    box-sizing: border-box;
    text-align: center;
}

.app-header {
    font-weight: 100;
    color: var(--main-color)!important;
    font-size: 32px!important; 
}

.app-text {
    color: var(--main-color)!important;
    font-size: var(--font-size-20)!important;
}

.phone{
    width: 274px;
    height: 562px;
    margin: 40px auto 10px auto;
    background-color: #FFFFFF;
    border-radius: 50px;
    box-shadow: 5px 7px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    outline: 6px solid #333333;
}

.phone[device="ANDROID"]{
    border-radius: 10px;
    /* height: 540px; */
    width: 264px;
}

.phone-image{
    position: absolute;
    width: 260px;
    height: 532px;
    left: 7px;
    top: 5px;
    border-radius: 50px;
    overflow: hidden;
}

.phone[device="ANDROID"] .phone-image{
    left: 2px;
    border-radius: 0px;
}

.phone-image img{
    width: 260px;
    height: 532px;
    transition: all 1s ease;
    animation-name: phone-image-tween;
    animation-duration: 0.3s;
}

@keyframes phone-image-tween {
    from { opacity: 0.4; transform: scale(0.6);}
    to { opacity: 1; transform: scale(1);}
}

.phone:after {
    content: "";
    width: 114px;
    height: 5px;
    background-color: #333333;
    border-radius: 4px;
    position: absolute;
    bottom: 13px;
    left: calc(50% - 57px);
}

.phone[device="ANDROID"]:after{
    display: none;
}

.phone-toggle-container {
    display: flex;
    width: 200px;
    margin: auto;
    justify-content: space-around;
}

.phone-toggle{
    text-align: center;
    color: var(--main-color);
    font-size: 30px;
    margin-top: 15px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.phone-select {
    cursor: default;
}

.phone-toggle:focus, .phone-toggle:hover, .phone-select{
    color: var(--theme-color);
}

.app-store-links {
    width: 363px;
    height: 54px;
    margin: 30px auto auto auto;
    display: flex;
    justify-content: space-between;
}

.app-store-link {
    width: auto;
    height: 54px;
}

#appbanner{
    padding: 12px 38px 12px 12px;
    background-color: #695184;
    color: #FFFFFF;
    text-align: left;
    box-sizing:border-box;
    font-size: var(--font-size-12);
}

.appbanner-button {
    display: inline-block;
    color: #fff !important;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 22px;
    border: 2px solid #FFFFFF;
    margin-top: 6px;
    background-color: #695184;
    cursor:pointer;
}

.appbanner-button:hover, .appbanner-button:focus {
    color: #695184!important;;
    background-color: #FFFFFF;
}

.aui-appbanner{
    position:absolute;
    top:0;
    left:0;
    width: 100%;
    height:84px;
}

.appbanner-content {
    position: relative;
    padding-left: 62px;
}

.appbanner-icon {
    width: 50px;
    height: 50px;
    background-image: url(../images/svgs/smarthub_icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.ui-appbanner{
    position: relative;
    max-width: var(--max-width);
    margin: auto;
    height: 74px;
    padding: 12px 38px 12px 12px;
}

.appbanner-close {
    width: 24px;
    height: 24px;
    position: absolute;
	background-image: url(../images/svgs/white-close-cutout.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    top: 8px;
    right: 8px;
	cursor: pointer;
}

.appbanner-page-top-margin{
    margin-top:74px;
}

#installappcontainer{
    margin: 10px auto;
}

@media only screen and (min-device-width: 768px){
    .appbanner-content {
        margin: auto;
        max-width: 260px;
    }
}