.add-to-home {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  text-align: center;
  color: #fff;
  padding: 10vh 5vw;
  box-sizing: border-box;
  z-index: 999999999999;
  background-color: rgba(0, 0, 0, 0.75);
}
.addiphone {
  display: none;
}
.addchrome {
  display: none;
}
.addchrome2 {
  display: none;
}
.addfirefox {
  display: none;
}
.add-to-home .browser-preview {
  margin: -45px 0 40px;
  text-decoration: underline;
  opacity: 0.8;
  text-align: right;
}
.add-to-home .logo-name-container {
  background-repeat: no-repeat;
  background-position: center 0;
  padding-top: 130px;
  margin: 0 45px;
  background-size: 120px;
  font-size: 24px;
  margin-top: 15vh;
}
.addiphone .homescreen-text {
  padding-top: 10vh;
  line-height: 1.5;
  font-size: 18px;
}
.addchrome .homescreen-text {
  padding-top: 3vh;
  line-height: 1.5;
  font-size: 18px;
}
.addchrome2 .homescreen-text {
  padding-top: 3vh;
  line-height: 1.5;
  font-size: 18px;
}
.addfirefox .homescreen-text {
  padding-top: 3vh;
  line-height: 1.5;
  font-size: 18px;
}
.addiphone .icon-addToHome {
  vertical-align: text-bottom;
  width: 35px;
  height: 35px;
  display: inline-block;
  background-size: cover;
  background-image: url('./images/mobile-browser-icons.png');
}
.add-to-home .icon-homePointer {
  margin-top: 5vh;
  background: url('./images/mobile-browser-icons.png') no-repeat top left;
  background-position: center -40px;
  width: 100%;
  height: 50px;
  background-size: 40px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: topToBottom;
  animation-name: topToBottom;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

.addchrome2 .icon-homePointer {
    margin-top: -8vh;
    margin-left: 12px;
    background: url(./images/mobile-browser-icons.png) no-repeat top left;
    background-position: right -344px;
    background-size: 40px;
}

.addchrome2 .icon-addToHome {
    vertical-align: text-bottom;
    width: 35px;
    height: 35px;
    display: inline-block;
    background-size: cover;
    background-image: url(./images/mobile-browser-icons.png);
    background-position: center -113px;
}

.addchrome2 .browser-preview {
    margin-top: 55px;
    text-align: center;
}


.addfirefox .icon-homePointer {
    margin-top: -8vh;
    background: url(./images/mobile-browser-icons.png) no-repeat top left;
    background-position: right -344px;
    width: 77%;
    background-size: 40px;
}

.addfirefox .icon-addToHome {
    vertical-align: text-bottom;
    width: 47px;
    height: 27px;
    display: inline-block;
    background-size: cover;
    background-image: url(./images/mobile-browser-icons.png);
    background-position: center 33px;
}

.addfirefox .browser-preview {
    margin-top: 55px;
    text-align: center;
}

.addchrome #button-addtohome {
    background-color: transparent;
    margin: 5vh auto;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}
.addchrome #button-addtohome:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}
.iosmodal-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10600;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    display: none;
}
.iosmodal {
    width: 270px;
    position: fixed;
    z-index: 99999999999999;
    left: 50%;
    margin-left: -135px;
    margin-top: 0;
    top: 35%;
    text-align: center;
    border-radius: 7px;
    color: #000;
}
.iosmodal-inner {
    padding: 15px;
    border-radius: 7px 7px 0 0;
    position: relative;
    background: #e8e8e8;
}
.iosmodal-inner:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}
.iosmodal-title {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.5;
}
.iosmodal-title + .iosmodal-text {
    margin-top: 5px;
}
.iosmodal-buttons {
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.iosmodal-button {
    width: 100%;
    padding: 0 5px;
    height: 44px;
    font-size: 17px;
    line-height: 44px;
    text-align: center;
    color: #007aff;
    background: #e8e8e8;
    display: block;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}
.iosmodal-button:first-child {
    border-radius: 0 0 0 7px;
}
.iosmodal-button:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    width: 1px;
    height: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}
.iosmodal-button.iosmodal-button-bold {
    font-weight: 500;
}
.iosmodal-button:last-child {
    border-radius: 0 0 7px 0;
}
@keyframes topToBottom {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(0, 20px);
  }
}