@font-face {
    font-family: 'samimbold';
    src: url('/fonts/samim_bold.woff') format('woff'),
         url('/fonts/samim_bold.woff2') format('woff2'),
        url('/fonts/samim_bold.eot') format('eot'),
        url('/fonts/samim_bold.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'samimbold';
    background-image:url('/assets/images/background.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/* Make content area fill the entire browser window */
html,
.fullscreen {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Center the content in the browser window */
.container {
  margin: auto;
  text-align: center;
}
.actionbtn{
    width: 70px;
    bottom: 50px;
}
.actionbtn:active {
    transform: translateY(4px);
}
.ios-segmented-control {
  --background: rgba(159,159,159,0.4);
  background: var(--background);
  border-radius: 9px;
  margin: 0;
  padding: 2px;
  border: none;
  outline: none;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

    text-align: center;
    align-self: center;
}

.ios-segmented-control .option {
  position: relative;
  cursor: pointer;
}

.ios-segmented-control .option:hover input:not(:checked) + label span, .ios-segmented-control .option:active input:not(:checked) + label span, .ios-segmented-control .option:focus input:not(:checked) + label span {
  opacity: .2;
}

.ios-segmented-control .option:active input:not(:checked) + label span {
  transform: scale(.95);
}

.ios-segmented-control .option label {
  position: relative;
  display: block;
  text-align: center;
  padding: 3px 6vmin;
  background: rgba(255,255,255,0);
  font-weight: 500;
  color: rgba(0,0,0,1);
  font-size: 11px;
}

.ios-segmented-control .option label::before, .ios-segmented-control .option label::after {
  content: '';
  width: 1px;
  background: rgba(142,142,147,1);
  position: absolute;
  top: 14%;
  bottom: 14%;
  border-radius: 10px;
  will-change: background;
  -webkit-transition: background .2s ease;
  transition: background .2s ease;
}

.ios-segmented-control .option label::before {
  left: 0;
  transform: translateX(-.5px);
}

.ios-segmented-control .option label::after {
  right: 0;
  transform: translateX(.5px);
}

.ios-segmented-control .option:first-of-type {
  grid-column: 1;
  grid-row: 1;
  box-shadow: none;
}

.ios-segmented-control .option:first-of-type label::before {
  opacity: 0;
}

.ios-segmented-control .option:last-of-type label::after {
  opacity: 0;
}

.ios-segmented-control .option input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  opacity: 0;
}

.ios-segmented-control .selection {
  background: rgba(255,255,255,1);
  border: .5px solid rgba(0,0,0,0.04);
  box-shadow: 0 3px 8px 0 rgba(0,0,0,0.12), 0 3px 1px 0 rgba(0,0,0,0.04);
  border-radius: 7px;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  will-change: transform;
  -webkit-transition: transform .2s ease;
  transition: transform .2s ease;
}

.ios-segmented-control .option label span {
  display: block;
  position: relative;
  z-index: 2;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  will-change: transform;
}

.ios-segmented-control .option input:checked+label::before, .ios-segmented-control .option input:checked+label::after {
  background: var(--background);
  z-index: 1;
}

.ios-segmented-control .option input:checked+label {
  cursor: default;
}

.footer{
    width: 100%;
    height: 15%;
    display: block;
    left: 0;
    bottom: 0;
    position: fixed;
    background-image: url('/assets/images/redbase.png');
    background-size: 100% 100%;
}
.install-message {
     position: fixed;
    padding: 0 10px;
    margin-bottom: 30px;
    width: calc(100% - 20px);
    bottom: 0;
    left: 0;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: right;
    direction: rtl;
}

.install-message .arrow_box {
    display: flex;
    padding: 10px;
    align-items: center;
    position: relative;
    background-color: #f2f2f8;
    border: 4px solid #eee;
    box-shadow: 0 0 7px 3px rgba(0,0,0,.24);
    border-radius: 5px;
    box-sizing: border-box;
    color: #333;
}
.install-message .arrow_box {
        background-color:#464e54;
        border: 4px solid #464e54;
}


.install-message .arrow_box:after,.install-message .arrow_box:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.install-message .arrow_box:after {
    border-color: #eee hsla(0,0%,100%,0) hsla(0,0%,100%,0);
    border-width: 10px;
    margin-left: -10px;
}

.install-message .arrow_box:after {
        border-top-color:#464e54;
}


.install-message .arrow_box:before {
    border-color: #eee hsla(0,0%,93.3%,0) hsla(0,0%,93.3%,0);
    border-width: 16px;
    margin-left: -16px;
}


.install-message .arrow_box:before {
        border-top-color:#464e54;
}

.install-message .arrow_box>img {
    height: 50px;
}

.install-message .manual img {
    height: 25px;
    padding: 0 7px;
}
.install-message .manual{
    color: azure;
    direction: rtl;
}
#loader {
  position: absolute;
  left: 85%;
  top: 15%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.container {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-200px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-200px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}