html, body {
    /* Elastic scroll fix for Safari on iOS */
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #5B6770;
    background-color: #F2F3F4;
}

noscript, #root_no_react {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#root_no_react {
    display: none;
    background-color: #fff;
}

.rtl, .rtl p, .rtl h5 {
    direction: rtl;
    text-align: right;
}

.base-popup-wrap {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.base-center {
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.base-browser-popup {
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color:#1FB3E0;
}

.base-browser-text {
    max-width: 668px;
    height: 100%;
    padding: 48px;
    text-align: left;
    margin: 0 auto;
    color: #fff;
}

.base-header {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 30px;
    color: #fff;
}

.base-browser-popup p {
    font-size: 16px;
}

span.base-browser-icon {
    /* Used to save take while image is loading */
    width: 36px;
    display: inline-block;
    margin-right: 8px;
    margin-left: 8px;
}

img.base-browser-icon {
    /* Browser fail browser icon */
    width: auto;
    height: 36px;

    /* Disable preview menu on iOS */
    pointer-events: none;
}

a.base-button {
    margin: 8px auto;
    margin-top: 16px;
    width: 100px;
    height: 42px;
    padding: 11px 18px;
    display: block;

    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #1FB3E0!important;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.08em;
    line-height: 1.3;

    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

    transition: none;
}

a.base-button:hover {
    background-color: #1FB3E0;
    color: #fff!important;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.base-popup-noscript a.base-button {
    margin-top: 32px;
}

.no-select {
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
}


/* MEDIA: Big screens (Tablets) */
@media (min-width: 768px) and (min-height: 520px) {

    noscript, #root_no_react {
        padding: 48px;
    }

    .base-browser-popup {
        width: auto;
        max-width: 1000px;
        height: 520px;
        box-shadow: 0 50px 80px rgba(0, 0, 0, .15);
        border-radius: 20px;
    }

    .base-popup-noscript {
        max-width: 800px;
        height: 320px;
    }
    .base-header {
        font-size: 21px;
        margin-bottom: 24px;
    }
    
    .base-browser-popup p {
        font-size: 18px;
        margin-bottom: 8px;
    }

    span.base-browser-icon {
        width: 42px;
    }
    
    img.base-browser-icon {
        height: 42px;
    }

}