@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-wrap: break-word;
}

body .main-wrap-ol {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

#overlay_template,
#migrationRedirectionOverlay {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999999;
    display: none;
}

.main-wrap-ol {
    /* background-color: #ffffff; */
    background-color: rgba(0, 0, 0, 0.8);
    min-height: 100vh;
    position: relative;
    padding-top: 140px;
}

.newflowovly {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
}

.steptitle {
    padding: 40px 30px 33px;
    background-color: #f4f4f4;
}

.steptitle h1 {
    font-size: 22px;
    color: #1e2d6b;
    text-align: center;
    font-weight: normal;
    background: #fff;
    padding: 28px 50px;
    border-radius: 4px;
}

.steptitle h1 span {
    font-weight: 500;
    color: #1b73e8;
    white-space: nowrap;
}

.ol-body-container {
    border-radius: 4px;
    background-color: #f4f4f4;
    overflow: hidden;
}

.ol-body {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #f4f4f4;
}

.steparrow svg {
    display: block;
    margin-left: 70px;
    margin-top: 10px;
}

.heading {
    font-size: 28px;
    font-weight: 500;
    /* line-height: 1.96; */
    color: #354052;
}

.para {
    font-size: 16px;
    /* line-height: 1.5; */
    color: #7f8fa4;
    max-width: 550px;
    width: 100%;
    margin-top: 5px;
}

.redirect {
    font-size: 14px;
    color: #7f8fa4;
    margin-top: 50px;
}

.go-back {
    text-decoration: underline;
    color: #7f8fa4;
}

.go-back:hover {
    text-decoration: none;
}

.add-to-chrome-btn-ol {
    text-decoration: none;
    width: 190px;
    display: block;
    text-align: center;
    border-radius: 4.7px;
    background-color: #1b73e8;
    height: 46px;
    line-height: 46px;
    font-size: 17.6px;
    font-weight: bold;
    color: #ffffff;
    transition: all 0.3s;
    cursor: default;
    position: relative;
}

.stepbtn {
    position: relative;
}

.stepbtn:after {
    content: 'Add to Chrome';
    position: absolute;
    top: 0px;
    left: 50%;
    width: 190px;
    line-height: 46px;
    font-size: 17.6px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    transform: translateX(-50%);
}

/* .steparrow {
	margin-left: 80px;
} */
/* .add-to-chrome-btn-ol:hover{
    background-color: #18539e;
} */
.next-step-ol {
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
    color: #7f8fa4;
}

.add-to-chrome-ol {
    font-weight: bold;
    color: #354052;
}

div#wave {
    position: relative;
    text-align: center;
    background-color: #ecf0f6;
    height: 58px;
    border-top: 1px solid #ced0d3;
    padding: 20px;
}

div#wave .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #0066ff;
    animation: wave 1.3s linear infinite;
}

div#wave .dot:nth-child(2) {
    animation-delay: -1.1s;
    opacity: 0.5;
}

div#wave .dot:nth-child(3) {
    animation-delay: -0.9s;
    opacity: 0.2;
}

div#wave .dot:nth-child(4) {
    animation-delay: -0.5s;
    opacity: 0.1;
}

.audio-func {
    width: 87px;
    line-height: 30px;
    border-radius: 15px;
    background-color: #424242;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 30px;
    top: 40px;
    cursor: pointer;
    z-index: 10;
    height: 30px;
}

.audio-func .audio-icon {
    display: block;
}

.audio-func .audio-text {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #cdcdcd;
    padding-left: 6px;
}

.audio-func.audio_muted .mute-icon,
.audio-func.audio_muted .unmute-txt {
    display: block;
}

.audio-func.audio_muted .unmute-icon,
.audio-func.audio_muted .mute-txt {
    display: none;
}

.unmute-icon {
    display: block;
}

.mute-icon,
.unmute-txt {
    display: none;
}

@keyframes wave {

    0%,
    60%,
    100% {
        transform: initial;
    }

    30% {
        transform: translateY(-15px);
    }
}

.disclaimer-overlay {
    opacity: 0.6;
    color: #fff;
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 10px;
    padding: 0 10px;
}

.heartbeat {
    -webkit-animation: heartbeat 0.8s ease-in-out infinite both;
    animation: heartbeat 0.8s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

/* .move-down-ol {
	transform: translateY(-100%); */

/* transition: all 1s ease-out; */
/* transition-delay: 5s; */

/* display: none;
}*/

/*.active {
	/* transform: translateY(0); */
/* animation: moveDown 0.6s ease;
}*/
/* .diactive {
	transform: translateY(-100%); */
/* animation: moveUp 0.6s ease;
} */

@keyframes moveDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

.stepactionwrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 36px 32px 0px;
}

/* @media screen and (min-width: 851px) {
	.overlay6 .ol-body {
        padding: 60px 0 20px;
    }

    .overlay6 .ol-body-container {
        align-items: flex-start;
    }
    .overlay6 .left-part {
        margin-top: 20px;
    }
} */

/* overlay 13 changes */
.bgOpacChange .main-wrap-ol {
    background: rgba(0, 0, 0, .88);
}

@media screen and (max-width: 800px) {
    .ol-body {
        width: 90%;
    }

    .steparrow {
        margin-left: 0px;
    }
}

@media screen and (max-width: 767px) {
    .disclaimer-overlay {
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }

    .steptitle h1 {
        text-align: center;
        padding: 28px 15px;
    }

    .stepimg svg {
        max-width: 100%;
    }

    /* .stepactionwrap {
		flex-direction: column;
	} */
    .stepimg {
        margin-bottom: 15px;
    }

    /*  .steparrow {
		transform: rotate(90deg);
        margin: 15px auto 30px;
	} */
}

@media screen and (max-width: 640px) {
    .stepactionwrap {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-height: 580px) {
    .disclaimer-overlay {
        position: relative;
        bottom: auto;
        margin-top: 20px;
    }

    .main-wrap {
        height: auto;
    }
}

@media only screen and (max-height: 400px) {
    .main-wrap-ol {
        padding-top: 50px;
    }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .audio-func .audio-icon {
        display: inline-block;
    }
}