.addToHome {
    width: 80%;
    height: 200px;
    border-radius: 3px;
    display: none;
    background: white;
    position: fixed;
    bottom: 50px;
    margin-left: 10%;
    z-index: 10000;
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.addToHomeInner {
    width: 100%;
    height:100%;
    position: relative;
}
.addToHomeInner:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 30px;
    left: 0;
    bottom:-15px;
    background: white;
    margin-left: calc(50% - 15px);
    transform: rotate(45deg);
    -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}

.addToHome .appIcon {
    border-radius: 3px;
    margin-left: calc(50% - 30px);
    margin-top: 20px;
}

.addToHome p {
    width: 100%;
    padding: 0px 12px;
    line-height: 25px;
    font-size: 12px;
}

.addToHome strong {
    color: #d93132;
}
.addToHome .title {
    font-size: 16px;
}